blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4609d398c5e790f4c29a89c6ff5bbd8fe54bf08e | fe5aa6ffd43d5b417a09d9e4788a1ce0fa7c2623 | /cmake/Source/cmVisualStudioGeneratorOptions.h | 90f76672d8d719bb6cfb2cffc6ccecb4d2c06c55 | [
"BSD-3-Clause"
] | permissive | soegaard/racket-osx-libs | 5356e39d17ff208cb582912307e79e5baa540930 | 6341cc182c2645ebe9f175f56e7ba0b557eef893 | refs/heads/master | 2021-01-23T03:58:57.549738 | 2019-04-28T12:12:14 | 2019-04-28T12:12:14 | 14,662,966 | 5 | 2 | null | 2019-04-28T12:12:15 | 2013-11-24T14:50:34 | C | UTF-8 | C++ | false | false | 2,647 | h | /*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.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 License for more information.
============================================================================*/
#ifndef cmVisualStudioGeneratorOptions_h
#define cmVisualStudioGeneratorOptions_h
#include "cmLocalVisualStudioGenerator.h"
#include "cmIDEOptions.h"
typedef cmIDEFlagTable cmVS7FlagTable;
class cmVisualStudio10TargetGenerator;
//----------------------------------------------------------------------------
class cmVisualStudioGeneratorOptions: public cmIDEOptions
{
public:
// Construct an options table for a given tool.
enum Tool
{
Compiler,
Linker,
FortranCompiler
};
cmVisualStudioGeneratorOptions(cmLocalVisualStudioGenerator* lg,
Tool tool,
cmVS7FlagTable const* table,
cmVS7FlagTable const* extraTable = 0,
cmVisualStudio10TargetGenerator* g = 0);
// Store options from command line flags.
void Parse(const char* flags);
void ParseFinish();
// Fix the ExceptionHandling option to default to off.
void FixExceptionHandlingDefault();
// Store options for verbose builds.
void SetVerboseMakefile(bool verbose);
// Check for specific options.
bool UsingUnicode() const;
bool UsingSBCS() const;
bool IsDebug() const;
// Write options to output.
void OutputPreprocessorDefinitions(std::ostream& fout,
const char* prefix,
const char* suffix,
const char* lang);
void OutputFlagMap(std::ostream& fout, const char* indent);
void OutputAdditionalOptions(std::ostream& fout,
const char* prefix,
const char* suffix);
void SetConfiguration(const char* config);
private:
cmLocalVisualStudioGenerator* LocalGenerator;
cmLocalVisualStudioGenerator::VSVersion Version;
std::string Configuration;
Tool CurrentTool;
cmVisualStudio10TargetGenerator* TargetGenerator;
bool FortranRuntimeDebug;
bool FortranRuntimeDLL;
bool FortranRuntimeMT;
virtual void StoreUnknownFlag(const char* flag);
};
#endif
| [
"jensaxel@soegaard.net"
] | jensaxel@soegaard.net |
73c646cbd93489b61bda20c40ff8a41539083aa4 | 43f6f67e51a6c26075c0c99c541c0c39618317fd | /NavyExpeditions/Terra.h | aad33af8a7fefc360eb5ca333df6aa30e46358cf | [] | no_license | Nuno-Gon/NavyExpeditions | 59a75244495648c81e3a32da631a66e41a2f32f0 | c7cd0735fcefe2d1259bfc822c44e810af39e6b4 | refs/heads/master | 2021-10-09T22:24:54.580708 | 2019-01-04T08:34:44 | 2019-01-04T08:34:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 209 | h | #include "Terreno.h"
#pragma once
class Terra : public Terreno {
public:
Terra();
void produzir() {
//Produzir plantas? haha
};
void change(bool x) {
};
bool ret() {
return true;
};
~Terra();
};
| [
"onunvieira@gmail.com"
] | onunvieira@gmail.com |
b3153d762ebd21c678dd3cc4a1ad3fd2988e3438 | 6ebce5454ad576eea45ac5f3e9dd4b5d72563544 | /Classes/src/Game/Objects/BadFish.cpp | ca14981eb69fa191e3bc6a2333c120f6d490f699 | [
"Unlicense"
] | permissive | mrRomeoT/LifeOfOrangeFish | a39c85df88a3568bf612621b953c6f5e23dd7f83 | e36342ac1fb54332be19c7c79080bd3561998283 | refs/heads/master | 2021-05-07T17:40:00.454637 | 2017-10-30T11:59:49 | 2017-10-30T11:59:49 | 108,749,432 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 639 | cpp | #include "BadFish.h"
USING_NS_CC;
std::string BadFish::BAD_FISH_SPRITE_PATH = "sprites/game/badFish.png";
bool BadFish::init()
{
if (!SimpleFish::init())
{
return false;
}
_sprite = Sprite::create(BAD_FISH_SPRITE_PATH);
this->addChild(_sprite);
return true;
}
void BadFish::moveToPoint(const cocos2d::Vec2 & point, float duration)
{
lookAt(point);
this->runAction(MoveTo::create(duration, point));
}
void BadFish::kill()
{
auto tintBy = TintBy::create(0.1f, 120.0f, 232.0f, 254.0f);
this->stopAllActions();
_sprite->runAction(Sequence::create({ tintBy,
CallFunc::create([&]()
{
SimpleFish::kill();
})
}));
}
| [
"romansavart@gmail.com"
] | romansavart@gmail.com |
5fe53b4bfc2e0c0fe8ca6eca2b8e15586078a5cd | 68e3cbcd32ef49a64267a92486ae7e0dc8f3916f | /cf 1427 A.cpp | de615b0133cc647a5435ddf662ed5335f6f7bbf7 | [] | no_license | star-platinum127/uva | d2db4e0078a502628257ac6b4b6ac7d6f4899e5e | fc660aad483909055f5397be267c4ce9c033c4ef | refs/heads/master | 2023-05-26T15:57:48.922938 | 2023-05-21T15:45:46 | 2023-05-21T15:45:46 | 240,208,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,175 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define miku mywaifu
#define misaka mywaifu
#define pb push_back
#define S second
#define F first
#define mem(i,j) memset(i,j,sizeof(i))
#define pii pair<int,int>
#define pll pair<long,long>
const ll MOD = 1000000007;
const int MAXN = 100005;
const int INF= 0x3F3F3F3F;
const long long LINF = 4611686018427387903;
int gcd(int a, int b) {
if (b == 0) return a;
a %= b;
return gcd(b, a);
}
template<typename _Size>
inline _Size
__lg(_Size __n)
{
_Size __k;
for (__k = 0; __n != 0; __n >>= 1)
++__k;
return __k - 1;
}
/*-----------------------------------------------*/
int arr[105];
int sum1[105];
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
sum1[0] = 0;
for (int i = 1;i <=n;i++) {
cin >> arr[i];
sum1[i] = sum1[i - 1] + arr[i];
}
if (sum1[n] == 0) {
cout << "NO" << "\n";
continue;
}
cout << "YES" << "\n";
sort(arr + 1, arr + 1 + n);
if (sum1[n] > 0) {
for (int i = n;i >= 1;i--) cout << arr[i] << " ";
}
else for (int i = 1;i <= n;i++) cout << arr[i] << " ";
cout << "\n";
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
96bc2a957a360b03cc2a0fbfa3f1ae95291210f4 | 095b03203cfb1da17a106516d75da16ed1e77a15 | /210201/16681_신동윤.cpp | 2038899a240103d27267f57b075a5bf2912f459c | [] | no_license | AlgoMorgo/2021PS | fcff6ca1dadc3672b88aceca179b162e2d4aea68 | c3d4419e2365ca0a1d18406bedba656de001ce15 | refs/heads/main | 2023-03-20T00:21:20.132170 | 2021-03-21T04:09:09 | 2021-03-21T04:09:09 | 325,826,116 | 0 | 0 | null | 2021-01-01T11:06:47 | 2020-12-31T15:26:54 | C++ | UTF-8 | C++ | false | false | 2,738 | cpp | /*
BOJ 16681 등산
https://www.acmicpc.net/problem/16681
*/
#include <bits/stdc++.h>
#define INF LLONG_MAX
#define MAX 100001
using namespace std;
typedef long long ll;
int N, M, D, E;
vector<int> height; // 높이 저장을 위한 벡터
vector<pair<int, int>> adj[MAX]; // 연결지점, 거리
ll dijkstra() {
// 집에서 특정 지점 까지의 거리
vector<ll> dist1(N + 1, INF);
priority_queue<pair<ll, int>> pq; // 거리, 노드 번호
pq.push({0, 1});
while (!pq.empty()) {
ll distance = -pq.top().first;
int cur = pq.top().second;
pq.pop();
if (distance > dist1[cur]) continue; // 최단거리가 아닐때
for (int i = 0; i < adj[cur].size(); ++i) {
ll next_dist = adj[cur][i].second + distance;
int next_node = adj[cur][i].first;
if (dist1[next_node] > next_dist && height[next_node] > height[cur]) {
// 집에서 어떤 지점까지는 항상 높이가 증가하는 방향으로 처리되야하고, 최단거리를 갱신해야함.
dist1[next_node] = next_dist;
pq.push({-next_dist, next_node});
}
}
}
// 목적지인 고려대에서 어떤 지점까지의 거리 구하기
vector<ll> dist2(N + 1, INF);
pq.push({0, N});
while (!pq.empty()) {
ll distance = -pq.top().first;
int cur = pq.top().second;
pq.pop();
if (distance > dist2[cur]) continue;
for (int i = 0; i < adj[cur].size(); ++i) {
ll next_dist = adj[cur][i].second + distance;
int next_node = adj[cur][i].first;
if (dist2[next_node] > next_dist && height[next_node] > height[cur]) {
dist2[next_node] = next_dist;
pq.push({-next_dist, next_node});
}
}
}
ll value = -INF;
for (int i = 2; i < N; ++i) {
if (dist1[i] == INF || dist2[i] == INF) continue; // 경로가 없는 경우 패스함.
ll tmp = height[i] * E - (dist1[i] + dist2[i]) * D; // 높이 * 성취감 - 거리당 소모된 체력
value = max(value, tmp);
}
return value;
}
int main() {
cin.tie(0);
ios_base::sync_with_stdio(0);
cin >> N >> M >> D >> E;
height.resize(N + 1);
for (int i = 1; i <= N; ++i) {
cin >> height[i];
}
for (int i = 0; i < M; ++i) {
int a, b, n;
cin >> a >> b >> n;
adj[a].push_back({b, n}); // 양방향 경로라 했으므로 둘다 이어줌
adj[b].push_back({a, n});
}
ll temp = dijkstra();
if (temp == -INF)
cout << "Impossible";
else
cout << temp;
return 0;
}
| [
"vel1024@khu.ac.kr"
] | vel1024@khu.ac.kr |
08711a68a2be903a8295bd357f925646af2ad8b2 | 2a9e841cb06b1e3d77a8eeb68bb158352552bfbe | /classHelperRemastered/Components/customlineedit.h | f3f5cf9898827306f5cc1edacca5120336fe6081 | [] | no_license | alexanderkhiger/classHelperRemastered | 7cfb499dde0e7f5b00a1f757f23a37ec1c7edc14 | 08cc90fd108a873211e9739ad6c3e14203e291f0 | refs/heads/master | 2020-03-17T23:29:47.916846 | 2018-05-26T12:15:19 | 2018-05-26T12:15:19 | 134,048,195 | 0 | 0 | null | 2018-05-26T12:15:20 | 2018-05-19T09:28:11 | C++ | UTF-8 | C++ | false | false | 530 | h | #ifndef CUSTOMLINEEDIT_H
#define CUSTOMLINEEDIT_H
#include <QObject>
#include <QLineEdit>
#include <QWidget>
#include <QToolButton>
#include <QStyle>
#include <QLabel>
class CustomLineEdit : public QLineEdit {
Q_OBJECT
public:
CustomLineEdit();
protected:
void resizeEvent(QResizeEvent *);
signals:
void needInfo();
private slots:
void changeClearButtonState(const QString text);
void createUI();
private:
QToolButton *clearButton;
QToolButton *chooseButton;
};
#endif // CUSTOMLINEEDIT_H
| [
"alex10011997@gmail.com"
] | alex10011997@gmail.com |
ad6901e6023a6f694e3bffe3d99868ee98f50cf5 | ed997b3a8723cc9e77787c1d868f9300b0097473 | /libs/serialization/test/C.hpp | 8dc0a1b9c2602891b92bfa86891a4bd9b39ca2b6 | [
"BSL-1.0"
] | permissive | juslee/boost-svn | 7ddb99e2046e5153e7cb5680575588a9aa8c79b2 | 6d5a03c1f5ed3e2b23bd0f3ad98d13ff33d4dcbb | refs/heads/master | 2023-04-13T11:00:16.289416 | 2012-11-16T11:14:39 | 2012-11-16T11:14:39 | 6,734,455 | 0 | 0 | BSL-1.0 | 2023-04-03T23:13:08 | 2012-11-17T11:21:17 | C++ | UTF-8 | C++ | false | false | 1,695 | hpp | #ifndef BOOST_SERIALIZATION_TEST_A_HPP
#define BOOST_SERIALIZATION_TEST_A_HPP
// MS compatible compilers support #pragma once
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
// C.hpp
// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
// Use, modification and distribution is subject to 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)
// See http://www.boost.org for updates, documentation, and revision history.
#include <boost/config.hpp>
#include <boost/serialization/traits.hpp>
#include <boost/serialization/split.hpp>
#include "B.hpp"
///////////////////////////////////////////////////////
// Contained class
class C
{
private:
friend class boost::serialization::access;
template<class Archive>
void save(Archive &ar, boost::archive::version_type file_version) const;
template<class Archive>
void load(Archive & ar, boost::archive::version_type file_version);
BOOST_SERIALIZATION_MEMBER_SPLIT()
B b;
public:
bool operator==(const C &rhs) const;
};
BOOST_CLASS_VERSION(C, 1)
inline bool C::operator==(const C &rhs) const
{
return b == rhs.b;
}
template<class Archive>
inline void save(Archive &ar, boost::archive::version_type file_version) const
{
ar << b;
}
template<class Archive>
inline void load(Archive & ar, boost::archive::version_type file_version){
{
switch(file_version){
case 1:
ar >> b;
break;
case 2:
default:
assert(false);
break;
}
}
#endif // BOOST_SERIALIZATION_TEST_C_HPP
| [
"ramey@b8fc166d-592f-0410-95f2-cb63ce0dd405"
] | ramey@b8fc166d-592f-0410-95f2-cb63ce0dd405 |
e64700534631f91c5194374ad5e2f8507afb0dc8 | 31c4c1f8b13e88a87fab540a35495311ab71660d | /Sorting/QuickSort.hpp | 4e075892deff897895132a07dbcb4662e6b3f4d7 | [] | no_license | abhinavrathi/Algorithms-Implementation-and-Analysis | 79a450fa9393710605d85b6ae953798966574999 | c0400d625b9a7906fc35ecdf68fae415b52e5fc1 | refs/heads/master | 2020-04-02T05:23:19.989400 | 2017-07-30T15:17:37 | 2017-07-30T15:17:37 | 61,124,662 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 239 | hpp | // Created by Abhinav Rathi on 06/15/2016
#include <vector>
using namespace std;
class QuickSort{
private:void quick_sort(vector<int> &arr,int p,int r);
int partition(vector<int> &arr,int p,int r);
public: void sort(vector<int> &arr);
}; | [
"abhinavrathi1989@gmail.com"
] | abhinavrathi1989@gmail.com |
1484fe60a1152a8fce71787b1890800c433c398c | c90a56e7d7752b041fc5eb38257c5573cef346c6 | /src-linux/StepGeom.cpp | 0a4b4ed733cbc5f2b67308c7740a4544c02c6bc7 | [] | no_license | random-builder/design_cadquery_ocp | a4c572a72699bad52ca5f43f30bb7c15d89072ff | 2af799a9f1b2d81fd39e519b2f73e12b34a14c0a | refs/heads/master | 2021-05-21T23:10:23.833461 | 2020-03-29T15:34:46 | 2020-03-29T15:34:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 347,354 | cpp |
// std lib related includes
#include <tuple>
// pybind 11 related includes
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
namespace py = pybind11;
// Standard Handle
#include <Standard_Handle.hxx>
// includes to resolve forward declarations
#include <StepGeom_BSplineCurveWithKnots.hxx>
#include <StepGeom_RationalBSplineCurve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Direction.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <StepGeom_Surface.hxx>
#include <StepRepr_DefinitionalRepresentation.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Direction.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <StepGeom_QuasiUniformCurve.hxx>
#include <StepGeom_RationalBSplineCurve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianTransformationOperator.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Direction.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <StepGeom_Direction.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Vector.hxx>
#include <StepGeom_Direction.hxx>
#include <StepGeom_Direction.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Pcurve.hxx>
#include <StepGeom_Surface.hxx>
#include <StepGeom_Surface.hxx>
#include <StepRepr_DefinitionalRepresentation.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Curve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_BSplineSurfaceWithKnots.hxx>
#include <StepGeom_RationalBSplineSurface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Surface.hxx>
#include <StepRepr_DefinitionalRepresentation.hxx>
#include <StepGeom_CartesianTransformationOperator3d.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_QuasiUniformSurface.hxx>
#include <StepGeom_RationalBSplineSurface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepData_SelectMember.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Vector.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Curve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_BezierSurface.hxx>
#include <StepGeom_RationalBSplineSurface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Direction.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <StepGeom_GeometricRepresentationContext.hxx>
#include <StepRepr_GlobalUnitAssignedContext.hxx>
#include <StepRepr_GlobalUncertaintyAssignedContext.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Pcurve.hxx>
#include <StepGeom_SurfaceCurve.hxx>
#include <StepGeom_CompositeCurveOnSurface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_GeometricRepresentationContext.hxx>
#include <StepRepr_GlobalUnitAssignedContext.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_BoundedCurve.hxx>
#include <StepGeom_BoundedSurface.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Curve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <StepGeom_Vector.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_UniformSurface.hxx>
#include <StepGeom_RationalBSplineSurface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Direction.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Axis2Placement2d.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_CartesianTransformationOperator.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_GeometricRepresentationContext.hxx>
#include <StepRepr_ParametricRepresentationContext.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_BezierCurve.hxx>
#include <StepGeom_RationalBSplineCurve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_UniformCurve.hxx>
#include <StepGeom_RationalBSplineCurve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_BoundaryCurve.hxx>
#include <StepGeom_DegeneratePcurve.hxx>
#include <StepGeom_Curve.hxx>
#include <StepGeom_Curve.hxx>
#include <StepGeom_Axis1Placement.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Curve.hxx>
#include <TCollection_HAsciiString.hxx>
#include <StepGeom_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
// module includes
#include <StepGeom_Array1OfBoundaryCurve.hxx>
#include <StepGeom_Array1OfCartesianPoint.hxx>
#include <StepGeom_Array1OfCompositeCurveSegment.hxx>
#include <StepGeom_Array1OfCurve.hxx>
#include <StepGeom_Array1OfPcurveOrSurface.hxx>
#include <StepGeom_Array1OfSurfaceBoundary.hxx>
#include <StepGeom_Array1OfTrimmingSelect.hxx>
#include <StepGeom_Array2OfCartesianPoint.hxx>
#include <StepGeom_Array2OfSurfacePatch.hxx>
#include <StepGeom_Axis1Placement.hxx>
#include <StepGeom_Axis2Placement.hxx>
#include <StepGeom_Axis2Placement2d.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <StepGeom_BezierCurve.hxx>
#include <StepGeom_BezierCurveAndRationalBSplineCurve.hxx>
#include <StepGeom_BezierSurface.hxx>
#include <StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx>
#include <StepGeom_BoundaryCurve.hxx>
#include <StepGeom_BoundedCurve.hxx>
#include <StepGeom_BoundedSurface.hxx>
#include <StepGeom_BSplineCurve.hxx>
#include <StepGeom_BSplineCurveForm.hxx>
#include <StepGeom_BSplineCurveWithKnots.hxx>
#include <StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx>
#include <StepGeom_BSplineSurface.hxx>
#include <StepGeom_BSplineSurfaceForm.hxx>
#include <StepGeom_BSplineSurfaceWithKnots.hxx>
#include <StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <StepGeom_CartesianTransformationOperator.hxx>
#include <StepGeom_CartesianTransformationOperator2d.hxx>
#include <StepGeom_CartesianTransformationOperator3d.hxx>
#include <StepGeom_Circle.hxx>
#include <StepGeom_CompositeCurve.hxx>
#include <StepGeom_CompositeCurveOnSurface.hxx>
#include <StepGeom_CompositeCurveSegment.hxx>
#include <StepGeom_Conic.hxx>
#include <StepGeom_ConicalSurface.hxx>
#include <StepGeom_Curve.hxx>
#include <StepGeom_CurveBoundedSurface.hxx>
#include <StepGeom_CurveOnSurface.hxx>
#include <StepGeom_CurveReplica.hxx>
#include <StepGeom_CylindricalSurface.hxx>
#include <StepGeom_DegeneratePcurve.hxx>
#include <StepGeom_DegenerateToroidalSurface.hxx>
#include <StepGeom_Direction.hxx>
#include <StepGeom_ElementarySurface.hxx>
#include <StepGeom_Ellipse.hxx>
#include <StepGeom_EvaluatedDegeneratePcurve.hxx>
#include <StepGeom_GeometricRepresentationContext.hxx>
#include <StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx>
#include <StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx>
#include <StepGeom_GeometricRepresentationItem.hxx>
#include <StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx>
#include <StepGeom_HArray1OfBoundaryCurve.hxx>
#include <StepGeom_HArray1OfCartesianPoint.hxx>
#include <StepGeom_HArray1OfCompositeCurveSegment.hxx>
#include <StepGeom_HArray1OfCurve.hxx>
#include <StepGeom_HArray1OfPcurveOrSurface.hxx>
#include <StepGeom_HArray1OfSurfaceBoundary.hxx>
#include <StepGeom_HArray1OfTrimmingSelect.hxx>
#include <StepGeom_HArray2OfCartesianPoint.hxx>
#include <StepGeom_HArray2OfSurfacePatch.hxx>
#include <StepGeom_Hyperbola.hxx>
#include <StepGeom_IntersectionCurve.hxx>
#include <StepGeom_KnotType.hxx>
#include <StepGeom_Line.hxx>
#include <StepGeom_OffsetCurve3d.hxx>
#include <StepGeom_OffsetSurface.hxx>
#include <StepGeom_OrientedSurface.hxx>
#include <StepGeom_OuterBoundaryCurve.hxx>
#include <StepGeom_Parabola.hxx>
#include <StepGeom_Pcurve.hxx>
#include <StepGeom_PcurveOrSurface.hxx>
#include <StepGeom_Placement.hxx>
#include <StepGeom_Plane.hxx>
#include <StepGeom_Point.hxx>
#include <StepGeom_PointOnCurve.hxx>
#include <StepGeom_PointOnSurface.hxx>
#include <StepGeom_PointReplica.hxx>
#include <StepGeom_Polyline.hxx>
#include <StepGeom_PreferredSurfaceCurveRepresentation.hxx>
#include <StepGeom_QuasiUniformCurve.hxx>
#include <StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx>
#include <StepGeom_QuasiUniformSurface.hxx>
#include <StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx>
#include <StepGeom_RationalBSplineCurve.hxx>
#include <StepGeom_RationalBSplineSurface.hxx>
#include <StepGeom_RectangularCompositeSurface.hxx>
#include <StepGeom_RectangularTrimmedSurface.hxx>
#include <StepGeom_ReparametrisedCompositeCurveSegment.hxx>
#include <StepGeom_SeamCurve.hxx>
#include <StepGeom_SphericalSurface.hxx>
#include <StepGeom_Surface.hxx>
#include <StepGeom_SurfaceBoundary.hxx>
#include <StepGeom_SurfaceCurve.hxx>
#include <StepGeom_SurfaceCurveAndBoundedCurve.hxx>
#include <StepGeom_SurfaceOfLinearExtrusion.hxx>
#include <StepGeom_SurfaceOfRevolution.hxx>
#include <StepGeom_SurfacePatch.hxx>
#include <StepGeom_SurfaceReplica.hxx>
#include <StepGeom_SweptSurface.hxx>
#include <StepGeom_ToroidalSurface.hxx>
#include <StepGeom_TransitionCode.hxx>
#include <StepGeom_TrimmedCurve.hxx>
#include <StepGeom_TrimmingMember.hxx>
#include <StepGeom_TrimmingPreference.hxx>
#include <StepGeom_TrimmingSelect.hxx>
#include <StepGeom_UniformCurve.hxx>
#include <StepGeom_UniformCurveAndRationalBSplineCurve.hxx>
#include <StepGeom_UniformSurface.hxx>
#include <StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx>
#include <StepGeom_Vector.hxx>
#include <StepGeom_VectorOrDirection.hxx>
// template related includes
// ./opencascade/StepGeom_Array1OfTrimmingSelect.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array1OfCompositeCurveSegment.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array2OfSurfacePatch.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array1OfCurve.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array1OfBoundaryCurve.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array1OfPcurveOrSurface.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array1OfSurfaceBoundary.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array1OfCartesianPoint.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepGeom_Array2OfCartesianPoint.hxx
#include "NCollection_tmpl.hxx"
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_StepGeom(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("StepGeom"));
//Python trampoline classes
// classes
static_cast<py::class_<StepGeom_Axis2Placement , shared_ptr<StepGeom_Axis2Placement> , StepData_SelectType>>(m.attr("StepGeom_Axis2Placement"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseNum",
(Standard_Integer (StepGeom_Axis2Placement::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Integer (StepGeom_Axis2Placement::*)( const opencascade::handle<Standard_Transient> & ) const>(&StepGeom_Axis2Placement::CaseNum),
R"#(Recognizes a Axis2Placement Kind Entity that is : 1 -> Axis2Placement2d 2 -> Axis2Placement3d 0 else)#" , py::arg("ent"))
.def("Axis2Placement2d",
(opencascade::handle<StepGeom_Axis2Placement2d> (StepGeom_Axis2Placement::*)() const) static_cast<opencascade::handle<StepGeom_Axis2Placement2d> (StepGeom_Axis2Placement::*)() const>(&StepGeom_Axis2Placement::Axis2Placement2d),
R"#(returns Value as a Axis2Placement2d (Null if another type))#" )
.def("Axis2Placement3d",
(opencascade::handle<StepGeom_Axis2Placement3d> (StepGeom_Axis2Placement::*)() const) static_cast<opencascade::handle<StepGeom_Axis2Placement3d> (StepGeom_Axis2Placement::*)() const>(&StepGeom_Axis2Placement::Axis2Placement3d),
R"#(returns Value as a Axis2Placement3d (Null if another type))#" )
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CompositeCurveSegment ,opencascade::handle<StepGeom_CompositeCurveSegment> , Standard_Transient>>(m.attr("StepGeom_CompositeCurveSegment"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CompositeCurveSegment::*)( const StepGeom_TransitionCode , const Standard_Boolean , const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_CompositeCurveSegment::*)( const StepGeom_TransitionCode , const Standard_Boolean , const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_CompositeCurveSegment::Init),
R"#(None)#" , py::arg("aTransition"), py::arg("aSameSense"), py::arg("aParentCurve"))
.def("SetTransition",
(void (StepGeom_CompositeCurveSegment::*)( const StepGeom_TransitionCode ) ) static_cast<void (StepGeom_CompositeCurveSegment::*)( const StepGeom_TransitionCode ) >(&StepGeom_CompositeCurveSegment::SetTransition),
R"#(None)#" , py::arg("aTransition"))
.def("Transition",
(StepGeom_TransitionCode (StepGeom_CompositeCurveSegment::*)() const) static_cast<StepGeom_TransitionCode (StepGeom_CompositeCurveSegment::*)() const>(&StepGeom_CompositeCurveSegment::Transition),
R"#(None)#" )
.def("SetSameSense",
(void (StepGeom_CompositeCurveSegment::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_CompositeCurveSegment::*)( const Standard_Boolean ) >(&StepGeom_CompositeCurveSegment::SetSameSense),
R"#(None)#" , py::arg("aSameSense"))
.def("SameSense",
(Standard_Boolean (StepGeom_CompositeCurveSegment::*)() const) static_cast<Standard_Boolean (StepGeom_CompositeCurveSegment::*)() const>(&StepGeom_CompositeCurveSegment::SameSense),
R"#(None)#" )
.def("SetParentCurve",
(void (StepGeom_CompositeCurveSegment::*)( const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_CompositeCurveSegment::*)( const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_CompositeCurveSegment::SetParentCurve),
R"#(None)#" , py::arg("aParentCurve"))
.def("ParentCurve",
(opencascade::handle<StepGeom_Curve> (StepGeom_CompositeCurveSegment::*)() const) static_cast<opencascade::handle<StepGeom_Curve> (StepGeom_CompositeCurveSegment::*)() const>(&StepGeom_CompositeCurveSegment::ParentCurve),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CompositeCurveSegment::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CompositeCurveSegment::*)() const>(&StepGeom_CompositeCurveSegment::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CompositeCurveSegment::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CompositeCurveSegment::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CurveOnSurface , shared_ptr<StepGeom_CurveOnSurface> , StepData_SelectType>>(m.attr("StepGeom_CurveOnSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseNum",
(Standard_Integer (StepGeom_CurveOnSurface::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Integer (StepGeom_CurveOnSurface::*)( const opencascade::handle<Standard_Transient> & ) const>(&StepGeom_CurveOnSurface::CaseNum),
R"#(Recognizes a CurveOnSurface Kind Entity that is : 1 -> Pcurve 2 -> SurfaceCurve 3 -> CompositeCurveOnSurface 0 else)#" , py::arg("ent"))
.def("Pcurve",
(opencascade::handle<StepGeom_Pcurve> (StepGeom_CurveOnSurface::*)() const) static_cast<opencascade::handle<StepGeom_Pcurve> (StepGeom_CurveOnSurface::*)() const>(&StepGeom_CurveOnSurface::Pcurve),
R"#(returns Value as a Pcurve (Null if another type))#" )
.def("SurfaceCurve",
(opencascade::handle<StepGeom_SurfaceCurve> (StepGeom_CurveOnSurface::*)() const) static_cast<opencascade::handle<StepGeom_SurfaceCurve> (StepGeom_CurveOnSurface::*)() const>(&StepGeom_CurveOnSurface::SurfaceCurve),
R"#(returns Value as a SurfaceCurve (Null if another type))#" )
.def("CompositeCurveOnSurface",
(opencascade::handle<StepGeom_CompositeCurveOnSurface> (StepGeom_CurveOnSurface::*)() const) static_cast<opencascade::handle<StepGeom_CompositeCurveOnSurface> (StepGeom_CurveOnSurface::*)() const>(&StepGeom_CurveOnSurface::CompositeCurveOnSurface),
R"#(returns Value as a CompositeCurveOnSurface (Null if another type))#" )
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx ,opencascade::handle<StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx> , StepRepr_RepresentationContext>>(m.attr("StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_GeometricRepresentationContext> & , const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & , const opencascade::handle<StepRepr_GlobalUncertaintyAssignedContext> & ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_GeometricRepresentationContext> & , const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & , const opencascade::handle<StepRepr_GlobalUncertaintyAssignedContext> & ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::Init),
R"#(None)#" , py::arg("aContextIdentifier"), py::arg("aContextType"), py::arg("aGeometricRepresentationCtx"), py::arg("aGlobalUnitAssignedCtx"), py::arg("aGlobalUncertaintyAssignedCtx"))
.def("Init",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepBasic_HArray1OfNamedUnit> & , const opencascade::handle<StepBasic_HArray1OfUncertaintyMeasureWithUnit> & ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepBasic_HArray1OfNamedUnit> & , const opencascade::handle<StepBasic_HArray1OfUncertaintyMeasureWithUnit> & ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::Init),
R"#(None)#" , py::arg("aContextIdentifier"), py::arg("aContextType"), py::arg("aCoordinateSpaceDimension"), py::arg("aUnits"), py::arg("anUncertainty"))
.def("SetGeometricRepresentationContext",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepGeom_GeometricRepresentationContext> & ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepGeom_GeometricRepresentationContext> & ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::SetGeometricRepresentationContext),
R"#(None)#" , py::arg("aGeometricRepresentationContext"))
.def("GeometricRepresentationContext",
(opencascade::handle<StepGeom_GeometricRepresentationContext> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<opencascade::handle<StepGeom_GeometricRepresentationContext> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::GeometricRepresentationContext),
R"#(None)#" )
.def("SetGlobalUnitAssignedContext",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::SetGlobalUnitAssignedContext),
R"#(None)#" , py::arg("aGlobalUnitAssignedContext"))
.def("GlobalUnitAssignedContext",
(opencascade::handle<StepRepr_GlobalUnitAssignedContext> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<opencascade::handle<StepRepr_GlobalUnitAssignedContext> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::GlobalUnitAssignedContext),
R"#(None)#" )
.def("SetGlobalUncertaintyAssignedContext",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepRepr_GlobalUncertaintyAssignedContext> & ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepRepr_GlobalUncertaintyAssignedContext> & ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::SetGlobalUncertaintyAssignedContext),
R"#(None)#" , py::arg("aGlobalUncertaintyAssignedCtx"))
.def("GlobalUncertaintyAssignedContext",
(opencascade::handle<StepRepr_GlobalUncertaintyAssignedContext> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<opencascade::handle<StepRepr_GlobalUncertaintyAssignedContext> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::GlobalUncertaintyAssignedContext),
R"#(None)#" )
.def("SetCoordinateSpaceDimension",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const Standard_Integer ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const Standard_Integer ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::SetCoordinateSpaceDimension),
R"#(None)#" , py::arg("aCoordinateSpaceDimension"))
.def("CoordinateSpaceDimension",
(Standard_Integer (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<Standard_Integer (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::CoordinateSpaceDimension),
R"#(None)#" )
.def("SetUnits",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepBasic_HArray1OfNamedUnit> & ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepBasic_HArray1OfNamedUnit> & ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::SetUnits),
R"#(None)#" , py::arg("aUnits"))
.def("Units",
(opencascade::handle<StepBasic_HArray1OfNamedUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<opencascade::handle<StepBasic_HArray1OfNamedUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::Units),
R"#(None)#" )
.def("UnitsValue",
(opencascade::handle<StepBasic_NamedUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const Standard_Integer ) const) static_cast<opencascade::handle<StepBasic_NamedUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const Standard_Integer ) const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::UnitsValue),
R"#(None)#" , py::arg("num"))
.def("NbUnits",
(Standard_Integer (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<Standard_Integer (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::NbUnits),
R"#(None)#" )
.def("SetUncertainty",
(void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepBasic_HArray1OfUncertaintyMeasureWithUnit> & ) ) static_cast<void (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const opencascade::handle<StepBasic_HArray1OfUncertaintyMeasureWithUnit> & ) >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::SetUncertainty),
R"#(None)#" , py::arg("aUncertainty"))
.def("Uncertainty",
(opencascade::handle<StepBasic_HArray1OfUncertaintyMeasureWithUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<opencascade::handle<StepBasic_HArray1OfUncertaintyMeasureWithUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::Uncertainty),
R"#(None)#" )
.def("UncertaintyValue",
(opencascade::handle<StepBasic_UncertaintyMeasureWithUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const Standard_Integer ) const) static_cast<opencascade::handle<StepBasic_UncertaintyMeasureWithUnit> (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)( const Standard_Integer ) const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::UncertaintyValue),
R"#(None)#" , py::arg("num"))
.def("NbUncertainty",
(Standard_Integer (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<Standard_Integer (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::NbUncertainty),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::*)() const>(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_GeometricRepresentationContext ,opencascade::handle<StepGeom_GeometricRepresentationContext> , StepRepr_RepresentationContext>>(m.attr("StepGeom_GeometricRepresentationContext"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_GeometricRepresentationContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer ) ) static_cast<void (StepGeom_GeometricRepresentationContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer ) >(&StepGeom_GeometricRepresentationContext::Init),
R"#(None)#" , py::arg("aContextIdentifier"), py::arg("aContextType"), py::arg("aCoordinateSpaceDimension"))
.def("SetCoordinateSpaceDimension",
(void (StepGeom_GeometricRepresentationContext::*)( const Standard_Integer ) ) static_cast<void (StepGeom_GeometricRepresentationContext::*)( const Standard_Integer ) >(&StepGeom_GeometricRepresentationContext::SetCoordinateSpaceDimension),
R"#(None)#" , py::arg("aCoordinateSpaceDimension"))
.def("CoordinateSpaceDimension",
(Standard_Integer (StepGeom_GeometricRepresentationContext::*)() const) static_cast<Standard_Integer (StepGeom_GeometricRepresentationContext::*)() const>(&StepGeom_GeometricRepresentationContext::CoordinateSpaceDimension),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationContext::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationContext::*)() const>(&StepGeom_GeometricRepresentationContext::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_GeometricRepresentationContext::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_GeometricRepresentationContext::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext ,opencascade::handle<StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext> , StepRepr_RepresentationContext>>(m.attr("StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_GeometricRepresentationContext> & , const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_GeometricRepresentationContext> & , const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & ) >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::Init),
R"#(None)#" , py::arg("aContextIdentifier"), py::arg("aContextType"), py::arg("aGeometricRepresentationContext"), py::arg("aGlobalUnitAssignedContext"))
.def("Init",
(void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepBasic_HArray1OfNamedUnit> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepBasic_HArray1OfNamedUnit> & ) >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::Init),
R"#(None)#" , py::arg("aContextIdentifier"), py::arg("aContextType"), py::arg("aCoordinateSpaceDimension"), py::arg("aUnits"))
.def("SetGeometricRepresentationContext",
(void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<StepGeom_GeometricRepresentationContext> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<StepGeom_GeometricRepresentationContext> & ) >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::SetGeometricRepresentationContext),
R"#(None)#" , py::arg("aGeometricRepresentationContext"))
.def("GeometricRepresentationContext",
(opencascade::handle<StepGeom_GeometricRepresentationContext> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const) static_cast<opencascade::handle<StepGeom_GeometricRepresentationContext> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const>(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::GeometricRepresentationContext),
R"#(None)#" )
.def("SetGlobalUnitAssignedContext",
(void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<StepRepr_GlobalUnitAssignedContext> & ) >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::SetGlobalUnitAssignedContext),
R"#(None)#" , py::arg("aGlobalUnitAssignedContext"))
.def("GlobalUnitAssignedContext",
(opencascade::handle<StepRepr_GlobalUnitAssignedContext> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const) static_cast<opencascade::handle<StepRepr_GlobalUnitAssignedContext> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const>(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::GlobalUnitAssignedContext),
R"#(None)#" )
.def("SetCoordinateSpaceDimension",
(void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const Standard_Integer ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const Standard_Integer ) >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::SetCoordinateSpaceDimension),
R"#(None)#" , py::arg("aCoordinateSpaceDimension"))
.def("CoordinateSpaceDimension",
(Standard_Integer (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const) static_cast<Standard_Integer (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const>(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::CoordinateSpaceDimension),
R"#(None)#" )
.def("SetUnits",
(void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<StepBasic_HArray1OfNamedUnit> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const opencascade::handle<StepBasic_HArray1OfNamedUnit> & ) >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::SetUnits),
R"#(None)#" , py::arg("aUnits"))
.def("Units",
(opencascade::handle<StepBasic_HArray1OfNamedUnit> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const) static_cast<opencascade::handle<StepBasic_HArray1OfNamedUnit> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const>(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::Units),
R"#(None)#" )
.def("UnitsValue",
(opencascade::handle<StepBasic_NamedUnit> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const Standard_Integer ) const) static_cast<opencascade::handle<StepBasic_NamedUnit> (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)( const Standard_Integer ) const>(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::UnitsValue),
R"#(None)#" , py::arg("num"))
.def("NbUnits",
(Standard_Integer (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const) static_cast<Standard_Integer (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const>(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::NbUnits),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::*)() const>(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_GeometricRepresentationContextAndParametricRepresentationContext ,opencascade::handle<StepGeom_GeometricRepresentationContextAndParametricRepresentationContext> , StepRepr_RepresentationContext>>(m.attr("StepGeom_GeometricRepresentationContextAndParametricRepresentationContext"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_GeometricRepresentationContext> & , const opencascade::handle<StepRepr_ParametricRepresentationContext> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_GeometricRepresentationContext> & , const opencascade::handle<StepRepr_ParametricRepresentationContext> & ) >(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::Init),
R"#(None)#" , py::arg("aContextIdentifier"), py::arg("aContextType"), py::arg("aGeometricRepresentationContext"), py::arg("aParametricRepresentationContext"))
.def("Init",
(void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer ) >(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::Init),
R"#(None)#" , py::arg("aContextIdentifier"), py::arg("aContextType"), py::arg("aCoordinateSpaceDimension"))
.def("SetGeometricRepresentationContext",
(void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<StepGeom_GeometricRepresentationContext> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<StepGeom_GeometricRepresentationContext> & ) >(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::SetGeometricRepresentationContext),
R"#(None)#" , py::arg("aGeometricRepresentationContext"))
.def("GeometricRepresentationContext",
(opencascade::handle<StepGeom_GeometricRepresentationContext> (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const) static_cast<opencascade::handle<StepGeom_GeometricRepresentationContext> (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const>(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::GeometricRepresentationContext),
R"#(None)#" )
.def("SetParametricRepresentationContext",
(void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<StepRepr_ParametricRepresentationContext> & ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const opencascade::handle<StepRepr_ParametricRepresentationContext> & ) >(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::SetParametricRepresentationContext),
R"#(None)#" , py::arg("aParametricRepresentationContext"))
.def("ParametricRepresentationContext",
(opencascade::handle<StepRepr_ParametricRepresentationContext> (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const) static_cast<opencascade::handle<StepRepr_ParametricRepresentationContext> (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const>(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::ParametricRepresentationContext),
R"#(None)#" )
.def("SetCoordinateSpaceDimension",
(void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const Standard_Integer ) ) static_cast<void (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)( const Standard_Integer ) >(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::SetCoordinateSpaceDimension),
R"#(None)#" , py::arg("aCoordinateSpaceDimension"))
.def("CoordinateSpaceDimension",
(Standard_Integer (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const) static_cast<Standard_Integer (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const>(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::CoordinateSpaceDimension),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::*)() const>(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_GeometricRepresentationContextAndParametricRepresentationContext::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_GeometricRepresentationItem ,opencascade::handle<StepGeom_GeometricRepresentationItem> , StepRepr_RepresentationItem>>(m.attr("StepGeom_GeometricRepresentationItem"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationItem::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_GeometricRepresentationItem::*)() const>(&StepGeom_GeometricRepresentationItem::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_GeometricRepresentationItem::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_GeometricRepresentationItem::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray1OfBoundaryCurve ,opencascade::handle<StepGeom_HArray1OfBoundaryCurve> , StepGeom_Array1OfBoundaryCurve, Standard_Transient>>(m.attr("StepGeom_HArray1OfBoundaryCurve"))
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const opencascade::handle<StepGeom_BoundaryCurve> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const NCollection_Array1<opencascade::handle<StepGeom_BoundaryCurve> > & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array1",
(const StepGeom_Array1OfBoundaryCurve & (StepGeom_HArray1OfBoundaryCurve::*)() const) static_cast<const StepGeom_Array1OfBoundaryCurve & (StepGeom_HArray1OfBoundaryCurve::*)() const>(&StepGeom_HArray1OfBoundaryCurve::Array1),
R"#(None)#" )
.def("ChangeArray1",
(StepGeom_Array1OfBoundaryCurve & (StepGeom_HArray1OfBoundaryCurve::*)() ) static_cast<StepGeom_Array1OfBoundaryCurve & (StepGeom_HArray1OfBoundaryCurve::*)() >(&StepGeom_HArray1OfBoundaryCurve::ChangeArray1),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfBoundaryCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfBoundaryCurve::*)() const>(&StepGeom_HArray1OfBoundaryCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray1OfBoundaryCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray1OfBoundaryCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray1OfCartesianPoint ,opencascade::handle<StepGeom_HArray1OfCartesianPoint> , StepGeom_Array1OfCartesianPoint, Standard_Transient>>(m.attr("StepGeom_HArray1OfCartesianPoint"))
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const opencascade::handle<StepGeom_CartesianPoint> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const NCollection_Array1<opencascade::handle<StepGeom_CartesianPoint> > & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array1",
(const StepGeom_Array1OfCartesianPoint & (StepGeom_HArray1OfCartesianPoint::*)() const) static_cast<const StepGeom_Array1OfCartesianPoint & (StepGeom_HArray1OfCartesianPoint::*)() const>(&StepGeom_HArray1OfCartesianPoint::Array1),
R"#(None)#" )
.def("ChangeArray1",
(StepGeom_Array1OfCartesianPoint & (StepGeom_HArray1OfCartesianPoint::*)() ) static_cast<StepGeom_Array1OfCartesianPoint & (StepGeom_HArray1OfCartesianPoint::*)() >(&StepGeom_HArray1OfCartesianPoint::ChangeArray1),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfCartesianPoint::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfCartesianPoint::*)() const>(&StepGeom_HArray1OfCartesianPoint::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray1OfCartesianPoint::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray1OfCartesianPoint::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray1OfCompositeCurveSegment ,opencascade::handle<StepGeom_HArray1OfCompositeCurveSegment> , StepGeom_Array1OfCompositeCurveSegment, Standard_Transient>>(m.attr("StepGeom_HArray1OfCompositeCurveSegment"))
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const opencascade::handle<StepGeom_CompositeCurveSegment> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const NCollection_Array1<opencascade::handle<StepGeom_CompositeCurveSegment> > & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array1",
(const StepGeom_Array1OfCompositeCurveSegment & (StepGeom_HArray1OfCompositeCurveSegment::*)() const) static_cast<const StepGeom_Array1OfCompositeCurveSegment & (StepGeom_HArray1OfCompositeCurveSegment::*)() const>(&StepGeom_HArray1OfCompositeCurveSegment::Array1),
R"#(None)#" )
.def("ChangeArray1",
(StepGeom_Array1OfCompositeCurveSegment & (StepGeom_HArray1OfCompositeCurveSegment::*)() ) static_cast<StepGeom_Array1OfCompositeCurveSegment & (StepGeom_HArray1OfCompositeCurveSegment::*)() >(&StepGeom_HArray1OfCompositeCurveSegment::ChangeArray1),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfCompositeCurveSegment::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfCompositeCurveSegment::*)() const>(&StepGeom_HArray1OfCompositeCurveSegment::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray1OfCompositeCurveSegment::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray1OfCompositeCurveSegment::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray1OfCurve ,opencascade::handle<StepGeom_HArray1OfCurve> , StepGeom_Array1OfCurve, Standard_Transient>>(m.attr("StepGeom_HArray1OfCurve"))
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const opencascade::handle<StepGeom_Curve> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const NCollection_Array1<opencascade::handle<StepGeom_Curve> > & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array1",
(const StepGeom_Array1OfCurve & (StepGeom_HArray1OfCurve::*)() const) static_cast<const StepGeom_Array1OfCurve & (StepGeom_HArray1OfCurve::*)() const>(&StepGeom_HArray1OfCurve::Array1),
R"#(None)#" )
.def("ChangeArray1",
(StepGeom_Array1OfCurve & (StepGeom_HArray1OfCurve::*)() ) static_cast<StepGeom_Array1OfCurve & (StepGeom_HArray1OfCurve::*)() >(&StepGeom_HArray1OfCurve::ChangeArray1),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfCurve::*)() const>(&StepGeom_HArray1OfCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray1OfCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray1OfCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray1OfPcurveOrSurface ,opencascade::handle<StepGeom_HArray1OfPcurveOrSurface> , StepGeom_Array1OfPcurveOrSurface, Standard_Transient>>(m.attr("StepGeom_HArray1OfPcurveOrSurface"))
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const StepGeom_PcurveOrSurface & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const NCollection_Array1<StepGeom_PcurveOrSurface> & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array1",
(const StepGeom_Array1OfPcurveOrSurface & (StepGeom_HArray1OfPcurveOrSurface::*)() const) static_cast<const StepGeom_Array1OfPcurveOrSurface & (StepGeom_HArray1OfPcurveOrSurface::*)() const>(&StepGeom_HArray1OfPcurveOrSurface::Array1),
R"#(None)#" )
.def("ChangeArray1",
(StepGeom_Array1OfPcurveOrSurface & (StepGeom_HArray1OfPcurveOrSurface::*)() ) static_cast<StepGeom_Array1OfPcurveOrSurface & (StepGeom_HArray1OfPcurveOrSurface::*)() >(&StepGeom_HArray1OfPcurveOrSurface::ChangeArray1),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfPcurveOrSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfPcurveOrSurface::*)() const>(&StepGeom_HArray1OfPcurveOrSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray1OfPcurveOrSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray1OfPcurveOrSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray1OfSurfaceBoundary ,opencascade::handle<StepGeom_HArray1OfSurfaceBoundary> , StepGeom_Array1OfSurfaceBoundary, Standard_Transient>>(m.attr("StepGeom_HArray1OfSurfaceBoundary"))
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const StepGeom_SurfaceBoundary & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const NCollection_Array1<StepGeom_SurfaceBoundary> & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array1",
(const StepGeom_Array1OfSurfaceBoundary & (StepGeom_HArray1OfSurfaceBoundary::*)() const) static_cast<const StepGeom_Array1OfSurfaceBoundary & (StepGeom_HArray1OfSurfaceBoundary::*)() const>(&StepGeom_HArray1OfSurfaceBoundary::Array1),
R"#(None)#" )
.def("ChangeArray1",
(StepGeom_Array1OfSurfaceBoundary & (StepGeom_HArray1OfSurfaceBoundary::*)() ) static_cast<StepGeom_Array1OfSurfaceBoundary & (StepGeom_HArray1OfSurfaceBoundary::*)() >(&StepGeom_HArray1OfSurfaceBoundary::ChangeArray1),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfSurfaceBoundary::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfSurfaceBoundary::*)() const>(&StepGeom_HArray1OfSurfaceBoundary::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray1OfSurfaceBoundary::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray1OfSurfaceBoundary::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray1OfTrimmingSelect ,opencascade::handle<StepGeom_HArray1OfTrimmingSelect> , StepGeom_Array1OfTrimmingSelect, Standard_Transient>>(m.attr("StepGeom_HArray1OfTrimmingSelect"))
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const StepGeom_TrimmingSelect & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const NCollection_Array1<StepGeom_TrimmingSelect> & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array1",
(const StepGeom_Array1OfTrimmingSelect & (StepGeom_HArray1OfTrimmingSelect::*)() const) static_cast<const StepGeom_Array1OfTrimmingSelect & (StepGeom_HArray1OfTrimmingSelect::*)() const>(&StepGeom_HArray1OfTrimmingSelect::Array1),
R"#(None)#" )
.def("ChangeArray1",
(StepGeom_Array1OfTrimmingSelect & (StepGeom_HArray1OfTrimmingSelect::*)() ) static_cast<StepGeom_Array1OfTrimmingSelect & (StepGeom_HArray1OfTrimmingSelect::*)() >(&StepGeom_HArray1OfTrimmingSelect::ChangeArray1),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfTrimmingSelect::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray1OfTrimmingSelect::*)() const>(&StepGeom_HArray1OfTrimmingSelect::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray1OfTrimmingSelect::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray1OfTrimmingSelect::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray2OfCartesianPoint ,opencascade::handle<StepGeom_HArray2OfCartesianPoint> , StepGeom_Array2OfCartesianPoint, Standard_Transient>>(m.attr("StepGeom_HArray2OfCartesianPoint"))
// constructors
.def(py::init< const Standard_Integer,const Standard_Integer,const Standard_Integer,const Standard_Integer >() , py::arg("theRowLow"), py::arg("theRowUpp"), py::arg("theColLow"), py::arg("theColUpp") )
.def(py::init< const Standard_Integer,const Standard_Integer,const Standard_Integer,const Standard_Integer, const opencascade::handle<StepGeom_CartesianPoint> & >() , py::arg("theRowLow"), py::arg("theRowUpp"), py::arg("theColLow"), py::arg("theColUpp"), py::arg("theValue") )
.def(py::init< const NCollection_Array2<opencascade::handle<StepGeom_CartesianPoint> > & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array2",
(const StepGeom_Array2OfCartesianPoint & (StepGeom_HArray2OfCartesianPoint::*)() const) static_cast<const StepGeom_Array2OfCartesianPoint & (StepGeom_HArray2OfCartesianPoint::*)() const>(&StepGeom_HArray2OfCartesianPoint::Array2),
R"#(None)#" )
.def("ChangeArray2",
(StepGeom_Array2OfCartesianPoint & (StepGeom_HArray2OfCartesianPoint::*)() ) static_cast<StepGeom_Array2OfCartesianPoint & (StepGeom_HArray2OfCartesianPoint::*)() >(&StepGeom_HArray2OfCartesianPoint::ChangeArray2),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray2OfCartesianPoint::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray2OfCartesianPoint::*)() const>(&StepGeom_HArray2OfCartesianPoint::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray2OfCartesianPoint::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray2OfCartesianPoint::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_HArray2OfSurfacePatch ,opencascade::handle<StepGeom_HArray2OfSurfacePatch> , StepGeom_Array2OfSurfacePatch, Standard_Transient>>(m.attr("StepGeom_HArray2OfSurfacePatch"))
// constructors
.def(py::init< const Standard_Integer,const Standard_Integer,const Standard_Integer,const Standard_Integer >() , py::arg("theRowLow"), py::arg("theRowUpp"), py::arg("theColLow"), py::arg("theColUpp") )
.def(py::init< const Standard_Integer,const Standard_Integer,const Standard_Integer,const Standard_Integer, const opencascade::handle<StepGeom_SurfacePatch> & >() , py::arg("theRowLow"), py::arg("theRowUpp"), py::arg("theColLow"), py::arg("theColUpp"), py::arg("theValue") )
.def(py::init< const NCollection_Array2<opencascade::handle<StepGeom_SurfacePatch> > & >() , py::arg("theOther") )
// custom constructors
// methods
.def("Array2",
(const StepGeom_Array2OfSurfacePatch & (StepGeom_HArray2OfSurfacePatch::*)() const) static_cast<const StepGeom_Array2OfSurfacePatch & (StepGeom_HArray2OfSurfacePatch::*)() const>(&StepGeom_HArray2OfSurfacePatch::Array2),
R"#(None)#" )
.def("ChangeArray2",
(StepGeom_Array2OfSurfacePatch & (StepGeom_HArray2OfSurfacePatch::*)() ) static_cast<StepGeom_Array2OfSurfacePatch & (StepGeom_HArray2OfSurfacePatch::*)() >(&StepGeom_HArray2OfSurfacePatch::ChangeArray2),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_HArray2OfSurfacePatch::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_HArray2OfSurfacePatch::*)() const>(&StepGeom_HArray2OfSurfacePatch::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_HArray2OfSurfacePatch::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_HArray2OfSurfacePatch::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_PcurveOrSurface , shared_ptr<StepGeom_PcurveOrSurface> , StepData_SelectType>>(m.attr("StepGeom_PcurveOrSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseNum",
(Standard_Integer (StepGeom_PcurveOrSurface::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Integer (StepGeom_PcurveOrSurface::*)( const opencascade::handle<Standard_Transient> & ) const>(&StepGeom_PcurveOrSurface::CaseNum),
R"#(Recognizes a PcurveOrSurface Kind Entity that is : 1 -> Pcurve 2 -> Surface 0 else)#" , py::arg("ent"))
.def("Pcurve",
(opencascade::handle<StepGeom_Pcurve> (StepGeom_PcurveOrSurface::*)() const) static_cast<opencascade::handle<StepGeom_Pcurve> (StepGeom_PcurveOrSurface::*)() const>(&StepGeom_PcurveOrSurface::Pcurve),
R"#(returns Value as a Pcurve (Null if another type))#" )
.def("Surface",
(opencascade::handle<StepGeom_Surface> (StepGeom_PcurveOrSurface::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_PcurveOrSurface::*)() const>(&StepGeom_PcurveOrSurface::Surface),
R"#(returns Value as a Surface (Null if another type))#" )
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SurfaceBoundary , shared_ptr<StepGeom_SurfaceBoundary> , StepData_SelectType>>(m.attr("StepGeom_SurfaceBoundary"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseNum",
(Standard_Integer (StepGeom_SurfaceBoundary::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Integer (StepGeom_SurfaceBoundary::*)( const opencascade::handle<Standard_Transient> & ) const>(&StepGeom_SurfaceBoundary::CaseNum),
R"#(Recognizes a kind of SurfaceBoundary select type 1 -> BoundaryCurve from StepGeom 2 -> DegeneratePcurve from StepGeom 0 else)#" , py::arg("ent"))
.def("BoundaryCurve",
(opencascade::handle<StepGeom_BoundaryCurve> (StepGeom_SurfaceBoundary::*)() const) static_cast<opencascade::handle<StepGeom_BoundaryCurve> (StepGeom_SurfaceBoundary::*)() const>(&StepGeom_SurfaceBoundary::BoundaryCurve),
R"#(Returns Value as BoundaryCurve (or Null if another type))#" )
.def("DegeneratePcurve",
(opencascade::handle<StepGeom_DegeneratePcurve> (StepGeom_SurfaceBoundary::*)() const) static_cast<opencascade::handle<StepGeom_DegeneratePcurve> (StepGeom_SurfaceBoundary::*)() const>(&StepGeom_SurfaceBoundary::DegeneratePcurve),
R"#(Returns Value as DegeneratePcurve (or Null if another type))#" )
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SurfacePatch ,opencascade::handle<StepGeom_SurfacePatch> , Standard_Transient>>(m.attr("StepGeom_SurfacePatch"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_SurfacePatch::*)( const opencascade::handle<StepGeom_BoundedSurface> & , const StepGeom_TransitionCode , const StepGeom_TransitionCode , const Standard_Boolean , const Standard_Boolean ) ) static_cast<void (StepGeom_SurfacePatch::*)( const opencascade::handle<StepGeom_BoundedSurface> & , const StepGeom_TransitionCode , const StepGeom_TransitionCode , const Standard_Boolean , const Standard_Boolean ) >(&StepGeom_SurfacePatch::Init),
R"#(None)#" , py::arg("aParentSurface"), py::arg("aUTransition"), py::arg("aVTransition"), py::arg("aUSense"), py::arg("aVSense"))
.def("SetParentSurface",
(void (StepGeom_SurfacePatch::*)( const opencascade::handle<StepGeom_BoundedSurface> & ) ) static_cast<void (StepGeom_SurfacePatch::*)( const opencascade::handle<StepGeom_BoundedSurface> & ) >(&StepGeom_SurfacePatch::SetParentSurface),
R"#(None)#" , py::arg("aParentSurface"))
.def("ParentSurface",
(opencascade::handle<StepGeom_BoundedSurface> (StepGeom_SurfacePatch::*)() const) static_cast<opencascade::handle<StepGeom_BoundedSurface> (StepGeom_SurfacePatch::*)() const>(&StepGeom_SurfacePatch::ParentSurface),
R"#(None)#" )
.def("SetUTransition",
(void (StepGeom_SurfacePatch::*)( const StepGeom_TransitionCode ) ) static_cast<void (StepGeom_SurfacePatch::*)( const StepGeom_TransitionCode ) >(&StepGeom_SurfacePatch::SetUTransition),
R"#(None)#" , py::arg("aUTransition"))
.def("UTransition",
(StepGeom_TransitionCode (StepGeom_SurfacePatch::*)() const) static_cast<StepGeom_TransitionCode (StepGeom_SurfacePatch::*)() const>(&StepGeom_SurfacePatch::UTransition),
R"#(None)#" )
.def("SetVTransition",
(void (StepGeom_SurfacePatch::*)( const StepGeom_TransitionCode ) ) static_cast<void (StepGeom_SurfacePatch::*)( const StepGeom_TransitionCode ) >(&StepGeom_SurfacePatch::SetVTransition),
R"#(None)#" , py::arg("aVTransition"))
.def("VTransition",
(StepGeom_TransitionCode (StepGeom_SurfacePatch::*)() const) static_cast<StepGeom_TransitionCode (StepGeom_SurfacePatch::*)() const>(&StepGeom_SurfacePatch::VTransition),
R"#(None)#" )
.def("SetUSense",
(void (StepGeom_SurfacePatch::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_SurfacePatch::*)( const Standard_Boolean ) >(&StepGeom_SurfacePatch::SetUSense),
R"#(None)#" , py::arg("aUSense"))
.def("USense",
(Standard_Boolean (StepGeom_SurfacePatch::*)() const) static_cast<Standard_Boolean (StepGeom_SurfacePatch::*)() const>(&StepGeom_SurfacePatch::USense),
R"#(None)#" )
.def("SetVSense",
(void (StepGeom_SurfacePatch::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_SurfacePatch::*)( const Standard_Boolean ) >(&StepGeom_SurfacePatch::SetVSense),
R"#(None)#" , py::arg("aVSense"))
.def("VSense",
(Standard_Boolean (StepGeom_SurfacePatch::*)() const) static_cast<Standard_Boolean (StepGeom_SurfacePatch::*)() const>(&StepGeom_SurfacePatch::VSense),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SurfacePatch::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SurfacePatch::*)() const>(&StepGeom_SurfacePatch::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SurfacePatch::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SurfacePatch::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_TrimmingMember ,opencascade::handle<StepGeom_TrimmingMember> , StepData_SelectReal>>(m.attr("StepGeom_TrimmingMember"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("HasName",
(Standard_Boolean (StepGeom_TrimmingMember::*)() const) static_cast<Standard_Boolean (StepGeom_TrimmingMember::*)() const>(&StepGeom_TrimmingMember::HasName),
R"#(None)#" )
.def("Name",
(Standard_CString (StepGeom_TrimmingMember::*)() const) static_cast<Standard_CString (StepGeom_TrimmingMember::*)() const>(&StepGeom_TrimmingMember::Name),
R"#(None)#" )
.def("SetName",
(Standard_Boolean (StepGeom_TrimmingMember::*)( const Standard_CString ) ) static_cast<Standard_Boolean (StepGeom_TrimmingMember::*)( const Standard_CString ) >(&StepGeom_TrimmingMember::SetName),
R"#(None)#" , py::arg("name"))
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_TrimmingMember::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_TrimmingMember::*)() const>(&StepGeom_TrimmingMember::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_TrimmingMember::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_TrimmingMember::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_TrimmingSelect , shared_ptr<StepGeom_TrimmingSelect> , StepData_SelectType>>(m.attr("StepGeom_TrimmingSelect"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseNum",
(Standard_Integer (StepGeom_TrimmingSelect::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Integer (StepGeom_TrimmingSelect::*)( const opencascade::handle<Standard_Transient> & ) const>(&StepGeom_TrimmingSelect::CaseNum),
R"#(Recognizes a TrimmingSelect Kind Entity that is : 1 -> CartesianPoint 0 else (i.e. Real))#" , py::arg("ent"))
.def("NewMember",
(opencascade::handle<StepData_SelectMember> (StepGeom_TrimmingSelect::*)() const) static_cast<opencascade::handle<StepData_SelectMember> (StepGeom_TrimmingSelect::*)() const>(&StepGeom_TrimmingSelect::NewMember),
R"#(Returns a TrimmingMember (for PARAMETER_VALUE) as preferred)#" )
.def("CaseMem",
(Standard_Integer (StepGeom_TrimmingSelect::*)( const opencascade::handle<StepData_SelectMember> & ) const) static_cast<Standard_Integer (StepGeom_TrimmingSelect::*)( const opencascade::handle<StepData_SelectMember> & ) const>(&StepGeom_TrimmingSelect::CaseMem),
R"#(Recognizes a SelectMember as Real, named as PARAMETER_VALUE 1 -> ParameterValue i.e. Real 0 else (i.e. Entity))#" , py::arg("ent"))
.def("CartesianPoint",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_TrimmingSelect::*)() const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_TrimmingSelect::*)() const>(&StepGeom_TrimmingSelect::CartesianPoint),
R"#(returns Value as a CartesianPoint (Null if another type))#" )
.def("SetParameterValue",
(void (StepGeom_TrimmingSelect::*)( const Standard_Real ) ) static_cast<void (StepGeom_TrimmingSelect::*)( const Standard_Real ) >(&StepGeom_TrimmingSelect::SetParameterValue),
R"#(sets the ParameterValue as Real)#" , py::arg("aParameterValue"))
.def("ParameterValue",
(Standard_Real (StepGeom_TrimmingSelect::*)() const) static_cast<Standard_Real (StepGeom_TrimmingSelect::*)() const>(&StepGeom_TrimmingSelect::ParameterValue),
R"#(returns Value as a Real (0.0 if not a Real))#" )
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_VectorOrDirection , shared_ptr<StepGeom_VectorOrDirection> , StepData_SelectType>>(m.attr("StepGeom_VectorOrDirection"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseNum",
(Standard_Integer (StepGeom_VectorOrDirection::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Integer (StepGeom_VectorOrDirection::*)( const opencascade::handle<Standard_Transient> & ) const>(&StepGeom_VectorOrDirection::CaseNum),
R"#(Recognizes a VectorOrDirection Kind Entity that is : 1 -> Vector 2 -> Direction 0 else)#" , py::arg("ent"))
.def("Vector",
(opencascade::handle<StepGeom_Vector> (StepGeom_VectorOrDirection::*)() const) static_cast<opencascade::handle<StepGeom_Vector> (StepGeom_VectorOrDirection::*)() const>(&StepGeom_VectorOrDirection::Vector),
R"#(returns Value as a Vector (Null if another type))#" )
.def("Direction",
(opencascade::handle<StepGeom_Direction> (StepGeom_VectorOrDirection::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_VectorOrDirection::*)() const>(&StepGeom_VectorOrDirection::Direction),
R"#(returns Value as a Direction (Null if another type))#" )
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CartesianTransformationOperator ,opencascade::handle<StepGeom_CartesianTransformationOperator> , StepGeom_GeometricRepresentationItem>>(m.attr("StepGeom_CartesianTransformationOperator"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const Standard_Real ) ) static_cast<void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const Standard_Real ) >(&StepGeom_CartesianTransformationOperator::Init),
R"#(None)#" , py::arg("aName"), py::arg("hasAaxis1"), py::arg("aAxis1"), py::arg("hasAaxis2"), py::arg("aAxis2"), py::arg("aLocalOrigin"), py::arg("hasAscale"), py::arg("aScale"))
.def("SetAxis1",
(void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_CartesianTransformationOperator::SetAxis1),
R"#(None)#" , py::arg("aAxis1"))
.def("UnSetAxis1",
(void (StepGeom_CartesianTransformationOperator::*)() ) static_cast<void (StepGeom_CartesianTransformationOperator::*)() >(&StepGeom_CartesianTransformationOperator::UnSetAxis1),
R"#(None)#" )
.def("Axis1",
(opencascade::handle<StepGeom_Direction> (StepGeom_CartesianTransformationOperator::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::Axis1),
R"#(None)#" )
.def("HasAxis1",
(Standard_Boolean (StepGeom_CartesianTransformationOperator::*)() const) static_cast<Standard_Boolean (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::HasAxis1),
R"#(None)#" )
.def("SetAxis2",
(void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_CartesianTransformationOperator::SetAxis2),
R"#(None)#" , py::arg("aAxis2"))
.def("UnSetAxis2",
(void (StepGeom_CartesianTransformationOperator::*)() ) static_cast<void (StepGeom_CartesianTransformationOperator::*)() >(&StepGeom_CartesianTransformationOperator::UnSetAxis2),
R"#(None)#" )
.def("Axis2",
(opencascade::handle<StepGeom_Direction> (StepGeom_CartesianTransformationOperator::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::Axis2),
R"#(None)#" )
.def("HasAxis2",
(Standard_Boolean (StepGeom_CartesianTransformationOperator::*)() const) static_cast<Standard_Boolean (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::HasAxis2),
R"#(None)#" )
.def("SetLocalOrigin",
(void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<void (StepGeom_CartesianTransformationOperator::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepGeom_CartesianTransformationOperator::SetLocalOrigin),
R"#(None)#" , py::arg("aLocalOrigin"))
.def("LocalOrigin",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_CartesianTransformationOperator::*)() const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::LocalOrigin),
R"#(None)#" )
.def("SetScale",
(void (StepGeom_CartesianTransformationOperator::*)( const Standard_Real ) ) static_cast<void (StepGeom_CartesianTransformationOperator::*)( const Standard_Real ) >(&StepGeom_CartesianTransformationOperator::SetScale),
R"#(None)#" , py::arg("aScale"))
.def("UnSetScale",
(void (StepGeom_CartesianTransformationOperator::*)() ) static_cast<void (StepGeom_CartesianTransformationOperator::*)() >(&StepGeom_CartesianTransformationOperator::UnSetScale),
R"#(None)#" )
.def("Scale",
(Standard_Real (StepGeom_CartesianTransformationOperator::*)() const) static_cast<Standard_Real (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::Scale),
R"#(None)#" )
.def("HasScale",
(Standard_Boolean (StepGeom_CartesianTransformationOperator::*)() const) static_cast<Standard_Boolean (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::HasScale),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CartesianTransformationOperator::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CartesianTransformationOperator::*)() const>(&StepGeom_CartesianTransformationOperator::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CartesianTransformationOperator::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CartesianTransformationOperator::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Curve ,opencascade::handle<StepGeom_Curve> , StepGeom_GeometricRepresentationItem>>(m.attr("StepGeom_Curve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Curve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Curve::*)() const>(&StepGeom_Curve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Curve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Curve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Direction ,opencascade::handle<StepGeom_Direction> , StepGeom_GeometricRepresentationItem>>(m.attr("StepGeom_Direction"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Direction::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_Direction::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_Direction::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDirectionRatios"))
.def("SetDirectionRatios",
(void (StepGeom_Direction::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_Direction::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_Direction::SetDirectionRatios),
R"#(None)#" , py::arg("aDirectionRatios"))
.def("DirectionRatios",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_Direction::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_Direction::*)() const>(&StepGeom_Direction::DirectionRatios),
R"#(None)#" )
.def("DirectionRatiosValue",
(Standard_Real (StepGeom_Direction::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_Direction::*)( const Standard_Integer ) const>(&StepGeom_Direction::DirectionRatiosValue),
R"#(None)#" , py::arg("num"))
.def("NbDirectionRatios",
(Standard_Integer (StepGeom_Direction::*)() const) static_cast<Standard_Integer (StepGeom_Direction::*)() const>(&StepGeom_Direction::NbDirectionRatios),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Direction::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Direction::*)() const>(&StepGeom_Direction::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Direction::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Direction::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Placement ,opencascade::handle<StepGeom_Placement> , StepGeom_GeometricRepresentationItem>>(m.attr("StepGeom_Placement"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Placement::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<void (StepGeom_Placement::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepGeom_Placement::Init),
R"#(None)#" , py::arg("aName"), py::arg("aLocation"))
.def("SetLocation",
(void (StepGeom_Placement::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<void (StepGeom_Placement::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepGeom_Placement::SetLocation),
R"#(None)#" , py::arg("aLocation"))
.def("Location",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_Placement::*)() const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_Placement::*)() const>(&StepGeom_Placement::Location),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Placement::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Placement::*)() const>(&StepGeom_Placement::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Placement::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Placement::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Point ,opencascade::handle<StepGeom_Point> , StepGeom_GeometricRepresentationItem>>(m.attr("StepGeom_Point"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Point::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Point::*)() const>(&StepGeom_Point::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Point::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Point::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_ReparametrisedCompositeCurveSegment ,opencascade::handle<StepGeom_ReparametrisedCompositeCurveSegment> , StepGeom_CompositeCurveSegment>>(m.attr("StepGeom_ReparametrisedCompositeCurveSegment"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_ReparametrisedCompositeCurveSegment::*)( const StepGeom_TransitionCode , const Standard_Boolean , const opencascade::handle<StepGeom_Curve> & , const Standard_Real ) ) static_cast<void (StepGeom_ReparametrisedCompositeCurveSegment::*)( const StepGeom_TransitionCode , const Standard_Boolean , const opencascade::handle<StepGeom_Curve> & , const Standard_Real ) >(&StepGeom_ReparametrisedCompositeCurveSegment::Init),
R"#(None)#" , py::arg("aTransition"), py::arg("aSameSense"), py::arg("aParentCurve"), py::arg("aParamLength"))
.def("SetParamLength",
(void (StepGeom_ReparametrisedCompositeCurveSegment::*)( const Standard_Real ) ) static_cast<void (StepGeom_ReparametrisedCompositeCurveSegment::*)( const Standard_Real ) >(&StepGeom_ReparametrisedCompositeCurveSegment::SetParamLength),
R"#(None)#" , py::arg("aParamLength"))
.def("ParamLength",
(Standard_Real (StepGeom_ReparametrisedCompositeCurveSegment::*)() const) static_cast<Standard_Real (StepGeom_ReparametrisedCompositeCurveSegment::*)() const>(&StepGeom_ReparametrisedCompositeCurveSegment::ParamLength),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_ReparametrisedCompositeCurveSegment::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_ReparametrisedCompositeCurveSegment::*)() const>(&StepGeom_ReparametrisedCompositeCurveSegment::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_ReparametrisedCompositeCurveSegment::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_ReparametrisedCompositeCurveSegment::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Surface ,opencascade::handle<StepGeom_Surface> , StepGeom_GeometricRepresentationItem>>(m.attr("StepGeom_Surface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Surface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Surface::*)() const>(&StepGeom_Surface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Surface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Surface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Vector ,opencascade::handle<StepGeom_Vector> , StepGeom_GeometricRepresentationItem>>(m.attr("StepGeom_Vector"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Vector::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Direction> & , const Standard_Real ) ) static_cast<void (StepGeom_Vector::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Direction> & , const Standard_Real ) >(&StepGeom_Vector::Init),
R"#(None)#" , py::arg("aName"), py::arg("aOrientation"), py::arg("aMagnitude"))
.def("SetOrientation",
(void (StepGeom_Vector::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Vector::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Vector::SetOrientation),
R"#(None)#" , py::arg("aOrientation"))
.def("Orientation",
(opencascade::handle<StepGeom_Direction> (StepGeom_Vector::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_Vector::*)() const>(&StepGeom_Vector::Orientation),
R"#(None)#" )
.def("SetMagnitude",
(void (StepGeom_Vector::*)( const Standard_Real ) ) static_cast<void (StepGeom_Vector::*)( const Standard_Real ) >(&StepGeom_Vector::SetMagnitude),
R"#(None)#" , py::arg("aMagnitude"))
.def("Magnitude",
(Standard_Real (StepGeom_Vector::*)() const) static_cast<Standard_Real (StepGeom_Vector::*)() const>(&StepGeom_Vector::Magnitude),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Vector::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Vector::*)() const>(&StepGeom_Vector::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Vector::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Vector::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Axis1Placement ,opencascade::handle<StepGeom_Axis1Placement> , StepGeom_Placement>>(m.attr("StepGeom_Axis1Placement"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Axis1Placement::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Axis1Placement::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Axis1Placement::Init),
R"#(None)#" , py::arg("aName"), py::arg("aLocation"), py::arg("hasAaxis"), py::arg("aAxis"))
.def("SetAxis",
(void (StepGeom_Axis1Placement::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Axis1Placement::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Axis1Placement::SetAxis),
R"#(None)#" , py::arg("aAxis"))
.def("UnSetAxis",
(void (StepGeom_Axis1Placement::*)() ) static_cast<void (StepGeom_Axis1Placement::*)() >(&StepGeom_Axis1Placement::UnSetAxis),
R"#(None)#" )
.def("Axis",
(opencascade::handle<StepGeom_Direction> (StepGeom_Axis1Placement::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_Axis1Placement::*)() const>(&StepGeom_Axis1Placement::Axis),
R"#(None)#" )
.def("HasAxis",
(Standard_Boolean (StepGeom_Axis1Placement::*)() const) static_cast<Standard_Boolean (StepGeom_Axis1Placement::*)() const>(&StepGeom_Axis1Placement::HasAxis),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Axis1Placement::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Axis1Placement::*)() const>(&StepGeom_Axis1Placement::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Axis1Placement::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Axis1Placement::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Axis2Placement2d ,opencascade::handle<StepGeom_Axis2Placement2d> , StepGeom_Placement>>(m.attr("StepGeom_Axis2Placement2d"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Axis2Placement2d::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Axis2Placement2d::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Axis2Placement2d::Init),
R"#(None)#" , py::arg("aName"), py::arg("aLocation"), py::arg("hasArefDirection"), py::arg("aRefDirection"))
.def("SetRefDirection",
(void (StepGeom_Axis2Placement2d::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Axis2Placement2d::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Axis2Placement2d::SetRefDirection),
R"#(None)#" , py::arg("aRefDirection"))
.def("UnSetRefDirection",
(void (StepGeom_Axis2Placement2d::*)() ) static_cast<void (StepGeom_Axis2Placement2d::*)() >(&StepGeom_Axis2Placement2d::UnSetRefDirection),
R"#(None)#" )
.def("RefDirection",
(opencascade::handle<StepGeom_Direction> (StepGeom_Axis2Placement2d::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_Axis2Placement2d::*)() const>(&StepGeom_Axis2Placement2d::RefDirection),
R"#(None)#" )
.def("HasRefDirection",
(Standard_Boolean (StepGeom_Axis2Placement2d::*)() const) static_cast<Standard_Boolean (StepGeom_Axis2Placement2d::*)() const>(&StepGeom_Axis2Placement2d::HasRefDirection),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Axis2Placement2d::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Axis2Placement2d::*)() const>(&StepGeom_Axis2Placement2d::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Axis2Placement2d::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Axis2Placement2d::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Axis2Placement3d ,opencascade::handle<StepGeom_Axis2Placement3d> , StepGeom_Placement>>(m.attr("StepGeom_Axis2Placement3d"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Axis2Placement3d::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Axis2Placement3d::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Axis2Placement3d::Init),
R"#(None)#" , py::arg("aName"), py::arg("aLocation"), py::arg("hasAaxis"), py::arg("aAxis"), py::arg("hasArefDirection"), py::arg("aRefDirection"))
.def("SetAxis",
(void (StepGeom_Axis2Placement3d::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Axis2Placement3d::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Axis2Placement3d::SetAxis),
R"#(None)#" , py::arg("aAxis"))
.def("UnSetAxis",
(void (StepGeom_Axis2Placement3d::*)() ) static_cast<void (StepGeom_Axis2Placement3d::*)() >(&StepGeom_Axis2Placement3d::UnSetAxis),
R"#(None)#" )
.def("Axis",
(opencascade::handle<StepGeom_Direction> (StepGeom_Axis2Placement3d::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_Axis2Placement3d::*)() const>(&StepGeom_Axis2Placement3d::Axis),
R"#(None)#" )
.def("HasAxis",
(Standard_Boolean (StepGeom_Axis2Placement3d::*)() const) static_cast<Standard_Boolean (StepGeom_Axis2Placement3d::*)() const>(&StepGeom_Axis2Placement3d::HasAxis),
R"#(None)#" )
.def("SetRefDirection",
(void (StepGeom_Axis2Placement3d::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_Axis2Placement3d::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_Axis2Placement3d::SetRefDirection),
R"#(None)#" , py::arg("aRefDirection"))
.def("UnSetRefDirection",
(void (StepGeom_Axis2Placement3d::*)() ) static_cast<void (StepGeom_Axis2Placement3d::*)() >(&StepGeom_Axis2Placement3d::UnSetRefDirection),
R"#(None)#" )
.def("RefDirection",
(opencascade::handle<StepGeom_Direction> (StepGeom_Axis2Placement3d::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_Axis2Placement3d::*)() const>(&StepGeom_Axis2Placement3d::RefDirection),
R"#(None)#" )
.def("HasRefDirection",
(Standard_Boolean (StepGeom_Axis2Placement3d::*)() const) static_cast<Standard_Boolean (StepGeom_Axis2Placement3d::*)() const>(&StepGeom_Axis2Placement3d::HasRefDirection),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Axis2Placement3d::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Axis2Placement3d::*)() const>(&StepGeom_Axis2Placement3d::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Axis2Placement3d::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Axis2Placement3d::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BoundedCurve ,opencascade::handle<StepGeom_BoundedCurve> , StepGeom_Curve>>(m.attr("StepGeom_BoundedCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BoundedCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BoundedCurve::*)() const>(&StepGeom_BoundedCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BoundedCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BoundedCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BoundedSurface ,opencascade::handle<StepGeom_BoundedSurface> , StepGeom_Surface>>(m.attr("StepGeom_BoundedSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BoundedSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BoundedSurface::*)() const>(&StepGeom_BoundedSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BoundedSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BoundedSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CartesianPoint ,opencascade::handle<StepGeom_CartesianPoint> , StepGeom_Point>>(m.attr("StepGeom_CartesianPoint"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CartesianPoint::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_CartesianPoint::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_CartesianPoint::Init),
R"#(None)#" , py::arg("aName"), py::arg("aCoordinates"))
.def("Init2D",
(void (StepGeom_CartesianPoint::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Real , const Standard_Real ) ) static_cast<void (StepGeom_CartesianPoint::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Real , const Standard_Real ) >(&StepGeom_CartesianPoint::Init2D),
R"#(None)#" , py::arg("aName"), py::arg("X"), py::arg("Y"))
.def("Init3D",
(void (StepGeom_CartesianPoint::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Real , const Standard_Real , const Standard_Real ) ) static_cast<void (StepGeom_CartesianPoint::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Real , const Standard_Real , const Standard_Real ) >(&StepGeom_CartesianPoint::Init3D),
R"#(None)#" , py::arg("aName"), py::arg("X"), py::arg("Y"), py::arg("Z"))
.def("SetCoordinates",
(void (StepGeom_CartesianPoint::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_CartesianPoint::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_CartesianPoint::SetCoordinates),
R"#(None)#" , py::arg("aCoordinates"))
.def("Coordinates",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_CartesianPoint::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_CartesianPoint::*)() const>(&StepGeom_CartesianPoint::Coordinates),
R"#(None)#" )
.def("CoordinatesValue",
(Standard_Real (StepGeom_CartesianPoint::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_CartesianPoint::*)( const Standard_Integer ) const>(&StepGeom_CartesianPoint::CoordinatesValue),
R"#(None)#" , py::arg("num"))
.def("NbCoordinates",
(Standard_Integer (StepGeom_CartesianPoint::*)() const) static_cast<Standard_Integer (StepGeom_CartesianPoint::*)() const>(&StepGeom_CartesianPoint::NbCoordinates),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CartesianPoint::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CartesianPoint::*)() const>(&StepGeom_CartesianPoint::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CartesianPoint::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CartesianPoint::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CartesianTransformationOperator2d ,opencascade::handle<StepGeom_CartesianTransformationOperator2d> , StepGeom_CartesianTransformationOperator>>(m.attr("StepGeom_CartesianTransformationOperator2d"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CartesianTransformationOperator2d::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CartesianTransformationOperator2d::*)() const>(&StepGeom_CartesianTransformationOperator2d::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CartesianTransformationOperator2d::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CartesianTransformationOperator2d::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CartesianTransformationOperator3d ,opencascade::handle<StepGeom_CartesianTransformationOperator3d> , StepGeom_CartesianTransformationOperator>>(m.attr("StepGeom_CartesianTransformationOperator3d"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CartesianTransformationOperator3d::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const Standard_Real , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_CartesianTransformationOperator3d::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & , const opencascade::handle<StepGeom_CartesianPoint> & , const Standard_Boolean , const Standard_Real , const Standard_Boolean , const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_CartesianTransformationOperator3d::Init),
R"#(None)#" , py::arg("aName"), py::arg("hasAaxis1"), py::arg("aAxis1"), py::arg("hasAaxis2"), py::arg("aAxis2"), py::arg("aLocalOrigin"), py::arg("hasAscale"), py::arg("aScale"), py::arg("hasAaxis3"), py::arg("aAxis3"))
.def("SetAxis3",
(void (StepGeom_CartesianTransformationOperator3d::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_CartesianTransformationOperator3d::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_CartesianTransformationOperator3d::SetAxis3),
R"#(None)#" , py::arg("aAxis3"))
.def("UnSetAxis3",
(void (StepGeom_CartesianTransformationOperator3d::*)() ) static_cast<void (StepGeom_CartesianTransformationOperator3d::*)() >(&StepGeom_CartesianTransformationOperator3d::UnSetAxis3),
R"#(None)#" )
.def("Axis3",
(opencascade::handle<StepGeom_Direction> (StepGeom_CartesianTransformationOperator3d::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_CartesianTransformationOperator3d::*)() const>(&StepGeom_CartesianTransformationOperator3d::Axis3),
R"#(None)#" )
.def("HasAxis3",
(Standard_Boolean (StepGeom_CartesianTransformationOperator3d::*)() const) static_cast<Standard_Boolean (StepGeom_CartesianTransformationOperator3d::*)() const>(&StepGeom_CartesianTransformationOperator3d::HasAxis3),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CartesianTransformationOperator3d::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CartesianTransformationOperator3d::*)() const>(&StepGeom_CartesianTransformationOperator3d::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CartesianTransformationOperator3d::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CartesianTransformationOperator3d::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Conic ,opencascade::handle<StepGeom_Conic> , StepGeom_Curve>>(m.attr("StepGeom_Conic"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Conic::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & ) ) static_cast<void (StepGeom_Conic::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & ) >(&StepGeom_Conic::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"))
.def("SetPosition",
(void (StepGeom_Conic::*)( const StepGeom_Axis2Placement & ) ) static_cast<void (StepGeom_Conic::*)( const StepGeom_Axis2Placement & ) >(&StepGeom_Conic::SetPosition),
R"#(None)#" , py::arg("aPosition"))
.def("Position",
(StepGeom_Axis2Placement (StepGeom_Conic::*)() const) static_cast<StepGeom_Axis2Placement (StepGeom_Conic::*)() const>(&StepGeom_Conic::Position),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Conic::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Conic::*)() const>(&StepGeom_Conic::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Conic::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Conic::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CurveReplica ,opencascade::handle<StepGeom_CurveReplica> , StepGeom_Curve>>(m.attr("StepGeom_CurveReplica"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CurveReplica::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) ) static_cast<void (StepGeom_CurveReplica::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) >(&StepGeom_CurveReplica::Init),
R"#(None)#" , py::arg("aName"), py::arg("aParentCurve"), py::arg("aTransformation"))
.def("SetParentCurve",
(void (StepGeom_CurveReplica::*)( const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_CurveReplica::*)( const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_CurveReplica::SetParentCurve),
R"#(None)#" , py::arg("aParentCurve"))
.def("ParentCurve",
(opencascade::handle<StepGeom_Curve> (StepGeom_CurveReplica::*)() const) static_cast<opencascade::handle<StepGeom_Curve> (StepGeom_CurveReplica::*)() const>(&StepGeom_CurveReplica::ParentCurve),
R"#(None)#" )
.def("SetTransformation",
(void (StepGeom_CurveReplica::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) ) static_cast<void (StepGeom_CurveReplica::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) >(&StepGeom_CurveReplica::SetTransformation),
R"#(None)#" , py::arg("aTransformation"))
.def("Transformation",
(opencascade::handle<StepGeom_CartesianTransformationOperator> (StepGeom_CurveReplica::*)() const) static_cast<opencascade::handle<StepGeom_CartesianTransformationOperator> (StepGeom_CurveReplica::*)() const>(&StepGeom_CurveReplica::Transformation),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CurveReplica::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CurveReplica::*)() const>(&StepGeom_CurveReplica::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CurveReplica::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CurveReplica::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_DegeneratePcurve ,opencascade::handle<StepGeom_DegeneratePcurve> , StepGeom_Point>>(m.attr("StepGeom_DegeneratePcurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_DegeneratePcurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) ) static_cast<void (StepGeom_DegeneratePcurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) >(&StepGeom_DegeneratePcurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisSurface"), py::arg("aReferenceToCurve"))
.def("SetBasisSurface",
(void (StepGeom_DegeneratePcurve::*)( const opencascade::handle<StepGeom_Surface> & ) ) static_cast<void (StepGeom_DegeneratePcurve::*)( const opencascade::handle<StepGeom_Surface> & ) >(&StepGeom_DegeneratePcurve::SetBasisSurface),
R"#(None)#" , py::arg("aBasisSurface"))
.def("BasisSurface",
(opencascade::handle<StepGeom_Surface> (StepGeom_DegeneratePcurve::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_DegeneratePcurve::*)() const>(&StepGeom_DegeneratePcurve::BasisSurface),
R"#(None)#" )
.def("SetReferenceToCurve",
(void (StepGeom_DegeneratePcurve::*)( const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) ) static_cast<void (StepGeom_DegeneratePcurve::*)( const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) >(&StepGeom_DegeneratePcurve::SetReferenceToCurve),
R"#(None)#" , py::arg("aReferenceToCurve"))
.def("ReferenceToCurve",
(opencascade::handle<StepRepr_DefinitionalRepresentation> (StepGeom_DegeneratePcurve::*)() const) static_cast<opencascade::handle<StepRepr_DefinitionalRepresentation> (StepGeom_DegeneratePcurve::*)() const>(&StepGeom_DegeneratePcurve::ReferenceToCurve),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_DegeneratePcurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_DegeneratePcurve::*)() const>(&StepGeom_DegeneratePcurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_DegeneratePcurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_DegeneratePcurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_ElementarySurface ,opencascade::handle<StepGeom_ElementarySurface> , StepGeom_Surface>>(m.attr("StepGeom_ElementarySurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_ElementarySurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & ) ) static_cast<void (StepGeom_ElementarySurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & ) >(&StepGeom_ElementarySurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"))
.def("SetPosition",
(void (StepGeom_ElementarySurface::*)( const opencascade::handle<StepGeom_Axis2Placement3d> & ) ) static_cast<void (StepGeom_ElementarySurface::*)( const opencascade::handle<StepGeom_Axis2Placement3d> & ) >(&StepGeom_ElementarySurface::SetPosition),
R"#(None)#" , py::arg("aPosition"))
.def("Position",
(opencascade::handle<StepGeom_Axis2Placement3d> (StepGeom_ElementarySurface::*)() const) static_cast<opencascade::handle<StepGeom_Axis2Placement3d> (StepGeom_ElementarySurface::*)() const>(&StepGeom_ElementarySurface::Position),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_ElementarySurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_ElementarySurface::*)() const>(&StepGeom_ElementarySurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_ElementarySurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_ElementarySurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Line ,opencascade::handle<StepGeom_Line> , StepGeom_Curve>>(m.attr("StepGeom_Line"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Line::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const opencascade::handle<StepGeom_Vector> & ) ) static_cast<void (StepGeom_Line::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_CartesianPoint> & , const opencascade::handle<StepGeom_Vector> & ) >(&StepGeom_Line::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPnt"), py::arg("aDir"))
.def("SetPnt",
(void (StepGeom_Line::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<void (StepGeom_Line::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepGeom_Line::SetPnt),
R"#(None)#" , py::arg("aPnt"))
.def("Pnt",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_Line::*)() const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_Line::*)() const>(&StepGeom_Line::Pnt),
R"#(None)#" )
.def("SetDir",
(void (StepGeom_Line::*)( const opencascade::handle<StepGeom_Vector> & ) ) static_cast<void (StepGeom_Line::*)( const opencascade::handle<StepGeom_Vector> & ) >(&StepGeom_Line::SetDir),
R"#(None)#" , py::arg("aDir"))
.def("Dir",
(opencascade::handle<StepGeom_Vector> (StepGeom_Line::*)() const) static_cast<opencascade::handle<StepGeom_Vector> (StepGeom_Line::*)() const>(&StepGeom_Line::Dir),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Line::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Line::*)() const>(&StepGeom_Line::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Line::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Line::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_OffsetCurve3d ,opencascade::handle<StepGeom_OffsetCurve3d> , StepGeom_Curve>>(m.attr("StepGeom_OffsetCurve3d"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_OffsetCurve3d::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const Standard_Real , const StepData_Logical , const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_OffsetCurve3d::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const Standard_Real , const StepData_Logical , const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_OffsetCurve3d::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisCurve"), py::arg("aDistance"), py::arg("aSelfIntersect"), py::arg("aRefDirection"))
.def("SetBasisCurve",
(void (StepGeom_OffsetCurve3d::*)( const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_OffsetCurve3d::*)( const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_OffsetCurve3d::SetBasisCurve),
R"#(None)#" , py::arg("aBasisCurve"))
.def("BasisCurve",
(opencascade::handle<StepGeom_Curve> (StepGeom_OffsetCurve3d::*)() const) static_cast<opencascade::handle<StepGeom_Curve> (StepGeom_OffsetCurve3d::*)() const>(&StepGeom_OffsetCurve3d::BasisCurve),
R"#(None)#" )
.def("SetDistance",
(void (StepGeom_OffsetCurve3d::*)( const Standard_Real ) ) static_cast<void (StepGeom_OffsetCurve3d::*)( const Standard_Real ) >(&StepGeom_OffsetCurve3d::SetDistance),
R"#(None)#" , py::arg("aDistance"))
.def("Distance",
(Standard_Real (StepGeom_OffsetCurve3d::*)() const) static_cast<Standard_Real (StepGeom_OffsetCurve3d::*)() const>(&StepGeom_OffsetCurve3d::Distance),
R"#(None)#" )
.def("SetSelfIntersect",
(void (StepGeom_OffsetCurve3d::*)( const StepData_Logical ) ) static_cast<void (StepGeom_OffsetCurve3d::*)( const StepData_Logical ) >(&StepGeom_OffsetCurve3d::SetSelfIntersect),
R"#(None)#" , py::arg("aSelfIntersect"))
.def("SelfIntersect",
(StepData_Logical (StepGeom_OffsetCurve3d::*)() const) static_cast<StepData_Logical (StepGeom_OffsetCurve3d::*)() const>(&StepGeom_OffsetCurve3d::SelfIntersect),
R"#(None)#" )
.def("SetRefDirection",
(void (StepGeom_OffsetCurve3d::*)( const opencascade::handle<StepGeom_Direction> & ) ) static_cast<void (StepGeom_OffsetCurve3d::*)( const opencascade::handle<StepGeom_Direction> & ) >(&StepGeom_OffsetCurve3d::SetRefDirection),
R"#(None)#" , py::arg("aRefDirection"))
.def("RefDirection",
(opencascade::handle<StepGeom_Direction> (StepGeom_OffsetCurve3d::*)() const) static_cast<opencascade::handle<StepGeom_Direction> (StepGeom_OffsetCurve3d::*)() const>(&StepGeom_OffsetCurve3d::RefDirection),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_OffsetCurve3d::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_OffsetCurve3d::*)() const>(&StepGeom_OffsetCurve3d::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_OffsetCurve3d::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_OffsetCurve3d::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_OffsetSurface ,opencascade::handle<StepGeom_OffsetSurface> , StepGeom_Surface>>(m.attr("StepGeom_OffsetSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_OffsetSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Real , const StepData_Logical ) ) static_cast<void (StepGeom_OffsetSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Real , const StepData_Logical ) >(&StepGeom_OffsetSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisSurface"), py::arg("aDistance"), py::arg("aSelfIntersect"))
.def("SetBasisSurface",
(void (StepGeom_OffsetSurface::*)( const opencascade::handle<StepGeom_Surface> & ) ) static_cast<void (StepGeom_OffsetSurface::*)( const opencascade::handle<StepGeom_Surface> & ) >(&StepGeom_OffsetSurface::SetBasisSurface),
R"#(None)#" , py::arg("aBasisSurface"))
.def("BasisSurface",
(opencascade::handle<StepGeom_Surface> (StepGeom_OffsetSurface::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_OffsetSurface::*)() const>(&StepGeom_OffsetSurface::BasisSurface),
R"#(None)#" )
.def("SetDistance",
(void (StepGeom_OffsetSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_OffsetSurface::*)( const Standard_Real ) >(&StepGeom_OffsetSurface::SetDistance),
R"#(None)#" , py::arg("aDistance"))
.def("Distance",
(Standard_Real (StepGeom_OffsetSurface::*)() const) static_cast<Standard_Real (StepGeom_OffsetSurface::*)() const>(&StepGeom_OffsetSurface::Distance),
R"#(None)#" )
.def("SetSelfIntersect",
(void (StepGeom_OffsetSurface::*)( const StepData_Logical ) ) static_cast<void (StepGeom_OffsetSurface::*)( const StepData_Logical ) >(&StepGeom_OffsetSurface::SetSelfIntersect),
R"#(None)#" , py::arg("aSelfIntersect"))
.def("SelfIntersect",
(StepData_Logical (StepGeom_OffsetSurface::*)() const) static_cast<StepData_Logical (StepGeom_OffsetSurface::*)() const>(&StepGeom_OffsetSurface::SelfIntersect),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_OffsetSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_OffsetSurface::*)() const>(&StepGeom_OffsetSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_OffsetSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_OffsetSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_OrientedSurface ,opencascade::handle<StepGeom_OrientedSurface> , StepGeom_Surface>>(m.attr("StepGeom_OrientedSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_OrientedSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean ) ) static_cast<void (StepGeom_OrientedSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean ) >(&StepGeom_OrientedSurface::Init),
R"#(Initialize all fields (own and inherited))#" , py::arg("aRepresentationItem_Name"), py::arg("aOrientation"))
.def("Orientation",
(Standard_Boolean (StepGeom_OrientedSurface::*)() const) static_cast<Standard_Boolean (StepGeom_OrientedSurface::*)() const>(&StepGeom_OrientedSurface::Orientation),
R"#(Returns field Orientation)#" )
.def("SetOrientation",
(void (StepGeom_OrientedSurface::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_OrientedSurface::*)( const Standard_Boolean ) >(&StepGeom_OrientedSurface::SetOrientation),
R"#(Set field Orientation)#" , py::arg("Orientation"))
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_OrientedSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_OrientedSurface::*)() const>(&StepGeom_OrientedSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_OrientedSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_OrientedSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Pcurve ,opencascade::handle<StepGeom_Pcurve> , StepGeom_Curve>>(m.attr("StepGeom_Pcurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Pcurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) ) static_cast<void (StepGeom_Pcurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) >(&StepGeom_Pcurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisSurface"), py::arg("aReferenceToCurve"))
.def("SetBasisSurface",
(void (StepGeom_Pcurve::*)( const opencascade::handle<StepGeom_Surface> & ) ) static_cast<void (StepGeom_Pcurve::*)( const opencascade::handle<StepGeom_Surface> & ) >(&StepGeom_Pcurve::SetBasisSurface),
R"#(None)#" , py::arg("aBasisSurface"))
.def("BasisSurface",
(opencascade::handle<StepGeom_Surface> (StepGeom_Pcurve::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_Pcurve::*)() const>(&StepGeom_Pcurve::BasisSurface),
R"#(None)#" )
.def("SetReferenceToCurve",
(void (StepGeom_Pcurve::*)( const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) ) static_cast<void (StepGeom_Pcurve::*)( const opencascade::handle<StepRepr_DefinitionalRepresentation> & ) >(&StepGeom_Pcurve::SetReferenceToCurve),
R"#(None)#" , py::arg("aReferenceToCurve"))
.def("ReferenceToCurve",
(opencascade::handle<StepRepr_DefinitionalRepresentation> (StepGeom_Pcurve::*)() const) static_cast<opencascade::handle<StepRepr_DefinitionalRepresentation> (StepGeom_Pcurve::*)() const>(&StepGeom_Pcurve::ReferenceToCurve),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Pcurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Pcurve::*)() const>(&StepGeom_Pcurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Pcurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Pcurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_PointOnCurve ,opencascade::handle<StepGeom_PointOnCurve> , StepGeom_Point>>(m.attr("StepGeom_PointOnCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_PointOnCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const Standard_Real ) ) static_cast<void (StepGeom_PointOnCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const Standard_Real ) >(&StepGeom_PointOnCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisCurve"), py::arg("aPointParameter"))
.def("SetBasisCurve",
(void (StepGeom_PointOnCurve::*)( const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_PointOnCurve::*)( const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_PointOnCurve::SetBasisCurve),
R"#(None)#" , py::arg("aBasisCurve"))
.def("BasisCurve",
(opencascade::handle<StepGeom_Curve> (StepGeom_PointOnCurve::*)() const) static_cast<opencascade::handle<StepGeom_Curve> (StepGeom_PointOnCurve::*)() const>(&StepGeom_PointOnCurve::BasisCurve),
R"#(None)#" )
.def("SetPointParameter",
(void (StepGeom_PointOnCurve::*)( const Standard_Real ) ) static_cast<void (StepGeom_PointOnCurve::*)( const Standard_Real ) >(&StepGeom_PointOnCurve::SetPointParameter),
R"#(None)#" , py::arg("aPointParameter"))
.def("PointParameter",
(Standard_Real (StepGeom_PointOnCurve::*)() const) static_cast<Standard_Real (StepGeom_PointOnCurve::*)() const>(&StepGeom_PointOnCurve::PointParameter),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_PointOnCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_PointOnCurve::*)() const>(&StepGeom_PointOnCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_PointOnCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_PointOnCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_PointOnSurface ,opencascade::handle<StepGeom_PointOnSurface> , StepGeom_Point>>(m.attr("StepGeom_PointOnSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_PointOnSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Real , const Standard_Real ) ) static_cast<void (StepGeom_PointOnSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Real , const Standard_Real ) >(&StepGeom_PointOnSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisSurface"), py::arg("aPointParameterU"), py::arg("aPointParameterV"))
.def("SetBasisSurface",
(void (StepGeom_PointOnSurface::*)( const opencascade::handle<StepGeom_Surface> & ) ) static_cast<void (StepGeom_PointOnSurface::*)( const opencascade::handle<StepGeom_Surface> & ) >(&StepGeom_PointOnSurface::SetBasisSurface),
R"#(None)#" , py::arg("aBasisSurface"))
.def("BasisSurface",
(opencascade::handle<StepGeom_Surface> (StepGeom_PointOnSurface::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_PointOnSurface::*)() const>(&StepGeom_PointOnSurface::BasisSurface),
R"#(None)#" )
.def("SetPointParameterU",
(void (StepGeom_PointOnSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_PointOnSurface::*)( const Standard_Real ) >(&StepGeom_PointOnSurface::SetPointParameterU),
R"#(None)#" , py::arg("aPointParameterU"))
.def("PointParameterU",
(Standard_Real (StepGeom_PointOnSurface::*)() const) static_cast<Standard_Real (StepGeom_PointOnSurface::*)() const>(&StepGeom_PointOnSurface::PointParameterU),
R"#(None)#" )
.def("SetPointParameterV",
(void (StepGeom_PointOnSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_PointOnSurface::*)( const Standard_Real ) >(&StepGeom_PointOnSurface::SetPointParameterV),
R"#(None)#" , py::arg("aPointParameterV"))
.def("PointParameterV",
(Standard_Real (StepGeom_PointOnSurface::*)() const) static_cast<Standard_Real (StepGeom_PointOnSurface::*)() const>(&StepGeom_PointOnSurface::PointParameterV),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_PointOnSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_PointOnSurface::*)() const>(&StepGeom_PointOnSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_PointOnSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_PointOnSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_PointReplica ,opencascade::handle<StepGeom_PointReplica> , StepGeom_Point>>(m.attr("StepGeom_PointReplica"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_PointReplica::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Point> & , const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) ) static_cast<void (StepGeom_PointReplica::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Point> & , const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) >(&StepGeom_PointReplica::Init),
R"#(None)#" , py::arg("aName"), py::arg("aParentPt"), py::arg("aTransformation"))
.def("SetParentPt",
(void (StepGeom_PointReplica::*)( const opencascade::handle<StepGeom_Point> & ) ) static_cast<void (StepGeom_PointReplica::*)( const opencascade::handle<StepGeom_Point> & ) >(&StepGeom_PointReplica::SetParentPt),
R"#(None)#" , py::arg("aParentPt"))
.def("ParentPt",
(opencascade::handle<StepGeom_Point> (StepGeom_PointReplica::*)() const) static_cast<opencascade::handle<StepGeom_Point> (StepGeom_PointReplica::*)() const>(&StepGeom_PointReplica::ParentPt),
R"#(None)#" )
.def("SetTransformation",
(void (StepGeom_PointReplica::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) ) static_cast<void (StepGeom_PointReplica::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator> & ) >(&StepGeom_PointReplica::SetTransformation),
R"#(None)#" , py::arg("aTransformation"))
.def("Transformation",
(opencascade::handle<StepGeom_CartesianTransformationOperator> (StepGeom_PointReplica::*)() const) static_cast<opencascade::handle<StepGeom_CartesianTransformationOperator> (StepGeom_PointReplica::*)() const>(&StepGeom_PointReplica::Transformation),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_PointReplica::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_PointReplica::*)() const>(&StepGeom_PointReplica::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_PointReplica::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_PointReplica::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SurfaceCurve ,opencascade::handle<StepGeom_SurfaceCurve> , StepGeom_Curve>>(m.attr("StepGeom_SurfaceCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_SurfaceCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_HArray1OfPcurveOrSurface> & , const StepGeom_PreferredSurfaceCurveRepresentation ) ) static_cast<void (StepGeom_SurfaceCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_HArray1OfPcurveOrSurface> & , const StepGeom_PreferredSurfaceCurveRepresentation ) >(&StepGeom_SurfaceCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aCurve3d"), py::arg("aAssociatedGeometry"), py::arg("aMasterRepresentation"))
.def("SetCurve3d",
(void (StepGeom_SurfaceCurve::*)( const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_SurfaceCurve::*)( const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_SurfaceCurve::SetCurve3d),
R"#(None)#" , py::arg("aCurve3d"))
.def("Curve3d",
(opencascade::handle<StepGeom_Curve> (StepGeom_SurfaceCurve::*)() const) static_cast<opencascade::handle<StepGeom_Curve> (StepGeom_SurfaceCurve::*)() const>(&StepGeom_SurfaceCurve::Curve3d),
R"#(None)#" )
.def("SetAssociatedGeometry",
(void (StepGeom_SurfaceCurve::*)( const opencascade::handle<StepGeom_HArray1OfPcurveOrSurface> & ) ) static_cast<void (StepGeom_SurfaceCurve::*)( const opencascade::handle<StepGeom_HArray1OfPcurveOrSurface> & ) >(&StepGeom_SurfaceCurve::SetAssociatedGeometry),
R"#(None)#" , py::arg("aAssociatedGeometry"))
.def("AssociatedGeometry",
(opencascade::handle<StepGeom_HArray1OfPcurveOrSurface> (StepGeom_SurfaceCurve::*)() const) static_cast<opencascade::handle<StepGeom_HArray1OfPcurveOrSurface> (StepGeom_SurfaceCurve::*)() const>(&StepGeom_SurfaceCurve::AssociatedGeometry),
R"#(None)#" )
.def("AssociatedGeometryValue",
(StepGeom_PcurveOrSurface (StepGeom_SurfaceCurve::*)( const Standard_Integer ) const) static_cast<StepGeom_PcurveOrSurface (StepGeom_SurfaceCurve::*)( const Standard_Integer ) const>(&StepGeom_SurfaceCurve::AssociatedGeometryValue),
R"#(None)#" , py::arg("num"))
.def("NbAssociatedGeometry",
(Standard_Integer (StepGeom_SurfaceCurve::*)() const) static_cast<Standard_Integer (StepGeom_SurfaceCurve::*)() const>(&StepGeom_SurfaceCurve::NbAssociatedGeometry),
R"#(None)#" )
.def("SetMasterRepresentation",
(void (StepGeom_SurfaceCurve::*)( const StepGeom_PreferredSurfaceCurveRepresentation ) ) static_cast<void (StepGeom_SurfaceCurve::*)( const StepGeom_PreferredSurfaceCurveRepresentation ) >(&StepGeom_SurfaceCurve::SetMasterRepresentation),
R"#(None)#" , py::arg("aMasterRepresentation"))
.def("MasterRepresentation",
(StepGeom_PreferredSurfaceCurveRepresentation (StepGeom_SurfaceCurve::*)() const) static_cast<StepGeom_PreferredSurfaceCurveRepresentation (StepGeom_SurfaceCurve::*)() const>(&StepGeom_SurfaceCurve::MasterRepresentation),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SurfaceCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SurfaceCurve::*)() const>(&StepGeom_SurfaceCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SurfaceCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SurfaceCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SurfaceReplica ,opencascade::handle<StepGeom_SurfaceReplica> , StepGeom_Surface>>(m.attr("StepGeom_SurfaceReplica"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_SurfaceReplica::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepGeom_CartesianTransformationOperator3d> & ) ) static_cast<void (StepGeom_SurfaceReplica::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepGeom_CartesianTransformationOperator3d> & ) >(&StepGeom_SurfaceReplica::Init),
R"#(None)#" , py::arg("aName"), py::arg("aParentSurface"), py::arg("aTransformation"))
.def("SetParentSurface",
(void (StepGeom_SurfaceReplica::*)( const opencascade::handle<StepGeom_Surface> & ) ) static_cast<void (StepGeom_SurfaceReplica::*)( const opencascade::handle<StepGeom_Surface> & ) >(&StepGeom_SurfaceReplica::SetParentSurface),
R"#(None)#" , py::arg("aParentSurface"))
.def("ParentSurface",
(opencascade::handle<StepGeom_Surface> (StepGeom_SurfaceReplica::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_SurfaceReplica::*)() const>(&StepGeom_SurfaceReplica::ParentSurface),
R"#(None)#" )
.def("SetTransformation",
(void (StepGeom_SurfaceReplica::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator3d> & ) ) static_cast<void (StepGeom_SurfaceReplica::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator3d> & ) >(&StepGeom_SurfaceReplica::SetTransformation),
R"#(None)#" , py::arg("aTransformation"))
.def("Transformation",
(opencascade::handle<StepGeom_CartesianTransformationOperator3d> (StepGeom_SurfaceReplica::*)() const) static_cast<opencascade::handle<StepGeom_CartesianTransformationOperator3d> (StepGeom_SurfaceReplica::*)() const>(&StepGeom_SurfaceReplica::Transformation),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SurfaceReplica::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SurfaceReplica::*)() const>(&StepGeom_SurfaceReplica::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SurfaceReplica::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SurfaceReplica::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SweptSurface ,opencascade::handle<StepGeom_SweptSurface> , StepGeom_Surface>>(m.attr("StepGeom_SweptSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_SweptSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_SweptSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_SweptSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aSweptCurve"))
.def("SetSweptCurve",
(void (StepGeom_SweptSurface::*)( const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_SweptSurface::*)( const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_SweptSurface::SetSweptCurve),
R"#(None)#" , py::arg("aSweptCurve"))
.def("SweptCurve",
(opencascade::handle<StepGeom_Curve> (StepGeom_SweptSurface::*)() const) static_cast<opencascade::handle<StepGeom_Curve> (StepGeom_SweptSurface::*)() const>(&StepGeom_SweptSurface::SweptCurve),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SweptSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SweptSurface::*)() const>(&StepGeom_SweptSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SweptSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SweptSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BSplineCurve ,opencascade::handle<StepGeom_BSplineCurve> , StepGeom_BoundedCurve>>(m.attr("StepGeom_BSplineCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical ) ) static_cast<void (StepGeom_BSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical ) >(&StepGeom_BSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"))
.def("SetDegree",
(void (StepGeom_BSplineCurve::*)( const Standard_Integer ) ) static_cast<void (StepGeom_BSplineCurve::*)( const Standard_Integer ) >(&StepGeom_BSplineCurve::SetDegree),
R"#(None)#" , py::arg("aDegree"))
.def("Degree",
(Standard_Integer (StepGeom_BSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_BSplineCurve::*)() const>(&StepGeom_BSplineCurve::Degree),
R"#(None)#" )
.def("SetControlPointsList",
(void (StepGeom_BSplineCurve::*)( const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & ) ) static_cast<void (StepGeom_BSplineCurve::*)( const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & ) >(&StepGeom_BSplineCurve::SetControlPointsList),
R"#(None)#" , py::arg("aControlPointsList"))
.def("ControlPointsList",
(opencascade::handle<StepGeom_HArray1OfCartesianPoint> (StepGeom_BSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_HArray1OfCartesianPoint> (StepGeom_BSplineCurve::*)() const>(&StepGeom_BSplineCurve::ControlPointsList),
R"#(None)#" )
.def("ControlPointsListValue",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_BSplineCurve::*)( const Standard_Integer ) const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_BSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_BSplineCurve::ControlPointsListValue),
R"#(None)#" , py::arg("num"))
.def("NbControlPointsList",
(Standard_Integer (StepGeom_BSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_BSplineCurve::*)() const>(&StepGeom_BSplineCurve::NbControlPointsList),
R"#(None)#" )
.def("SetCurveForm",
(void (StepGeom_BSplineCurve::*)( const StepGeom_BSplineCurveForm ) ) static_cast<void (StepGeom_BSplineCurve::*)( const StepGeom_BSplineCurveForm ) >(&StepGeom_BSplineCurve::SetCurveForm),
R"#(None)#" , py::arg("aCurveForm"))
.def("CurveForm",
(StepGeom_BSplineCurveForm (StepGeom_BSplineCurve::*)() const) static_cast<StepGeom_BSplineCurveForm (StepGeom_BSplineCurve::*)() const>(&StepGeom_BSplineCurve::CurveForm),
R"#(None)#" )
.def("SetClosedCurve",
(void (StepGeom_BSplineCurve::*)( const StepData_Logical ) ) static_cast<void (StepGeom_BSplineCurve::*)( const StepData_Logical ) >(&StepGeom_BSplineCurve::SetClosedCurve),
R"#(None)#" , py::arg("aClosedCurve"))
.def("ClosedCurve",
(StepData_Logical (StepGeom_BSplineCurve::*)() const) static_cast<StepData_Logical (StepGeom_BSplineCurve::*)() const>(&StepGeom_BSplineCurve::ClosedCurve),
R"#(None)#" )
.def("SetSelfIntersect",
(void (StepGeom_BSplineCurve::*)( const StepData_Logical ) ) static_cast<void (StepGeom_BSplineCurve::*)( const StepData_Logical ) >(&StepGeom_BSplineCurve::SetSelfIntersect),
R"#(None)#" , py::arg("aSelfIntersect"))
.def("SelfIntersect",
(StepData_Logical (StepGeom_BSplineCurve::*)() const) static_cast<StepData_Logical (StepGeom_BSplineCurve::*)() const>(&StepGeom_BSplineCurve::SelfIntersect),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BSplineCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BSplineCurve::*)() const>(&StepGeom_BSplineCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BSplineCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BSplineCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BSplineSurface ,opencascade::handle<StepGeom_BSplineSurface> , StepGeom_BoundedSurface>>(m.attr("StepGeom_BSplineSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical ) ) static_cast<void (StepGeom_BSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical ) >(&StepGeom_BSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"))
.def("SetUDegree",
(void (StepGeom_BSplineSurface::*)( const Standard_Integer ) ) static_cast<void (StepGeom_BSplineSurface::*)( const Standard_Integer ) >(&StepGeom_BSplineSurface::SetUDegree),
R"#(None)#" , py::arg("aUDegree"))
.def("UDegree",
(Standard_Integer (StepGeom_BSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::UDegree),
R"#(None)#" )
.def("SetVDegree",
(void (StepGeom_BSplineSurface::*)( const Standard_Integer ) ) static_cast<void (StepGeom_BSplineSurface::*)( const Standard_Integer ) >(&StepGeom_BSplineSurface::SetVDegree),
R"#(None)#" , py::arg("aVDegree"))
.def("VDegree",
(Standard_Integer (StepGeom_BSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::VDegree),
R"#(None)#" )
.def("SetControlPointsList",
(void (StepGeom_BSplineSurface::*)( const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & ) ) static_cast<void (StepGeom_BSplineSurface::*)( const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & ) >(&StepGeom_BSplineSurface::SetControlPointsList),
R"#(None)#" , py::arg("aControlPointsList"))
.def("ControlPointsList",
(opencascade::handle<StepGeom_HArray2OfCartesianPoint> (StepGeom_BSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_HArray2OfCartesianPoint> (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::ControlPointsList),
R"#(None)#" )
.def("ControlPointsListValue",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_BSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_BSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const>(&StepGeom_BSplineSurface::ControlPointsListValue),
R"#(None)#" , py::arg("num1"), py::arg("num2"))
.def("NbControlPointsListI",
(Standard_Integer (StepGeom_BSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::NbControlPointsListI),
R"#(None)#" )
.def("NbControlPointsListJ",
(Standard_Integer (StepGeom_BSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::NbControlPointsListJ),
R"#(None)#" )
.def("SetSurfaceForm",
(void (StepGeom_BSplineSurface::*)( const StepGeom_BSplineSurfaceForm ) ) static_cast<void (StepGeom_BSplineSurface::*)( const StepGeom_BSplineSurfaceForm ) >(&StepGeom_BSplineSurface::SetSurfaceForm),
R"#(None)#" , py::arg("aSurfaceForm"))
.def("SurfaceForm",
(StepGeom_BSplineSurfaceForm (StepGeom_BSplineSurface::*)() const) static_cast<StepGeom_BSplineSurfaceForm (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::SurfaceForm),
R"#(None)#" )
.def("SetUClosed",
(void (StepGeom_BSplineSurface::*)( const StepData_Logical ) ) static_cast<void (StepGeom_BSplineSurface::*)( const StepData_Logical ) >(&StepGeom_BSplineSurface::SetUClosed),
R"#(None)#" , py::arg("aUClosed"))
.def("UClosed",
(StepData_Logical (StepGeom_BSplineSurface::*)() const) static_cast<StepData_Logical (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::UClosed),
R"#(None)#" )
.def("SetVClosed",
(void (StepGeom_BSplineSurface::*)( const StepData_Logical ) ) static_cast<void (StepGeom_BSplineSurface::*)( const StepData_Logical ) >(&StepGeom_BSplineSurface::SetVClosed),
R"#(None)#" , py::arg("aVClosed"))
.def("VClosed",
(StepData_Logical (StepGeom_BSplineSurface::*)() const) static_cast<StepData_Logical (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::VClosed),
R"#(None)#" )
.def("SetSelfIntersect",
(void (StepGeom_BSplineSurface::*)( const StepData_Logical ) ) static_cast<void (StepGeom_BSplineSurface::*)( const StepData_Logical ) >(&StepGeom_BSplineSurface::SetSelfIntersect),
R"#(None)#" , py::arg("aSelfIntersect"))
.def("SelfIntersect",
(StepData_Logical (StepGeom_BSplineSurface::*)() const) static_cast<StepData_Logical (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::SelfIntersect),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BSplineSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BSplineSurface::*)() const>(&StepGeom_BSplineSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BSplineSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BSplineSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Circle ,opencascade::handle<StepGeom_Circle> , StepGeom_Conic>>(m.attr("StepGeom_Circle"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Circle::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real ) ) static_cast<void (StepGeom_Circle::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real ) >(&StepGeom_Circle::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aRadius"))
.def("SetRadius",
(void (StepGeom_Circle::*)( const Standard_Real ) ) static_cast<void (StepGeom_Circle::*)( const Standard_Real ) >(&StepGeom_Circle::SetRadius),
R"#(None)#" , py::arg("aRadius"))
.def("Radius",
(Standard_Real (StepGeom_Circle::*)() const) static_cast<Standard_Real (StepGeom_Circle::*)() const>(&StepGeom_Circle::Radius),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Circle::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Circle::*)() const>(&StepGeom_Circle::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Circle::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Circle::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CompositeCurve ,opencascade::handle<StepGeom_CompositeCurve> , StepGeom_BoundedCurve>>(m.attr("StepGeom_CompositeCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CompositeCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_HArray1OfCompositeCurveSegment> & , const StepData_Logical ) ) static_cast<void (StepGeom_CompositeCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_HArray1OfCompositeCurveSegment> & , const StepData_Logical ) >(&StepGeom_CompositeCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aSegments"), py::arg("aSelfIntersect"))
.def("SetSegments",
(void (StepGeom_CompositeCurve::*)( const opencascade::handle<StepGeom_HArray1OfCompositeCurveSegment> & ) ) static_cast<void (StepGeom_CompositeCurve::*)( const opencascade::handle<StepGeom_HArray1OfCompositeCurveSegment> & ) >(&StepGeom_CompositeCurve::SetSegments),
R"#(None)#" , py::arg("aSegments"))
.def("Segments",
(opencascade::handle<StepGeom_HArray1OfCompositeCurveSegment> (StepGeom_CompositeCurve::*)() const) static_cast<opencascade::handle<StepGeom_HArray1OfCompositeCurveSegment> (StepGeom_CompositeCurve::*)() const>(&StepGeom_CompositeCurve::Segments),
R"#(None)#" )
.def("SegmentsValue",
(opencascade::handle<StepGeom_CompositeCurveSegment> (StepGeom_CompositeCurve::*)( const Standard_Integer ) const) static_cast<opencascade::handle<StepGeom_CompositeCurveSegment> (StepGeom_CompositeCurve::*)( const Standard_Integer ) const>(&StepGeom_CompositeCurve::SegmentsValue),
R"#(None)#" , py::arg("num"))
.def("NbSegments",
(Standard_Integer (StepGeom_CompositeCurve::*)() const) static_cast<Standard_Integer (StepGeom_CompositeCurve::*)() const>(&StepGeom_CompositeCurve::NbSegments),
R"#(None)#" )
.def("SetSelfIntersect",
(void (StepGeom_CompositeCurve::*)( const StepData_Logical ) ) static_cast<void (StepGeom_CompositeCurve::*)( const StepData_Logical ) >(&StepGeom_CompositeCurve::SetSelfIntersect),
R"#(None)#" , py::arg("aSelfIntersect"))
.def("SelfIntersect",
(StepData_Logical (StepGeom_CompositeCurve::*)() const) static_cast<StepData_Logical (StepGeom_CompositeCurve::*)() const>(&StepGeom_CompositeCurve::SelfIntersect),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CompositeCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CompositeCurve::*)() const>(&StepGeom_CompositeCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CompositeCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CompositeCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_ConicalSurface ,opencascade::handle<StepGeom_ConicalSurface> , StepGeom_ElementarySurface>>(m.attr("StepGeom_ConicalSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_ConicalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real , const Standard_Real ) ) static_cast<void (StepGeom_ConicalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real , const Standard_Real ) >(&StepGeom_ConicalSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aRadius"), py::arg("aSemiAngle"))
.def("SetRadius",
(void (StepGeom_ConicalSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_ConicalSurface::*)( const Standard_Real ) >(&StepGeom_ConicalSurface::SetRadius),
R"#(None)#" , py::arg("aRadius"))
.def("Radius",
(Standard_Real (StepGeom_ConicalSurface::*)() const) static_cast<Standard_Real (StepGeom_ConicalSurface::*)() const>(&StepGeom_ConicalSurface::Radius),
R"#(None)#" )
.def("SetSemiAngle",
(void (StepGeom_ConicalSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_ConicalSurface::*)( const Standard_Real ) >(&StepGeom_ConicalSurface::SetSemiAngle),
R"#(None)#" , py::arg("aSemiAngle"))
.def("SemiAngle",
(Standard_Real (StepGeom_ConicalSurface::*)() const) static_cast<Standard_Real (StepGeom_ConicalSurface::*)() const>(&StepGeom_ConicalSurface::SemiAngle),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_ConicalSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_ConicalSurface::*)() const>(&StepGeom_ConicalSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_ConicalSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_ConicalSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CurveBoundedSurface ,opencascade::handle<StepGeom_CurveBoundedSurface> , StepGeom_BoundedSurface>>(m.attr("StepGeom_CurveBoundedSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CurveBoundedSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepGeom_HArray1OfSurfaceBoundary> & , const Standard_Boolean ) ) static_cast<void (StepGeom_CurveBoundedSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepGeom_HArray1OfSurfaceBoundary> & , const Standard_Boolean ) >(&StepGeom_CurveBoundedSurface::Init),
R"#(Initialize all fields (own and inherited))#" , py::arg("aRepresentationItem_Name"), py::arg("aBasisSurface"), py::arg("aBoundaries"), py::arg("aImplicitOuter"))
.def("BasisSurface",
(opencascade::handle<StepGeom_Surface> (StepGeom_CurveBoundedSurface::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_CurveBoundedSurface::*)() const>(&StepGeom_CurveBoundedSurface::BasisSurface),
R"#(Returns field BasisSurface)#" )
.def("SetBasisSurface",
(void (StepGeom_CurveBoundedSurface::*)( const opencascade::handle<StepGeom_Surface> & ) ) static_cast<void (StepGeom_CurveBoundedSurface::*)( const opencascade::handle<StepGeom_Surface> & ) >(&StepGeom_CurveBoundedSurface::SetBasisSurface),
R"#(Set field BasisSurface)#" , py::arg("BasisSurface"))
.def("Boundaries",
(opencascade::handle<StepGeom_HArray1OfSurfaceBoundary> (StepGeom_CurveBoundedSurface::*)() const) static_cast<opencascade::handle<StepGeom_HArray1OfSurfaceBoundary> (StepGeom_CurveBoundedSurface::*)() const>(&StepGeom_CurveBoundedSurface::Boundaries),
R"#(Returns field Boundaries)#" )
.def("SetBoundaries",
(void (StepGeom_CurveBoundedSurface::*)( const opencascade::handle<StepGeom_HArray1OfSurfaceBoundary> & ) ) static_cast<void (StepGeom_CurveBoundedSurface::*)( const opencascade::handle<StepGeom_HArray1OfSurfaceBoundary> & ) >(&StepGeom_CurveBoundedSurface::SetBoundaries),
R"#(Set field Boundaries)#" , py::arg("Boundaries"))
.def("ImplicitOuter",
(Standard_Boolean (StepGeom_CurveBoundedSurface::*)() const) static_cast<Standard_Boolean (StepGeom_CurveBoundedSurface::*)() const>(&StepGeom_CurveBoundedSurface::ImplicitOuter),
R"#(Returns field ImplicitOuter)#" )
.def("SetImplicitOuter",
(void (StepGeom_CurveBoundedSurface::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_CurveBoundedSurface::*)( const Standard_Boolean ) >(&StepGeom_CurveBoundedSurface::SetImplicitOuter),
R"#(Set field ImplicitOuter)#" , py::arg("ImplicitOuter"))
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CurveBoundedSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CurveBoundedSurface::*)() const>(&StepGeom_CurveBoundedSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CurveBoundedSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CurveBoundedSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CylindricalSurface ,opencascade::handle<StepGeom_CylindricalSurface> , StepGeom_ElementarySurface>>(m.attr("StepGeom_CylindricalSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_CylindricalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real ) ) static_cast<void (StepGeom_CylindricalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real ) >(&StepGeom_CylindricalSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aRadius"))
.def("SetRadius",
(void (StepGeom_CylindricalSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_CylindricalSurface::*)( const Standard_Real ) >(&StepGeom_CylindricalSurface::SetRadius),
R"#(None)#" , py::arg("aRadius"))
.def("Radius",
(Standard_Real (StepGeom_CylindricalSurface::*)() const) static_cast<Standard_Real (StepGeom_CylindricalSurface::*)() const>(&StepGeom_CylindricalSurface::Radius),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CylindricalSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CylindricalSurface::*)() const>(&StepGeom_CylindricalSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CylindricalSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CylindricalSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Ellipse ,opencascade::handle<StepGeom_Ellipse> , StepGeom_Conic>>(m.attr("StepGeom_Ellipse"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Ellipse::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real , const Standard_Real ) ) static_cast<void (StepGeom_Ellipse::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real , const Standard_Real ) >(&StepGeom_Ellipse::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aSemiAxis1"), py::arg("aSemiAxis2"))
.def("SetSemiAxis1",
(void (StepGeom_Ellipse::*)( const Standard_Real ) ) static_cast<void (StepGeom_Ellipse::*)( const Standard_Real ) >(&StepGeom_Ellipse::SetSemiAxis1),
R"#(None)#" , py::arg("aSemiAxis1"))
.def("SemiAxis1",
(Standard_Real (StepGeom_Ellipse::*)() const) static_cast<Standard_Real (StepGeom_Ellipse::*)() const>(&StepGeom_Ellipse::SemiAxis1),
R"#(None)#" )
.def("SetSemiAxis2",
(void (StepGeom_Ellipse::*)( const Standard_Real ) ) static_cast<void (StepGeom_Ellipse::*)( const Standard_Real ) >(&StepGeom_Ellipse::SetSemiAxis2),
R"#(None)#" , py::arg("aSemiAxis2"))
.def("SemiAxis2",
(Standard_Real (StepGeom_Ellipse::*)() const) static_cast<Standard_Real (StepGeom_Ellipse::*)() const>(&StepGeom_Ellipse::SemiAxis2),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Ellipse::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Ellipse::*)() const>(&StepGeom_Ellipse::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Ellipse::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Ellipse::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_EvaluatedDegeneratePcurve ,opencascade::handle<StepGeom_EvaluatedDegeneratePcurve> , StepGeom_DegeneratePcurve>>(m.attr("StepGeom_EvaluatedDegeneratePcurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_EvaluatedDegeneratePcurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepRepr_DefinitionalRepresentation> & , const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<void (StepGeom_EvaluatedDegeneratePcurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepRepr_DefinitionalRepresentation> & , const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepGeom_EvaluatedDegeneratePcurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisSurface"), py::arg("aReferenceToCurve"), py::arg("aEquivalentPoint"))
.def("SetEquivalentPoint",
(void (StepGeom_EvaluatedDegeneratePcurve::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<void (StepGeom_EvaluatedDegeneratePcurve::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepGeom_EvaluatedDegeneratePcurve::SetEquivalentPoint),
R"#(None)#" , py::arg("aEquivalentPoint"))
.def("EquivalentPoint",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_EvaluatedDegeneratePcurve::*)() const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_EvaluatedDegeneratePcurve::*)() const>(&StepGeom_EvaluatedDegeneratePcurve::EquivalentPoint),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_EvaluatedDegeneratePcurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_EvaluatedDegeneratePcurve::*)() const>(&StepGeom_EvaluatedDegeneratePcurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_EvaluatedDegeneratePcurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_EvaluatedDegeneratePcurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Hyperbola ,opencascade::handle<StepGeom_Hyperbola> , StepGeom_Conic>>(m.attr("StepGeom_Hyperbola"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Hyperbola::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real , const Standard_Real ) ) static_cast<void (StepGeom_Hyperbola::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real , const Standard_Real ) >(&StepGeom_Hyperbola::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aSemiAxis"), py::arg("aSemiImagAxis"))
.def("SetSemiAxis",
(void (StepGeom_Hyperbola::*)( const Standard_Real ) ) static_cast<void (StepGeom_Hyperbola::*)( const Standard_Real ) >(&StepGeom_Hyperbola::SetSemiAxis),
R"#(None)#" , py::arg("aSemiAxis"))
.def("SemiAxis",
(Standard_Real (StepGeom_Hyperbola::*)() const) static_cast<Standard_Real (StepGeom_Hyperbola::*)() const>(&StepGeom_Hyperbola::SemiAxis),
R"#(None)#" )
.def("SetSemiImagAxis",
(void (StepGeom_Hyperbola::*)( const Standard_Real ) ) static_cast<void (StepGeom_Hyperbola::*)( const Standard_Real ) >(&StepGeom_Hyperbola::SetSemiImagAxis),
R"#(None)#" , py::arg("aSemiImagAxis"))
.def("SemiImagAxis",
(Standard_Real (StepGeom_Hyperbola::*)() const) static_cast<Standard_Real (StepGeom_Hyperbola::*)() const>(&StepGeom_Hyperbola::SemiImagAxis),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Hyperbola::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Hyperbola::*)() const>(&StepGeom_Hyperbola::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Hyperbola::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Hyperbola::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_IntersectionCurve ,opencascade::handle<StepGeom_IntersectionCurve> , StepGeom_SurfaceCurve>>(m.attr("StepGeom_IntersectionCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_IntersectionCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_IntersectionCurve::*)() const>(&StepGeom_IntersectionCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_IntersectionCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_IntersectionCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Parabola ,opencascade::handle<StepGeom_Parabola> , StepGeom_Conic>>(m.attr("StepGeom_Parabola"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Parabola::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real ) ) static_cast<void (StepGeom_Parabola::*)( const opencascade::handle<TCollection_HAsciiString> & , const StepGeom_Axis2Placement & , const Standard_Real ) >(&StepGeom_Parabola::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aFocalDist"))
.def("SetFocalDist",
(void (StepGeom_Parabola::*)( const Standard_Real ) ) static_cast<void (StepGeom_Parabola::*)( const Standard_Real ) >(&StepGeom_Parabola::SetFocalDist),
R"#(None)#" , py::arg("aFocalDist"))
.def("FocalDist",
(Standard_Real (StepGeom_Parabola::*)() const) static_cast<Standard_Real (StepGeom_Parabola::*)() const>(&StepGeom_Parabola::FocalDist),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Parabola::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Parabola::*)() const>(&StepGeom_Parabola::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Parabola::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Parabola::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Plane ,opencascade::handle<StepGeom_Plane> , StepGeom_ElementarySurface>>(m.attr("StepGeom_Plane"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Plane::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Plane::*)() const>(&StepGeom_Plane::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Plane::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Plane::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_Polyline ,opencascade::handle<StepGeom_Polyline> , StepGeom_BoundedCurve>>(m.attr("StepGeom_Polyline"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_Polyline::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & ) ) static_cast<void (StepGeom_Polyline::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & ) >(&StepGeom_Polyline::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPoints"))
.def("SetPoints",
(void (StepGeom_Polyline::*)( const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & ) ) static_cast<void (StepGeom_Polyline::*)( const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & ) >(&StepGeom_Polyline::SetPoints),
R"#(None)#" , py::arg("aPoints"))
.def("Points",
(opencascade::handle<StepGeom_HArray1OfCartesianPoint> (StepGeom_Polyline::*)() const) static_cast<opencascade::handle<StepGeom_HArray1OfCartesianPoint> (StepGeom_Polyline::*)() const>(&StepGeom_Polyline::Points),
R"#(None)#" )
.def("PointsValue",
(opencascade::handle<StepGeom_CartesianPoint> (StepGeom_Polyline::*)( const Standard_Integer ) const) static_cast<opencascade::handle<StepGeom_CartesianPoint> (StepGeom_Polyline::*)( const Standard_Integer ) const>(&StepGeom_Polyline::PointsValue),
R"#(None)#" , py::arg("num"))
.def("NbPoints",
(Standard_Integer (StepGeom_Polyline::*)() const) static_cast<Standard_Integer (StepGeom_Polyline::*)() const>(&StepGeom_Polyline::NbPoints),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_Polyline::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_Polyline::*)() const>(&StepGeom_Polyline::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_Polyline::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_Polyline::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_RectangularCompositeSurface ,opencascade::handle<StepGeom_RectangularCompositeSurface> , StepGeom_BoundedSurface>>(m.attr("StepGeom_RectangularCompositeSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_RectangularCompositeSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_HArray2OfSurfacePatch> & ) ) static_cast<void (StepGeom_RectangularCompositeSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_HArray2OfSurfacePatch> & ) >(&StepGeom_RectangularCompositeSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aSegments"))
.def("SetSegments",
(void (StepGeom_RectangularCompositeSurface::*)( const opencascade::handle<StepGeom_HArray2OfSurfacePatch> & ) ) static_cast<void (StepGeom_RectangularCompositeSurface::*)( const opencascade::handle<StepGeom_HArray2OfSurfacePatch> & ) >(&StepGeom_RectangularCompositeSurface::SetSegments),
R"#(None)#" , py::arg("aSegments"))
.def("Segments",
(opencascade::handle<StepGeom_HArray2OfSurfacePatch> (StepGeom_RectangularCompositeSurface::*)() const) static_cast<opencascade::handle<StepGeom_HArray2OfSurfacePatch> (StepGeom_RectangularCompositeSurface::*)() const>(&StepGeom_RectangularCompositeSurface::Segments),
R"#(None)#" )
.def("SegmentsValue",
(opencascade::handle<StepGeom_SurfacePatch> (StepGeom_RectangularCompositeSurface::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<StepGeom_SurfacePatch> (StepGeom_RectangularCompositeSurface::*)( const Standard_Integer , const Standard_Integer ) const>(&StepGeom_RectangularCompositeSurface::SegmentsValue),
R"#(None)#" , py::arg("num1"), py::arg("num2"))
.def("NbSegmentsI",
(Standard_Integer (StepGeom_RectangularCompositeSurface::*)() const) static_cast<Standard_Integer (StepGeom_RectangularCompositeSurface::*)() const>(&StepGeom_RectangularCompositeSurface::NbSegmentsI),
R"#(None)#" )
.def("NbSegmentsJ",
(Standard_Integer (StepGeom_RectangularCompositeSurface::*)() const) static_cast<Standard_Integer (StepGeom_RectangularCompositeSurface::*)() const>(&StepGeom_RectangularCompositeSurface::NbSegmentsJ),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_RectangularCompositeSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_RectangularCompositeSurface::*)() const>(&StepGeom_RectangularCompositeSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_RectangularCompositeSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_RectangularCompositeSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_RectangularTrimmedSurface ,opencascade::handle<StepGeom_RectangularTrimmedSurface> , StepGeom_BoundedSurface>>(m.attr("StepGeom_RectangularTrimmedSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_RectangularTrimmedSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Boolean , const Standard_Boolean ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Boolean , const Standard_Boolean ) >(&StepGeom_RectangularTrimmedSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisSurface"), py::arg("aU1"), py::arg("aU2"), py::arg("aV1"), py::arg("aV2"), py::arg("aUsense"), py::arg("aVsense"))
.def("SetBasisSurface",
(void (StepGeom_RectangularTrimmedSurface::*)( const opencascade::handle<StepGeom_Surface> & ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const opencascade::handle<StepGeom_Surface> & ) >(&StepGeom_RectangularTrimmedSurface::SetBasisSurface),
R"#(None)#" , py::arg("aBasisSurface"))
.def("BasisSurface",
(opencascade::handle<StepGeom_Surface> (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<opencascade::handle<StepGeom_Surface> (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::BasisSurface),
R"#(None)#" )
.def("SetU1",
(void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) >(&StepGeom_RectangularTrimmedSurface::SetU1),
R"#(None)#" , py::arg("aU1"))
.def("U1",
(Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::U1),
R"#(None)#" )
.def("SetU2",
(void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) >(&StepGeom_RectangularTrimmedSurface::SetU2),
R"#(None)#" , py::arg("aU2"))
.def("U2",
(Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::U2),
R"#(None)#" )
.def("SetV1",
(void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) >(&StepGeom_RectangularTrimmedSurface::SetV1),
R"#(None)#" , py::arg("aV1"))
.def("V1",
(Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::V1),
R"#(None)#" )
.def("SetV2",
(void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Real ) >(&StepGeom_RectangularTrimmedSurface::SetV2),
R"#(None)#" , py::arg("aV2"))
.def("V2",
(Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<Standard_Real (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::V2),
R"#(None)#" )
.def("SetUsense",
(void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Boolean ) >(&StepGeom_RectangularTrimmedSurface::SetUsense),
R"#(None)#" , py::arg("aUsense"))
.def("Usense",
(Standard_Boolean (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<Standard_Boolean (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::Usense),
R"#(None)#" )
.def("SetVsense",
(void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_RectangularTrimmedSurface::*)( const Standard_Boolean ) >(&StepGeom_RectangularTrimmedSurface::SetVsense),
R"#(None)#" , py::arg("aVsense"))
.def("Vsense",
(Standard_Boolean (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<Standard_Boolean (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::Vsense),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_RectangularTrimmedSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_RectangularTrimmedSurface::*)() const>(&StepGeom_RectangularTrimmedSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_RectangularTrimmedSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_RectangularTrimmedSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SeamCurve ,opencascade::handle<StepGeom_SeamCurve> , StepGeom_SurfaceCurve>>(m.attr("StepGeom_SeamCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SeamCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SeamCurve::*)() const>(&StepGeom_SeamCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SeamCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SeamCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SphericalSurface ,opencascade::handle<StepGeom_SphericalSurface> , StepGeom_ElementarySurface>>(m.attr("StepGeom_SphericalSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_SphericalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real ) ) static_cast<void (StepGeom_SphericalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real ) >(&StepGeom_SphericalSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aRadius"))
.def("SetRadius",
(void (StepGeom_SphericalSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_SphericalSurface::*)( const Standard_Real ) >(&StepGeom_SphericalSurface::SetRadius),
R"#(None)#" , py::arg("aRadius"))
.def("Radius",
(Standard_Real (StepGeom_SphericalSurface::*)() const) static_cast<Standard_Real (StepGeom_SphericalSurface::*)() const>(&StepGeom_SphericalSurface::Radius),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SphericalSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SphericalSurface::*)() const>(&StepGeom_SphericalSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SphericalSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SphericalSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SurfaceCurveAndBoundedCurve ,opencascade::handle<StepGeom_SurfaceCurveAndBoundedCurve> , StepGeom_SurfaceCurve>>(m.attr("StepGeom_SurfaceCurveAndBoundedCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("BoundedCurve",
(opencascade::handle<StepGeom_BoundedCurve> & (StepGeom_SurfaceCurveAndBoundedCurve::*)() ) static_cast<opencascade::handle<StepGeom_BoundedCurve> & (StepGeom_SurfaceCurveAndBoundedCurve::*)() >(&StepGeom_SurfaceCurveAndBoundedCurve::BoundedCurve),
R"#(returns field BoundedCurve)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SurfaceCurveAndBoundedCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SurfaceCurveAndBoundedCurve::*)() const>(&StepGeom_SurfaceCurveAndBoundedCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SurfaceCurveAndBoundedCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SurfaceCurveAndBoundedCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SurfaceOfLinearExtrusion ,opencascade::handle<StepGeom_SurfaceOfLinearExtrusion> , StepGeom_SweptSurface>>(m.attr("StepGeom_SurfaceOfLinearExtrusion"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_SurfaceOfLinearExtrusion::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_Vector> & ) ) static_cast<void (StepGeom_SurfaceOfLinearExtrusion::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_Vector> & ) >(&StepGeom_SurfaceOfLinearExtrusion::Init),
R"#(None)#" , py::arg("aName"), py::arg("aSweptCurve"), py::arg("aExtrusionAxis"))
.def("SetExtrusionAxis",
(void (StepGeom_SurfaceOfLinearExtrusion::*)( const opencascade::handle<StepGeom_Vector> & ) ) static_cast<void (StepGeom_SurfaceOfLinearExtrusion::*)( const opencascade::handle<StepGeom_Vector> & ) >(&StepGeom_SurfaceOfLinearExtrusion::SetExtrusionAxis),
R"#(None)#" , py::arg("aExtrusionAxis"))
.def("ExtrusionAxis",
(opencascade::handle<StepGeom_Vector> (StepGeom_SurfaceOfLinearExtrusion::*)() const) static_cast<opencascade::handle<StepGeom_Vector> (StepGeom_SurfaceOfLinearExtrusion::*)() const>(&StepGeom_SurfaceOfLinearExtrusion::ExtrusionAxis),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SurfaceOfLinearExtrusion::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SurfaceOfLinearExtrusion::*)() const>(&StepGeom_SurfaceOfLinearExtrusion::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SurfaceOfLinearExtrusion::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SurfaceOfLinearExtrusion::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_SurfaceOfRevolution ,opencascade::handle<StepGeom_SurfaceOfRevolution> , StepGeom_SweptSurface>>(m.attr("StepGeom_SurfaceOfRevolution"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_SurfaceOfRevolution::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_Axis1Placement> & ) ) static_cast<void (StepGeom_SurfaceOfRevolution::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_Axis1Placement> & ) >(&StepGeom_SurfaceOfRevolution::Init),
R"#(None)#" , py::arg("aName"), py::arg("aSweptCurve"), py::arg("aAxisPosition"))
.def("SetAxisPosition",
(void (StepGeom_SurfaceOfRevolution::*)( const opencascade::handle<StepGeom_Axis1Placement> & ) ) static_cast<void (StepGeom_SurfaceOfRevolution::*)( const opencascade::handle<StepGeom_Axis1Placement> & ) >(&StepGeom_SurfaceOfRevolution::SetAxisPosition),
R"#(None)#" , py::arg("aAxisPosition"))
.def("AxisPosition",
(opencascade::handle<StepGeom_Axis1Placement> (StepGeom_SurfaceOfRevolution::*)() const) static_cast<opencascade::handle<StepGeom_Axis1Placement> (StepGeom_SurfaceOfRevolution::*)() const>(&StepGeom_SurfaceOfRevolution::AxisPosition),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_SurfaceOfRevolution::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_SurfaceOfRevolution::*)() const>(&StepGeom_SurfaceOfRevolution::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_SurfaceOfRevolution::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_SurfaceOfRevolution::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_ToroidalSurface ,opencascade::handle<StepGeom_ToroidalSurface> , StepGeom_ElementarySurface>>(m.attr("StepGeom_ToroidalSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_ToroidalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real , const Standard_Real ) ) static_cast<void (StepGeom_ToroidalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real , const Standard_Real ) >(&StepGeom_ToroidalSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aMajorRadius"), py::arg("aMinorRadius"))
.def("SetMajorRadius",
(void (StepGeom_ToroidalSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_ToroidalSurface::*)( const Standard_Real ) >(&StepGeom_ToroidalSurface::SetMajorRadius),
R"#(None)#" , py::arg("aMajorRadius"))
.def("MajorRadius",
(Standard_Real (StepGeom_ToroidalSurface::*)() const) static_cast<Standard_Real (StepGeom_ToroidalSurface::*)() const>(&StepGeom_ToroidalSurface::MajorRadius),
R"#(None)#" )
.def("SetMinorRadius",
(void (StepGeom_ToroidalSurface::*)( const Standard_Real ) ) static_cast<void (StepGeom_ToroidalSurface::*)( const Standard_Real ) >(&StepGeom_ToroidalSurface::SetMinorRadius),
R"#(None)#" , py::arg("aMinorRadius"))
.def("MinorRadius",
(Standard_Real (StepGeom_ToroidalSurface::*)() const) static_cast<Standard_Real (StepGeom_ToroidalSurface::*)() const>(&StepGeom_ToroidalSurface::MinorRadius),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_ToroidalSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_ToroidalSurface::*)() const>(&StepGeom_ToroidalSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_ToroidalSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_ToroidalSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_TrimmedCurve ,opencascade::handle<StepGeom_TrimmedCurve> , StepGeom_BoundedCurve>>(m.attr("StepGeom_TrimmedCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_TrimmedCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & , const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & , const Standard_Boolean , const StepGeom_TrimmingPreference ) ) static_cast<void (StepGeom_TrimmedCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & , const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & , const Standard_Boolean , const StepGeom_TrimmingPreference ) >(&StepGeom_TrimmedCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aBasisCurve"), py::arg("aTrim1"), py::arg("aTrim2"), py::arg("aSenseAgreement"), py::arg("aMasterRepresentation"))
.def("SetBasisCurve",
(void (StepGeom_TrimmedCurve::*)( const opencascade::handle<StepGeom_Curve> & ) ) static_cast<void (StepGeom_TrimmedCurve::*)( const opencascade::handle<StepGeom_Curve> & ) >(&StepGeom_TrimmedCurve::SetBasisCurve),
R"#(None)#" , py::arg("aBasisCurve"))
.def("BasisCurve",
(opencascade::handle<StepGeom_Curve> (StepGeom_TrimmedCurve::*)() const) static_cast<opencascade::handle<StepGeom_Curve> (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::BasisCurve),
R"#(None)#" )
.def("SetTrim1",
(void (StepGeom_TrimmedCurve::*)( const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & ) ) static_cast<void (StepGeom_TrimmedCurve::*)( const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & ) >(&StepGeom_TrimmedCurve::SetTrim1),
R"#(None)#" , py::arg("aTrim1"))
.def("Trim1",
(opencascade::handle<StepGeom_HArray1OfTrimmingSelect> (StepGeom_TrimmedCurve::*)() const) static_cast<opencascade::handle<StepGeom_HArray1OfTrimmingSelect> (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::Trim1),
R"#(None)#" )
.def("Trim1Value",
(StepGeom_TrimmingSelect (StepGeom_TrimmedCurve::*)( const Standard_Integer ) const) static_cast<StepGeom_TrimmingSelect (StepGeom_TrimmedCurve::*)( const Standard_Integer ) const>(&StepGeom_TrimmedCurve::Trim1Value),
R"#(None)#" , py::arg("num"))
.def("NbTrim1",
(Standard_Integer (StepGeom_TrimmedCurve::*)() const) static_cast<Standard_Integer (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::NbTrim1),
R"#(None)#" )
.def("SetTrim2",
(void (StepGeom_TrimmedCurve::*)( const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & ) ) static_cast<void (StepGeom_TrimmedCurve::*)( const opencascade::handle<StepGeom_HArray1OfTrimmingSelect> & ) >(&StepGeom_TrimmedCurve::SetTrim2),
R"#(None)#" , py::arg("aTrim2"))
.def("Trim2",
(opencascade::handle<StepGeom_HArray1OfTrimmingSelect> (StepGeom_TrimmedCurve::*)() const) static_cast<opencascade::handle<StepGeom_HArray1OfTrimmingSelect> (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::Trim2),
R"#(None)#" )
.def("Trim2Value",
(StepGeom_TrimmingSelect (StepGeom_TrimmedCurve::*)( const Standard_Integer ) const) static_cast<StepGeom_TrimmingSelect (StepGeom_TrimmedCurve::*)( const Standard_Integer ) const>(&StepGeom_TrimmedCurve::Trim2Value),
R"#(None)#" , py::arg("num"))
.def("NbTrim2",
(Standard_Integer (StepGeom_TrimmedCurve::*)() const) static_cast<Standard_Integer (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::NbTrim2),
R"#(None)#" )
.def("SetSenseAgreement",
(void (StepGeom_TrimmedCurve::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_TrimmedCurve::*)( const Standard_Boolean ) >(&StepGeom_TrimmedCurve::SetSenseAgreement),
R"#(None)#" , py::arg("aSenseAgreement"))
.def("SenseAgreement",
(Standard_Boolean (StepGeom_TrimmedCurve::*)() const) static_cast<Standard_Boolean (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::SenseAgreement),
R"#(None)#" )
.def("SetMasterRepresentation",
(void (StepGeom_TrimmedCurve::*)( const StepGeom_TrimmingPreference ) ) static_cast<void (StepGeom_TrimmedCurve::*)( const StepGeom_TrimmingPreference ) >(&StepGeom_TrimmedCurve::SetMasterRepresentation),
R"#(None)#" , py::arg("aMasterRepresentation"))
.def("MasterRepresentation",
(StepGeom_TrimmingPreference (StepGeom_TrimmedCurve::*)() const) static_cast<StepGeom_TrimmingPreference (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::MasterRepresentation),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_TrimmedCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_TrimmedCurve::*)() const>(&StepGeom_TrimmedCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_TrimmedCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_TrimmedCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BSplineCurveWithKnots ,opencascade::handle<StepGeom_BSplineCurveWithKnots> , StepGeom_BSplineCurve>>(m.attr("StepGeom_BSplineCurveWithKnots"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BSplineCurveWithKnots::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType ) ) static_cast<void (StepGeom_BSplineCurveWithKnots::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType ) >(&StepGeom_BSplineCurveWithKnots::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aKnotMultiplicities"), py::arg("aKnots"), py::arg("aKnotSpec"))
.def("SetKnotMultiplicities",
(void (StepGeom_BSplineCurveWithKnots::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnots::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&StepGeom_BSplineCurveWithKnots::SetKnotMultiplicities),
R"#(None)#" , py::arg("aKnotMultiplicities"))
.def("KnotMultiplicities",
(opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineCurveWithKnots::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineCurveWithKnots::*)() const>(&StepGeom_BSplineCurveWithKnots::KnotMultiplicities),
R"#(None)#" )
.def("KnotMultiplicitiesValue",
(Standard_Integer (StepGeom_BSplineCurveWithKnots::*)( const Standard_Integer ) const) static_cast<Standard_Integer (StepGeom_BSplineCurveWithKnots::*)( const Standard_Integer ) const>(&StepGeom_BSplineCurveWithKnots::KnotMultiplicitiesValue),
R"#(None)#" , py::arg("num"))
.def("NbKnotMultiplicities",
(Standard_Integer (StepGeom_BSplineCurveWithKnots::*)() const) static_cast<Standard_Integer (StepGeom_BSplineCurveWithKnots::*)() const>(&StepGeom_BSplineCurveWithKnots::NbKnotMultiplicities),
R"#(None)#" )
.def("SetKnots",
(void (StepGeom_BSplineCurveWithKnots::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnots::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineCurveWithKnots::SetKnots),
R"#(None)#" , py::arg("aKnots"))
.def("Knots",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineCurveWithKnots::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineCurveWithKnots::*)() const>(&StepGeom_BSplineCurveWithKnots::Knots),
R"#(None)#" )
.def("KnotsValue",
(Standard_Real (StepGeom_BSplineCurveWithKnots::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineCurveWithKnots::*)( const Standard_Integer ) const>(&StepGeom_BSplineCurveWithKnots::KnotsValue),
R"#(None)#" , py::arg("num"))
.def("NbKnots",
(Standard_Integer (StepGeom_BSplineCurveWithKnots::*)() const) static_cast<Standard_Integer (StepGeom_BSplineCurveWithKnots::*)() const>(&StepGeom_BSplineCurveWithKnots::NbKnots),
R"#(None)#" )
.def("SetKnotSpec",
(void (StepGeom_BSplineCurveWithKnots::*)( const StepGeom_KnotType ) ) static_cast<void (StepGeom_BSplineCurveWithKnots::*)( const StepGeom_KnotType ) >(&StepGeom_BSplineCurveWithKnots::SetKnotSpec),
R"#(None)#" , py::arg("aKnotSpec"))
.def("KnotSpec",
(StepGeom_KnotType (StepGeom_BSplineCurveWithKnots::*)() const) static_cast<StepGeom_KnotType (StepGeom_BSplineCurveWithKnots::*)() const>(&StepGeom_BSplineCurveWithKnots::KnotSpec),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BSplineCurveWithKnots::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BSplineCurveWithKnots::*)() const>(&StepGeom_BSplineCurveWithKnots::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BSplineCurveWithKnots::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BSplineCurveWithKnots::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve ,opencascade::handle<StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BSplineCurveWithKnots> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BSplineCurveWithKnots> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aBSplineCurveWithKnots"), py::arg("aRationalBSplineCurve"))
.def("Init",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aKnotMultiplicities"), py::arg("aKnots"), py::arg("aKnotSpec"), py::arg("aWeightsData"))
.def("SetBSplineCurveWithKnots",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_BSplineCurveWithKnots> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_BSplineCurveWithKnots> & ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::SetBSplineCurveWithKnots),
R"#(None)#" , py::arg("aBSplineCurveWithKnots"))
.def("BSplineCurveWithKnots",
(opencascade::handle<StepGeom_BSplineCurveWithKnots> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_BSplineCurveWithKnots> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::BSplineCurveWithKnots),
R"#(None)#" )
.def("SetRationalBSplineCurve",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::SetRationalBSplineCurve),
R"#(None)#" , py::arg("aRationalBSplineCurve"))
.def("RationalBSplineCurve",
(opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::RationalBSplineCurve),
R"#(None)#" )
.def("SetKnotMultiplicities",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::SetKnotMultiplicities),
R"#(None)#" , py::arg("aKnotMultiplicities"))
.def("KnotMultiplicities",
(opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::KnotMultiplicities),
R"#(None)#" )
.def("KnotMultiplicitiesValue",
(Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const Standard_Integer ) const) static_cast<Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::KnotMultiplicitiesValue),
R"#(None)#" , py::arg("num"))
.def("NbKnotMultiplicities",
(Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::NbKnotMultiplicities),
R"#(None)#" )
.def("SetKnots",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::SetKnots),
R"#(None)#" , py::arg("aKnots"))
.def("Knots",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::Knots),
R"#(None)#" )
.def("KnotsValue",
(Standard_Real (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::KnotsValue),
R"#(None)#" , py::arg("num"))
.def("NbKnots",
(Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::NbKnots),
R"#(None)#" )
.def("SetKnotSpec",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const StepGeom_KnotType ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const StepGeom_KnotType ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::SetKnotSpec),
R"#(None)#" , py::arg("aKnotSpec"))
.def("KnotSpec",
(StepGeom_KnotType (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<StepGeom_KnotType (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::KnotSpec),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::WeightsDataValue),
R"#(None)#" , py::arg("num"))
.def("NbWeightsData",
(Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::NbWeightsData),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::*)() const>(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BSplineSurfaceWithKnots ,opencascade::handle<StepGeom_BSplineSurfaceWithKnots> , StepGeom_BSplineSurface>>(m.attr("StepGeom_BSplineSurfaceWithKnots"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType ) >(&StepGeom_BSplineSurfaceWithKnots::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aUMultiplicities"), py::arg("aVMultiplicities"), py::arg("aUKnots"), py::arg("aVKnots"), py::arg("aKnotSpec"))
.def("SetUMultiplicities",
(void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&StepGeom_BSplineSurfaceWithKnots::SetUMultiplicities),
R"#(None)#" , py::arg("aUMultiplicities"))
.def("UMultiplicities",
(opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::UMultiplicities),
R"#(None)#" )
.def("UMultiplicitiesValue",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnots::UMultiplicitiesValue),
R"#(None)#" , py::arg("num"))
.def("NbUMultiplicities",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::NbUMultiplicities),
R"#(None)#" )
.def("SetVMultiplicities",
(void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&StepGeom_BSplineSurfaceWithKnots::SetVMultiplicities),
R"#(None)#" , py::arg("aVMultiplicities"))
.def("VMultiplicities",
(opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::VMultiplicities),
R"#(None)#" )
.def("VMultiplicitiesValue",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnots::VMultiplicitiesValue),
R"#(None)#" , py::arg("num"))
.def("NbVMultiplicities",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::NbVMultiplicities),
R"#(None)#" )
.def("SetUKnots",
(void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineSurfaceWithKnots::SetUKnots),
R"#(None)#" , py::arg("aUKnots"))
.def("UKnots",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::UKnots),
R"#(None)#" )
.def("UKnotsValue",
(Standard_Real (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnots::UKnotsValue),
R"#(None)#" , py::arg("num"))
.def("NbUKnots",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::NbUKnots),
R"#(None)#" )
.def("SetVKnots",
(void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnots::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineSurfaceWithKnots::SetVKnots),
R"#(None)#" , py::arg("aVKnots"))
.def("VKnots",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::VKnots),
R"#(None)#" )
.def("VKnotsValue",
(Standard_Real (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineSurfaceWithKnots::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnots::VKnotsValue),
R"#(None)#" , py::arg("num"))
.def("NbVKnots",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::NbVKnots),
R"#(None)#" )
.def("SetKnotSpec",
(void (StepGeom_BSplineSurfaceWithKnots::*)( const StepGeom_KnotType ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnots::*)( const StepGeom_KnotType ) >(&StepGeom_BSplineSurfaceWithKnots::SetKnotSpec),
R"#(None)#" , py::arg("aKnotSpec"))
.def("KnotSpec",
(StepGeom_KnotType (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<StepGeom_KnotType (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::KnotSpec),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BSplineSurfaceWithKnots::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BSplineSurfaceWithKnots::*)() const>(&StepGeom_BSplineSurfaceWithKnots::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BSplineSurfaceWithKnots::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BSplineSurfaceWithKnots::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface ,opencascade::handle<StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BSplineSurfaceWithKnots> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BSplineSurfaceWithKnots> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aBSplineSurfaceWithKnots"), py::arg("aRationalBSplineSurface"))
.def("Init",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType , const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TColStd_HArray1OfReal> & , const StepGeom_KnotType , const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aUMultiplicities"), py::arg("aVMultiplicities"), py::arg("aUKnots"), py::arg("aVKnots"), py::arg("aKnotSpec"), py::arg("aWeightsData"))
.def("SetBSplineSurfaceWithKnots",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_BSplineSurfaceWithKnots> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_BSplineSurfaceWithKnots> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetBSplineSurfaceWithKnots),
R"#(None)#" , py::arg("aBSplineSurfaceWithKnots"))
.def("BSplineSurfaceWithKnots",
(opencascade::handle<StepGeom_BSplineSurfaceWithKnots> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_BSplineSurfaceWithKnots> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::BSplineSurfaceWithKnots),
R"#(None)#" )
.def("SetRationalBSplineSurface",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetRationalBSplineSurface),
R"#(None)#" , py::arg("aRationalBSplineSurface"))
.def("RationalBSplineSurface",
(opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::RationalBSplineSurface),
R"#(None)#" )
.def("SetUMultiplicities",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetUMultiplicities),
R"#(None)#" , py::arg("aUMultiplicities"))
.def("UMultiplicities",
(opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::UMultiplicities),
R"#(None)#" )
.def("UMultiplicitiesValue",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::UMultiplicitiesValue),
R"#(None)#" , py::arg("num"))
.def("NbUMultiplicities",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::NbUMultiplicities),
R"#(None)#" )
.def("SetVMultiplicities",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetVMultiplicities),
R"#(None)#" , py::arg("aVMultiplicities"))
.def("VMultiplicities",
(opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfInteger> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::VMultiplicities),
R"#(None)#" )
.def("VMultiplicitiesValue",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::VMultiplicitiesValue),
R"#(None)#" , py::arg("num"))
.def("NbVMultiplicities",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::NbVMultiplicities),
R"#(None)#" )
.def("SetUKnots",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetUKnots),
R"#(None)#" , py::arg("aUKnots"))
.def("UKnots",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::UKnots),
R"#(None)#" )
.def("UKnotsValue",
(Standard_Real (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::UKnotsValue),
R"#(None)#" , py::arg("num"))
.def("NbUKnots",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::NbUKnots),
R"#(None)#" )
.def("SetVKnots",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetVKnots),
R"#(None)#" , py::arg("aVKnots"))
.def("VKnots",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::VKnots),
R"#(None)#" )
.def("VKnotsValue",
(Standard_Real (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::VKnotsValue),
R"#(None)#" , py::arg("num"))
.def("NbVKnots",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::NbVKnots),
R"#(None)#" )
.def("SetKnotSpec",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const StepGeom_KnotType ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const StepGeom_KnotType ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetKnotSpec),
R"#(None)#" , py::arg("aKnotSpec"))
.def("KnotSpec",
(StepGeom_KnotType (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<StepGeom_KnotType (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::KnotSpec),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray2OfReal> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray2OfReal> (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::WeightsDataValue),
R"#(None)#" , py::arg("num1"), py::arg("num2"))
.def("NbWeightsDataI",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::NbWeightsDataI),
R"#(None)#" )
.def("NbWeightsDataJ",
(Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::NbWeightsDataJ),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::*)() const>(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BezierCurve ,opencascade::handle<StepGeom_BezierCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_BezierCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BezierCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BezierCurve::*)() const>(&StepGeom_BezierCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BezierCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BezierCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BezierCurveAndRationalBSplineCurve ,opencascade::handle<StepGeom_BezierCurveAndRationalBSplineCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_BezierCurveAndRationalBSplineCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BezierCurve> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BezierCurve> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_BezierCurveAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aBezierCurve"), py::arg("aRationalBSplineCurve"))
.def("Init",
(void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BezierCurveAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetBezierCurve",
(void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_BezierCurve> & ) ) static_cast<void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_BezierCurve> & ) >(&StepGeom_BezierCurveAndRationalBSplineCurve::SetBezierCurve),
R"#(None)#" , py::arg("aBezierCurve"))
.def("BezierCurve",
(opencascade::handle<StepGeom_BezierCurve> (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_BezierCurve> (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const>(&StepGeom_BezierCurveAndRationalBSplineCurve::BezierCurve),
R"#(None)#" )
.def("SetRationalBSplineCurve",
(void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_BezierCurveAndRationalBSplineCurve::SetRationalBSplineCurve),
R"#(None)#" , py::arg("aRationalBSplineCurve"))
.def("RationalBSplineCurve",
(opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const>(&StepGeom_BezierCurveAndRationalBSplineCurve::RationalBSplineCurve),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_BezierCurveAndRationalBSplineCurve::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const>(&StepGeom_BezierCurveAndRationalBSplineCurve::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BezierCurveAndRationalBSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_BezierCurveAndRationalBSplineCurve::WeightsDataValue),
R"#(None)#" , py::arg("num"))
.def("NbWeightsData",
(Standard_Integer (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const>(&StepGeom_BezierCurveAndRationalBSplineCurve::NbWeightsData),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BezierCurveAndRationalBSplineCurve::*)() const>(&StepGeom_BezierCurveAndRationalBSplineCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BezierCurveAndRationalBSplineCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BezierCurveAndRationalBSplineCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BezierSurface ,opencascade::handle<StepGeom_BezierSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_BezierSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BezierSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BezierSurface::*)() const>(&StepGeom_BezierSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BezierSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BezierSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BezierSurfaceAndRationalBSplineSurface ,opencascade::handle<StepGeom_BezierSurfaceAndRationalBSplineSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_BezierSurfaceAndRationalBSplineSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BezierSurface> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_BezierSurface> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_BezierSurfaceAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aBezierSurface"), py::arg("aRationalBSplineSurface"))
.def("Init",
(void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_BezierSurfaceAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetBezierSurface",
(void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_BezierSurface> & ) ) static_cast<void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_BezierSurface> & ) >(&StepGeom_BezierSurfaceAndRationalBSplineSurface::SetBezierSurface),
R"#(None)#" , py::arg("aBezierSurface"))
.def("BezierSurface",
(opencascade::handle<StepGeom_BezierSurface> (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_BezierSurface> (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_BezierSurfaceAndRationalBSplineSurface::BezierSurface),
R"#(None)#" )
.def("SetRationalBSplineSurface",
(void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_BezierSurfaceAndRationalBSplineSurface::SetRationalBSplineSurface),
R"#(None)#" , py::arg("aRationalBSplineSurface"))
.def("RationalBSplineSurface",
(opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_BezierSurfaceAndRationalBSplineSurface::RationalBSplineSurface),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_BezierSurfaceAndRationalBSplineSurface::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray2OfReal> (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray2OfReal> (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_BezierSurfaceAndRationalBSplineSurface::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const>(&StepGeom_BezierSurfaceAndRationalBSplineSurface::WeightsDataValue),
R"#(None)#" , py::arg("num1"), py::arg("num2"))
.def("NbWeightsDataI",
(Standard_Integer (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_BezierSurfaceAndRationalBSplineSurface::NbWeightsDataI),
R"#(None)#" )
.def("NbWeightsDataJ",
(Standard_Integer (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_BezierSurfaceAndRationalBSplineSurface::NbWeightsDataJ),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BezierSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_BezierSurfaceAndRationalBSplineSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BezierSurfaceAndRationalBSplineSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BezierSurfaceAndRationalBSplineSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_CompositeCurveOnSurface ,opencascade::handle<StepGeom_CompositeCurveOnSurface> , StepGeom_CompositeCurve>>(m.attr("StepGeom_CompositeCurveOnSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_CompositeCurveOnSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_CompositeCurveOnSurface::*)() const>(&StepGeom_CompositeCurveOnSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_CompositeCurveOnSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_CompositeCurveOnSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_DegenerateToroidalSurface ,opencascade::handle<StepGeom_DegenerateToroidalSurface> , StepGeom_ToroidalSurface>>(m.attr("StepGeom_DegenerateToroidalSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_DegenerateToroidalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real , const Standard_Real , const Standard_Boolean ) ) static_cast<void (StepGeom_DegenerateToroidalSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const Standard_Real , const Standard_Real , const Standard_Boolean ) >(&StepGeom_DegenerateToroidalSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aPosition"), py::arg("aMajorRadius"), py::arg("aMinorRadius"), py::arg("aSelectOuter"))
.def("SetSelectOuter",
(void (StepGeom_DegenerateToroidalSurface::*)( const Standard_Boolean ) ) static_cast<void (StepGeom_DegenerateToroidalSurface::*)( const Standard_Boolean ) >(&StepGeom_DegenerateToroidalSurface::SetSelectOuter),
R"#(None)#" , py::arg("aSelectOuter"))
.def("SelectOuter",
(Standard_Boolean (StepGeom_DegenerateToroidalSurface::*)() const) static_cast<Standard_Boolean (StepGeom_DegenerateToroidalSurface::*)() const>(&StepGeom_DegenerateToroidalSurface::SelectOuter),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_DegenerateToroidalSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_DegenerateToroidalSurface::*)() const>(&StepGeom_DegenerateToroidalSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_DegenerateToroidalSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_DegenerateToroidalSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_QuasiUniformCurve ,opencascade::handle<StepGeom_QuasiUniformCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_QuasiUniformCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformCurve::*)() const>(&StepGeom_QuasiUniformCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_QuasiUniformCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_QuasiUniformCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_QuasiUniformCurveAndRationalBSplineCurve ,opencascade::handle<StepGeom_QuasiUniformCurveAndRationalBSplineCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_QuasiUniformCurveAndRationalBSplineCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_QuasiUniformCurve> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_QuasiUniformCurve> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aQuasiUniformCurve"), py::arg("aRationalBSplineCurve"))
.def("Init",
(void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetQuasiUniformCurve",
(void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_QuasiUniformCurve> & ) ) static_cast<void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_QuasiUniformCurve> & ) >(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::SetQuasiUniformCurve),
R"#(None)#" , py::arg("aQuasiUniformCurve"))
.def("QuasiUniformCurve",
(opencascade::handle<StepGeom_QuasiUniformCurve> (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_QuasiUniformCurve> (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::QuasiUniformCurve),
R"#(None)#" )
.def("SetRationalBSplineCurve",
(void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::SetRationalBSplineCurve),
R"#(None)#" , py::arg("aRationalBSplineCurve"))
.def("RationalBSplineCurve",
(opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::RationalBSplineCurve),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::WeightsDataValue),
R"#(None)#" , py::arg("num"))
.def("NbWeightsData",
(Standard_Integer (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::NbWeightsData),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_QuasiUniformCurveAndRationalBSplineCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_QuasiUniformSurface ,opencascade::handle<StepGeom_QuasiUniformSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_QuasiUniformSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformSurface::*)() const>(&StepGeom_QuasiUniformSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_QuasiUniformSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_QuasiUniformSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface ,opencascade::handle<StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_QuasiUniformSurface> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_QuasiUniformSurface> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aQuasiUniformSurface"), py::arg("aRationalBSplineSurface"))
.def("Init",
(void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetQuasiUniformSurface",
(void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_QuasiUniformSurface> & ) ) static_cast<void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_QuasiUniformSurface> & ) >(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::SetQuasiUniformSurface),
R"#(None)#" , py::arg("aQuasiUniformSurface"))
.def("QuasiUniformSurface",
(opencascade::handle<StepGeom_QuasiUniformSurface> (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_QuasiUniformSurface> (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::QuasiUniformSurface),
R"#(None)#" )
.def("SetRationalBSplineSurface",
(void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::SetRationalBSplineSurface),
R"#(None)#" , py::arg("aRationalBSplineSurface"))
.def("RationalBSplineSurface",
(opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::RationalBSplineSurface),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray2OfReal> (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray2OfReal> (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const>(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::WeightsDataValue),
R"#(None)#" , py::arg("num1"), py::arg("num2"))
.def("NbWeightsDataI",
(Standard_Integer (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::NbWeightsDataI),
R"#(None)#" )
.def("NbWeightsDataJ",
(Standard_Integer (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::NbWeightsDataJ),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_RationalBSplineCurve ,opencascade::handle<StepGeom_RationalBSplineCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_RationalBSplineCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_RationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_RationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_RationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetWeightsData",
(void (StepGeom_RationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_RationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_RationalBSplineCurve::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_RationalBSplineCurve::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_RationalBSplineCurve::*)() const>(&StepGeom_RationalBSplineCurve::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_RationalBSplineCurve::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_RationalBSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_RationalBSplineCurve::WeightsDataValue),
R"#(None)#" , py::arg("num"))
.def("NbWeightsData",
(Standard_Integer (StepGeom_RationalBSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_RationalBSplineCurve::*)() const>(&StepGeom_RationalBSplineCurve::NbWeightsData),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_RationalBSplineCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_RationalBSplineCurve::*)() const>(&StepGeom_RationalBSplineCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_RationalBSplineCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_RationalBSplineCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_RationalBSplineSurface ,opencascade::handle<StepGeom_RationalBSplineSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_RationalBSplineSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_RationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_RationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_RationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetWeightsData",
(void (StepGeom_RationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_RationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_RationalBSplineSurface::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray2OfReal> (StepGeom_RationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray2OfReal> (StepGeom_RationalBSplineSurface::*)() const>(&StepGeom_RationalBSplineSurface::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_RationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_RationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const>(&StepGeom_RationalBSplineSurface::WeightsDataValue),
R"#(None)#" , py::arg("num1"), py::arg("num2"))
.def("NbWeightsDataI",
(Standard_Integer (StepGeom_RationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_RationalBSplineSurface::*)() const>(&StepGeom_RationalBSplineSurface::NbWeightsDataI),
R"#(None)#" )
.def("NbWeightsDataJ",
(Standard_Integer (StepGeom_RationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_RationalBSplineSurface::*)() const>(&StepGeom_RationalBSplineSurface::NbWeightsDataJ),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_RationalBSplineSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_RationalBSplineSurface::*)() const>(&StepGeom_RationalBSplineSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_RationalBSplineSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_RationalBSplineSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_UniformCurve ,opencascade::handle<StepGeom_UniformCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_UniformCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_UniformCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_UniformCurve::*)() const>(&StepGeom_UniformCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_UniformCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_UniformCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_UniformCurveAndRationalBSplineCurve ,opencascade::handle<StepGeom_UniformCurveAndRationalBSplineCurve> , StepGeom_BSplineCurve>>(m.attr("StepGeom_UniformCurveAndRationalBSplineCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_UniformCurve> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_UniformCurve> & , const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_UniformCurveAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aUniformCurve"), py::arg("aRationalBSplineCurve"))
.def("Init",
(void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<StepGeom_HArray1OfCartesianPoint> & , const StepGeom_BSplineCurveForm , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_UniformCurveAndRationalBSplineCurve::Init),
R"#(None)#" , py::arg("aName"), py::arg("aDegree"), py::arg("aControlPointsList"), py::arg("aCurveForm"), py::arg("aClosedCurve"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetUniformCurve",
(void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_UniformCurve> & ) ) static_cast<void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_UniformCurve> & ) >(&StepGeom_UniformCurveAndRationalBSplineCurve::SetUniformCurve),
R"#(None)#" , py::arg("aUniformCurve"))
.def("UniformCurve",
(opencascade::handle<StepGeom_UniformCurve> (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_UniformCurve> (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_UniformCurveAndRationalBSplineCurve::UniformCurve),
R"#(None)#" )
.def("SetRationalBSplineCurve",
(void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) ) static_cast<void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<StepGeom_RationalBSplineCurve> & ) >(&StepGeom_UniformCurveAndRationalBSplineCurve::SetRationalBSplineCurve),
R"#(None)#" , py::arg("aRationalBSplineCurve"))
.def("RationalBSplineCurve",
(opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineCurve> (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_UniformCurveAndRationalBSplineCurve::RationalBSplineCurve),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const opencascade::handle<TColStd_HArray1OfReal> & ) >(&StepGeom_UniformCurveAndRationalBSplineCurve::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray1OfReal> (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_UniformCurveAndRationalBSplineCurve::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_UniformCurveAndRationalBSplineCurve::*)( const Standard_Integer ) const>(&StepGeom_UniformCurveAndRationalBSplineCurve::WeightsDataValue),
R"#(None)#" , py::arg("num"))
.def("NbWeightsData",
(Standard_Integer (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const) static_cast<Standard_Integer (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_UniformCurveAndRationalBSplineCurve::NbWeightsData),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_UniformCurveAndRationalBSplineCurve::*)() const>(&StepGeom_UniformCurveAndRationalBSplineCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_UniformCurveAndRationalBSplineCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_UniformCurveAndRationalBSplineCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_UniformSurface ,opencascade::handle<StepGeom_UniformSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_UniformSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_UniformSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_UniformSurface::*)() const>(&StepGeom_UniformSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_UniformSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_UniformSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_UniformSurfaceAndRationalBSplineSurface ,opencascade::handle<StepGeom_UniformSurfaceAndRationalBSplineSurface> , StepGeom_BSplineSurface>>(m.attr("StepGeom_UniformSurfaceAndRationalBSplineSurface"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_UniformSurface> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<StepGeom_UniformSurface> & , const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_UniformSurfaceAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aUniformSurface"), py::arg("aRationalBSplineSurface"))
.def("Init",
(void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<StepGeom_HArray2OfCartesianPoint> & , const StepGeom_BSplineSurfaceForm , const StepData_Logical , const StepData_Logical , const StepData_Logical , const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_UniformSurfaceAndRationalBSplineSurface::Init),
R"#(None)#" , py::arg("aName"), py::arg("aUDegree"), py::arg("aVDegree"), py::arg("aControlPointsList"), py::arg("aSurfaceForm"), py::arg("aUClosed"), py::arg("aVClosed"), py::arg("aSelfIntersect"), py::arg("aWeightsData"))
.def("SetUniformSurface",
(void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_UniformSurface> & ) ) static_cast<void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_UniformSurface> & ) >(&StepGeom_UniformSurfaceAndRationalBSplineSurface::SetUniformSurface),
R"#(None)#" , py::arg("aUniformSurface"))
.def("UniformSurface",
(opencascade::handle<StepGeom_UniformSurface> (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_UniformSurface> (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_UniformSurfaceAndRationalBSplineSurface::UniformSurface),
R"#(None)#" )
.def("SetRationalBSplineSurface",
(void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) ) static_cast<void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<StepGeom_RationalBSplineSurface> & ) >(&StepGeom_UniformSurfaceAndRationalBSplineSurface::SetRationalBSplineSurface),
R"#(None)#" , py::arg("aRationalBSplineSurface"))
.def("RationalBSplineSurface",
(opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<StepGeom_RationalBSplineSurface> (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_UniformSurfaceAndRationalBSplineSurface::RationalBSplineSurface),
R"#(None)#" )
.def("SetWeightsData",
(void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) ) static_cast<void (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const opencascade::handle<TColStd_HArray2OfReal> & ) >(&StepGeom_UniformSurfaceAndRationalBSplineSurface::SetWeightsData),
R"#(None)#" , py::arg("aWeightsData"))
.def("WeightsData",
(opencascade::handle<TColStd_HArray2OfReal> (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<opencascade::handle<TColStd_HArray2OfReal> (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_UniformSurfaceAndRationalBSplineSurface::WeightsData),
R"#(None)#" )
.def("WeightsDataValue",
(Standard_Real (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)( const Standard_Integer , const Standard_Integer ) const>(&StepGeom_UniformSurfaceAndRationalBSplineSurface::WeightsDataValue),
R"#(None)#" , py::arg("num1"), py::arg("num2"))
.def("NbWeightsDataI",
(Standard_Integer (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_UniformSurfaceAndRationalBSplineSurface::NbWeightsDataI),
R"#(None)#" )
.def("NbWeightsDataJ",
(Standard_Integer (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<Standard_Integer (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_UniformSurfaceAndRationalBSplineSurface::NbWeightsDataJ),
R"#(None)#" )
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_UniformSurfaceAndRationalBSplineSurface::*)() const>(&StepGeom_UniformSurfaceAndRationalBSplineSurface::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_UniformSurfaceAndRationalBSplineSurface::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_UniformSurfaceAndRationalBSplineSurface::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_BoundaryCurve ,opencascade::handle<StepGeom_BoundaryCurve> , StepGeom_CompositeCurveOnSurface>>(m.attr("StepGeom_BoundaryCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_BoundaryCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_BoundaryCurve::*)() const>(&StepGeom_BoundaryCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_BoundaryCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_BoundaryCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
static_cast<py::class_<StepGeom_OuterBoundaryCurve ,opencascade::handle<StepGeom_OuterBoundaryCurve> , StepGeom_BoundaryCurve>>(m.attr("StepGeom_OuterBoundaryCurve"))
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (StepGeom_OuterBoundaryCurve::*)() const) static_cast<const opencascade::handle<Standard_Type> & (StepGeom_OuterBoundaryCurve::*)() const>(&StepGeom_OuterBoundaryCurve::DynamicType),
R"#(None)#" )
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&StepGeom_OuterBoundaryCurve::get_type_name),
R"#(None)#" )
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&StepGeom_OuterBoundaryCurve::get_type_descriptor),
R"#(None)#" )
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
;
// functions
// ./opencascade/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx
// ./opencascade/StepGeom_PreferredSurfaceCurveRepresentation.hxx
// ./opencascade/StepGeom_Array1OfTrimmingSelect.hxx
// ./opencascade/StepGeom_Array1OfCompositeCurveSegment.hxx
// ./opencascade/StepGeom_BSplineSurface.hxx
// ./opencascade/StepGeom_Curve.hxx
// ./opencascade/StepGeom_Axis1Placement.hxx
// ./opencascade/StepGeom_HArray2OfCartesianPoint.hxx
// ./opencascade/StepGeom_Pcurve.hxx
// ./opencascade/StepGeom_RectangularCompositeSurface.hxx
// ./opencascade/StepGeom_CartesianTransformationOperator3d.hxx
// ./opencascade/StepGeom_CylindricalSurface.hxx
// ./opencascade/StepGeom_TransitionCode.hxx
// ./opencascade/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx
// ./opencascade/StepGeom_ConicalSurface.hxx
// ./opencascade/StepGeom_Direction.hxx
// ./opencascade/StepGeom_PointReplica.hxx
// ./opencascade/StepGeom_Axis2Placement2d.hxx
// ./opencascade/StepGeom_OffsetCurve3d.hxx
// ./opencascade/StepGeom_BSplineCurveForm.hxx
// ./opencascade/StepGeom_CompositeCurveOnSurface.hxx
// ./opencascade/StepGeom_HArray1OfCurve.hxx
// ./opencascade/StepGeom_Parabola.hxx
// ./opencascade/StepGeom_VectorOrDirection.hxx
// ./opencascade/StepGeom_Vector.hxx
// ./opencascade/StepGeom_PcurveOrSurface.hxx
// ./opencascade/StepGeom_DegeneratePcurve.hxx
// ./opencascade/StepGeom_BSplineSurfaceWithKnots.hxx
// ./opencascade/StepGeom_PointOnCurve.hxx
// ./opencascade/StepGeom_HArray2OfSurfacePatch.hxx
// ./opencascade/StepGeom_Array2OfSurfacePatch.hxx
// ./opencascade/StepGeom_SphericalSurface.hxx
// ./opencascade/StepGeom_Hyperbola.hxx
// ./opencascade/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx
// ./opencascade/StepGeom_EvaluatedDegeneratePcurve.hxx
// ./opencascade/StepGeom_SurfaceReplica.hxx
// ./opencascade/StepGeom_BoundaryCurve.hxx
// ./opencascade/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx
// ./opencascade/StepGeom_TrimmingSelect.hxx
// ./opencascade/StepGeom_BoundedSurface.hxx
// ./opencascade/StepGeom_TrimmingMember.hxx
// ./opencascade/StepGeom_OrientedSurface.hxx
// ./opencascade/StepGeom_UniformCurve.hxx
// ./opencascade/StepGeom_BSplineCurveWithKnots.hxx
// ./opencascade/StepGeom_HArray1OfTrimmingSelect.hxx
// ./opencascade/StepGeom_BezierSurface.hxx
// ./opencascade/StepGeom_SurfaceOfLinearExtrusion.hxx
// ./opencascade/StepGeom_DegenerateToroidalSurface.hxx
// ./opencascade/StepGeom_OffsetSurface.hxx
// ./opencascade/StepGeom_Placement.hxx
// ./opencascade/StepGeom_Array1OfCurve.hxx
// ./opencascade/StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx
// ./opencascade/StepGeom_Array1OfBoundaryCurve.hxx
// ./opencascade/StepGeom_Circle.hxx
// ./opencascade/StepGeom_BoundedCurve.hxx
// ./opencascade/StepGeom_Axis2Placement3d.hxx
// ./opencascade/StepGeom_KnotType.hxx
// ./opencascade/StepGeom_QuasiUniformCurve.hxx
// ./opencascade/StepGeom_SeamCurve.hxx
// ./opencascade/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx
// ./opencascade/StepGeom_CurveOnSurface.hxx
// ./opencascade/StepGeom_Conic.hxx
// ./opencascade/StepGeom_CartesianPoint.hxx
// ./opencascade/StepGeom_BezierCurve.hxx
// ./opencascade/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx
// ./opencascade/StepGeom_Array1OfPcurveOrSurface.hxx
// ./opencascade/StepGeom_HArray1OfSurfaceBoundary.hxx
// ./opencascade/StepGeom_CartesianTransformationOperator2d.hxx
// ./opencascade/StepGeom_SurfaceCurveAndBoundedCurve.hxx
// ./opencascade/StepGeom_SurfacePatch.hxx
// ./opencascade/StepGeom_UniformSurface.hxx
// ./opencascade/StepGeom_ElementarySurface.hxx
// ./opencascade/StepGeom_SweptSurface.hxx
// ./opencascade/StepGeom_Point.hxx
// ./opencascade/StepGeom_OuterBoundaryCurve.hxx
// ./opencascade/StepGeom_Plane.hxx
// ./opencascade/StepGeom_IntersectionCurve.hxx
// ./opencascade/StepGeom_Line.hxx
// ./opencascade/StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx
// ./opencascade/StepGeom_HArray1OfBoundaryCurve.hxx
// ./opencascade/StepGeom_CartesianTransformationOperator.hxx
// ./opencascade/StepGeom_HArray1OfCompositeCurveSegment.hxx
// ./opencascade/StepGeom_TrimmingPreference.hxx
// ./opencascade/StepGeom_BSplineSurfaceForm.hxx
// ./opencascade/StepGeom_ToroidalSurface.hxx
// ./opencascade/StepGeom_QuasiUniformSurface.hxx
// ./opencascade/StepGeom_Array1OfSurfaceBoundary.hxx
// ./opencascade/StepGeom_RationalBSplineSurface.hxx
// ./opencascade/StepGeom_HArray1OfCartesianPoint.hxx
// ./opencascade/StepGeom_GeometricRepresentationItem.hxx
// ./opencascade/StepGeom_Axis2Placement.hxx
// ./opencascade/StepGeom_BSplineCurve.hxx
// ./opencascade/StepGeom_CurveReplica.hxx
// ./opencascade/StepGeom_RectangularTrimmedSurface.hxx
// ./opencascade/StepGeom_CompositeCurve.hxx
// ./opencascade/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx
// ./opencascade/StepGeom_Polyline.hxx
// ./opencascade/StepGeom_RationalBSplineCurve.hxx
// ./opencascade/StepGeom_SurfaceCurve.hxx
// ./opencascade/StepGeom_CurveBoundedSurface.hxx
// ./opencascade/StepGeom_HArray1OfPcurveOrSurface.hxx
// ./opencascade/StepGeom_BezierCurveAndRationalBSplineCurve.hxx
// ./opencascade/StepGeom_UniformCurveAndRationalBSplineCurve.hxx
// ./opencascade/StepGeom_Ellipse.hxx
// ./opencascade/StepGeom_TrimmedCurve.hxx
// ./opencascade/StepGeom_SurfaceBoundary.hxx
// ./opencascade/StepGeom_Array1OfCartesianPoint.hxx
// ./opencascade/StepGeom_CompositeCurveSegment.hxx
// ./opencascade/StepGeom_ReparametrisedCompositeCurveSegment.hxx
// ./opencascade/StepGeom_SurfaceOfRevolution.hxx
// ./opencascade/StepGeom_GeometricRepresentationContext.hxx
// ./opencascade/StepGeom_Surface.hxx
// ./opencascade/StepGeom_PointOnSurface.hxx
// ./opencascade/StepGeom_Array2OfCartesianPoint.hxx
// Additional functions
// operators
// register typdefs
register_template_NCollection_Array1<StepGeom_TrimmingSelect>(m,"StepGeom_Array1OfTrimmingSelect");
register_template_NCollection_Array1<opencascade::handle<StepGeom_CompositeCurveSegment> >(m,"StepGeom_Array1OfCompositeCurveSegment");
register_template_NCollection_Array2<opencascade::handle<StepGeom_SurfacePatch> >(m,"StepGeom_Array2OfSurfacePatch");
register_template_NCollection_Array1<opencascade::handle<StepGeom_Curve> >(m,"StepGeom_Array1OfCurve");
register_template_NCollection_Array1<opencascade::handle<StepGeom_BoundaryCurve> >(m,"StepGeom_Array1OfBoundaryCurve");
register_template_NCollection_Array1<StepGeom_PcurveOrSurface>(m,"StepGeom_Array1OfPcurveOrSurface");
register_template_NCollection_Array1<StepGeom_SurfaceBoundary>(m,"StepGeom_Array1OfSurfaceBoundary");
register_template_NCollection_Array1<opencascade::handle<StepGeom_CartesianPoint> >(m,"StepGeom_Array1OfCartesianPoint");
register_template_NCollection_Array2<opencascade::handle<StepGeom_CartesianPoint> >(m,"StepGeom_Array2OfCartesianPoint");
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
| [
"adam.jan.urbanczyk@gmail.com"
] | adam.jan.urbanczyk@gmail.com |
58456ed27d67af45df943849069d2abe9a210a01 | 78adb187642013cf771210a05fea43f079d8c640 | /Notifies/CAnimNotify_StunEnd.h | c8ba1e73b2c1ceb626e609a1515c0504f95fa1db | [] | no_license | header-file/CharacterCpp | 62958b4ce2d737a217f18d3b85063ba466c0b862 | d1bc41f9998af0700631552c2532046b621d6a7f | refs/heads/master | 2022-11-11T03:13:48.017549 | 2020-07-07T05:35:45 | 2020-07-07T05:35:45 | 277,725,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 324 | h | #pragma once
#include "CoreMinimal.h"
#include "Animation/AnimNotifies/AnimNotify.h"
#include "CAnimNotify_StunEnd.generated.h"
UCLASS()
class CHARACTERCPP_API UCAnimNotify_StunEnd : public UAnimNotify
{
GENERATED_BODY()
public:
void Notify(USkeletalMeshComponent* MeshComp, UAnimSequenceBase* Animation) override;
};
| [
"34476408+header-file@users.noreply.github.com"
] | 34476408+header-file@users.noreply.github.com |
afae1bf0ed08c89964580f90d01e14a7cd1fdaa1 | 54977752f8e36e08f74e0ef4101981462caf7313 | /ultrasonic_test_code/ultrasonic_test_code.ino | 096d6d56683ac50dc0a36219f3aebec936a17ac7 | [] | no_license | Samuel787/Copper-Uriyam | 78406d716f76f26dd3486eeeb861cd95e2edb97b | 5910b5a596cf3c72f3bc0944433bccc1504d3e3b | refs/heads/master | 2020-04-04T10:24:26.275599 | 2018-11-07T14:37:50 | 2018-11-07T14:37:50 | 155,853,480 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 541 | ino | #include <Arduino.h>
#include <Wire.h>
#include <SoftwareSerial.h>
#include <MeMCore.h>
MeUltrasonicSensor ultrasonic_4(PORT_4);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
/*
// put your main code here, to run repeatedly:
if((ultrasonic_4.distanceCm()) < 5){
Serial.print("Less than 5 cm\n");
} else {
Serial.print("More or equal to 5cm\n");
}
*/
//read the ultrasonic value
Serial.print(ultrasonic_4.distanceCm());
Serial.print("\n");
delay(200);
}
| [
"suther.david.samuel@gmail.com"
] | suther.david.samuel@gmail.com |
036015e9fac3fb97c75c56522ac7dda6e9bc6829 | 6cf953d375a983e968ed9ea80ba79f2345c47dfe | /IA/ItemAssistantHook/DetectPlayerId.cpp | 662d58b5db4efb46604917f190a653a34939d4fb | [] | no_license | Rumbel84/GrimDamage | 420dd7cf5e498b95511c91f1615eba1a85db4bf0 | df617c83fa4f3705544ad2a6f7b53b60e6e64121 | refs/heads/master | 2022-11-16T02:21:37.798630 | 2020-07-14T09:32:30 | 2020-07-14T09:32:30 | 279,541,002 | 0 | 0 | null | 2020-07-14T09:27:11 | 2020-07-14T09:27:10 | null | UTF-8 | C++ | false | false | 2,905 | cpp | #include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <detours.h>
#include "DetectPlayerId.h"
#include "Globals.h"
HANDLE DetectPlayerId::m_hEvent;
DataQueue* DetectPlayerId::m_dataQueue;
DetectPlayerId::OriginalMethodPtr DetectPlayerId::originalMethod;
DetectPlayerId::GetObjectIdMethodPtr DetectPlayerId::GetObjectId;
int DetectPlayerId::m_offset = 0;
bool DetectPlayerId::DetectOffset() {
SIZE_T bytesRead = 0;
HANDLE hProcess = GetCurrentProcess();
const size_t resultSize = 31;
unsigned char result[resultSize] = { 0 };
char* addr = (char*)GetProcAddress(::GetModuleHandle("Game.dll"), "?SetMainPlayer@Player@GAME@@QAEX_N@Z");
int offset = 0;
if (ReadProcessMemory(hProcess, addr, (void*)&result, 30, &bytesRead) != 0) {
for (int i = 0; i < bytesRead - 6; i++) {
if ((int)result[i] == 0x88 && (int)result[i + 1] == 0x81) {
memcpy(&offset, &result[i + 2], 4);
DataItemPtr item(new DataItem(TYPE_PlayerPrimaryIDOffsetDetected, sizeof(offset), (char*)&offset));
m_dataQueue->push(item);
SetEvent(m_hEvent);
m_offset = offset;
return true;
}
}
}
DataItemPtr item(new DataItem(TYPE_ErrorDetectingPrimaryPlayerIdOffset, resultSize, (char*)result));
m_dataQueue->push(item);
SetEvent(m_hEvent);
return false;
}
int DetectPlayerId::GetPlayerId(int* player) {
if (m_offset == 0)
return -1;
SIZE_T bytesRead = 0;
HANDLE hProcess = GetCurrentProcess();
unsigned int playerId = 0;
if (ReadProcessMemory(hProcess, player + m_offset, (void*)&playerId, 4, &bytesRead) != 0) {
return playerId;
}
return -1;
}
void DetectPlayerId::EnableHook() {
GetObjectId = (GetObjectIdMethodPtr)GetProcAddress(::GetModuleHandle("Engine.dll"), "?GetObjectId@Object@GAME@@QBEIXZ");
originalMethod = (OriginalMethodPtr)GetProcAddress(::GetModuleHandle("Game.dll"), "?SetMainPlayer@Player@GAME@@QAEX_N@Z");
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
DetourAttach((PVOID*)&originalMethod, HookedMethod);
DetourTransactionCommit();
}
DetectPlayerId::DetectPlayerId(DataQueue* dataQueue, HANDLE hEvent) {
DetectPlayerId::m_dataQueue = dataQueue;
DetectPlayerId::m_hEvent = hEvent;
}
DetectPlayerId::DetectPlayerId() {
DetectPlayerId::m_hEvent = NULL;
}
void DetectPlayerId::DisableHook() {
LONG res1 = DetourTransactionBegin();
LONG res2 = DetourUpdateThread(GetCurrentThread());
DetourDetach((PVOID*)&originalMethod, HookedMethod);
DetourTransactionCommit();
}
void* __fastcall DetectPlayerId::HookedMethod(void* This, void* notUsed, bool b) {
void* v = originalMethod(This, b);
const size_t resultSize = sizeof(int) + sizeof(bool);
char result[resultSize] = { 0 };
result[0] = b ? 1 : 0;
int id = GetObjectId((void*)This);
memcpy(result + 1, &id, sizeof(id));
DataItemPtr item(new DataItem(TYPE_DetectPlayerId, 5, (char*)&result));
m_dataQueue->push(item);
SetEvent(m_hEvent);
return v;
} | [
"e@ma.il"
] | e@ma.il |
1a54e62ec38591b9a65daa3b3f2e5090dc166093 | 61e4fa969cd7c5cfb2ae7cd3df076b94db4c611f | /Client/Calendar/XTPCalendarThemePrevNextEventButton.h | f02d73a312c1298f81592203fffef7f3d0afa161 | [] | no_license | wonderkun/star_Rat_3.1 | 95135dd0bf6c3c9b1767367faa4092b75bf2555f | 3037ebcff27832914b396bc1459913fd3640f4b1 | refs/heads/master | 2023-04-20T08:31:56.841790 | 2021-05-08T10:14:09 | 2021-05-08T10:14:09 | 338,203,129 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,463 | h | // XTPCalendarThemePrevNextEventButton.h : header file
//
// (c)1998-2020 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
// CONSENT OF CODEJOCK SOFTWARE.
//
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
// IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
// SINGLE COMPUTER.
//
// CONTACT INFORMATION:
// support@codejock.com
// http://www.codejock.com
//
/////////////////////////////////////////////////////////////////////////////
//{{AFX_CODEJOCK_PRIVATE
#if !defined(__XTPCALENDARTHEMEPREVNEXTEVENTBUTTON_H__)
# define __XTPCALENDARTHEMEPREVNEXTEVENTBUTTON_H__
//}}AFX_CODEJOCK_PRIVATE
# if _MSC_VER > 1000
# pragma once
# endif // _MSC_VER > 1000
# include "Common/Base/Diagnostic/XTPDisableNoisyWarnings.h"
class CTOPrevNextEventButtons;
DECLARE_THEMEPART(CTOPrevNextEventButton, CXTPCalendarThemePart)
CXTPCalendarThemeIntValue m_nBitmapID;
CXTPCalendarThemeRectValue m_rcBitmapBorder;
CXTPCalendarTheme::CThemeFontColorSetValue m_fcsetText;
CXTPPaintManagerColor m_clrDisabledText;
CXTPCalendarThemeStringValue m_strText;
virtual void RefreshMetrics(BOOL bRefreshChildren = TRUE);
virtual void DoPropExchange(CXTPPropExchange*){};
virtual void Serialize(CArchive&){};
virtual void AdjustLayout(CXTPCalendarView* pObject, CDC* pDC, const CRect& rcRect);
virtual void Draw(CXTPCalendarView* pObject, CDC* pDC);
using TBase::Draw;
virtual int HitTest(const CPoint* pPoint = NULL)
const; // return 0, xtpCalendarHitTestPrevEventButton or xtpCalendarHitTestNextEventButton
virtual void OnMouseMove(CCmdTarget* pObject, UINT nFlags, CPoint point);
virtual BOOL OnLButtonDown(CCmdTarget* pObject, UINT nFlags, CPoint point,
CTOPrevNextEventButtons* pButtons);
using TBase::OnLButtonDown;
virtual CRect GetRect();
CTOPrevNextEventButton();
virtual ~CTOPrevNextEventButton();
protected:
CSize GetSize(const CRect* prcRect = NULL);
BOOL m_bPrev;
CRect m_rcRect;
public:
BOOL m_bHot;
BOOL m_bDisabled;
BOOL m_bVisible;
}
;
# include "Common/Base/Diagnostic/XTPEnableNoisyWarnings.h"
//{{AFX_CODEJOCK_PRIVATE
#endif // __XTPCALENDARTHEMEPREVNEXTEVENTBUTTON_H__
//}}AFX_CODEJOCK_PRIVATE
| [
"yicheng.wxm@alibaba-inc.com"
] | yicheng.wxm@alibaba-inc.com |
044b52175765fc574feb8ffbbd6122dd5ebfcf01 | 14248aaedfa5f77c7fc5dd8c3741604fb987de5c | /luogu/P2821.cpp | c6b23666471412928ca15f15e7164b294c2a8080 | [] | no_license | atubo/online-judge | fc51012465a1bd07561b921f5c7d064e336a4cd2 | 8774f6c608bb209a1ebbb721d6bbfdb5c1d1ce9b | refs/heads/master | 2021-11-22T19:48:14.279016 | 2021-08-29T23:16:16 | 2021-08-29T23:16:16 | 13,290,232 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,405 | cpp | // https://www.luogu.org/problemnew/show/P2821
// 变幻数
#include <bits/stdc++.h>
using namespace std;
class BigInt {
// split every 9 digits
// LSD in the first split, and so on
static const int SPLIT_LEN = 9;
static const int SPLIT_OVERFLOW = 1000000000;
private:
vector<int> splits;
static BigInt mul(const BigInt& a, const BigInt& b) {
const int n = a.splits.size();
const int m = b.splits.size();
vector<int64_t> h(n+m+10);
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
h[i+j] += 1LL * a.splits[i] * b.splits[j];
h[i+j+1] += h[i+j] / SPLIT_OVERFLOW;
h[i+j] %= SPLIT_OVERFLOW;
}
}
for (int i = 0; i < n+m+9; i++) {
h[i+1] += h[i]/SPLIT_OVERFLOW;
h[i] %= SPLIT_OVERFLOW;
}
BigInt c;
c.splits.resize(n+m+10);
for (int i = 0; i < n+m+10; i++) {
c.splits[i] = h[i];
}
c.canonicalize();
return c;
}
void canonicalize() {
const int N = splits.size();
for (int i = N-1; i > 0; i--) {
if (splits[i] == 0) splits.pop_back();
else break;
}
}
public:
BigInt() {
splits.resize(1, 0);
}
// x should be less than SPLIT_OVERFLOW
BigInt(int x) {
splits.push_back(x);
}
BigInt(const string& s) {
const int n = s.length();
int imax = (n + SPLIT_LEN - 1) / SPLIT_LEN;
splits.resize(imax);
for (int i = 0; i < imax; i++) {
int start = max(0, n - (i+1)*SPLIT_LEN);
int end = n - i*SPLIT_LEN;
splits[i] = 0;
for (int j = start; j < end; j++) {
splits[i] = splits[i] * 10 + s[j] - '0';
}
}
canonicalize();
}
void swap(BigInt& other) {
splits.swap(other.splits);
}
string toString() const {
stringstream ss;
ss << splits.back();
for (int i = (int)splits.size()-2; i >= 0; i--) {
ss.width(SPLIT_LEN);
ss.fill('0');
ss << splits[i];
}
string ret = ss.str();
return ret;
}
friend BigInt operator * (const BigInt& a, const BigInt& b) {
if (a < b) return BigInt::mul(b, a);
else return BigInt::mul(a, b);
}
friend BigInt operator % (const BigInt& a, const BigInt& b) {
vector<BigInt> dbls;
dbls.push_back(b);
while (dbls.back() < a) {
dbls.push_back(dbls.back() + dbls.back());
}
BigInt ret = a;
for (int i = (int)dbls.size()-1; i >= 0; i--) {
if (ret < dbls[i]) continue;
ret = ret - dbls[i];
}
return ret;
}
friend int operator % (const BigInt &a, int d) {
const int N = a.splits.size();
int ret = 0;
for (int i = N-1; i >= 0; i--) {
ret = (1LL * ret * SPLIT_OVERFLOW + a.splits[i]) % d;
}
return ret;
}
friend BigInt operator / (const BigInt &a, int d) {
const int N = a.splits.size();
BigInt ret;
ret.splits.resize(N);
int64_t carry = 0;
for (int i = N-1; i >= 0; i--) {
int64_t x = carry * SPLIT_OVERFLOW + a.splits[i];
ret.splits[i] = x / d;
carry = x % d;
}
ret.canonicalize();
return ret;
}
BigInt& operator += (const BigInt &b) {
const int N = splits.size();
const int M = b.splits.size();
const int L = max(N, M);
splits.resize(L);
int carry = 0;
for (int i = 0; i < L; i++) {
int d = (i < N ? splits[i] : 0) + (i < M ? b.splits[i] : 0) + carry;
splits[i] = d % SPLIT_OVERFLOW;
carry = (d >= SPLIT_OVERFLOW);
}
if (carry) {
splits.push_back(1);
}
return *this;
}
friend BigInt operator + (const BigInt& a, const BigInt& b) {
BigInt ret = a;
ret += b;
return ret;
}
friend BigInt operator - (const BigInt& a, const BigInt& b) {
// precondition: a >= b
assert(b <= a);
const int N = a.splits.size();
const int M = b.splits.size();
BigInt ret;
ret.splits.resize(N);
int borrow = 0;
for (int i = 0; i < N; i++) {
int d = a.splits[i] - (i < M ? b.splits[i] : 0) - borrow;
if (d < 0) {
d += SPLIT_OVERFLOW;
borrow = 1;
} else {
borrow = 0;
}
ret.splits[i] = d;
}
assert(borrow == 0);
ret.canonicalize();
return ret;
}
friend bool operator <= (const BigInt& a, const BigInt& b) {
return (a < b || a == b);
}
friend bool operator < (const BigInt& a, const BigInt& b) {
if (a.splits.size() < b.splits.size()) return true;
if (a.splits.size() > b.splits.size()) return false;
for (int i = (int)a.splits.size()-1; i >= 0; i--) {
if (a.splits[i] < b.splits[i]) return true;
if (a.splits[i] > b.splits[i]) return false;
}
return false;
}
friend bool operator == (const BigInt& a, const BigInt& b) {
return a.splits == b.splits;
}
};
int main() {
string s;
cin >> s;
BigInt bi(s);
int cnt[4] = {0, 0, 0, 0};
int primes[4] = {2, 3, 5, 7};
for (int i = 0; i < 4; i++) {
while (bi % primes[i] == 0) {
bi = bi / primes[i];
cnt[i]++;
}
}
if (!(bi == BigInt(1))) {
printf("There is no such number!");
return 0;
}
int freq[10] = {0};
freq[9] = cnt[1]/2;
freq[8] = cnt[0]/3;
freq[7] = cnt[3];
freq[5] = cnt[2];
if (cnt[1] & 1) {
if (cnt[0] % 3 == 0) freq[3] = 1;
else if (cnt[0] % 3 == 1) freq[6] = 1;
else {
freq[6] = freq[2] = 1;
}
} else {
if (cnt[0] % 3 == 1) freq[2] = 1;
else if (cnt[0] % 3 == 2) freq[4] = 1;
}
string ret;
for (int i = 9; i >= 1; i--) {
for (int j = 0; j < freq[i]; j++) {
ret.push_back('0' + i);
}
}
reverse(ret.begin(), ret.end());
cout << ret << endl;
return 0;
}
| [
"err722@yahoo.com"
] | err722@yahoo.com |
c8c3f4e716b7eabba018675fec76669334338ca7 | a1732b958ae73657900585a4e8991a05072212d6 | /common/include/utils/graph.h | cc276b7e1c7b1e17af59cfbb9b67de7e0ac7d076 | [
"MIT"
] | permissive | bielskij/AOC | 97fca8183955caf4d46967ac1bf4b00d9dc04f12 | 270aa757f9025d8da399adbc5db214f47ef0b6de | refs/heads/master | 2023-01-08T10:23:40.667070 | 2022-12-29T07:58:04 | 2022-12-29T07:58:04 | 226,080,843 | 3 | 0 | null | 2020-12-09T08:27:49 | 2019-12-05T10:57:02 | C++ | UTF-8 | C++ | false | false | 2,967 | h | #ifndef UTILS_GRAPH_H_
#define UTILS_GRAPH_H_
#include <map>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <climits>
class Graph {
public:
class Vertex {
public:
Vertex() {
}
virtual ~Vertex() {
}
virtual std::string getLabel() = 0;
};
class Edge {
public:
Edge(Vertex *src, Vertex *dst, float weight, bool bothDirections) {
this->src = src;
this->dst = dst;
this->weight = weight;
this->bothDirections = bothDirections;
}
Vertex *getSrc() const {
return this->src;
}
Vertex *getDst() const {
return this->dst;
}
float getWeight() const {
return this->weight;
}
bool isBothDirection() const {
return this->bothDirections;
}
private:
Vertex *src;
Vertex *dst;
float weight;
bool bothDirections;
};
Graph(const std::vector<Edge> &edges) {
for (auto edge = edges.begin(); edge != edges.end(); edge++) {
this->vertexes.insert(edge->getSrc());
this->vertexes.insert(edge->getDst());
// TODO: Check for duplicates
this->adjVertices[edge->getSrc()].push_back(std::pair<Vertex *, float>(edge->getDst(), edge->getWeight()));
if (edge->isBothDirection()) {
this->adjVertices[edge->getDst()].push_back(std::pair<Vertex *, float>(edge->getSrc(), edge->getWeight()));
}
}
}
std::map<Vertex *, float> bfs(Vertex *root) {
std::map<Vertex *, float> ret;
{
std::map<Vertex *, bool> visited;
std::queue<Vertex *> queue;
ret[root] = 0;
visited[root] = true;
queue.push(root);
while (! queue.empty()) {
Vertex *vertex = queue.front(); queue.pop();
for (auto v = adjVertices[vertex].begin(); v != adjVertices[vertex].end(); v++) {
if (! visited[v->first]) {
ret[v->first] = ret[vertex] + v->second;
queue.push(v->first);
visited[v->first] = true;
}
}
}
}
return ret;
}
void dijkstra(Vertex *root, std::map<Vertex *, float> &dist, std::map<Vertex *, Vertex *> &prev) {
std::vector<Vertex *> q;
dist.clear();
prev.clear();
for (auto v = vertexes.begin(); v != vertexes.end(); v++) {
dist[*v] = INT_MAX;
prev[*v] = NULL;
q.push_back(*v);
}
dist[root] = 0;
prev[root] = nullptr;
while (! q.empty()) {
Vertex *u;
{
std::vector<Vertex *>::iterator uIt = q.begin();
for (auto it = q.begin(); it != q.end(); it++) {
if (dist[*it] < dist[*uIt]) {
uIt = it;
}
}
u = *uIt;
q.erase(uIt);
}
for (auto v = adjVertices[u].begin(); v != adjVertices[u].end(); v++) {
int alt = dist[u] + v->second;
if (alt < dist[v->first]) {
dist[v->first] = alt;
prev[v->first] = u;
}
}
}
}
private:
std::set<Vertex *> vertexes;
std::map<Vertex *, std::vector<std::pair<Vertex *, float>>> adjVertices;
};
#endif
| [
"bielski.j@gmail.com"
] | bielski.j@gmail.com |
06f018af17acd636abc249d5fc38fecf16e66a49 | 8b2084e39374d554de549ba0df2ad41f13f54a78 | /src/vector/Range.h | 6e3216854de0ddfd469346ecdd1d5fdabb029252 | [
"MIT",
"BSD-2-Clause"
] | permissive | angoodkind/MIT-Language-Modeling-Toolkit | 1d9b7e673eb2cf8b0d357eac3fc9d460d77dee99 | 859674ba41faafd7c0535a1405106a5e496a3f04 | refs/heads/master | 2021-01-12T21:36:28.311243 | 2014-11-30T01:51:54 | 2014-11-30T01:51:54 | 33,737,320 | 1 | 0 | null | 2015-04-10T15:58:49 | 2015-04-10T15:58:49 | null | UTF-8 | C++ | false | false | 3,216 | h | ////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008, Massachusetts Institute of Technology //
// All rights reserved. //
// //
// Redistribution and use in source and binary forms, with or without //
// modification, are permitted provided that the following conditions are //
// met: //
// //
// * Redistributions of source code must retain the above copyright //
// notice, this list of conditions and the following disclaimer. //
// //
// * Redistributions in binary form must reproduce the above //
// copyright notice, this list of conditions and the following //
// disclaimer in the documentation and/or other materials provided //
// with the distribution. //
// //
// * Neither the name of the Massachusetts Institute of Technology //
// nor the names of its contributors may be used to endorse or //
// promote products derived from this software without specific //
// prior written permission. //
// //
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS //
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT //
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR //
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT //
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, //
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT //
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, //
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY //
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT //
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE //
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. //
////////////////////////////////////////////////////////////////////////////
#ifndef RANGE_H
#define RANGE_H
#include <cassert>
////////////////////////////////////////////////////////////////////////////////
class Range {
public:
explicit Range(size_t endIndex)
: _beginIndex(0), _endIndex(endIndex)
{ assert(_beginIndex <= _endIndex); }
explicit Range(size_t beginIndex, size_t endIndex)
: _beginIndex(beginIndex), _endIndex(endIndex)
{ assert(_beginIndex <= _endIndex); }
size_t beginIndex() const { return _beginIndex; }
size_t endIndex() const { return _endIndex; }
size_t length() const { return _endIndex - _beginIndex; }
private:
size_t _beginIndex, _endIndex;
};
#endif // RANGE_H
| [
"bojunehsu@4622ca98-d053-0410-b680-d1345939a8d7"
] | bojunehsu@4622ca98-d053-0410-b680-d1345939a8d7 |
66deae0da9f614f561e2c1b7f2141f3cb94af161 | aea37d12df141c61f43089d4b2ccd969aa66b63e | /source/pybind/coconet.cpp | e30564ab74977cc43cf37146d34021a5eeb1537e | [
"MIT"
] | permissive | dotnetGame/coconet | 836627f81a2fda81d6c0824a23384ad953c2eaa2 | 8f10cdf759cab44f404ec038d751380eea0c1473 | refs/heads/master | 2020-06-23T14:48:31.851290 | 2019-08-13T10:10:16 | 2019-08-13T10:10:16 | 198,653,968 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,025 | cpp |
#include <vector>
#include <memory>
#include <algorithm>
#include <pybind11/pybind11.h>
#include <pybind11/operators.h>
#include <pybind11/stl.h>
namespace py = pybind11;
#include <coconet/tensor/index.h>
#include <coconet/autograd/variable.h>
#include <coconet/autograd/executor.h>
#include <coconet/runtime/singleton.h>
namespace coconet
{
namespace pybind
{
PYBIND11_MODULE(coconet, m)
{
m.doc() = "coconet python bind"; // optional module docstring
py::enum_<DataType>(m, "DataType")
.value("Byte", DataType::BYTE)
.value("Char", DataType::CHAR)
.value("Short", DataType::SHORT)
.value("Int", DataType::INT)
.value("Long", DataType::LONG)
.value("Float", DataType::FLOAT)
.value("Double", DataType::DOUBLE)
.export_values();
py::enum_<PlatformType>(m, "PlatformType")
.value("CPU", PlatformType::CPU)
.value("CUDA", PlatformType::CUDA)
.export_values();
py::class_<tensor::DimVector>(m, "DimVector")
.def(py::init<>())
.def(py::init<std::size_t>())
.def(py::init<std::size_t, std::size_t>())
.def("clear", &tensor::DimVector::clear)
.def("pop_back", &tensor::DimVector::pop_back)
.def("push_back", &tensor::DimVector::push_back)
.def("__len__", [](const tensor::DimVector &v) { return v.size(); })
.def("__iter__", [](tensor::DimVector &v) {
return py::make_iterator(v.begin(), v.end());
}, py::keep_alive<0, 1>());
py::class_<autograd::ByteVariable, std::shared_ptr<autograd::ByteVariable>>(m, "ByteVariable")
.def(py::init<const tensor::DimVector&>())
.def(py::init([](std::vector<coconet::idx_type> dim){
return autograd::ByteVariable(tensor::DimVector(dim.cbegin(),dim.cend()));
}))
.def("fill_", &autograd::ByteVariable::fill_)
.def("__str__", &autograd::ByteVariable::to_string);
py::class_<autograd::CharVariable, std::shared_ptr<autograd::CharVariable>>(m, "CharVariable")
.def(py::init<const tensor::DimVector&>())
.def(py::init([](std::vector<coconet::idx_type> dim){
return autograd::CharVariable(tensor::DimVector(dim.cbegin(),dim.cend()));
}))
.def("fill_", &autograd::CharVariable::fill_)
.def("__str__", &autograd::CharVariable::to_string);
py::class_<autograd::ShortVariable, std::shared_ptr<autograd::ShortVariable>>(m, "ShortVariable")
.def(py::init<const tensor::DimVector&>())
.def(py::init([](std::vector<coconet::idx_type> dim){
return autograd::ShortVariable(tensor::DimVector(dim.cbegin(),dim.cend()));
}))
.def("fill_", &autograd::ShortVariable::fill_)
.def("__str__", &autograd::ShortVariable::to_string);
py::class_<autograd::IntVariable, std::shared_ptr<autograd::IntVariable>>(m, "IntVariable")
.def(py::init<const tensor::DimVector&>())
.def(py::init([](std::vector<coconet::idx_type> dim){
return autograd::IntVariable(tensor::DimVector(dim.cbegin(),dim.cend()));
}))
.def("fill_", &autograd::IntVariable::fill_)
.def("__str__", &autograd::IntVariable::to_string);
py::class_<autograd::LongVariable, std::shared_ptr<autograd::LongVariable>>(m, "LongVariable")
.def(py::init<const tensor::DimVector&>())
.def(py::init([](std::vector<coconet::idx_type> dim){
return autograd::LongVariable(tensor::DimVector(dim.cbegin(),dim.cend()));
}))
.def("fill_", &autograd::LongVariable::fill_)
.def("__str__", &autograd::LongVariable::to_string);
py::class_<autograd::FloatVariable, std::shared_ptr<autograd::FloatVariable>>(m, "FloatVariable")
.def(py::init<const tensor::DimVector&>())
.def(py::init([](std::vector<coconet::idx_type> dim){
return autograd::FloatVariable(tensor::DimVector(dim.cbegin(),dim.cend()));
}))
.def("fill_", &autograd::FloatVariable::fill_)
.def("__str__", &autograd::FloatVariable::to_string)
.def("__getitem__", [](const autograd::FloatVariable &variable, std::vector<std::variant<py::slice, idx_type>> indices) {
});
py::class_<autograd::DoubleVariable, std::shared_ptr<autograd::DoubleVariable>>(m, "DoubleVariable")
.def(py::init<const tensor::DimVector&>())
.def(py::init([](std::vector<coconet::idx_type> dim){
return autograd::DoubleVariable(tensor::DimVector(dim.cbegin(),dim.cend()));
}))
.def("fill_", &autograd::DoubleVariable::fill_)
.def("__str__", &autograd::DoubleVariable::to_string);
m.def("zeros", [](std::vector<coconet::idx_type> dim, coconet::DataType dtype, coconet::PlatformType platform, bool require_grad){
auto dimvector = tensor::DimVector(dim.cbegin(), dim.cend());
auto session = runtime::Singleton<autograd::VariableGraph>::getInstance();
auto ret = autograd::create_variable(dimvector, dtype, platform);
ret->fill_(0);
if (require_grad)
session.add_variable(ret);
return ret;
},
"Create variable filled zeros",
py::arg("dim"),
py::arg("dtype") = coconet::DataType::FLOAT,
py::arg("platform") = coconet::PlatformType::CPU,
py::arg("require_grad") = false);
}
}
} | [
"1103870790@qq.com"
] | 1103870790@qq.com |
01b61a379048c645348218a2d3f7f1dabadfec2c | bd13c259fdf1a70c8cf9b9c055a45d2feb4bcc43 | /oneflow_enflame-main/oneflow/core/graph/src_subset_tick_compute_task_node.h | a8e7e7a12cc69ffc2fb37b183b2131d1050c0e57 | [
"Apache-2.0"
] | permissive | wanghongsheng01/framework_enflame | 1eaff05e519c486807dc2aad4814004e1f617249 | cd0e5e05f54720bec87eb158ade4a1e90f9e4286 | refs/heads/master | 2023-06-26T23:55:35.771599 | 2021-07-26T16:28:48 | 2021-07-26T16:28:48 | 389,646,262 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,413 | h | /*
Copyright 2020 The OneFlow Authors. 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.
*/
#ifndef ONEFLOW_CORE_GRAPH_SRC_SUBSET_TICK_COMPUTE_TASK_NODE_H_
#define ONEFLOW_CORE_GRAPH_SRC_SUBSET_TICK_COMPUTE_TASK_NODE_H_
#include "oneflow/core/graph/compute_task_node.h"
namespace oneflow {
class SrcSubsetTickCompTaskNode final : public CompTaskNode {
public:
OF_DISALLOW_COPY_AND_MOVE(SrcSubsetTickCompTaskNode);
SrcSubsetTickCompTaskNode() = default;
~SrcSubsetTickCompTaskNode() = default;
bool IsMeaningLess() override { return false; }
TaskType GetTaskType() const override { return TaskType::kSrcSubsetTick; }
private:
void ProduceAllRegstsAndBindEdges() override;
void ConsumeAllRegsts() override;
void BuildExecGphAndRegst() override;
bool IsIndependent() const override { return true; }
};
} // namespace oneflow
#endif // ONEFLOW_CORE_GRAPH_SRC_SUBSET_TICK_COMPUTE_TASK_NODE_H_
| [
"2496533749@qq.com"
] | 2496533749@qq.com |
60db6f133c64e32985f0192403260c1c9f268080 | 5f935ad0419f7915745c6f5c463c6086398db1f3 | /DLLforVendingMachine/DLLforVendingMachine/DispenserFactory.cpp | 05afee22e8cf62aa9ea1efa3d3a28b9887a715ca | [] | no_license | AngalaeswariKaruppasamy/hello-world | e42e381769c57f166750beaee72217004b71d82a | c798bdf6276d95b45155aafd2d63e92c18f220e5 | refs/heads/master | 2020-04-01T23:03:03.777061 | 2018-10-19T09:52:36 | 2018-10-19T09:52:36 | 153,738,880 | 0 | 0 | null | 2018-10-19T08:37:56 | 2018-10-19T06:50:29 | null | UTF-8 | C++ | false | false | 596 | cpp | #include "stdafx.h"
#include "DispenserFactory.h"
#include<iostream>
#include"Recipe.h"
using namespace std;
CDispenserFactory::CDispenserFactory()
{
}
CDispenser* CDispenserFactory::CreateDispenser(int iChoice, string sName, int iCapacity)
{
CDispenser* pTemp = NULL;
switch (iChoice)
{
case 1:
pTemp = new CLiquidDispenser(iCapacity, sName);
break;
case 2:
pTemp = new CPowderDispenser(iCapacity, sName);
break;
case 3:
pTemp = new CSnackDispenser(iCapacity, sName);
break;
}
return pTemp;
}
CDispenserFactory::~CDispenserFactory()
{
}
| [
"AngalaeswariK@CADSIndia.com"
] | AngalaeswariK@CADSIndia.com |
e71320322feb47288ce608c235291c21b42732d9 | 561b750640dc1f69af2a1209f9e107a27e82a1a4 | /information_mouthguard/information_mouthguard.ino | 51841149ffeb159fc30f9978ed49abe9b5b0edfb | [] | no_license | m-henson/Tongo | bf2dd86ce5fa9bd72d6e0f62372066143cc72493 | 8b1422d3ce4d4bb7fff515475649376ca335ed4b | refs/heads/master | 2020-05-26T18:05:30.260609 | 2015-04-06T01:18:37 | 2015-04-06T01:18:37 | 26,943,145 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,560 | ino | #define DELAY 10
#define PIN_RIGHT A0
#define PIN_FORWARD A1
#define PIN_LEFT A2
#define RIGHT 0
#define FORWARD 1
#define LEFT 2
#define BACKWARD 3
#define BRAKE 4
#define V_MAX 260
#define V_MIN 20
#define V_DIV 16.0
#define N_MAGS 16
#define PIN_CUE_RIGHT 9
#define PIN_CUE_FORWARD 8
#define PIN_CUE_LEFT 7
#define PIN_CUE_BRAKE 10
#define PIN_CUE_0 5
#define PIN_CUE_1 6
#define PIN_WAIT_0 11
#define PIN_WAIT_1 12
#define PIN_WAIT_2 13
#define WAIT_0 600
#define WAIT_1 800
#define WAIT_2 1000
#define WAIT_STABLE 50
#define TEST_STATE_WAIT 0
#define TEST_STATE_TRANSITION 1
#define TEST_STATE_HOLD 2
#define TEST_STATE_FAILED 3
int reading_right;
int reading_forward;
int reading_left;
String state_new;
String state_current;
int heading;
int mag_new;
int mag_current;
unsigned long time_stamp;
unsigned long time_stable;
unsigned long time_last;
unsigned long time_next;
int heading_stable;
int heading_last;
int heading_next;
int test_state;
boolean delaying;
int time_diff;
boolean reading_0;
boolean reading_1;
boolean reading_2;
void setup()
{
Serial.begin(9600);
pinMode(PIN_RIGHT, INPUT);
pinMode(PIN_FORWARD, INPUT);
pinMode(PIN_LEFT, INPUT);
pinMode(PIN_CUE_RIGHT, OUTPUT);
pinMode(PIN_CUE_FORWARD, OUTPUT);
pinMode(PIN_CUE_LEFT, OUTPUT);
pinMode(PIN_CUE_BRAKE, OUTPUT);
pinMode(PIN_WAIT_0, INPUT);
pinMode(PIN_WAIT_1, INPUT);
pinMode(PIN_WAIT_2, INPUT);
digitalWrite(PIN_CUE_RIGHT, LOW);
digitalWrite(PIN_CUE_FORWARD, LOW);
digitalWrite(PIN_CUE_LEFT, LOW);
digitalWrite(PIN_CUE_BRAKE, LOW);
state_current = "";
mag_current = -1;
heading_last = BRAKE + 1;
heading_stable = heading_last;
heading_next = BRAKE;
writeLed(heading_next, HIGH);
time_last = millis();
time_stable = -2 * WAIT_STABLE;
time_next = time_last + 10000;
test_state = TEST_STATE_TRANSITION;
delaying = false;
debugTest(false, millis(), time_next - time_last, heading_next);
time_diff = 0;
}
void loop()
{
delay(DELAY);
reading_0 = digitalRead(PIN_WAIT_0);
reading_1 = digitalRead(PIN_WAIT_1);
reading_2 = digitalRead(PIN_WAIT_2);
if (reading_0)
{
set_time_diff(WAIT_0);
}
else if (reading_1)
{
set_time_diff(WAIT_1);
}
else
{
set_time_diff(WAIT_2);
}
reading_right = analogRead(PIN_RIGHT);
reading_forward = analogRead(PIN_FORWARD);
reading_left = analogRead(PIN_LEFT);
// forward
if (reading_forward >= reading_right && reading_forward >= reading_left)
{
heading = FORWARD;
mag_new = getMag(reading_forward);
}
// right
else if (reading_right >= reading_left)
{
heading = RIGHT;
mag_new = getMag(reading_right);
}
// left
else
{
heading = LEFT;
mag_new = getMag(reading_left);
}
if (mag_new <= 0)
{
heading = BRAKE;
}
state_new = String(heading*N_MAGS + mag_new);
time_stamp = millis();
if (heading != heading_stable)
{
heading_stable = heading;
time_stable = time_stamp;
delaying = true;
}
else if (delaying && time_stamp - time_stable >= WAIT_STABLE)
{
delaying = false;
if (test_state == TEST_STATE_WAIT || test_state == TEST_STATE_TRANSITION)
{
if (test_state == TEST_STATE_WAIT && heading_next != BRAKE && heading == BRAKE)
{
test_state = TEST_STATE_TRANSITION;
}
else if (heading == heading_next)
{
test_state = TEST_STATE_HOLD;
debugResult(heading, 1, time_stable - time_last, false);
}
else
{
test_state = TEST_STATE_FAILED;
debugResult(heading, 0, time_stable - time_last, true);
}
}
else if (test_state == TEST_STATE_HOLD && heading != heading_next)
{
debugResult(heading, 0, time_stable - time_last, true);
test_state = TEST_STATE_FAILED;
}
}
time_stamp = millis();
if (time_stamp >= time_next)
{
if (test_state == TEST_STATE_TRANSITION || test_state == TEST_STATE_WAIT)
{
test_state = TEST_STATE_FAILED;
debugResult(heading_stable, 0, time_stable - time_last, true);
}
//writeLed(heading_last, LOW);
heading_last = heading_next;
while (heading_last == heading_next || heading_next == BACKWARD || heading_next == heading)
{
heading_next = random(BRAKE);
}
time_next = time_diff;
time_last = millis();
time_next += time_last;
writeLed(heading_next, HIGH);
debugTest(test_state == TEST_STATE_HOLD, time_last, time_next - time_last, heading_next);
test_state = TEST_STATE_WAIT;
}
if (state_new != state_current)
{
state_current = state_new;
mag_current = mag_new;
}
}
void set_time_diff(int diff)
{
if (diff != time_diff)
{
time_diff = diff;
Serial.println(",");
Serial.println(",");
Serial.println(",");
Serial.print("T = ");
Serial.println(time_diff);
Serial.println(",");
Serial.println(",");
}
}
int getMag(int voltage)
{
voltage = min(V_MAX, max(V_MIN, voltage));
return round((double(voltage) - double(V_MIN)) / V_DIV);
}
void debugTest(boolean new_line, unsigned long t, long diff, int desired)
{
if (new_line)
{
Serial.println(",");
}
Serial.print(t);
Serial.print(",");
Serial.print(diff);
Serial.print(",");
Serial.print(desired);
}
void debugResult(int result, int pass, long diff, boolean new_line)
{
Serial.print(",");
Serial.print(result);
Serial.print(",");
Serial.print(pass);
Serial.print(",");
if (new_line)
{
Serial.println(diff);
}
else
{
Serial.print(diff);
}
}
void writeLed(int h, boolean voltage)
{
switch (h)
{
case RIGHT:
digitalWrite(PIN_CUE_RIGHT, voltage);
digitalWrite(PIN_CUE_FORWARD, LOW);
digitalWrite(PIN_CUE_LEFT, LOW);
digitalWrite(PIN_CUE_BRAKE, LOW);
break;
case FORWARD:
digitalWrite(PIN_CUE_FORWARD, voltage);
digitalWrite(PIN_CUE_RIGHT, LOW);
digitalWrite(PIN_CUE_LEFT, LOW);
digitalWrite(PIN_CUE_BRAKE, LOW);
break;
case LEFT:
digitalWrite(PIN_CUE_LEFT, voltage);
digitalWrite(PIN_CUE_FORWARD, LOW);
digitalWrite(PIN_CUE_RIGHT, LOW);
digitalWrite(PIN_CUE_BRAKE, LOW);
break;
case BRAKE:
digitalWrite(PIN_CUE_BRAKE, voltage);
digitalWrite(PIN_CUE_FORWARD, LOW);
digitalWrite(PIN_CUE_LEFT, LOW);
digitalWrite(PIN_CUE_RIGHT, LOW);
break;
default:
Serial.print("ERROR: bad heading ");
Serial.println(h);
break;
}
}
| [
"matthew_henson@live.ca"
] | matthew_henson@live.ca |
e04a9fde98318eaf4cfc85d33f82579d5b46d937 | 8117a3a290a12a8a37282f7a230ab6b730d60c07 | /boost/mpl/aux_/preprocessed/bcc/bitand.hpp | 68dc41fbe1c54cea108a2de0e86c2aaaa4eeb999 | [
"BSL-1.0"
] | permissive | fish2000/bx-lexical-cast | 4f1e1e7006318e7d26335ce3faddbcec5e53c5f5 | 8cc5a4da1866546129b703682a1ffb1de7c086db | refs/heads/master | 2021-08-30T21:34:31.258340 | 2017-12-19T13:53:18 | 2017-12-19T13:53:18 | 114,752,004 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,203 | hpp |
// Copyright Aleksey Gurtovoy 2000-2004
// Copyright Jaap Suter 2003
//
// 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)
//
// *Preprocessed* version of the main "bitand.hpp" header
// -- DO NOT modify by hand!
namespace bx { namespace mpl {
template<
typename Tag1
, typename Tag2
>
struct bitand_impl
: if_c<
( BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag1)
> BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag2)
)
, aux::cast2nd_impl< bitand_impl< Tag1,Tag1 >,Tag1, Tag2 >
, aux::cast1st_impl< bitand_impl< Tag2,Tag2 >,Tag1, Tag2 >
>::type
{
};
/// for Digital Mars C++/compilers with no CTPS/TTP support
template<> struct bitand_impl< na,na >
{
template< typename U1, typename U2 > struct apply
{
typedef apply type;
BOOST_STATIC_CONSTANT(int, value = 0);
};
};
template< typename Tag > struct bitand_impl< na,Tag >
{
template< typename U1, typename U2 > struct apply
{
typedef apply type;
BOOST_STATIC_CONSTANT(int, value = 0);
};
};
template< typename Tag > struct bitand_impl< Tag,na >
{
template< typename U1, typename U2 > struct apply
{
typedef apply type;
BOOST_STATIC_CONSTANT(int, value = 0);
};
};
template< typename T > struct bitand_tag
{
typedef typename T::tag type;
};
template<
typename BOOST_MPL_AUX_NA_PARAM(N1)
, typename BOOST_MPL_AUX_NA_PARAM(N2)
, typename N3 = na, typename N4 = na, typename N5 = na
>
struct bitand_
: bitand_< bitand_< bitand_< bitand_< N1,N2 >, N3>, N4>, N5>
{
BOOST_MPL_AUX_LAMBDA_SUPPORT(
5
, bitand_
, ( N1, N2, N3, N4, N5 )
)
};
template<
typename N1, typename N2, typename N3, typename N4
>
struct bitand_< N1,N2,N3,N4,na >
: bitand_< bitand_< bitand_< N1,N2 >, N3>, N4>
{
BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
5
, bitand_
, ( N1, N2, N3, N4, na )
)
};
template<
typename N1, typename N2, typename N3
>
struct bitand_< N1,N2,N3,na,na >
: bitand_< bitand_< N1,N2 >, N3>
{
BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
5
, bitand_
, ( N1, N2, N3, na, na )
)
};
template<
typename N1, typename N2
>
struct bitand_< N1,N2,na,na,na >
: bitand_impl<
typename bitand_tag<N1>::type
, typename bitand_tag<N2>::type
>::template apply< N1,N2 >::type
{
BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
5
, bitand_
, ( N1, N2, na, na, na )
)
};
BOOST_MPL_AUX_NA_SPEC2(2, 5, bitand_)
}}
namespace bx { namespace mpl {
template<>
struct bitand_impl< integral_c_tag,integral_c_tag >
{
template< typename N1, typename N2 > struct apply
: integral_c<
typename aux::largest_int<
typename N1::value_type
, typename N2::value_type
>::type
, ( BOOST_MPL_AUX_VALUE_WKND(N1)::value
& BOOST_MPL_AUX_VALUE_WKND(N2)::value
)
>
{
};
};
}}
| [
"fish2000@gmail.com"
] | fish2000@gmail.com |
c6fcb5954a39ca9d69ba3a64001ea7bc28732bb1 | 68f704d3f12f0622335a8b7d5066f3bca6999167 | /03_Red_belt_begin_2020-08-15/Week_1/Prog_04_Bad_Macros/main.cpp | 7c3cf4c5c0f5dc3206c73b3f71a37c6d5b3ab46b | [] | no_license | AVKouzbar/Coursera_Belts | 910f33ae0da815f6a1235575119f958e2678dd3c | 1df0439d3c6cb48ec44a983dd830cd9109edb7c8 | refs/heads/master | 2023-01-02T12:41:01.940936 | 2020-11-02T17:45:41 | 2020-11-02T17:45:41 | 309,447,093 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | cpp | #include "test_runner.h"
#include <ostream>
using namespace std;
#define PRINT_VALUES(out, x, y) \
out << (x) << endl << (y) << endl \
int main() {
TestRunner tr;
tr.RunTest([] {
ostringstream output;
if (true)
PRINT_VALUES(output, 5, "red belt");
else PRINT_VALUES(output, 5, "red belt");
ASSERT_EQUAL(output.str(), "5\nred belt\n");
}, "PRINT_VALUES usage example");
} | [
"avkouzbar.dev@gmail.com"
] | avkouzbar.dev@gmail.com |
07475c9c781b8b8bede68780899762898e9dcaa4 | 31c5a5ed573e7ceff8d91a8cc7eb1f0f9be25dc0 | /Temp/il2cppOutput/il2cppOutput/mscorlib7.cpp | c57cab3fdaed2afb46eb6467d87edbcc91f3ff11 | [] | no_license | hahayao/FIghtGame | c1bb9d0e110dfc78800efdb002cb4612006eecab | dfc3e587ec75fac90ce98e6ed6485967e8d97af5 | refs/heads/master | 2020-09-07T18:01:11.469636 | 2020-08-18T22:55:56 | 2020-08-18T22:55:56 | 220,867,068 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,126,128 | 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 "codegen/il2cpp-codegen.h"
#include "icalls/mscorlib/System/Math.h"
#include "icalls/mscorlib/System/MissingMemberException.h"
#include "icalls/mscorlib/System/MonoCustomAttrs.h"
#include "icalls/mscorlib/System/Number.h"
#include "icalls/mscorlib/System/NumberFormatter.h"
#include "il2cpp-object-internals.h"
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);
}
};
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 R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2, 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 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>
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 R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct VirtFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct VirtFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, 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 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 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, 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);
}
};
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB;
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2;
// Microsoft.Win32.Win32Native/WIN32_FIND_DATA
struct WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.Action`2<System.Object,System.Object>
struct Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C;
// System.Action`2<System.Threading.Tasks.Task,System.Object>
struct Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.AttributeUsageAttribute
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.LocalDataStoreSlot>[]
struct EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.AttributeUsageAttribute>[]
struct EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.MonoCustomAttrs/AttributeInfo>[]
struct EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.LocalDataStoreSlot>
struct KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.AttributeUsageAttribute>
struct KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.MonoCustomAttrs/AttributeInfo>
struct KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.LocalDataStoreSlot>
struct ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.AttributeUsageAttribute>
struct ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.MonoCustomAttrs/AttributeInfo>
struct ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>
struct Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08;
// System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>
struct Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A;
// System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>
struct Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236;
// System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>
struct Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
// System.Collections.Generic.IEqualityComparer`1<System.Type>
struct IEqualityComparer_1_t84A1E76CEF8A66F732C15925C1E1DBC7446DB3A4;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData>
struct IList_1_tE0C117F07E4E8ABEAD1951B553655F0835E9F485;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>
struct IList_1_tD431CA53D2DA04D533C85B6F283DF4535D06B9FC;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>
struct IList_1_t6CC82F01278D7AA7C3DC2939506F0C54E06AAADE;
// System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>
struct IReadOnlyDictionary_2_tF12AC6C54B252680968AC58C45E1522DA1C72D03;
// System.Collections.Generic.IReadOnlyDictionary`2<System.String,System.LocalDataStoreSlot>
struct IReadOnlyDictionary_2_t5D3B73C50000DF2E22FCD72C00895EB73200ABA9;
// System.Collections.Generic.List`1<System.LocalDataStore>
struct List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<System.Threading.IAsyncLocal>
struct List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB;
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeData>
struct ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Double[]
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
// System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs>
struct EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC;
// System.Exception
struct Exception_t;
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC;
// System.Func`1<System.Object>
struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386;
// System.Func`1<System.Threading.ManualResetEvent>
struct Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A;
// System.Func`1<System.Threading.SemaphoreSlim>
struct Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6;
// System.Func`2<System.Object,System.Object>
struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4;
// System.Func`2<System.Object,System.String>
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>>
struct Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24;
// System.Globalization.Calendar
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB;
// System.Globalization.CompareInfo
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
// System.Globalization.CultureData
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
// System.Globalization.TextInfo
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IConvertible
struct IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.IO.DirectoryNotFoundException
struct DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55;
// System.IO.DriveNotFoundException
struct DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C;
// System.IO.EndOfStreamException
struct EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F;
// System.IO.FileNotFoundException
struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431;
// System.IO.FileStream
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418;
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA;
// System.IO.PathTooLongException
struct PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA;
// System.IO.PinnedBufferMemoryStream
struct PinnedBufferMemoryStream_t2B64686A5B889DF38F012632D00C933752FE5A25;
// System.IO.SearchResult
struct SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE;
// System.IO.SearchResultHandler`1<System.Object>
struct SearchResultHandler_1_t8F3FC374A9C3B6ACC965D7728D3926838F62AA4A;
// System.IO.SearchResultHandler`1<System.String>
struct SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C;
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
// System.IO.Stream/<>c
struct U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630;
// System.IO.Stream/NullStream
struct NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
// System.IO.Stream/SynchronousAsyncResult
struct SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541;
// System.IO.Stream/SynchronousAsyncResult/<>c
struct U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608;
// System.IO.StreamReader
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E;
// System.IO.StreamReader/NullStreamReader
struct NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0;
// System.IO.StreamWriter
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E;
// System.IO.StringReader
struct StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12;
// System.IO.StringResultHandler
struct StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6;
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A;
// System.IO.TextReader/<>c
struct U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590;
// System.IO.TextReader/NullTextReader
struct NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1;
// System.IO.TextReader/SyncTextReader
struct SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8;
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0;
// System.IO.TextWriter/<>c
struct U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7;
// System.IO.TextWriter/NullTextWriter
struct NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5;
// System.IO.TextWriter/SyncTextWriter
struct SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93;
// System.IO.UnexceptionalStreamReader
struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA;
// System.IO.UnexceptionalStreamWriter
struct UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB;
// System.IO.UnmanagedMemoryStream
struct UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF;
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidCastException
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.InvalidProgramException
struct InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358;
// System.InvalidTimeZoneException
struct InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25;
// System.LocalDataStore
struct LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE;
// System.LocalDataStoreElement
struct LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA;
// System.LocalDataStoreElement[]
struct LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9;
// System.LocalDataStoreSlot
struct LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E;
// System.LocalDataStore[]
struct LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD;
// System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF;
// System.MemberAccessException
struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0;
// System.MethodAccessException
struct MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB;
// System.MissingFieldException
struct MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37;
// System.MissingMemberException
struct MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD;
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498;
// System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD;
// System.MonoCustomAttrs/AttributeInfo
struct AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A;
// System.MonoListItem
struct MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64;
// System.MonoTODOAttribute
struct MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666;
// System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.MulticastNotSupportedException
struct MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211;
// System.NonSerializedAttribute
struct NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA;
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.NullConsoleDriver
struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D;
// System.NullReferenceException
struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC;
// System.NumberFormatter
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC;
// System.NumberFormatter/CustomInfo
struct CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1;
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.OperationCanceledException
struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90;
// System.OverflowException
struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88;
// System.Reflection.CustomAttributeData/LazyCAttrData
struct LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38;
// System.Reflection.CustomAttributeData[]
struct CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB;
// System.Reflection.CustomAttributeFormatException
struct CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D;
// System.Reflection.EventInfo
struct EventInfo_t;
// System.Reflection.EventInfo/AddEventAdapter
struct AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B;
// System.Reflection.FieldInfo
struct FieldInfo_t;
// System.Reflection.ICustomAttributeProvider
struct ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.MonoCMethod
struct MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61;
// System.Reflection.MonoEvent
struct MonoEvent_t;
// System.Reflection.MonoMethod
struct MonoMethod_t;
// System.Reflection.MonoProperty
struct MonoProperty_t;
// System.Reflection.MonoProperty/GetterAdapter
struct GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711;
// System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// System.Reflection.RuntimeConstructorInfo
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>
struct ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A;
// System.Runtime.InteropServices.ComImportAttribute
struct ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40;
// System.Runtime.InteropServices.MarshalAsAttribute
struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020;
// System.Runtime.InteropServices.SafeBuffer
struct SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208;
// System.Runtime.Remoting.Contexts.Context
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection
struct DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C;
// System.Runtime.Remoting.IChannelInfo
struct IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D;
// System.Runtime.Remoting.IEnvoyInfo
struct IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148;
// System.Runtime.Remoting.IRemotingTypeInfo
struct IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C;
// System.Runtime.Remoting.Lifetime.Lease
struct Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3;
// System.Runtime.Remoting.Messaging.IMessageSink
struct IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C;
// System.Runtime.Remoting.Messaging.IllogicalCallContext
struct IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179;
// System.Runtime.Remoting.Messaging.LogicalCallContext
struct LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E;
// System.Runtime.Remoting.ObjRef
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2;
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.Security.Principal.IPrincipal
struct IPrincipal_t63FD7F58FBBE134C8FE4D31710AAEA00B000F0BF;
// System.SerializableAttribute
struct SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782;
// System.Text.Decoder
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26;
// System.Text.DecoderFallback
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60;
// System.Text.DecoderFallbackBuffer
struct DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C;
// System.Text.Encoder
struct Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464;
// System.Text.EncoderFallback
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63;
// System.Text.EncoderFallbackBuffer
struct EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C;
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Text.UTF32Encoding
struct UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A;
// System.Text.UTF8Encoding
struct UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE;
// System.Text.UnicodeEncoding
struct UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
struct AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE;
// System.Threading.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676;
// System.Threading.ExecutionContext
struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70;
// System.Threading.InternalThread
struct InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
// System.Threading.SemaphoreSlim/TaskNode
struct TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D;
// System.Threading.SynchronizationContext
struct SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7;
// System.Threading.Tasks.ITaskCompletionAction
struct ITaskCompletionAction_tB83E2DB0F3297A73CDBE338B6F2CA81D84E9C978;
// System.Threading.Tasks.StackGuard
struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9;
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114;
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87;
// System.Threading.Thread
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7;
// System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6;
// System.Tuple`2<System.IO.Stream,System.IO.Stream/ReadWriteTask>
struct Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67;
// System.Tuple`2<System.IO.TextWriter,System.Char>
struct Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8;
// System.Tuple`2<System.IO.TextWriter,System.String>
struct Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962;
// System.Tuple`2<System.Object,System.Char>
struct Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000;
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5;
// System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE;
// System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094;
// System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>
struct Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E;
// System.UnauthorizedAccessException
struct UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
IL2CPP_EXTERN_C RuntimeClass* Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoEvent_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoMethod_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoProperty_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MulticastDelegate_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____379C06C9E702D31469C29033F0DD63931EB349F5_16_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____40981BAA39513E58B28DCF0103CC04DE2A0A0444_23_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral00C75FBF9FDF37741287FE5138D60B6AEC257FF6;
IL2CPP_EXTERN_C String_t* _stringLiteral0253A7DA857E36DFB4AB8D7957C356E36829F5F7;
IL2CPP_EXTERN_C String_t* _stringLiteral0547FFE19A268F683E119C580E67B2822ECB1CA8;
IL2CPP_EXTERN_C String_t* _stringLiteral056604D121EC07E667384774DAE552AAA76CF3B8;
IL2CPP_EXTERN_C String_t* _stringLiteral06034170A9EFD60729A8166B3398BD58485D6DEE;
IL2CPP_EXTERN_C String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A;
IL2CPP_EXTERN_C String_t* _stringLiteral0B99FE9B8D9E5DCC187DB9C1DCB067CE403B1FFF;
IL2CPP_EXTERN_C String_t* _stringLiteral0F12541AFCCE175FB34BB05A79C95B76E765488B;
IL2CPP_EXTERN_C String_t* _stringLiteral104B2949F6F6A59C62E2F1CE4F43D6B3B9B197DF;
IL2CPP_EXTERN_C String_t* _stringLiteral106347FA01CECDD3F27627F13CD2F8689DDAEB49;
IL2CPP_EXTERN_C String_t* _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336;
IL2CPP_EXTERN_C String_t* _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01;
IL2CPP_EXTERN_C String_t* _stringLiteral1B1DF1408555872EE44D2433990E37F37C6057B8;
IL2CPP_EXTERN_C String_t* _stringLiteral2068B0AE2DE93955C64C2244FFC32581BB827B1E;
IL2CPP_EXTERN_C String_t* _stringLiteral223C5EC119A56013FF9761A6462704E438095BAA;
IL2CPP_EXTERN_C String_t* _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559;
IL2CPP_EXTERN_C String_t* _stringLiteral2675279F496EAF8EB26AC07B8F1A8E61C759A2A3;
IL2CPP_EXTERN_C String_t* _stringLiteral29A6E802123FF6EA94EC6F96DDA470B3FA755A58;
IL2CPP_EXTERN_C String_t* _stringLiteral2BCB5536759D024FC4C84E0F923502D4B9E8B26E;
IL2CPP_EXTERN_C String_t* _stringLiteral2CF7D6096047D30EF507FB93AC4C208A294D0D2E;
IL2CPP_EXTERN_C String_t* _stringLiteral2D3767ECF17FE52403E47357B1DE071CC86B255E;
IL2CPP_EXTERN_C String_t* _stringLiteral2DE206896014770EA4546008B698FF620310313E;
IL2CPP_EXTERN_C String_t* _stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6;
IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D;
IL2CPP_EXTERN_C String_t* _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774;
IL2CPP_EXTERN_C String_t* _stringLiteral328B8E8918DCC5480BFFCEC1BCF1A68EFF1C3293;
IL2CPP_EXTERN_C String_t* _stringLiteral32957566199CF3D8AAF6F91DEC9B58897A18C474;
IL2CPP_EXTERN_C String_t* _stringLiteral35EFFFE2370AD1E1EBB40B27FB092EFF5D7E1D4C;
IL2CPP_EXTERN_C String_t* _stringLiteral376A1C1EC35E50EC842B660B9E346C386ABA78C1;
IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
IL2CPP_EXTERN_C String_t* _stringLiteral3BCB560C93B84A12D8D29EE915252365391D82AE;
IL2CPP_EXTERN_C String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
IL2CPP_EXTERN_C String_t* _stringLiteral3DEE701517E5DC4B50EFF674034A0B7F7C69237A;
IL2CPP_EXTERN_C String_t* _stringLiteral3DF63B7ACB0522DA685DAD5FE84B81FDD7B25264;
IL2CPP_EXTERN_C String_t* _stringLiteral40272C70580D7C109CB89E34D31411747867424C;
IL2CPP_EXTERN_C String_t* _stringLiteral43E4B01DA5BC310916BDCD59560588C54E5A08C9;
IL2CPP_EXTERN_C String_t* _stringLiteral44AC91F010ECDD855BA22A4FE5878DA9B04839E4;
IL2CPP_EXTERN_C String_t* _stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7;
IL2CPP_EXTERN_C String_t* _stringLiteral51B23CF776EFF138FA5B4A92E15B0F80DB0CFACA;
IL2CPP_EXTERN_C String_t* _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651;
IL2CPP_EXTERN_C String_t* _stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37;
IL2CPP_EXTERN_C String_t* _stringLiteral59B2021BD6AB5F81D9C5385CB14DEBA14BCAD549;
IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889;
IL2CPP_EXTERN_C String_t* _stringLiteral5B3BD2481D1A6E4A5654FB0FCDF9C6265B5A959F;
IL2CPP_EXTERN_C String_t* _stringLiteral5D979813AACA82577D6C8D83D57DA0FAA5DE9671;
IL2CPP_EXTERN_C String_t* _stringLiteral5F547FBCFA545D5B8CD060929EB2311739FF8BFD;
IL2CPP_EXTERN_C String_t* _stringLiteral66D145F9BC4E163069F795822A1EA8BEF2E4E55B;
IL2CPP_EXTERN_C String_t* _stringLiteral6738D06D6C794327B819962FE118768444DFE966;
IL2CPP_EXTERN_C String_t* _stringLiteral6976E9D2306260A73687B281AF880C13AB05F910;
IL2CPP_EXTERN_C String_t* _stringLiteral6B3F00A5708C6496295B0EDCDEC7AA844B71A6D9;
IL2CPP_EXTERN_C String_t* _stringLiteral6CB021F4DE5A59C914CE2FD45BD52E5CA6A397FC;
IL2CPP_EXTERN_C String_t* _stringLiteral6EB197EFF2520A15200111CB1E6DCAAF5ADB14E4;
IL2CPP_EXTERN_C String_t* _stringLiteral71071FE5B0CC6568A7A21FDD842333F6D6361758;
IL2CPP_EXTERN_C String_t* _stringLiteral743B68D46C6B7339FD2325D2DF22FE108889647C;
IL2CPP_EXTERN_C String_t* _stringLiteral781C42C8B8E58290D48A10D0FDEF4A87279EF7DA;
IL2CPP_EXTERN_C String_t* _stringLiteral792ACC91EE5889D8CEE5B2697A416308D546BCB1;
IL2CPP_EXTERN_C String_t* _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C;
IL2CPP_EXTERN_C String_t* _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860;
IL2CPP_EXTERN_C String_t* _stringLiteral83266F61D5BE5A1B8CFE1DFE7E2B83410F5A6CE2;
IL2CPP_EXTERN_C String_t* _stringLiteral854D8C35482A3B8FFE553FACB75F29D1167E941B;
IL2CPP_EXTERN_C String_t* _stringLiteral858B28677610CF07E111998CCE040F14F5256455;
IL2CPP_EXTERN_C String_t* _stringLiteral8FF423F750EAB821AF9F4C9C956D5052DFEF62AF;
IL2CPP_EXTERN_C String_t* _stringLiteral933E9DEDE3C0119BCED3AEE351569D160C28BC18;
IL2CPP_EXTERN_C String_t* _stringLiteral952604412082661142BB4448D6792E048E0317FC;
IL2CPP_EXTERN_C String_t* _stringLiteral97E3C8FAF75EBD4A5B79D9632596155B4EB5403F;
IL2CPP_EXTERN_C String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B;
IL2CPP_EXTERN_C String_t* _stringLiteral9D4F4EF8DD2FA106FAD50D3C601D6CDA629B6218;
IL2CPP_EXTERN_C String_t* _stringLiteral9F6157A7CAD5FA63D45B6A52A9BA4C281668A407;
IL2CPP_EXTERN_C String_t* _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3;
IL2CPP_EXTERN_C String_t* _stringLiteralA2DE159285074E167990DE97D55BBF9C966A2A8F;
IL2CPP_EXTERN_C String_t* _stringLiteralA3F4A5587A5729C3EFB8474E3AAA2722613DD4DB;
IL2CPP_EXTERN_C String_t* _stringLiteralAAD19283FC942FFC547E9D76151FC155278475DF;
IL2CPP_EXTERN_C String_t* _stringLiteralAC231C16BB6DC0735FDE11475AE90E9439B40BC1;
IL2CPP_EXTERN_C String_t* _stringLiteralAE2D86CD2BE6BF988588077152DC43D7030A504A;
IL2CPP_EXTERN_C String_t* _stringLiteralAF7D82A0090AC7ECC269B2EBAD304900F101A823;
IL2CPP_EXTERN_C String_t* _stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50;
IL2CPP_EXTERN_C String_t* _stringLiteralB35BB38DF9605E4C5858316B7853A16E42EA6997;
IL2CPP_EXTERN_C String_t* _stringLiteralB4DCD844520DA1F2BBC77A98F8B314501F8C092D;
IL2CPP_EXTERN_C String_t* _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C;
IL2CPP_EXTERN_C String_t* _stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7;
IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6;
IL2CPP_EXTERN_C String_t* _stringLiteralB877A8E0CC86712F39624B45B20AC74BE887E398;
IL2CPP_EXTERN_C String_t* _stringLiteralBAE1EBEC7E602C6020B7B0FC2AB9BBE7B9F5F915;
IL2CPP_EXTERN_C String_t* _stringLiteralBC112DFA2BA868FD548B5E793DA720F4BA4B7F4A;
IL2CPP_EXTERN_C String_t* _stringLiteralBD8E5715A35A52835F116AEA5F84A3B21F98BBC7;
IL2CPP_EXTERN_C String_t* _stringLiteralBEE42D2FC435CCAA88B02E953C7318706D195EE9;
IL2CPP_EXTERN_C String_t* _stringLiteralC19E61A380CA7CE4691A9B314627EC2DBF71206E;
IL2CPP_EXTERN_C String_t* _stringLiteralC29FDD9E1725BFBAC261A919AEA0F811B7D7A0A9;
IL2CPP_EXTERN_C String_t* _stringLiteralC82E3D7279EFA3ECA576370AF952C815D48CE41F;
IL2CPP_EXTERN_C String_t* _stringLiteralC9C545814A86552A9F3ADF0A724DCF384DA46FF6;
IL2CPP_EXTERN_C String_t* _stringLiteralCA8EFDD5F0C04A868408904A3C252F0CA567598B;
IL2CPP_EXTERN_C String_t* _stringLiteralCDC89A30ABEE9559AAC98D6CE0043622D5487F95;
IL2CPP_EXTERN_C String_t* _stringLiteralD0189667B8E2F597BB375A5DA6046DAD5C52570A;
IL2CPP_EXTERN_C String_t* _stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322;
IL2CPP_EXTERN_C String_t* _stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDAA58D8010113F4E181D2FE5796A123551AAA764;
IL2CPP_EXTERN_C String_t* _stringLiteralDD752B29EC066D8D7C811D0D1588EF5458A6FB0E;
IL2CPP_EXTERN_C String_t* _stringLiteralDFEFBEE8FA51C19A77377FDC99C6D1E91AC2EBB8;
IL2CPP_EXTERN_C String_t* _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917;
IL2CPP_EXTERN_C String_t* _stringLiteralE165BC316E01BC9110D90356CA81693D51C6EE78;
IL2CPP_EXTERN_C String_t* _stringLiteralE1E79CC3983700F455A4D5F772D7BDA5995AB2F8;
IL2CPP_EXTERN_C String_t* _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25;
IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
IL2CPP_EXTERN_C String_t* _stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497;
IL2CPP_EXTERN_C String_t* _stringLiteralE823D95FC8DE056EA2DD064AAB872C4F18B15938;
IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
IL2CPP_EXTERN_C String_t* _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123;
IL2CPP_EXTERN_C String_t* _stringLiteralF05ED8D2787C37C90E1473E7577892374D421A43;
IL2CPP_EXTERN_C String_t* _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F;
IL2CPP_EXTERN_C String_t* _stringLiteralF21F90700909B9F6000A5EDC822B69CE57F0FC2B;
IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5;
IL2CPP_EXTERN_C String_t* _stringLiteralF379853755CB070E42B380890B2D70F78F11E230;
IL2CPP_EXTERN_C String_t* _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE;
IL2CPP_EXTERN_C String_t* _stringLiteralF4B203C13607C6CE36A755A30A248EF452047C4F;
IL2CPP_EXTERN_C String_t* _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF;
IL2CPP_EXTERN_C String_t* _stringLiteralF81DB58077C32951A07F4AF53F388BC5335C06AE;
IL2CPP_EXTERN_C String_t* _stringLiteralFE28F10D2C6DAB4E315F2659ADAA6A4F16B5E4B8;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m58B3F295A5FFFD735D3E3C72214C7CF4476317E5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m1C192A08B472664A240EE20F093AB3D29A555817_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mE6951FF55B0AC677D1C5F9DF997ACD1C0F0F2917_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitialized_TisManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_m58CEB8458EDB19860D84BC4C322F94D2124C4014_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitialized_TisSemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_mFA528DFBF5A5DDCFC6A4A4556DA57DAD76196C67_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NullStream_EndRead_m90214556654266714A193D5BDBE53B8250A2705F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NullStream_EndWrite_m77128A88F7E63F2A225D46CC0B4FA8F8F13F335C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadWriteTask_InvokeAsyncCallback_m5F994ECAC01C8C79EB01A4E1933F2DF248D16521_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamReader_Read_m3AED4ADF17B883000D088F00FF87E29A0874E67C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item1_m45E38FD03787621623378924C1ABCFCD968A8A3B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item2_mEF37E72592F83D030DE5F895B47DAB113C382796_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_Create_TisStream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_TisReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_m22133E1CA323ACE1BF3C077F34ADDD2FA852EB70_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CBeginReadInternalU3Eb__39_0_mA916204119245A554120ADD0684F65FE62EC9100_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CBeginWriteInternalU3Eb__46_0_m91FE2212E52436AAC7F76E6E1CE34A2BC249A050_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CEnsureAsyncActiveSemaphoreInitializedU3Eb__4_0_mFC89B6BDAEAB17521C199A8E86DF2CF193B73185_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRunReadWriteTaskWhenReadyU3Eb__47_0_mAABA4692CAA24F0FAFC71C3CB9B951F5CE4E8CF6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3Cget_AsyncWaitHandleU3Eb__12_0_mDFCAFA8FE40FD1707536E6CD007F856B895DFE05_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InvalidCastException__ctor_mB14CE363FB346D9BC0C0763CAF0B67AF90902144_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InvalidProgramException__ctor_m196DA4095281E02BB54223A57497738B29958D89_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InvalidTimeZoneException__ctor_m5CF26CC0EAFEFD50238D8A317644BE84B8A91764_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_com_FromNativeMethodDefinition_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Math_Abs_m7F5374AE27F11C3FFBB648DA0EE075317C37C097_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Math_Log_m5C457D6A666677B3E260C571049528D5BE93B7AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Math__cctor_m74DAC117CAF47A5126D22880C729D8B4991DC62E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MemberAccessException__ctor_mDD27777FCB5B591E3A785846CB00EC52CBDEA4D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodAccessException__ctor_mA04BCF385465A563D2B65C08391624EAE14C33C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingFieldException__ctor_m61B031B5A45BA495D873FBFFD8481A95489A54A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingFieldException_get_Message_m43F026B46192C9A79B507F6D1E69C163C07B1254_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingMethodException__ctor_m1DF6EAD8AE77C7C77D64E7FAE249FE024C56EB71_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MissingMethodException_get_Message_mD35DBB99C4AC01DB84CEABD0A4C84877C85DF7BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_com_FromNativeMethodDefinition_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoCustomAttrs__cctor_m095035BF9D3044644C6BB85C3FE34E186A7A779C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MulticastDelegate_CombineImpl_m722E5D3AD0B2C04F4EDAD82FAFB0733CACAF28B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MulticastDelegate_Equals_mCC476453B26687950C1623E6944CA786A2DC9C49_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MulticastDelegate_GetInvocationList_m3B9C8F9FA6E7721D588ED947018372A96871EB97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MulticastNotSupportedException__ctor_m4E7EEFC6E42FEAB6FA8D775E2CC71A0C3B970CD2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullConsoleDriver_ReadKey_mD8783671CC38E7E2BA8949C9C2631BB90D5A0317_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullConsoleDriver__cctor_m0B892457EA9435B6B2E8483E8F7588290E9573D0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullStreamReader_ReadToEnd_mEEED7270C45A89D861A6816C2F0DD27CB7D2B8B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullStream_EndRead_m90214556654266714A193D5BDBE53B8250A2705F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullStream_EndWrite_m77128A88F7E63F2A225D46CC0B4FA8F8F13F335C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullStream__ctor_m33B984F0C9CBADFF8D35BEAAECE7E441D0E30E95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberBuffer__cctor_mB263774D1C650BD48E32AC15403F941154721DCE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter__cctor_m4742B866AF2C274FEE807160C61B979ADB071A2C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_FormatDecimal_mD9017BCCC840DA365FF4BE687382AB95D22CF562_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_FormatSingle_m323E2B56236A6DAA51251B75618122C0A58F5256_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_FormatUInt64_m04004F09D1913C13C59635153D0F45AF37F8248A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PathInternal_HasIllegalCharacters_mDE3FB11E02AC6CD38B2DCAC0B1A737F37CB341A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PathTooLongException__ctor_m43D8612C5F39D3F8EB07946DADD9B43DB585995F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PinnedBufferMemoryStream__ctor_m79A845DB8C49B20AD09F2AF704123771A8AEC9D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReadWriteTask_InvokeAsyncCallback_m5F994ECAC01C8C79EB01A4E1933F2DF248D16521_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReadWriteTask_System_Threading_Tasks_ITaskCompletionAction_Invoke_m1507CBD85512EC1CEF5199834058DAF1355CB786_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReadWriteTask__ctor_mE4914C482924D77EE547ACF41C3309E33F1DE830_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader_DetectEncoding_m5626B39F6A0FD6DC107B6A63B0E4840230FFCF14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader_Init_m6CD01243AB3564C5E8B45E9823041C09D359FC9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader_ReadLine_m6F43A4370F3F23B1882543F76DAF5AA30681E477_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader_ReadToEnd_m5AB87727EA94EEC0577189AFBC4EE9FAAA22C2FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader_Read_m3AED4ADF17B883000D088F00FF87E29A0874E67C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__cctor_mD78F6CEA98B66DF1DF73D1D990DF0A724A5E4887_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__ctor_m0B7DB61C7C0ED190FB707A317A134A83EDFE3FAC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__ctor_m3A1F63D6B85504E4427C172BCB25456E069111BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__ctor_m7160F36EA1D6A04F27A7C4622B74AB10BCB70980_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamReader__ctor_mFF4CF43617782C8B2EA8CED3C45571DD6B3AF7C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter__cctor_m201F8BD01435889E27515048CF151323BAC42345_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter__ctor_m1795A943BBA92A3335FDC2112A2082ADD47DF9C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter__ctor_mB84BC6A7038D0550163682CD317A76740620E039_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_BeginReadInternal_m60C7782571CF8C69B885E18BFF34B35B3DC300FC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_BeginWriteInternal_mF9557BA2F5E6556C7CB979F46D2F3DA2A5C43668_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_BlockingBeginRead_mACB9EF43064AEBB8CF5582CC4416CCD85BBA0C3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_BlockingBeginWrite_m4D04E97AFDD77BE540B297163DF825E948E3C00C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_Close_m3E7D77CC56A0776F17B5C4480D62F7800DD03C0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_EnsureAsyncActiveSemaphoreInitialized_m874CD5FC48757D8810E4DD57DADD850A338BDED2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_ReadByte_m0FAFF74832FDD03E65BD221CD68A743C893EC6B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_RunReadWriteTaskWhenReady_m42E40F1AB2522AC449FF9332FD46A220A6CDE147_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream_WriteByte_mA20A780D5019E9C5FDC5C09D23FBFEE1EFA94CC3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Stream__cctor_mA818E89F35B0DDE2D1C241F5FFB244A1088A029B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringResultHandler__ctor_m88B61167B257C333679A5C8CD893238E5B0A56A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SyncTextReader_Dispose_mD8824E922534B09273852261FF986840CDBA0AB1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SyncTextWriter_Dispose_m12B3249821E891828F58F13CBD6F154F4FE739D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SynchronousAsyncResult_EndRead_m995E037B3AB2E9DE4D215833CA7E81B60D869924_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SynchronousAsyncResult_EndWrite_mF1F332953F2F8651DEFCBC8EB0616A759504F2B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SynchronousAsyncResult_get_AsyncWaitHandle_m89D6B91D0A116BBF517063540F727EF4F5045825_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87mscorlib7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892mscorlib7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextReader_Dispose_m9DA31CD42D5E73A1452F4EEC014C5703B5872930_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextReader_ReadLine_m44D609BFD3E8C6C8225A5EF91E2DF9D1D9EE2336_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextReader_ReadToEnd_m0132D9AB2B3B376AE3BF4CD4A809D60A08E38179_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextReader__cctor_m4DC7D8BFF04344567D945853BF464C47AADC8663_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextWriter_Dispose_m8B516B9539EB72469E3B3852BEDFB7DC5A677569_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextWriter_WriteLine_m8502FED0DEE6B89056D2D7D04B798D6BA8D14E38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextWriter__cctor_mD358433C9213A8F66FE33D65996DEBA8315C1219_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextWriter__ctor_m9E003066292D16C33BCD9F462445436BCBF9AAFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CBeginReadInternalU3Eb__39_0_mA916204119245A554120ADD0684F65FE62EC9100_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CBeginWriteInternalU3Eb__46_0_m91FE2212E52436AAC7F76E6E1CE34A2BC249A050_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CEnsureAsyncActiveSemaphoreInitializedU3Eb__4_0_mFC89B6BDAEAB17521C199A8E86DF2CF193B73185_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CRunReadWriteTaskWhenReadyU3Eb__47_0_mAABA4692CAA24F0FAFC71C3CB9B951F5CE4E8CF6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3Cget_AsyncWaitHandleU3Eb__12_0_mDFCAFA8FE40FD1707536E6CD007F856B895DFE05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m0A826CA81945CBA6D7FC29CCD4289C0A4265478F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m8FECC4F9793F3511CB4737E4315989A627B9BA94_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_mD19C2C81E14C904D5B730513379F67EE4C82FB38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_mF595358E3E6D1B0342A5150FA18710C194D242F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader_Peek_mB5A106F3ABBC672E906ECC85D2C78D2EBC5975A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader_ReadLine_m6075E7BFF09EF43C2620DD57A508E8C925778533_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader_ReadToEnd_mFFF67772696E14242FFE13674054746AE61B3AE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader_Read_m763AE2B1D9BB0572ACE16E91236FAF9C716DC359_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader__cctor_m8030C6E3F2620159376D6BB9B035D9F4E99B3A0A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamWriter_Flush_mA8E33985ABE27D7AB777CD9216F928A093F13618_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamWriter_Write_m38254FD2768CB49A68C9503918CE6FEA65F9A197_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamWriter_Write_m662E03F82B13865872B3ADC048BEFE8E6C94B30F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamWriter_Write_m7C22DC062E894CC609C07612CE9AF17631CF5769_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamWriter_Write_mAC310C8D24F673608DC7F130666E572ADD388E07_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream__ctor_mDAB26A2823AF7D8CD45A0119BAE6B5549A9581C5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream__ctor_mF4040F06CEA36C1ACBA0C09319B38530D0E45632_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_MetadataUsageId;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
struct Delegate_t;;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_com;;
struct Delegate_t_marshaled_pinvoke;
struct Delegate_t_marshaled_pinvoke;;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB;
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
// Microsoft.Win32.Win32Native_WIN32_FIND_DATA
struct WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 : 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_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56, ___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_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56, ___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((void**)(&___cFileName_1), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>
struct Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046* ___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_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 * ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___entries_1)); }
inline EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___keys_7)); }
inline KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___values_8)); }
inline ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 * get_values_8() const { return ___values_8; }
inline ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>
struct Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12* ___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_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 * ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___entries_1)); }
inline EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___keys_7)); }
inline KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___values_8)); }
inline ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 * get_values_8() const { return ___values_8; }
inline ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs_AttributeInfo>
struct Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F* ___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_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 * ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___entries_1)); }
inline EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___keys_7)); }
inline KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___values_8)); }
inline ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 * get_values_8() const { return ___values_8; }
inline ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.List`1<System.LocalDataStore>
struct List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* ____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_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____items_1)); }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* get__items_1() const { return ____items_1; }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____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_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____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_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_StaticFields, ____emptyArray_5)); }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* get__emptyArray_5() const { return ____emptyArray_5; }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeData>
struct ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F, ___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((void**)(&___list_0), (void*)value);
}
};
// System.CompatibilitySwitches
struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91 : public RuntimeObject
{
public:
public:
};
struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields
{
public:
// System.Boolean System.CompatibilitySwitches::IsAppEarlierThanSilverlight4
bool ___IsAppEarlierThanSilverlight4_0;
// System.Boolean System.CompatibilitySwitches::IsAppEarlierThanWindowsPhone8
bool ___IsAppEarlierThanWindowsPhone8_1;
public:
inline static int32_t get_offset_of_IsAppEarlierThanSilverlight4_0() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanSilverlight4_0)); }
inline bool get_IsAppEarlierThanSilverlight4_0() const { return ___IsAppEarlierThanSilverlight4_0; }
inline bool* get_address_of_IsAppEarlierThanSilverlight4_0() { return &___IsAppEarlierThanSilverlight4_0; }
inline void set_IsAppEarlierThanSilverlight4_0(bool value)
{
___IsAppEarlierThanSilverlight4_0 = value;
}
inline static int32_t get_offset_of_IsAppEarlierThanWindowsPhone8_1() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanWindowsPhone8_1)); }
inline bool get_IsAppEarlierThanWindowsPhone8_1() const { return ___IsAppEarlierThanWindowsPhone8_1; }
inline bool* get_address_of_IsAppEarlierThanWindowsPhone8_1() { return &___IsAppEarlierThanWindowsPhone8_1; }
inline void set_IsAppEarlierThanWindowsPhone8_1(bool value)
{
___IsAppEarlierThanWindowsPhone8_1 = value;
}
};
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE : public RuntimeObject
{
public:
// System.Type System.DelegateData::target_type
Type_t * ___target_type_0;
// System.String System.DelegateData::method_name
String_t* ___method_name_1;
// System.Boolean System.DelegateData::curried_first_arg
bool ___curried_first_arg_2;
public:
inline static int32_t get_offset_of_target_type_0() { return static_cast<int32_t>(offsetof(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE, ___target_type_0)); }
inline Type_t * get_target_type_0() const { return ___target_type_0; }
inline Type_t ** get_address_of_target_type_0() { return &___target_type_0; }
inline void set_target_type_0(Type_t * value)
{
___target_type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_type_0), (void*)value);
}
inline static int32_t get_offset_of_method_name_1() { return static_cast<int32_t>(offsetof(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE, ___method_name_1)); }
inline String_t* get_method_name_1() const { return ___method_name_1; }
inline String_t** get_address_of_method_name_1() { return &___method_name_1; }
inline void set_method_name_1(String_t* value)
{
___method_name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_name_1), (void*)value);
}
inline static int32_t get_offset_of_curried_first_arg_2() { return static_cast<int32_t>(offsetof(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE, ___curried_first_arg_2)); }
inline bool get_curried_first_arg_2() const { return ___curried_first_arg_2; }
inline bool* get_address_of_curried_first_arg_2() { return &___curried_first_arg_2; }
inline void set_curried_first_arg_2(bool value)
{
___curried_first_arg_2 = value;
}
};
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields, ___Value_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_Value_0() const { return ___Value_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject
{
public:
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
public:
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); }
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
inline void set_m_isReadOnly_3(bool value)
{
___m_isReadOnly_3 = value;
}
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); }
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
inline void set_cultureID_4(int32_t value)
{
___cultureID_4 = value;
}
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); }
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
inline void set_parent_lcid_5(int32_t value)
{
___parent_lcid_5 = value;
}
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); }
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
inline void set_datetime_index_6(int32_t value)
{
___datetime_index_6 = value;
}
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); }
inline int32_t get_number_index_7() const { return ___number_index_7; }
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
inline void set_number_index_7(int32_t value)
{
___number_index_7 = value;
}
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); }
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
inline void set_default_calendar_type_8(int32_t value)
{
___default_calendar_type_8 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); }
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
inline void set_m_useUserOverride_9(bool value)
{
___m_useUserOverride_9 = value;
}
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; }
inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
___numInfo_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value);
}
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
{
___dateTimeInfo_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value);
}
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; }
inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
{
___textInfo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value);
}
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); }
inline String_t* get_m_name_13() const { return ___m_name_13; }
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
inline void set_m_name_13(String_t* value)
{
___m_name_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value);
}
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); }
inline String_t* get_englishname_14() const { return ___englishname_14; }
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
inline void set_englishname_14(String_t* value)
{
___englishname_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value);
}
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); }
inline String_t* get_nativename_15() const { return ___nativename_15; }
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
inline void set_nativename_15(String_t* value)
{
___nativename_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value);
}
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); }
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
inline void set_iso3lang_16(String_t* value)
{
___iso3lang_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value);
}
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); }
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
inline void set_iso2lang_17(String_t* value)
{
___iso2lang_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value);
}
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); }
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
inline void set_win3lang_18(String_t* value)
{
___win3lang_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value);
}
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); }
inline String_t* get_territory_19() const { return ___territory_19; }
inline String_t** get_address_of_territory_19() { return &___territory_19; }
inline void set_territory_19(String_t* value)
{
___territory_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value);
}
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___native_calendar_names_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value);
}
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
{
___compareInfo_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value);
}
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); }
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
inline void set_textinfo_data_22(void* value)
{
___textinfo_data_22 = value;
}
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); }
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
inline void set_m_dataItem_23(int32_t value)
{
___m_dataItem_23 = value;
}
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; }
inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value)
{
___calendar_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value);
}
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___parent_culture_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value);
}
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); }
inline bool get_constructed_26() const { return ___constructed_26; }
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
inline void set_constructed_26(bool value)
{
___constructed_26 = value;
}
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___cached_serialized_form_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value);
}
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
{
___m_cultureData_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value);
}
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); }
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
inline void set_m_isInherited_29(bool value)
{
___m_isInherited_29 = value;
}
};
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject * ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_37;
public:
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___invariant_culture_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value);
}
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); }
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
inline void set_shared_table_lock_1(RuntimeObject * value)
{
___shared_table_lock_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value);
}
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___default_current_culture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentUICulture_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentCulture_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value);
}
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value)
{
___shared_by_number_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value);
}
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value)
{
___shared_by_name_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value);
}
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); }
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
inline void set_IsTaiwanSku_37(bool value)
{
___IsTaiwanSku_37 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.IO.Path
struct Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752 : public RuntimeObject
{
public:
public:
};
struct Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields
{
public:
// System.Char[] System.IO.Path::InvalidPathChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___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_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___PathSeparatorChars_6;
// System.Boolean System.IO.Path::dirEqualsVolume
bool ___dirEqualsVolume_7;
// System.Char[] System.IO.Path::trimEndCharsWindows
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimEndCharsWindows_8;
// System.Char[] System.IO.Path::trimEndCharsUnix
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimEndCharsUnix_9;
public:
inline static int32_t get_offset_of_InvalidPathChars_0() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___InvalidPathChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_InvalidPathChars_0() const { return ___InvalidPathChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_InvalidPathChars_0() { return &___InvalidPathChars_0; }
inline void set_InvalidPathChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___InvalidPathChars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InvalidPathChars_0), (void*)value);
}
inline static int32_t get_offset_of_AltDirectorySeparatorChar_1() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_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_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_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_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_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_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_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((void**)(&___DirectorySeparatorStr_4), (void*)value);
}
inline static int32_t get_offset_of_VolumeSeparatorChar_5() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_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_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___PathSeparatorChars_6)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_PathSeparatorChars_6() const { return ___PathSeparatorChars_6; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_PathSeparatorChars_6() { return &___PathSeparatorChars_6; }
inline void set_PathSeparatorChars_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___PathSeparatorChars_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PathSeparatorChars_6), (void*)value);
}
inline static int32_t get_offset_of_dirEqualsVolume_7() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_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_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___trimEndCharsWindows_8)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_trimEndCharsWindows_8() const { return ___trimEndCharsWindows_8; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_trimEndCharsWindows_8() { return &___trimEndCharsWindows_8; }
inline void set_trimEndCharsWindows_8(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___trimEndCharsWindows_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsWindows_8), (void*)value);
}
inline static int32_t get_offset_of_trimEndCharsUnix_9() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___trimEndCharsUnix_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_trimEndCharsUnix_9() const { return ___trimEndCharsUnix_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_trimEndCharsUnix_9() { return &___trimEndCharsUnix_9; }
inline void set_trimEndCharsUnix_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___trimEndCharsUnix_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsUnix_9), (void*)value);
}
};
// System.IO.PathInternal
struct PathInternal_t5F8C65F4CF151B84B8CAC19CB54D6531DFD958B8 : public RuntimeObject
{
public:
public:
};
// System.IO.SearchResult
struct SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE : 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_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * ___findData_2;
public:
inline static int32_t get_offset_of_fullPath_0() { return static_cast<int32_t>(offsetof(SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE, ___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((void**)(&___fullPath_0), (void*)value);
}
inline static int32_t get_offset_of_userPath_1() { return static_cast<int32_t>(offsetof(SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE, ___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((void**)(&___userPath_1), (void*)value);
}
inline static int32_t get_offset_of_findData_2() { return static_cast<int32_t>(offsetof(SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE, ___findData_2)); }
inline WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * get_findData_2() const { return ___findData_2; }
inline WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 ** get_address_of_findData_2() { return &___findData_2; }
inline void set_findData_2(WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * value)
{
___findData_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___findData_2), (void*)value);
}
};
// System.IO.SearchResultHandler`1<System.String>
struct SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C : public RuntimeObject
{
public:
public:
};
// System.IO.Stream_<>c
struct U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields
{
public:
// System.IO.Stream_<>c System.IO.Stream_<>c::<>9
U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * ___U3CU3E9_0;
// System.Func`1<System.Threading.SemaphoreSlim> System.IO.Stream_<>c::<>9__4_0
Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * ___U3CU3E9__4_0_1;
// System.Func`2<System.Object,System.Int32> System.IO.Stream_<>c::<>9__39_0
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___U3CU3E9__39_0_2;
// System.Func`2<System.Object,System.Int32> System.IO.Stream_<>c::<>9__46_0
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___U3CU3E9__46_0_3;
// System.Action`2<System.Threading.Tasks.Task,System.Object> System.IO.Stream_<>c::<>9__47_0
Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * ___U3CU3E9__47_0_4;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__4_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields, ___U3CU3E9__4_0_1)); }
inline Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * get_U3CU3E9__4_0_1() const { return ___U3CU3E9__4_0_1; }
inline Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 ** get_address_of_U3CU3E9__4_0_1() { return &___U3CU3E9__4_0_1; }
inline void set_U3CU3E9__4_0_1(Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * value)
{
___U3CU3E9__4_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__39_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields, ___U3CU3E9__39_0_2)); }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get_U3CU3E9__39_0_2() const { return ___U3CU3E9__39_0_2; }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of_U3CU3E9__39_0_2() { return &___U3CU3E9__39_0_2; }
inline void set_U3CU3E9__39_0_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value)
{
___U3CU3E9__39_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__39_0_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__46_0_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields, ___U3CU3E9__46_0_3)); }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get_U3CU3E9__46_0_3() const { return ___U3CU3E9__46_0_3; }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of_U3CU3E9__46_0_3() { return &___U3CU3E9__46_0_3; }
inline void set_U3CU3E9__46_0_3(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value)
{
___U3CU3E9__46_0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__46_0_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__47_0_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields, ___U3CU3E9__47_0_4)); }
inline Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * get_U3CU3E9__47_0_4() const { return ___U3CU3E9__47_0_4; }
inline Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 ** get_address_of_U3CU3E9__47_0_4() { return &___U3CU3E9__47_0_4; }
inline void set_U3CU3E9__47_0_4(Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * value)
{
___U3CU3E9__47_0_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__47_0_4), (void*)value);
}
};
// System.IO.Stream_SynchronousAsyncResult
struct SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 : public RuntimeObject
{
public:
// System.Object System.IO.Stream_SynchronousAsyncResult::_stateObject
RuntimeObject * ____stateObject_0;
// System.Boolean System.IO.Stream_SynchronousAsyncResult::_isWrite
bool ____isWrite_1;
// System.Threading.ManualResetEvent System.IO.Stream_SynchronousAsyncResult::_waitHandle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ____waitHandle_2;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.IO.Stream_SynchronousAsyncResult::_exceptionInfo
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ____exceptionInfo_3;
// System.Boolean System.IO.Stream_SynchronousAsyncResult::_endXxxCalled
bool ____endXxxCalled_4;
// System.Int32 System.IO.Stream_SynchronousAsyncResult::_bytesRead
int32_t ____bytesRead_5;
public:
inline static int32_t get_offset_of__stateObject_0() { return static_cast<int32_t>(offsetof(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541, ____stateObject_0)); }
inline RuntimeObject * get__stateObject_0() const { return ____stateObject_0; }
inline RuntimeObject ** get_address_of__stateObject_0() { return &____stateObject_0; }
inline void set__stateObject_0(RuntimeObject * value)
{
____stateObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stateObject_0), (void*)value);
}
inline static int32_t get_offset_of__isWrite_1() { return static_cast<int32_t>(offsetof(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541, ____isWrite_1)); }
inline bool get__isWrite_1() const { return ____isWrite_1; }
inline bool* get_address_of__isWrite_1() { return &____isWrite_1; }
inline void set__isWrite_1(bool value)
{
____isWrite_1 = value;
}
inline static int32_t get_offset_of__waitHandle_2() { return static_cast<int32_t>(offsetof(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541, ____waitHandle_2)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get__waitHandle_2() const { return ____waitHandle_2; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of__waitHandle_2() { return &____waitHandle_2; }
inline void set__waitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
____waitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____waitHandle_2), (void*)value);
}
inline static int32_t get_offset_of__exceptionInfo_3() { return static_cast<int32_t>(offsetof(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541, ____exceptionInfo_3)); }
inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * get__exceptionInfo_3() const { return ____exceptionInfo_3; }
inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A ** get_address_of__exceptionInfo_3() { return &____exceptionInfo_3; }
inline void set__exceptionInfo_3(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * value)
{
____exceptionInfo_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____exceptionInfo_3), (void*)value);
}
inline static int32_t get_offset_of__endXxxCalled_4() { return static_cast<int32_t>(offsetof(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541, ____endXxxCalled_4)); }
inline bool get__endXxxCalled_4() const { return ____endXxxCalled_4; }
inline bool* get_address_of__endXxxCalled_4() { return &____endXxxCalled_4; }
inline void set__endXxxCalled_4(bool value)
{
____endXxxCalled_4 = value;
}
inline static int32_t get_offset_of__bytesRead_5() { return static_cast<int32_t>(offsetof(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541, ____bytesRead_5)); }
inline int32_t get__bytesRead_5() const { return ____bytesRead_5; }
inline int32_t* get_address_of__bytesRead_5() { return &____bytesRead_5; }
inline void set__bytesRead_5(int32_t value)
{
____bytesRead_5 = value;
}
};
// System.IO.Stream_SynchronousAsyncResult_<>c
struct U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_StaticFields
{
public:
// System.IO.Stream_SynchronousAsyncResult_<>c System.IO.Stream_SynchronousAsyncResult_<>c::<>9
U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * ___U3CU3E9_0;
// System.Func`1<System.Threading.ManualResetEvent> System.IO.Stream_SynchronousAsyncResult_<>c::<>9__12_0
Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * ___U3CU3E9__12_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__12_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_StaticFields, ___U3CU3E9__12_0_1)); }
inline Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * get_U3CU3E9__12_0_1() const { return ___U3CU3E9__12_0_1; }
inline Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A ** get_address_of_U3CU3E9__12_0_1() { return &___U3CU3E9__12_0_1; }
inline void set_U3CU3E9__12_0_1(Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * value)
{
___U3CU3E9__12_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__12_0_1), (void*)value);
}
};
// System.IO.TextReader_<>c
struct U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields
{
public:
// System.IO.TextReader_<>c System.IO.TextReader_<>c::<>9
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
};
// System.IO.TextWriter_<>c
struct U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields
{
public:
// System.IO.TextWriter_<>c System.IO.TextWriter_<>c::<>9
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
};
// System.IO.__Error
struct __Error_tE109C573A1DDD32586B89840930AD5609EC8D89C : public RuntimeObject
{
public:
public:
};
// System.KnownTerminals
struct KnownTerminals_tC33732356694467E5C41300FDB5A86143590F1AE : public RuntimeObject
{
public:
public:
};
// System.LocalDataStore
struct LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE : public RuntimeObject
{
public:
// System.LocalDataStoreElement[] System.LocalDataStore::m_DataTable
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* ___m_DataTable_0;
// System.LocalDataStoreMgr System.LocalDataStore::m_Manager
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___m_Manager_1;
public:
inline static int32_t get_offset_of_m_DataTable_0() { return static_cast<int32_t>(offsetof(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE, ___m_DataTable_0)); }
inline LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* get_m_DataTable_0() const { return ___m_DataTable_0; }
inline LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0** get_address_of_m_DataTable_0() { return &___m_DataTable_0; }
inline void set_m_DataTable_0(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* value)
{
___m_DataTable_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DataTable_0), (void*)value);
}
inline static int32_t get_offset_of_m_Manager_1() { return static_cast<int32_t>(offsetof(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE, ___m_Manager_1)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_m_Manager_1() const { return ___m_Manager_1; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_m_Manager_1() { return &___m_Manager_1; }
inline void set_m_Manager_1(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___m_Manager_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Manager_1), (void*)value);
}
};
// System.LocalDataStoreElement
struct LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA : public RuntimeObject
{
public:
// System.Object System.LocalDataStoreElement::m_value
RuntimeObject * ___m_value_0;
// System.Int64 System.LocalDataStoreElement::m_cookie
int64_t ___m_cookie_1;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA, ___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((void**)(&___m_value_0), (void*)value);
}
inline static int32_t get_offset_of_m_cookie_1() { return static_cast<int32_t>(offsetof(LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA, ___m_cookie_1)); }
inline int64_t get_m_cookie_1() const { return ___m_cookie_1; }
inline int64_t* get_address_of_m_cookie_1() { return &___m_cookie_1; }
inline void set_m_cookie_1(int64_t value)
{
___m_cookie_1 = value;
}
};
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 : public RuntimeObject
{
public:
// System.LocalDataStore System.LocalDataStoreHolder::m_Store
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___m_Store_0;
public:
inline static int32_t get_offset_of_m_Store_0() { return static_cast<int32_t>(offsetof(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304, ___m_Store_0)); }
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * get_m_Store_0() const { return ___m_Store_0; }
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE ** get_address_of_m_Store_0() { return &___m_Store_0; }
inline void set_m_Store_0(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * value)
{
___m_Store_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Store_0), (void*)value);
}
};
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 : public RuntimeObject
{
public:
// System.Boolean[] System.LocalDataStoreMgr::m_SlotInfoTable
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___m_SlotInfoTable_0;
// System.Int32 System.LocalDataStoreMgr::m_FirstAvailableSlot
int32_t ___m_FirstAvailableSlot_1;
// System.Collections.Generic.List`1<System.LocalDataStore> System.LocalDataStoreMgr::m_ManagedLocalDataStores
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * ___m_ManagedLocalDataStores_2;
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot> System.LocalDataStoreMgr::m_KeyToSlotMap
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * ___m_KeyToSlotMap_3;
// System.Int64 System.LocalDataStoreMgr::m_CookieGenerator
int64_t ___m_CookieGenerator_4;
public:
inline static int32_t get_offset_of_m_SlotInfoTable_0() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_SlotInfoTable_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get_m_SlotInfoTable_0() const { return ___m_SlotInfoTable_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of_m_SlotInfoTable_0() { return &___m_SlotInfoTable_0; }
inline void set_m_SlotInfoTable_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
___m_SlotInfoTable_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SlotInfoTable_0), (void*)value);
}
inline static int32_t get_offset_of_m_FirstAvailableSlot_1() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_FirstAvailableSlot_1)); }
inline int32_t get_m_FirstAvailableSlot_1() const { return ___m_FirstAvailableSlot_1; }
inline int32_t* get_address_of_m_FirstAvailableSlot_1() { return &___m_FirstAvailableSlot_1; }
inline void set_m_FirstAvailableSlot_1(int32_t value)
{
___m_FirstAvailableSlot_1 = value;
}
inline static int32_t get_offset_of_m_ManagedLocalDataStores_2() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_ManagedLocalDataStores_2)); }
inline List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * get_m_ManagedLocalDataStores_2() const { return ___m_ManagedLocalDataStores_2; }
inline List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D ** get_address_of_m_ManagedLocalDataStores_2() { return &___m_ManagedLocalDataStores_2; }
inline void set_m_ManagedLocalDataStores_2(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * value)
{
___m_ManagedLocalDataStores_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ManagedLocalDataStores_2), (void*)value);
}
inline static int32_t get_offset_of_m_KeyToSlotMap_3() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_KeyToSlotMap_3)); }
inline Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * get_m_KeyToSlotMap_3() const { return ___m_KeyToSlotMap_3; }
inline Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 ** get_address_of_m_KeyToSlotMap_3() { return &___m_KeyToSlotMap_3; }
inline void set_m_KeyToSlotMap_3(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * value)
{
___m_KeyToSlotMap_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_KeyToSlotMap_3), (void*)value);
}
inline static int32_t get_offset_of_m_CookieGenerator_4() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_CookieGenerator_4)); }
inline int64_t get_m_CookieGenerator_4() const { return ___m_CookieGenerator_4; }
inline int64_t* get_address_of_m_CookieGenerator_4() { return &___m_CookieGenerator_4; }
inline void set_m_CookieGenerator_4(int64_t value)
{
___m_CookieGenerator_4 = value;
}
};
// System.LocalDataStoreSlot
struct LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E : public RuntimeObject
{
public:
// System.LocalDataStoreMgr System.LocalDataStoreSlot::m_mgr
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___m_mgr_0;
// System.Int32 System.LocalDataStoreSlot::m_slot
int32_t ___m_slot_1;
// System.Int64 System.LocalDataStoreSlot::m_cookie
int64_t ___m_cookie_2;
public:
inline static int32_t get_offset_of_m_mgr_0() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_mgr_0)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_m_mgr_0() const { return ___m_mgr_0; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_m_mgr_0() { return &___m_mgr_0; }
inline void set_m_mgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___m_mgr_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_mgr_0), (void*)value);
}
inline static int32_t get_offset_of_m_slot_1() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_slot_1)); }
inline int32_t get_m_slot_1() const { return ___m_slot_1; }
inline int32_t* get_address_of_m_slot_1() { return &___m_slot_1; }
inline void set_m_slot_1(int32_t value)
{
___m_slot_1 = value;
}
inline static int32_t get_offset_of_m_cookie_2() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_cookie_2)); }
inline int64_t get_m_cookie_2() const { return ___m_cookie_2; }
inline int64_t* get_address_of_m_cookie_2() { return &___m_cookie_2; }
inline void set_m_cookie_2(int64_t value)
{
___m_cookie_2 = value;
}
};
// System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject
{
public:
// System.Object System.MarshalByRefObject::_identity
RuntimeObject * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); }
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(RuntimeObject * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Math
struct Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19 : public RuntimeObject
{
public:
public:
};
struct Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields
{
public:
// System.Double System.Math::doubleRoundLimit
double ___doubleRoundLimit_0;
// System.Double[] System.Math::roundPower10Double
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___roundPower10Double_2;
public:
inline static int32_t get_offset_of_doubleRoundLimit_0() { return static_cast<int32_t>(offsetof(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields, ___doubleRoundLimit_0)); }
inline double get_doubleRoundLimit_0() const { return ___doubleRoundLimit_0; }
inline double* get_address_of_doubleRoundLimit_0() { return &___doubleRoundLimit_0; }
inline void set_doubleRoundLimit_0(double value)
{
___doubleRoundLimit_0 = value;
}
inline static int32_t get_offset_of_roundPower10Double_2() { return static_cast<int32_t>(offsetof(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields, ___roundPower10Double_2)); }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* get_roundPower10Double_2() const { return ___roundPower10Double_2; }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D** get_address_of_roundPower10Double_2() { return &___roundPower10Double_2; }
inline void set_roundPower10Double_2(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* value)
{
___roundPower10Double_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___roundPower10Double_2), (void*)value);
}
};
// System.MonoCustomAttrs
struct MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98 : public RuntimeObject
{
public:
public:
};
struct MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields
{
public:
// System.Reflection.Assembly System.MonoCustomAttrs::corlib
Assembly_t * ___corlib_0;
// System.AttributeUsageAttribute System.MonoCustomAttrs::DefaultAttributeUsage
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___DefaultAttributeUsage_2;
public:
inline static int32_t get_offset_of_corlib_0() { return static_cast<int32_t>(offsetof(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields, ___corlib_0)); }
inline Assembly_t * get_corlib_0() const { return ___corlib_0; }
inline Assembly_t ** get_address_of_corlib_0() { return &___corlib_0; }
inline void set_corlib_0(Assembly_t * value)
{
___corlib_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___corlib_0), (void*)value);
}
inline static int32_t get_offset_of_DefaultAttributeUsage_2() { return static_cast<int32_t>(offsetof(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields, ___DefaultAttributeUsage_2)); }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get_DefaultAttributeUsage_2() const { return ___DefaultAttributeUsage_2; }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of_DefaultAttributeUsage_2() { return &___DefaultAttributeUsage_2; }
inline void set_DefaultAttributeUsage_2(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value)
{
___DefaultAttributeUsage_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultAttributeUsage_2), (void*)value);
}
};
struct MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute> System.MonoCustomAttrs::usage_cache
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * ___usage_cache_1;
public:
inline static int32_t get_offset_of_usage_cache_1() { return static_cast<int32_t>(offsetof(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields, ___usage_cache_1)); }
inline Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * get_usage_cache_1() const { return ___usage_cache_1; }
inline Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 ** get_address_of_usage_cache_1() { return &___usage_cache_1; }
inline void set_usage_cache_1(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * value)
{
___usage_cache_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___usage_cache_1), (void*)value);
}
};
// System.MonoCustomAttrs_AttributeInfo
struct AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A : public RuntimeObject
{
public:
// System.AttributeUsageAttribute System.MonoCustomAttrs_AttributeInfo::_usage
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ____usage_0;
// System.Int32 System.MonoCustomAttrs_AttributeInfo::_inheritanceLevel
int32_t ____inheritanceLevel_1;
public:
inline static int32_t get_offset_of__usage_0() { return static_cast<int32_t>(offsetof(AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A, ____usage_0)); }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get__usage_0() const { return ____usage_0; }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of__usage_0() { return &____usage_0; }
inline void set__usage_0(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value)
{
____usage_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____usage_0), (void*)value);
}
inline static int32_t get_offset_of__inheritanceLevel_1() { return static_cast<int32_t>(offsetof(AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A, ____inheritanceLevel_1)); }
inline int32_t get__inheritanceLevel_1() const { return ____inheritanceLevel_1; }
inline int32_t* get_address_of__inheritanceLevel_1() { return &____inheritanceLevel_1; }
inline void set__inheritanceLevel_1(int32_t value)
{
____inheritanceLevel_1 = value;
}
};
// System.MonoListItem
struct MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 : public RuntimeObject
{
public:
// System.MonoListItem System.MonoListItem::next
MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 * ___next_0;
// System.Object System.MonoListItem::data
RuntimeObject * ___data_1;
public:
inline static int32_t get_offset_of_next_0() { return static_cast<int32_t>(offsetof(MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64, ___next_0)); }
inline MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 * get_next_0() const { return ___next_0; }
inline MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 ** get_address_of_next_0() { return &___next_0; }
inline void set_next_0(MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 * value)
{
___next_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_0), (void*)value);
}
inline static int32_t get_offset_of_data_1() { return static_cast<int32_t>(offsetof(MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64, ___data_1)); }
inline RuntimeObject * get_data_1() const { return ___data_1; }
inline RuntimeObject ** get_address_of_data_1() { return &___data_1; }
inline void set_data_1(RuntimeObject * value)
{
___data_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_1), (void*)value);
}
};
// System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D : public RuntimeObject
{
public:
// System.String System.MonoTypeInfo::full_name
String_t* ___full_name_0;
// System.Reflection.MonoCMethod System.MonoTypeInfo::default_ctor
MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * ___default_ctor_1;
public:
inline static int32_t get_offset_of_full_name_0() { return static_cast<int32_t>(offsetof(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D, ___full_name_0)); }
inline String_t* get_full_name_0() const { return ___full_name_0; }
inline String_t** get_address_of_full_name_0() { return &___full_name_0; }
inline void set_full_name_0(String_t* value)
{
___full_name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___full_name_0), (void*)value);
}
inline static int32_t get_offset_of_default_ctor_1() { return static_cast<int32_t>(offsetof(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D, ___default_ctor_1)); }
inline MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * get_default_ctor_1() const { return ___default_ctor_1; }
inline MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 ** get_address_of_default_ctor_1() { return &___default_ctor_1; }
inline void set_default_ctor_1(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * value)
{
___default_ctor_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_ctor_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke
{
char* ___full_name_0;
MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * ___default_ctor_1;
};
// Native definition for COM marshalling of System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com
{
Il2CppChar* ___full_name_0;
MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * ___default_ctor_1;
};
// System.Nullable
struct Nullable_t07CA5C3F88F56004BCB589DD7580798C66874C44 : public RuntimeObject
{
public:
public:
};
// System.Number
struct Number_t0578BBE654AC0F135B04497270FDDFA4CFF84C51 : public RuntimeObject
{
public:
public:
};
// System.NumberFormatter
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC : public RuntimeObject
{
public:
// System.Globalization.NumberFormatInfo System.NumberFormatter::_nfi
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ____nfi_6;
// System.Char[] System.NumberFormatter::_cbuf
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____cbuf_7;
// System.Boolean System.NumberFormatter::_NaN
bool ____NaN_8;
// System.Boolean System.NumberFormatter::_infinity
bool ____infinity_9;
// System.Boolean System.NumberFormatter::_isCustomFormat
bool ____isCustomFormat_10;
// System.Boolean System.NumberFormatter::_specifierIsUpper
bool ____specifierIsUpper_11;
// System.Boolean System.NumberFormatter::_positive
bool ____positive_12;
// System.Char System.NumberFormatter::_specifier
Il2CppChar ____specifier_13;
// System.Int32 System.NumberFormatter::_precision
int32_t ____precision_14;
// System.Int32 System.NumberFormatter::_defPrecision
int32_t ____defPrecision_15;
// System.Int32 System.NumberFormatter::_digitsLen
int32_t ____digitsLen_16;
// System.Int32 System.NumberFormatter::_offset
int32_t ____offset_17;
// System.Int32 System.NumberFormatter::_decPointPos
int32_t ____decPointPos_18;
// System.UInt32 System.NumberFormatter::_val1
uint32_t ____val1_19;
// System.UInt32 System.NumberFormatter::_val2
uint32_t ____val2_20;
// System.UInt32 System.NumberFormatter::_val3
uint32_t ____val3_21;
// System.UInt32 System.NumberFormatter::_val4
uint32_t ____val4_22;
// System.Int32 System.NumberFormatter::_ind
int32_t ____ind_23;
public:
inline static int32_t get_offset_of__nfi_6() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____nfi_6)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get__nfi_6() const { return ____nfi_6; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of__nfi_6() { return &____nfi_6; }
inline void set__nfi_6(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
____nfi_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nfi_6), (void*)value);
}
inline static int32_t get_offset_of__cbuf_7() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____cbuf_7)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__cbuf_7() const { return ____cbuf_7; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__cbuf_7() { return &____cbuf_7; }
inline void set__cbuf_7(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
____cbuf_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cbuf_7), (void*)value);
}
inline static int32_t get_offset_of__NaN_8() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____NaN_8)); }
inline bool get__NaN_8() const { return ____NaN_8; }
inline bool* get_address_of__NaN_8() { return &____NaN_8; }
inline void set__NaN_8(bool value)
{
____NaN_8 = value;
}
inline static int32_t get_offset_of__infinity_9() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____infinity_9)); }
inline bool get__infinity_9() const { return ____infinity_9; }
inline bool* get_address_of__infinity_9() { return &____infinity_9; }
inline void set__infinity_9(bool value)
{
____infinity_9 = value;
}
inline static int32_t get_offset_of__isCustomFormat_10() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____isCustomFormat_10)); }
inline bool get__isCustomFormat_10() const { return ____isCustomFormat_10; }
inline bool* get_address_of__isCustomFormat_10() { return &____isCustomFormat_10; }
inline void set__isCustomFormat_10(bool value)
{
____isCustomFormat_10 = value;
}
inline static int32_t get_offset_of__specifierIsUpper_11() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____specifierIsUpper_11)); }
inline bool get__specifierIsUpper_11() const { return ____specifierIsUpper_11; }
inline bool* get_address_of__specifierIsUpper_11() { return &____specifierIsUpper_11; }
inline void set__specifierIsUpper_11(bool value)
{
____specifierIsUpper_11 = value;
}
inline static int32_t get_offset_of__positive_12() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____positive_12)); }
inline bool get__positive_12() const { return ____positive_12; }
inline bool* get_address_of__positive_12() { return &____positive_12; }
inline void set__positive_12(bool value)
{
____positive_12 = value;
}
inline static int32_t get_offset_of__specifier_13() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____specifier_13)); }
inline Il2CppChar get__specifier_13() const { return ____specifier_13; }
inline Il2CppChar* get_address_of__specifier_13() { return &____specifier_13; }
inline void set__specifier_13(Il2CppChar value)
{
____specifier_13 = value;
}
inline static int32_t get_offset_of__precision_14() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____precision_14)); }
inline int32_t get__precision_14() const { return ____precision_14; }
inline int32_t* get_address_of__precision_14() { return &____precision_14; }
inline void set__precision_14(int32_t value)
{
____precision_14 = value;
}
inline static int32_t get_offset_of__defPrecision_15() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____defPrecision_15)); }
inline int32_t get__defPrecision_15() const { return ____defPrecision_15; }
inline int32_t* get_address_of__defPrecision_15() { return &____defPrecision_15; }
inline void set__defPrecision_15(int32_t value)
{
____defPrecision_15 = value;
}
inline static int32_t get_offset_of__digitsLen_16() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____digitsLen_16)); }
inline int32_t get__digitsLen_16() const { return ____digitsLen_16; }
inline int32_t* get_address_of__digitsLen_16() { return &____digitsLen_16; }
inline void set__digitsLen_16(int32_t value)
{
____digitsLen_16 = value;
}
inline static int32_t get_offset_of__offset_17() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____offset_17)); }
inline int32_t get__offset_17() const { return ____offset_17; }
inline int32_t* get_address_of__offset_17() { return &____offset_17; }
inline void set__offset_17(int32_t value)
{
____offset_17 = value;
}
inline static int32_t get_offset_of__decPointPos_18() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____decPointPos_18)); }
inline int32_t get__decPointPos_18() const { return ____decPointPos_18; }
inline int32_t* get_address_of__decPointPos_18() { return &____decPointPos_18; }
inline void set__decPointPos_18(int32_t value)
{
____decPointPos_18 = value;
}
inline static int32_t get_offset_of__val1_19() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val1_19)); }
inline uint32_t get__val1_19() const { return ____val1_19; }
inline uint32_t* get_address_of__val1_19() { return &____val1_19; }
inline void set__val1_19(uint32_t value)
{
____val1_19 = value;
}
inline static int32_t get_offset_of__val2_20() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val2_20)); }
inline uint32_t get__val2_20() const { return ____val2_20; }
inline uint32_t* get_address_of__val2_20() { return &____val2_20; }
inline void set__val2_20(uint32_t value)
{
____val2_20 = value;
}
inline static int32_t get_offset_of__val3_21() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val3_21)); }
inline uint32_t get__val3_21() const { return ____val3_21; }
inline uint32_t* get_address_of__val3_21() { return &____val3_21; }
inline void set__val3_21(uint32_t value)
{
____val3_21 = value;
}
inline static int32_t get_offset_of__val4_22() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val4_22)); }
inline uint32_t get__val4_22() const { return ____val4_22; }
inline uint32_t* get_address_of__val4_22() { return &____val4_22; }
inline void set__val4_22(uint32_t value)
{
____val4_22 = value;
}
inline static int32_t get_offset_of__ind_23() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____ind_23)); }
inline int32_t get__ind_23() const { return ____ind_23; }
inline int32_t* get_address_of__ind_23() { return &____ind_23; }
inline void set__ind_23(int32_t value)
{
____ind_23 = value;
}
};
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields
{
public:
// System.UInt64* System.NumberFormatter::MantissaBitsTable
uint64_t* ___MantissaBitsTable_0;
// System.Int32* System.NumberFormatter::TensExponentTable
int32_t* ___TensExponentTable_1;
// System.Char* System.NumberFormatter::DigitLowerTable
Il2CppChar* ___DigitLowerTable_2;
// System.Char* System.NumberFormatter::DigitUpperTable
Il2CppChar* ___DigitUpperTable_3;
// System.Int64* System.NumberFormatter::TenPowersList
int64_t* ___TenPowersList_4;
// System.Int32* System.NumberFormatter::DecHexDigits
int32_t* ___DecHexDigits_5;
public:
inline static int32_t get_offset_of_MantissaBitsTable_0() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___MantissaBitsTable_0)); }
inline uint64_t* get_MantissaBitsTable_0() const { return ___MantissaBitsTable_0; }
inline uint64_t** get_address_of_MantissaBitsTable_0() { return &___MantissaBitsTable_0; }
inline void set_MantissaBitsTable_0(uint64_t* value)
{
___MantissaBitsTable_0 = value;
}
inline static int32_t get_offset_of_TensExponentTable_1() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___TensExponentTable_1)); }
inline int32_t* get_TensExponentTable_1() const { return ___TensExponentTable_1; }
inline int32_t** get_address_of_TensExponentTable_1() { return &___TensExponentTable_1; }
inline void set_TensExponentTable_1(int32_t* value)
{
___TensExponentTable_1 = value;
}
inline static int32_t get_offset_of_DigitLowerTable_2() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___DigitLowerTable_2)); }
inline Il2CppChar* get_DigitLowerTable_2() const { return ___DigitLowerTable_2; }
inline Il2CppChar** get_address_of_DigitLowerTable_2() { return &___DigitLowerTable_2; }
inline void set_DigitLowerTable_2(Il2CppChar* value)
{
___DigitLowerTable_2 = value;
}
inline static int32_t get_offset_of_DigitUpperTable_3() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___DigitUpperTable_3)); }
inline Il2CppChar* get_DigitUpperTable_3() const { return ___DigitUpperTable_3; }
inline Il2CppChar** get_address_of_DigitUpperTable_3() { return &___DigitUpperTable_3; }
inline void set_DigitUpperTable_3(Il2CppChar* value)
{
___DigitUpperTable_3 = value;
}
inline static int32_t get_offset_of_TenPowersList_4() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___TenPowersList_4)); }
inline int64_t* get_TenPowersList_4() const { return ___TenPowersList_4; }
inline int64_t** get_address_of_TenPowersList_4() { return &___TenPowersList_4; }
inline void set_TenPowersList_4(int64_t* value)
{
___TenPowersList_4 = value;
}
inline static int32_t get_offset_of_DecHexDigits_5() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___DecHexDigits_5)); }
inline int32_t* get_DecHexDigits_5() const { return ___DecHexDigits_5; }
inline int32_t** get_address_of_DecHexDigits_5() { return &___DecHexDigits_5; }
inline void set_DecHexDigits_5(int32_t* value)
{
___DecHexDigits_5 = value;
}
};
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields
{
public:
// System.NumberFormatter System.NumberFormatter::threadNumberFormatter
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * ___threadNumberFormatter_24;
// System.NumberFormatter System.NumberFormatter::userFormatProvider
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * ___userFormatProvider_25;
public:
inline static int32_t get_offset_of_threadNumberFormatter_24() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields, ___threadNumberFormatter_24)); }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * get_threadNumberFormatter_24() const { return ___threadNumberFormatter_24; }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC ** get_address_of_threadNumberFormatter_24() { return &___threadNumberFormatter_24; }
inline void set_threadNumberFormatter_24(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * value)
{
___threadNumberFormatter_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___threadNumberFormatter_24), (void*)value);
}
inline static int32_t get_offset_of_userFormatProvider_25() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields, ___userFormatProvider_25)); }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * get_userFormatProvider_25() const { return ___userFormatProvider_25; }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC ** get_address_of_userFormatProvider_25() { return &___userFormatProvider_25; }
inline void set_userFormatProvider_25(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * value)
{
___userFormatProvider_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___userFormatProvider_25), (void*)value);
}
};
// System.NumberFormatter_CustomInfo
struct CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 : public RuntimeObject
{
public:
// System.Boolean System.NumberFormatter_CustomInfo::UseGroup
bool ___UseGroup_0;
// System.Int32 System.NumberFormatter_CustomInfo::DecimalDigits
int32_t ___DecimalDigits_1;
// System.Int32 System.NumberFormatter_CustomInfo::DecimalPointPos
int32_t ___DecimalPointPos_2;
// System.Int32 System.NumberFormatter_CustomInfo::DecimalTailSharpDigits
int32_t ___DecimalTailSharpDigits_3;
// System.Int32 System.NumberFormatter_CustomInfo::IntegerDigits
int32_t ___IntegerDigits_4;
// System.Int32 System.NumberFormatter_CustomInfo::IntegerHeadSharpDigits
int32_t ___IntegerHeadSharpDigits_5;
// System.Int32 System.NumberFormatter_CustomInfo::IntegerHeadPos
int32_t ___IntegerHeadPos_6;
// System.Boolean System.NumberFormatter_CustomInfo::UseExponent
bool ___UseExponent_7;
// System.Int32 System.NumberFormatter_CustomInfo::ExponentDigits
int32_t ___ExponentDigits_8;
// System.Int32 System.NumberFormatter_CustomInfo::ExponentTailSharpDigits
int32_t ___ExponentTailSharpDigits_9;
// System.Boolean System.NumberFormatter_CustomInfo::ExponentNegativeSignOnly
bool ___ExponentNegativeSignOnly_10;
// System.Int32 System.NumberFormatter_CustomInfo::DividePlaces
int32_t ___DividePlaces_11;
// System.Int32 System.NumberFormatter_CustomInfo::Percents
int32_t ___Percents_12;
// System.Int32 System.NumberFormatter_CustomInfo::Permilles
int32_t ___Permilles_13;
public:
inline static int32_t get_offset_of_UseGroup_0() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___UseGroup_0)); }
inline bool get_UseGroup_0() const { return ___UseGroup_0; }
inline bool* get_address_of_UseGroup_0() { return &___UseGroup_0; }
inline void set_UseGroup_0(bool value)
{
___UseGroup_0 = value;
}
inline static int32_t get_offset_of_DecimalDigits_1() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DecimalDigits_1)); }
inline int32_t get_DecimalDigits_1() const { return ___DecimalDigits_1; }
inline int32_t* get_address_of_DecimalDigits_1() { return &___DecimalDigits_1; }
inline void set_DecimalDigits_1(int32_t value)
{
___DecimalDigits_1 = value;
}
inline static int32_t get_offset_of_DecimalPointPos_2() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DecimalPointPos_2)); }
inline int32_t get_DecimalPointPos_2() const { return ___DecimalPointPos_2; }
inline int32_t* get_address_of_DecimalPointPos_2() { return &___DecimalPointPos_2; }
inline void set_DecimalPointPos_2(int32_t value)
{
___DecimalPointPos_2 = value;
}
inline static int32_t get_offset_of_DecimalTailSharpDigits_3() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DecimalTailSharpDigits_3)); }
inline int32_t get_DecimalTailSharpDigits_3() const { return ___DecimalTailSharpDigits_3; }
inline int32_t* get_address_of_DecimalTailSharpDigits_3() { return &___DecimalTailSharpDigits_3; }
inline void set_DecimalTailSharpDigits_3(int32_t value)
{
___DecimalTailSharpDigits_3 = value;
}
inline static int32_t get_offset_of_IntegerDigits_4() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___IntegerDigits_4)); }
inline int32_t get_IntegerDigits_4() const { return ___IntegerDigits_4; }
inline int32_t* get_address_of_IntegerDigits_4() { return &___IntegerDigits_4; }
inline void set_IntegerDigits_4(int32_t value)
{
___IntegerDigits_4 = value;
}
inline static int32_t get_offset_of_IntegerHeadSharpDigits_5() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___IntegerHeadSharpDigits_5)); }
inline int32_t get_IntegerHeadSharpDigits_5() const { return ___IntegerHeadSharpDigits_5; }
inline int32_t* get_address_of_IntegerHeadSharpDigits_5() { return &___IntegerHeadSharpDigits_5; }
inline void set_IntegerHeadSharpDigits_5(int32_t value)
{
___IntegerHeadSharpDigits_5 = value;
}
inline static int32_t get_offset_of_IntegerHeadPos_6() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___IntegerHeadPos_6)); }
inline int32_t get_IntegerHeadPos_6() const { return ___IntegerHeadPos_6; }
inline int32_t* get_address_of_IntegerHeadPos_6() { return &___IntegerHeadPos_6; }
inline void set_IntegerHeadPos_6(int32_t value)
{
___IntegerHeadPos_6 = value;
}
inline static int32_t get_offset_of_UseExponent_7() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___UseExponent_7)); }
inline bool get_UseExponent_7() const { return ___UseExponent_7; }
inline bool* get_address_of_UseExponent_7() { return &___UseExponent_7; }
inline void set_UseExponent_7(bool value)
{
___UseExponent_7 = value;
}
inline static int32_t get_offset_of_ExponentDigits_8() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___ExponentDigits_8)); }
inline int32_t get_ExponentDigits_8() const { return ___ExponentDigits_8; }
inline int32_t* get_address_of_ExponentDigits_8() { return &___ExponentDigits_8; }
inline void set_ExponentDigits_8(int32_t value)
{
___ExponentDigits_8 = value;
}
inline static int32_t get_offset_of_ExponentTailSharpDigits_9() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___ExponentTailSharpDigits_9)); }
inline int32_t get_ExponentTailSharpDigits_9() const { return ___ExponentTailSharpDigits_9; }
inline int32_t* get_address_of_ExponentTailSharpDigits_9() { return &___ExponentTailSharpDigits_9; }
inline void set_ExponentTailSharpDigits_9(int32_t value)
{
___ExponentTailSharpDigits_9 = value;
}
inline static int32_t get_offset_of_ExponentNegativeSignOnly_10() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___ExponentNegativeSignOnly_10)); }
inline bool get_ExponentNegativeSignOnly_10() const { return ___ExponentNegativeSignOnly_10; }
inline bool* get_address_of_ExponentNegativeSignOnly_10() { return &___ExponentNegativeSignOnly_10; }
inline void set_ExponentNegativeSignOnly_10(bool value)
{
___ExponentNegativeSignOnly_10 = value;
}
inline static int32_t get_offset_of_DividePlaces_11() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DividePlaces_11)); }
inline int32_t get_DividePlaces_11() const { return ___DividePlaces_11; }
inline int32_t* get_address_of_DividePlaces_11() { return &___DividePlaces_11; }
inline void set_DividePlaces_11(int32_t value)
{
___DividePlaces_11 = value;
}
inline static int32_t get_offset_of_Percents_12() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___Percents_12)); }
inline int32_t get_Percents_12() const { return ___Percents_12; }
inline int32_t* get_address_of_Percents_12() { return &___Percents_12; }
inline void set_Percents_12(int32_t value)
{
___Percents_12 = value;
}
inline static int32_t get_offset_of_Permilles_13() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___Permilles_13)); }
inline int32_t get_Permilles_13() const { return ___Permilles_13; }
inline int32_t* get_address_of_Permilles_13() { return &___Permilles_13; }
inline void set_Permilles_13(int32_t value)
{
___Permilles_13 = value;
}
};
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 : public RuntimeObject
{
public:
// System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::ctorInfo
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___ctorInfo_0;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> System.Reflection.CustomAttributeData::ctorArgs
RuntimeObject* ___ctorArgs_1;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> System.Reflection.CustomAttributeData::namedArgs
RuntimeObject* ___namedArgs_2;
// System.Reflection.CustomAttributeData_LazyCAttrData System.Reflection.CustomAttributeData::lazyData
LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * ___lazyData_3;
public:
inline static int32_t get_offset_of_ctorInfo_0() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorInfo_0)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get_ctorInfo_0() const { return ___ctorInfo_0; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of_ctorInfo_0() { return &___ctorInfo_0; }
inline void set_ctorInfo_0(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
___ctorInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ctorInfo_0), (void*)value);
}
inline static int32_t get_offset_of_ctorArgs_1() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorArgs_1)); }
inline RuntimeObject* get_ctorArgs_1() const { return ___ctorArgs_1; }
inline RuntimeObject** get_address_of_ctorArgs_1() { return &___ctorArgs_1; }
inline void set_ctorArgs_1(RuntimeObject* value)
{
___ctorArgs_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ctorArgs_1), (void*)value);
}
inline static int32_t get_offset_of_namedArgs_2() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___namedArgs_2)); }
inline RuntimeObject* get_namedArgs_2() const { return ___namedArgs_2; }
inline RuntimeObject** get_address_of_namedArgs_2() { return &___namedArgs_2; }
inline void set_namedArgs_2(RuntimeObject* value)
{
___namedArgs_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namedArgs_2), (void*)value);
}
inline static int32_t get_offset_of_lazyData_3() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___lazyData_3)); }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * get_lazyData_3() const { return ___lazyData_3; }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 ** get_address_of_lazyData_3() { return &___lazyData_3; }
inline void set_lazyData_3(LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * value)
{
___lazyData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lazyData_3), (void*)value);
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 : public RuntimeObject
{
public:
public:
};
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A : 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_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___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((void**)(&___m_Exception_0), (void*)value);
}
inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___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((void**)(&___m_stackTrace_1), (void*)value);
}
};
// System.Runtime.Remoting.Identity
struct Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Identity::_objectUri
String_t* ____objectUri_0;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_channelSink
RuntimeObject* ____channelSink_1;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_envoySink
RuntimeObject* ____envoySink_2;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_clientDynamicProperties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ____clientDynamicProperties_3;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_serverDynamicProperties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ____serverDynamicProperties_4;
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::_objRef
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ____objRef_5;
// System.Boolean System.Runtime.Remoting.Identity::_disposed
bool ____disposed_6;
public:
inline static int32_t get_offset_of__objectUri_0() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____objectUri_0)); }
inline String_t* get__objectUri_0() const { return ____objectUri_0; }
inline String_t** get_address_of__objectUri_0() { return &____objectUri_0; }
inline void set__objectUri_0(String_t* value)
{
____objectUri_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectUri_0), (void*)value);
}
inline static int32_t get_offset_of__channelSink_1() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____channelSink_1)); }
inline RuntimeObject* get__channelSink_1() const { return ____channelSink_1; }
inline RuntimeObject** get_address_of__channelSink_1() { return &____channelSink_1; }
inline void set__channelSink_1(RuntimeObject* value)
{
____channelSink_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channelSink_1), (void*)value);
}
inline static int32_t get_offset_of__envoySink_2() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____envoySink_2)); }
inline RuntimeObject* get__envoySink_2() const { return ____envoySink_2; }
inline RuntimeObject** get_address_of__envoySink_2() { return &____envoySink_2; }
inline void set__envoySink_2(RuntimeObject* value)
{
____envoySink_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____envoySink_2), (void*)value);
}
inline static int32_t get_offset_of__clientDynamicProperties_3() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____clientDynamicProperties_3)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get__clientDynamicProperties_3() const { return ____clientDynamicProperties_3; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of__clientDynamicProperties_3() { return &____clientDynamicProperties_3; }
inline void set__clientDynamicProperties_3(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
____clientDynamicProperties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clientDynamicProperties_3), (void*)value);
}
inline static int32_t get_offset_of__serverDynamicProperties_4() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____serverDynamicProperties_4)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get__serverDynamicProperties_4() const { return ____serverDynamicProperties_4; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of__serverDynamicProperties_4() { return &____serverDynamicProperties_4; }
inline void set__serverDynamicProperties_4(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
____serverDynamicProperties_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverDynamicProperties_4), (void*)value);
}
inline static int32_t get_offset_of__objRef_5() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____objRef_5)); }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * get__objRef_5() const { return ____objRef_5; }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 ** get_address_of__objRef_5() { return &____objRef_5; }
inline void set__objRef_5(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * value)
{
____objRef_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objRef_5), (void*)value);
}
inline static int32_t get_offset_of__disposed_6() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____disposed_6)); }
inline bool get__disposed_6() const { return ____disposed_6; }
inline bool* get_address_of__disposed_6() { return &____disposed_6; }
inline void set__disposed_6(bool value)
{
____disposed_6 = value;
}
};
// System.Runtime.Remoting.ObjRef
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 : public RuntimeObject
{
public:
// System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::channel_info
RuntimeObject* ___channel_info_0;
// System.String System.Runtime.Remoting.ObjRef::uri
String_t* ___uri_1;
// System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::typeInfo
RuntimeObject* ___typeInfo_2;
// System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::envoyInfo
RuntimeObject* ___envoyInfo_3;
// System.Int32 System.Runtime.Remoting.ObjRef::flags
int32_t ___flags_4;
// System.Type System.Runtime.Remoting.ObjRef::_serverType
Type_t * ____serverType_5;
public:
inline static int32_t get_offset_of_channel_info_0() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___channel_info_0)); }
inline RuntimeObject* get_channel_info_0() const { return ___channel_info_0; }
inline RuntimeObject** get_address_of_channel_info_0() { return &___channel_info_0; }
inline void set_channel_info_0(RuntimeObject* value)
{
___channel_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channel_info_0), (void*)value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___uri_1)); }
inline String_t* get_uri_1() const { return ___uri_1; }
inline String_t** get_address_of_uri_1() { return &___uri_1; }
inline void set_uri_1(String_t* value)
{
___uri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_1), (void*)value);
}
inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___typeInfo_2)); }
inline RuntimeObject* get_typeInfo_2() const { return ___typeInfo_2; }
inline RuntimeObject** get_address_of_typeInfo_2() { return &___typeInfo_2; }
inline void set_typeInfo_2(RuntimeObject* value)
{
___typeInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_2), (void*)value);
}
inline static int32_t get_offset_of_envoyInfo_3() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___envoyInfo_3)); }
inline RuntimeObject* get_envoyInfo_3() const { return ___envoyInfo_3; }
inline RuntimeObject** get_address_of_envoyInfo_3() { return &___envoyInfo_3; }
inline void set_envoyInfo_3(RuntimeObject* value)
{
___envoyInfo_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___envoyInfo_3), (void*)value);
}
inline static int32_t get_offset_of_flags_4() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___flags_4)); }
inline int32_t get_flags_4() const { return ___flags_4; }
inline int32_t* get_address_of_flags_4() { return &___flags_4; }
inline void set_flags_4(int32_t value)
{
___flags_4 = value;
}
inline static int32_t get_offset_of__serverType_5() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ____serverType_5)); }
inline Type_t * get__serverType_5() const { return ____serverType_5; }
inline Type_t ** get_address_of__serverType_5() { return &____serverType_5; }
inline void set__serverType_5(Type_t * value)
{
____serverType_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverType_5), (void*)value);
}
};
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields
{
public:
// System.Int32 System.Runtime.Remoting.ObjRef::MarshalledObjectRef
int32_t ___MarshalledObjectRef_6;
// System.Int32 System.Runtime.Remoting.ObjRef::WellKnowObjectRef
int32_t ___WellKnowObjectRef_7;
public:
inline static int32_t get_offset_of_MarshalledObjectRef_6() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___MarshalledObjectRef_6)); }
inline int32_t get_MarshalledObjectRef_6() const { return ___MarshalledObjectRef_6; }
inline int32_t* get_address_of_MarshalledObjectRef_6() { return &___MarshalledObjectRef_6; }
inline void set_MarshalledObjectRef_6(int32_t value)
{
___MarshalledObjectRef_6 = value;
}
inline static int32_t get_offset_of_WellKnowObjectRef_7() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___WellKnowObjectRef_7)); }
inline int32_t get_WellKnowObjectRef_7() const { return ___WellKnowObjectRef_7; }
inline int32_t* get_address_of_WellKnowObjectRef_7() { return &___WellKnowObjectRef_7; }
inline void set_WellKnowObjectRef_7(int32_t value)
{
___WellKnowObjectRef_7 = value;
}
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_3;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_4;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_6;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_7;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_8;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_9;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_10;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t * ___objectType_11;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_12;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_13;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_14;
public:
inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_3)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_3() const { return ___m_members_3; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_3() { return &___m_members_3; }
inline void set_m_members_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___m_members_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value);
}
inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_4)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_4() const { return ___m_data_4; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_4() { return &___m_data_4; }
inline void set_m_data_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_data_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value);
}
inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_5() const { return ___m_types_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_5() { return &___m_types_5; }
inline void set_m_types_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___m_types_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value);
}
inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_6)); }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; }
inline void set_m_nameToIndex_6(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
{
___m_nameToIndex_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value);
}
inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_7)); }
inline int32_t get_m_currMember_7() const { return ___m_currMember_7; }
inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; }
inline void set_m_currMember_7(int32_t value)
{
___m_currMember_7 = value;
}
inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_8)); }
inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; }
inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; }
inline void set_m_converter_8(RuntimeObject* value)
{
___m_converter_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value);
}
inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_9)); }
inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; }
inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; }
inline void set_m_fullTypeName_9(String_t* value)
{
___m_fullTypeName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value);
}
inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_10)); }
inline String_t* get_m_assemName_10() const { return ___m_assemName_10; }
inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; }
inline void set_m_assemName_10(String_t* value)
{
___m_assemName_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value);
}
inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_11)); }
inline Type_t * get_objectType_11() const { return ___objectType_11; }
inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; }
inline void set_objectType_11(Type_t * value)
{
___objectType_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value);
}
inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_12)); }
inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; }
inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; }
inline void set_isFullTypeNameSetExplicit_12(bool value)
{
___isFullTypeNameSetExplicit_12 = value;
}
inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_13)); }
inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; }
inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; }
inline void set_isAssemblyNameSetExplicit_13(bool value)
{
___isAssemblyNameSetExplicit_13 = value;
}
inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_14)); }
inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; }
inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; }
inline void set_requireSameTokenInPartialTrust_14(bool value)
{
___requireSameTokenInPartialTrust_14 = value;
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.Text.Decoder
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 : public RuntimeObject
{
public:
// System.Text.DecoderFallback System.Text.Decoder::m_fallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___m_fallback_0;
// System.Text.DecoderFallbackBuffer System.Text.Decoder::m_fallbackBuffer
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * ___m_fallbackBuffer_1;
public:
inline static int32_t get_offset_of_m_fallback_0() { return static_cast<int32_t>(offsetof(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26, ___m_fallback_0)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_m_fallback_0() const { return ___m_fallback_0; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_m_fallback_0() { return &___m_fallback_0; }
inline void set_m_fallback_0(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___m_fallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_fallbackBuffer_1() { return static_cast<int32_t>(offsetof(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26, ___m_fallbackBuffer_1)); }
inline DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; }
inline DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; }
inline void set_m_fallbackBuffer_1(DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * value)
{
___m_fallbackBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value);
}
};
// System.Text.Encoder
struct Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 : public RuntimeObject
{
public:
// System.Text.EncoderFallback System.Text.Encoder::m_fallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___m_fallback_0;
// System.Text.EncoderFallbackBuffer System.Text.Encoder::m_fallbackBuffer
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * ___m_fallbackBuffer_1;
public:
inline static int32_t get_offset_of_m_fallback_0() { return static_cast<int32_t>(offsetof(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464, ___m_fallback_0)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_m_fallback_0() const { return ___m_fallback_0; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_m_fallback_0() { return &___m_fallback_0; }
inline void set_m_fallback_0(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___m_fallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_fallbackBuffer_1() { return static_cast<int32_t>(offsetof(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464, ___m_fallbackBuffer_1)); }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; }
inline void set_m_fallbackBuffer_1(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * value)
{
___m_fallbackBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value);
}
};
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject
{
public:
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14;
public:
inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); }
inline int32_t get_m_codePage_9() const { return ___m_codePage_9; }
inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; }
inline void set_m_codePage_9(int32_t value)
{
___m_codePage_9 = value;
}
inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; }
inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value)
{
___dataItem_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value);
}
inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); }
inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; }
inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; }
inline void set_m_deserializedFromEverett_11(bool value)
{
___m_deserializedFromEverett_11 = value;
}
inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); }
inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; }
inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; }
inline void set_m_isReadOnly_12(bool value)
{
___m_isReadOnly_12 = value;
}
inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___encoderFallback_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value);
}
inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___decoderFallback_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value);
}
};
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields
{
public:
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8;
// System.Object System.Text.Encoding::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_15;
public:
inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___defaultEncoding_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value);
}
inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___unicodeEncoding_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value);
}
inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___bigEndianUnicode_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value);
}
inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf7Encoding_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value);
}
inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf8Encoding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value);
}
inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf32Encoding_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value);
}
inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___asciiEncoding_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value);
}
inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___latin1Encoding_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value);
}
inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; }
inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___encodings_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); }
inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; }
inline void set_s_InternalSyncObject_15(RuntimeObject * value)
{
___s_InternalSyncObject_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value);
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
// System.Tuple`2<System.IO.Stream,System.IO.Stream_ReadWriteTask>
struct Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67, ___m_Item1_0)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_m_Item1_0() const { return ___m_Item1_0; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67, ___m_Item2_1)); }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get_m_Item2_1() const { return ___m_Item2_1; }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
};
// System.Tuple`2<System.IO.TextWriter,System.Char>
struct Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
Il2CppChar ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8, ___m_Item1_0)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8, ___m_Item2_1)); }
inline Il2CppChar get_m_Item2_1() const { return ___m_Item2_1; }
inline Il2CppChar* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(Il2CppChar value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.IO.TextWriter,System.String>
struct Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
String_t* ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962, ___m_Item1_0)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962, ___m_Item2_1)); }
inline String_t* get_m_Item2_1() const { return ___m_Item2_1; }
inline String_t** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(String_t* value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
};
// System.Tuple`2<System.Object,System.Char>
struct Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
Il2CppChar ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000, ___m_Item2_1)); }
inline Il2CppChar get_m_Item2_1() const { return ___m_Item2_1; }
inline Il2CppChar* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(Il2CppChar value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5, ___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((void**)(&___m_Item2_1), (void*)value);
}
};
// System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___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_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___m_Item1_0)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___m_Item2_1)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_Item2_1() const { return ___m_Item2_1; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___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;
}
};
// System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___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_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___m_Item1_0)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___m_Item2_1)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_Item2_1() const { return ___m_Item2_1; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___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;
}
};
// System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>
struct Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___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_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1, ___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((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1, ___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;
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10
struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018
struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080
struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614
struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12
struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120
struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208
struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128
struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130
struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450
struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16
struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162
struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665
struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174
struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100
struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212
struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252
struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350
struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382
struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24
struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240
struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256
struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262
struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288
struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3
struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32
struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320
struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36
struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360
struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38
struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40
struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42
struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44
struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52
struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6
struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64
struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72
struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76
struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84
struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94
struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998
struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998];
};
public:
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
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_tB53F6830F670160873277339AA58F15CAED4399C, ___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_tB53F6830F670160873277339AA58F15CAED4399C_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_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
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_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___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_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Double
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
public:
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
{
____activeReadWriteTask_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value);
}
inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
{
____asyncActiveSemaphore_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value);
}
};
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
};
// System.IO.StringResultHandler
struct StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 : public SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C
{
public:
// System.Boolean System.IO.StringResultHandler::_includeFiles
bool ____includeFiles_0;
// System.Boolean System.IO.StringResultHandler::_includeDirs
bool ____includeDirs_1;
public:
inline static int32_t get_offset_of__includeFiles_0() { return static_cast<int32_t>(offsetof(StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6, ____includeFiles_0)); }
inline bool get__includeFiles_0() const { return ____includeFiles_0; }
inline bool* get_address_of__includeFiles_0() { return &____includeFiles_0; }
inline void set__includeFiles_0(bool value)
{
____includeFiles_0 = value;
}
inline static int32_t get_offset_of__includeDirs_1() { return static_cast<int32_t>(offsetof(StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6, ____includeDirs_1)); }
inline bool get__includeDirs_1() const { return ____includeDirs_1; }
inline bool* get_address_of__includeDirs_1() { return &____includeDirs_1; }
inline void set__includeDirs_1(bool value)
{
____includeDirs_1 = value;
}
};
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
public:
};
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields
{
public:
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1;
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2;
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3;
public:
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value)
{
____ReadLineDelegate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value);
}
inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value)
{
____ReadDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
}
};
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___CoreNewLine_9;
// System.IFormatProvider System.IO.TextWriter::InternalFormatProvider
RuntimeObject* ___InternalFormatProvider_10;
public:
inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___CoreNewLine_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_CoreNewLine_9() const { return ___CoreNewLine_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; }
inline void set_CoreNewLine_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___CoreNewLine_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CoreNewLine_9), (void*)value);
}
inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___InternalFormatProvider_10)); }
inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; }
inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; }
inline void set_InternalFormatProvider_10(RuntimeObject* value)
{
___InternalFormatProvider_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalFormatProvider_10), (void*)value);
}
};
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___Null_1;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharDelegate_2;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteStringDelegate_3;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharArrayRangeDelegate_4;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharDelegate_5;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineStringDelegate_6;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharArrayRangeDelegate_7;
// System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____FlushDelegate_8;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ___Null_1)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharDelegate_2)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; }
inline void set__WriteCharDelegate_2(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteCharDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharDelegate_2), (void*)value);
}
inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteStringDelegate_3)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; }
inline void set__WriteStringDelegate_3(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteStringDelegate_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteStringDelegate_3), (void*)value);
}
inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharArrayRangeDelegate_4)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; }
inline void set__WriteCharArrayRangeDelegate_4(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteCharArrayRangeDelegate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharArrayRangeDelegate_4), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharDelegate_5)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; }
inline void set__WriteLineCharDelegate_5(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineCharDelegate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharDelegate_5), (void*)value);
}
inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineStringDelegate_6)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; }
inline void set__WriteLineStringDelegate_6(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineStringDelegate_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineStringDelegate_6), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; }
inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineCharArrayRangeDelegate_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharArrayRangeDelegate_7), (void*)value);
}
inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____FlushDelegate_8)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__FlushDelegate_8() const { return ____FlushDelegate_8; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; }
inline void set__FlushDelegate_8(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____FlushDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)value);
}
};
// System.InputRecord
struct InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78
{
public:
// System.Int16 System.InputRecord::EventType
int16_t ___EventType_0;
// System.Boolean System.InputRecord::KeyDown
bool ___KeyDown_1;
// System.Int16 System.InputRecord::RepeatCount
int16_t ___RepeatCount_2;
// System.Int16 System.InputRecord::VirtualKeyCode
int16_t ___VirtualKeyCode_3;
// System.Int16 System.InputRecord::VirtualScanCode
int16_t ___VirtualScanCode_4;
// System.Char System.InputRecord::Character
Il2CppChar ___Character_5;
// System.Int32 System.InputRecord::ControlKeyState
int32_t ___ControlKeyState_6;
// System.Int32 System.InputRecord::pad1
int32_t ___pad1_7;
// System.Boolean System.InputRecord::pad2
bool ___pad2_8;
public:
inline static int32_t get_offset_of_EventType_0() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___EventType_0)); }
inline int16_t get_EventType_0() const { return ___EventType_0; }
inline int16_t* get_address_of_EventType_0() { return &___EventType_0; }
inline void set_EventType_0(int16_t value)
{
___EventType_0 = value;
}
inline static int32_t get_offset_of_KeyDown_1() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___KeyDown_1)); }
inline bool get_KeyDown_1() const { return ___KeyDown_1; }
inline bool* get_address_of_KeyDown_1() { return &___KeyDown_1; }
inline void set_KeyDown_1(bool value)
{
___KeyDown_1 = value;
}
inline static int32_t get_offset_of_RepeatCount_2() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___RepeatCount_2)); }
inline int16_t get_RepeatCount_2() const { return ___RepeatCount_2; }
inline int16_t* get_address_of_RepeatCount_2() { return &___RepeatCount_2; }
inline void set_RepeatCount_2(int16_t value)
{
___RepeatCount_2 = value;
}
inline static int32_t get_offset_of_VirtualKeyCode_3() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___VirtualKeyCode_3)); }
inline int16_t get_VirtualKeyCode_3() const { return ___VirtualKeyCode_3; }
inline int16_t* get_address_of_VirtualKeyCode_3() { return &___VirtualKeyCode_3; }
inline void set_VirtualKeyCode_3(int16_t value)
{
___VirtualKeyCode_3 = value;
}
inline static int32_t get_offset_of_VirtualScanCode_4() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___VirtualScanCode_4)); }
inline int16_t get_VirtualScanCode_4() const { return ___VirtualScanCode_4; }
inline int16_t* get_address_of_VirtualScanCode_4() { return &___VirtualScanCode_4; }
inline void set_VirtualScanCode_4(int16_t value)
{
___VirtualScanCode_4 = value;
}
inline static int32_t get_offset_of_Character_5() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___Character_5)); }
inline Il2CppChar get_Character_5() const { return ___Character_5; }
inline Il2CppChar* get_address_of_Character_5() { return &___Character_5; }
inline void set_Character_5(Il2CppChar value)
{
___Character_5 = value;
}
inline static int32_t get_offset_of_ControlKeyState_6() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___ControlKeyState_6)); }
inline int32_t get_ControlKeyState_6() const { return ___ControlKeyState_6; }
inline int32_t* get_address_of_ControlKeyState_6() { return &___ControlKeyState_6; }
inline void set_ControlKeyState_6(int32_t value)
{
___ControlKeyState_6 = value;
}
inline static int32_t get_offset_of_pad1_7() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___pad1_7)); }
inline int32_t get_pad1_7() const { return ___pad1_7; }
inline int32_t* get_address_of_pad1_7() { return &___pad1_7; }
inline void set_pad1_7(int32_t value)
{
___pad1_7 = value;
}
inline static int32_t get_offset_of_pad2_8() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___pad2_8)); }
inline bool get_pad2_8() const { return ___pad2_8; }
inline bool* get_address_of_pad2_8() { return &___pad2_8; }
inline void set_pad2_8(bool value)
{
___pad2_8 = value;
}
};
// Native definition for P/Invoke marshalling of System.InputRecord
struct InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke
{
int16_t ___EventType_0;
int32_t ___KeyDown_1;
int16_t ___RepeatCount_2;
int16_t ___VirtualKeyCode_3;
int16_t ___VirtualScanCode_4;
uint8_t ___Character_5;
int32_t ___ControlKeyState_6;
int32_t ___pad1_7;
int32_t ___pad2_8;
};
// Native definition for COM marshalling of System.InputRecord
struct InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com
{
int16_t ___EventType_0;
int32_t ___KeyDown_1;
int16_t ___RepeatCount_2;
int16_t ___VirtualKeyCode_3;
int16_t ___VirtualScanCode_4;
uint8_t ___Character_5;
int32_t ___ControlKeyState_6;
int32_t ___pad1_7;
int32_t ___pad2_8;
};
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
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_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.MonoTODOAttribute
struct MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.MonoTODOAttribute::comment
String_t* ___comment_0;
public:
inline static int32_t get_offset_of_comment_0() { return static_cast<int32_t>(offsetof(MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666, ___comment_0)); }
inline String_t* get_comment_0() const { return ___comment_0; }
inline String_t** get_address_of_comment_0() { return &___comment_0; }
inline void set_comment_0(String_t* value)
{
___comment_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comment_0), (void*)value);
}
};
// System.NonSerializedAttribute
struct NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// System.Number_NumberBuffer
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075
{
public:
// System.Byte* System.Number_NumberBuffer::baseAddress
uint8_t* ___baseAddress_1;
// System.Char* System.Number_NumberBuffer::digits
Il2CppChar* ___digits_2;
// System.Int32 System.Number_NumberBuffer::precision
int32_t ___precision_3;
// System.Int32 System.Number_NumberBuffer::scale
int32_t ___scale_4;
// System.Boolean System.Number_NumberBuffer::sign
bool ___sign_5;
public:
inline static int32_t get_offset_of_baseAddress_1() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___baseAddress_1)); }
inline uint8_t* get_baseAddress_1() const { return ___baseAddress_1; }
inline uint8_t** get_address_of_baseAddress_1() { return &___baseAddress_1; }
inline void set_baseAddress_1(uint8_t* value)
{
___baseAddress_1 = value;
}
inline static int32_t get_offset_of_digits_2() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___digits_2)); }
inline Il2CppChar* get_digits_2() const { return ___digits_2; }
inline Il2CppChar** get_address_of_digits_2() { return &___digits_2; }
inline void set_digits_2(Il2CppChar* value)
{
___digits_2 = value;
}
inline static int32_t get_offset_of_precision_3() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___precision_3)); }
inline int32_t get_precision_3() const { return ___precision_3; }
inline int32_t* get_address_of_precision_3() { return &___precision_3; }
inline void set_precision_3(int32_t value)
{
___precision_3 = value;
}
inline static int32_t get_offset_of_scale_4() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___scale_4)); }
inline int32_t get_scale_4() const { return ___scale_4; }
inline int32_t* get_address_of_scale_4() { return &___scale_4; }
inline void set_scale_4(int32_t value)
{
___scale_4 = value;
}
inline static int32_t get_offset_of_sign_5() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___sign_5)); }
inline bool get_sign_5() const { return ___sign_5; }
inline bool* get_address_of_sign_5() { return &___sign_5; }
inline void set_sign_5(bool value)
{
___sign_5 = value;
}
};
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields
{
public:
// System.Int32 System.Number_NumberBuffer::NumberBufferBytes
int32_t ___NumberBufferBytes_0;
public:
inline static int32_t get_offset_of_NumberBufferBytes_0() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields, ___NumberBufferBytes_0)); }
inline int32_t get_NumberBufferBytes_0() const { return ___NumberBufferBytes_0; }
inline int32_t* get_address_of_NumberBufferBytes_0() { return &___NumberBufferBytes_0; }
inline void set_NumberBufferBytes_0(int32_t value)
{
___NumberBufferBytes_0 = value;
}
};
// Native definition for P/Invoke marshalling of System.Number/NumberBuffer
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke
{
uint8_t* ___baseAddress_1;
Il2CppChar* ___digits_2;
int32_t ___precision_3;
int32_t ___scale_4;
int32_t ___sign_5;
};
// Native definition for COM marshalling of System.Number/NumberBuffer
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com
{
uint8_t* ___baseAddress_1;
Il2CppChar* ___digits_2;
int32_t ___precision_3;
int32_t ___scale_4;
int32_t ___sign_5;
};
// System.Reflection.EventInfo
struct EventInfo_t : public MemberInfo_t
{
public:
// System.Reflection.EventInfo_AddEventAdapter System.Reflection.EventInfo::cached_add_event
AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * ___cached_add_event_0;
public:
inline static int32_t get_offset_of_cached_add_event_0() { return static_cast<int32_t>(offsetof(EventInfo_t, ___cached_add_event_0)); }
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * get_cached_add_event_0() const { return ___cached_add_event_0; }
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; }
inline void set_cached_add_event_0(AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * value)
{
___cached_add_event_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_add_event_0), (void*)value);
}
};
// System.Reflection.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
public:
public:
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
public:
public:
};
// System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>
struct TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___m_task_0;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24, ___m_task_0)); }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value);
}
};
// System.Runtime.InteropServices.ComImportAttribute
struct ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 : public Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6
{
public:
// System.Type System.Runtime.Remoting.ServerIdentity::_objectType
Type_t * ____objectType_7;
// System.MarshalByRefObject System.Runtime.Remoting.ServerIdentity::_serverObject
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ____serverObject_8;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.ServerIdentity::_serverSink
RuntimeObject* ____serverSink_9;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.ServerIdentity::_context
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ____context_10;
// System.Runtime.Remoting.Lifetime.Lease System.Runtime.Remoting.ServerIdentity::_lease
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * ____lease_11;
public:
inline static int32_t get_offset_of__objectType_7() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____objectType_7)); }
inline Type_t * get__objectType_7() const { return ____objectType_7; }
inline Type_t ** get_address_of__objectType_7() { return &____objectType_7; }
inline void set__objectType_7(Type_t * value)
{
____objectType_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectType_7), (void*)value);
}
inline static int32_t get_offset_of__serverObject_8() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____serverObject_8)); }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * get__serverObject_8() const { return ____serverObject_8; }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF ** get_address_of__serverObject_8() { return &____serverObject_8; }
inline void set__serverObject_8(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * value)
{
____serverObject_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverObject_8), (void*)value);
}
inline static int32_t get_offset_of__serverSink_9() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____serverSink_9)); }
inline RuntimeObject* get__serverSink_9() const { return ____serverSink_9; }
inline RuntimeObject** get_address_of__serverSink_9() { return &____serverSink_9; }
inline void set__serverSink_9(RuntimeObject* value)
{
____serverSink_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverSink_9), (void*)value);
}
inline static int32_t get_offset_of__context_10() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____context_10)); }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 * get__context_10() const { return ____context_10; }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 ** get_address_of__context_10() { return &____context_10; }
inline void set__context_10(Context_tE86AB6B3D9759C8E715184808579EFE761683724 * value)
{
____context_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_10), (void*)value);
}
inline static int32_t get_offset_of__lease_11() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____lease_11)); }
inline Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * get__lease_11() const { return ____lease_11; }
inline Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 ** get_address_of__lease_11() { return &____lease_11; }
inline void set__lease_11(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * value)
{
____lease_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lease_11), (void*)value);
}
};
// System.SByte
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
// System.SerializableAttribute
struct SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
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_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Text.UTF32Encoding
struct UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
// System.Boolean System.Text.UTF32Encoding::emitUTF32ByteOrderMark
bool ___emitUTF32ByteOrderMark_16;
// System.Boolean System.Text.UTF32Encoding::isThrowException
bool ___isThrowException_17;
// System.Boolean System.Text.UTF32Encoding::bigEndian
bool ___bigEndian_18;
public:
inline static int32_t get_offset_of_emitUTF32ByteOrderMark_16() { return static_cast<int32_t>(offsetof(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A, ___emitUTF32ByteOrderMark_16)); }
inline bool get_emitUTF32ByteOrderMark_16() const { return ___emitUTF32ByteOrderMark_16; }
inline bool* get_address_of_emitUTF32ByteOrderMark_16() { return &___emitUTF32ByteOrderMark_16; }
inline void set_emitUTF32ByteOrderMark_16(bool value)
{
___emitUTF32ByteOrderMark_16 = value;
}
inline static int32_t get_offset_of_isThrowException_17() { return static_cast<int32_t>(offsetof(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A, ___isThrowException_17)); }
inline bool get_isThrowException_17() const { return ___isThrowException_17; }
inline bool* get_address_of_isThrowException_17() { return &___isThrowException_17; }
inline void set_isThrowException_17(bool value)
{
___isThrowException_17 = value;
}
inline static int32_t get_offset_of_bigEndian_18() { return static_cast<int32_t>(offsetof(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A, ___bigEndian_18)); }
inline bool get_bigEndian_18() const { return ___bigEndian_18; }
inline bool* get_address_of_bigEndian_18() { return &___bigEndian_18; }
inline void set_bigEndian_18(bool value)
{
___bigEndian_18 = value;
}
};
// System.Text.UTF8Encoding
struct UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
// System.Boolean System.Text.UTF8Encoding::emitUTF8Identifier
bool ___emitUTF8Identifier_16;
// System.Boolean System.Text.UTF8Encoding::isThrowException
bool ___isThrowException_17;
public:
inline static int32_t get_offset_of_emitUTF8Identifier_16() { return static_cast<int32_t>(offsetof(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE, ___emitUTF8Identifier_16)); }
inline bool get_emitUTF8Identifier_16() const { return ___emitUTF8Identifier_16; }
inline bool* get_address_of_emitUTF8Identifier_16() { return &___emitUTF8Identifier_16; }
inline void set_emitUTF8Identifier_16(bool value)
{
___emitUTF8Identifier_16 = value;
}
inline static int32_t get_offset_of_isThrowException_17() { return static_cast<int32_t>(offsetof(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE, ___isThrowException_17)); }
inline bool get_isThrowException_17() const { return ___isThrowException_17; }
inline bool* get_address_of_isThrowException_17() { return &___isThrowException_17; }
inline void set_isThrowException_17(bool value)
{
___isThrowException_17 = value;
}
};
// System.Text.UnicodeEncoding
struct UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
// System.Boolean System.Text.UnicodeEncoding::isThrowException
bool ___isThrowException_16;
// System.Boolean System.Text.UnicodeEncoding::bigEndian
bool ___bigEndian_17;
// System.Boolean System.Text.UnicodeEncoding::byteOrderMark
bool ___byteOrderMark_18;
public:
inline static int32_t get_offset_of_isThrowException_16() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356, ___isThrowException_16)); }
inline bool get_isThrowException_16() const { return ___isThrowException_16; }
inline bool* get_address_of_isThrowException_16() { return &___isThrowException_16; }
inline void set_isThrowException_16(bool value)
{
___isThrowException_16 = value;
}
inline static int32_t get_offset_of_bigEndian_17() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356, ___bigEndian_17)); }
inline bool get_bigEndian_17() const { return ___bigEndian_17; }
inline bool* get_address_of_bigEndian_17() { return &___bigEndian_17; }
inline void set_bigEndian_17(bool value)
{
___bigEndian_17 = value;
}
inline static int32_t get_offset_of_byteOrderMark_18() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356, ___byteOrderMark_18)); }
inline bool get_byteOrderMark_18() const { return ___byteOrderMark_18; }
inline bool* get_address_of_byteOrderMark_18() { return &___byteOrderMark_18; }
inline void set_byteOrderMark_18(bool value)
{
___byteOrderMark_18 = value;
}
};
struct UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_StaticFields
{
public:
// System.UInt64 System.Text.UnicodeEncoding::highLowPatternMask
uint64_t ___highLowPatternMask_19;
public:
inline static int32_t get_offset_of_highLowPatternMask_19() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_StaticFields, ___highLowPatternMask_19)); }
inline uint64_t get_highLowPatternMask_19() const { return ___highLowPatternMask_19; }
inline uint64_t* get_address_of_highLowPatternMask_19() { return &___highLowPatternMask_19; }
inline void set_highLowPatternMask_19(uint64_t value)
{
___highLowPatternMask_19 = value;
}
};
// System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, ___m_source_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
};
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_pinvoke
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_com
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
// System.Threading.Thread
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9
{
public:
// System.Threading.InternalThread System.Threading.Thread::internal_thread
InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___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_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___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_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___internal_thread_6)); }
inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * get_internal_thread_6() const { return ___internal_thread_6; }
inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 ** get_address_of_internal_thread_6() { return &___internal_thread_6; }
inline void set_internal_thread_6(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * value)
{
___internal_thread_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___internal_thread_6), (void*)value);
}
inline static int32_t get_offset_of_m_ThreadStartArg_7() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___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((void**)(&___m_ThreadStartArg_7), (void*)value);
}
inline static int32_t get_offset_of_pending_exception_8() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___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((void**)(&___pending_exception_8), (void*)value);
}
inline static int32_t get_offset_of_principal_9() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___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((void**)(&___principal_9), (void*)value);
}
inline static int32_t get_offset_of_principal_version_10() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___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_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___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((void**)(&___m_Delegate_12), (void*)value);
}
inline static int32_t get_offset_of_m_ExecutionContext_13() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContext_13)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ExecutionContext_13() const { return ___m_ExecutionContext_13; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ExecutionContext_13() { return &___m_ExecutionContext_13; }
inline void set_m_ExecutionContext_13(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
___m_ExecutionContext_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ExecutionContext_13), (void*)value);
}
inline static int32_t get_offset_of_m_ExecutionContextBelongsToOuterScope_14() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___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_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields
{
public:
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___s_LocalDataStoreMgr_0;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentCulture_4;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentUICulture_5;
public:
inline static int32_t get_offset_of_s_LocalDataStoreMgr_0() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_LocalDataStoreMgr_0)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_s_LocalDataStoreMgr_0() const { return ___s_LocalDataStoreMgr_0; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_s_LocalDataStoreMgr_0() { return &___s_LocalDataStoreMgr_0; }
inline void set_s_LocalDataStoreMgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___s_LocalDataStoreMgr_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStoreMgr_0), (void*)value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentCulture_4() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentCulture_4)); }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentCulture_4() const { return ___s_asyncLocalCurrentCulture_4; }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentCulture_4() { return &___s_asyncLocalCurrentCulture_4; }
inline void set_s_asyncLocalCurrentCulture_4(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value)
{
___s_asyncLocalCurrentCulture_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentCulture_4), (void*)value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentUICulture_5() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentUICulture_5)); }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentUICulture_5() const { return ___s_asyncLocalCurrentUICulture_5; }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentUICulture_5() { return &___s_asyncLocalCurrentUICulture_5; }
inline void set_s_asyncLocalCurrentUICulture_5(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value)
{
___s_asyncLocalCurrentUICulture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentUICulture_5), (void*)value);
}
};
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields
{
public:
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ___s_LocalDataStore_1;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentCulture_2;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentUICulture_3;
// System.Threading.Thread System.Threading.Thread::current_thread
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current_thread_11;
public:
inline static int32_t get_offset_of_s_LocalDataStore_1() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___s_LocalDataStore_1)); }
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get_s_LocalDataStore_1() const { return ___s_LocalDataStore_1; }
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of_s_LocalDataStore_1() { return &___s_LocalDataStore_1; }
inline void set_s_LocalDataStore_1(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value)
{
___s_LocalDataStore_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStore_1), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentCulture_2() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentCulture_2)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentCulture_2() const { return ___m_CurrentCulture_2; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentCulture_2() { return &___m_CurrentCulture_2; }
inline void set_m_CurrentCulture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___m_CurrentCulture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentCulture_2), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentUICulture_3() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentUICulture_3)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentUICulture_3() const { return ___m_CurrentUICulture_3; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentUICulture_3() { return &___m_CurrentUICulture_3; }
inline void set_m_CurrentUICulture_3(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___m_CurrentUICulture_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentUICulture_3), (void*)value);
}
inline static int32_t get_offset_of_current_thread_11() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___current_thread_11)); }
inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * get_current_thread_11() const { return ___current_thread_11; }
inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 ** get_address_of_current_thread_11() { return &___current_thread_11; }
inline void set_current_thread_11(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * value)
{
___current_thread_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_thread_11), (void*)value);
}
};
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields
{
public:
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C
__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22
__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_2;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E
__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40
__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_13;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604
__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3
__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5
__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_16;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851
__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444
__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_28;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3
__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_30;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF
__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C
__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::6CEE45445AFD150B047A5866FFA76AA651CDB7B7
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_42;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_43;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC
__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_48;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_49;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_53;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_54;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154
__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_57;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_59;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_61;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_62;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396
__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63;
// System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D
int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_64;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_65;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF
__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_69;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45
__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8
__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401
__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79;
// System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865
int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_80;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_81;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_83;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE
__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_88;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_90;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_91;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D
__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520
__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_96;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B
__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B
__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101;
public:
inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; }
inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___0588059ACBD52F7EA2835882F977A9CF72EB9775_0 = value;
}
inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1)); }
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; }
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; }
inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value)
{
___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1 = value;
}
inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_2)); }
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_2; }
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_2; }
inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_2(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value)
{
___121EC59E23F7559B28D338D562528F6299C2DE22_2 = value;
}
inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3)); }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; }
inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
{
___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3 = value;
}
inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; }
inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___1FE6CE411858B3D864679DE2139FB081F08BFACD_4 = value;
}
inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; }
inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5 = value;
}
inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6)); }
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; }
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; }
inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value)
{
___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6 = value;
}
inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7)); }
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; }
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; }
inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value)
{
___29C1A61550F0E3260E1953D4FAD71C256218EF40_7 = value;
}
inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; }
inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8 = value;
}
inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; }
inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9 = value;
}
inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; }
inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10 = value;
}
inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; }
inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11 = value;
}
inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; }
inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12 = value;
}
inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_13)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_13; }
inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_13(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___34476C29F6F81C989CFCA42F7C06E84C66236834_13 = value;
}
inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14)); }
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; }
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; }
inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value)
{
___35EED060772F2748D13B745DAEC8CD7BD3B87604_14 = value;
}
inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15)); }
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; }
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; }
inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value)
{
___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15 = value;
}
inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_16)); }
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_16; }
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_16; }
inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_16(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value)
{
___379C06C9E702D31469C29033F0DD63931EB349F5_16 = value;
}
inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17)); }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; }
inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
{
___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17 = value;
}
inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; }
inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18 = value;
}
inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19)); }
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; }
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; }
inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value)
{
___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19 = value;
}
inline static int32_t get_offset_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() const { return ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return &___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; }
inline void set_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20 = value;
}
inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; }
inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___3E823444D2DFECF0F90B436B88F02A533CB376F1_21 = value;
}
inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; }
inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22 = value;
}
inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23)); }
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; }
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; }
inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value)
{
___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23 = value;
}
inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; }
inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24 = value;
}
inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; }
inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25 = value;
}
inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; }
inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26 = value;
}
inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; }
inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27 = value;
}
inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_28)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_28() const { return ___536422B321459B242ADED7240B7447E904E083E3_28; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return &___536422B321459B242ADED7240B7447E904E083E3_28; }
inline void set_U3536422B321459B242ADED7240B7447E904E083E3_28(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___536422B321459B242ADED7240B7447E904E083E3_28 = value;
}
inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29)); }
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; }
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; }
inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value)
{
___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29 = value;
}
inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_30)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_30; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_30; }
inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_30(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___57218C316B6921E2CD61027A2387EDC31A2D9471_30 = value;
}
inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; }
inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___57F320D62696EC99727E0FE2045A05F1289CC0C6_31 = value;
}
inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32)); }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; }
inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
{
___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32 = value;
}
inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; }
inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33 = value;
}
inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34)); }
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; }
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; }
inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value)
{
___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34 = value;
}
inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; }
inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___5BFE2819B4778217C56416C7585FF0E56EBACD89_35 = value;
}
inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36)); }
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; }
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; }
inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value)
{
___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36 = value;
}
inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; }
inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37 = value;
}
inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; }
inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38 = value;
}
inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; }
inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___67EEAD805D708D9AA4E14BF747E44CED801744F3_39 = value;
}
inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40)); }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; }
inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
{
___6C71197D228427B2864C69B357FEF73D8C9D59DF_40 = value;
}
inline static int32_t get_offset_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() const { return ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return &___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; }
inline void set_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41 = value;
}
inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_42)); }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_42; }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_42; }
inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_42(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
{
___6FC754859E4EC74E447048364B216D825C6F8FE7_42 = value;
}
inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_43)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_43; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_43; }
inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___704939CD172085D1295FCE3F1D92431D685D7AA2_43 = value;
}
inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44)); }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; }
inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
{
___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44 = value;
}
inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; }
inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___7341C933A70EAE383CC50C4B945ADB8E08F06737_45 = value;
}
inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; }
inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46 = value;
}
inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47)); }
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; }
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; }
inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value)
{
___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47 = value;
}
inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_48)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_48() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_48; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_48; }
inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_48(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___81917F1E21F3C22B9F916994547A614FB03E968E_48 = value;
}
inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_49)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_49; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_49; }
inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_49(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___823566DA642D6EA356E15585921F2A4CA23D6760_49 = value;
}
inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; }
inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___82C2A59850B2E85BCE1A45A479537A384DF6098D_50 = value;
}
inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51)); }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; }
inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
{
___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51 = value;
}
inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; }
inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___871B9CF85DB352BAADF12BAE8F19857683E385AC_52 = value;
}
inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_53)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_53; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_53; }
inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_53(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___89A040451C8CC5C8FB268BE44BDD74964C104155_53 = value;
}
inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_54)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_54() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_54; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return &___8CAA092E783257106251246FF5C97F88D28517A6_54; }
inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_54(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___8CAA092E783257106251246FF5C97F88D28517A6_54 = value;
}
inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55)); }
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; }
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; }
inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value)
{
___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55 = value;
}
inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; }
inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56 = value;
}
inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_57)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_57; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_57; }
inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_57(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___93A63E90605400F34B49F0EB3361D23C89164BDA_57 = value;
}
inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; }
inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___94841DD2F330CCB1089BF413E4FA9B04505152E2_58 = value;
}
inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_59)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_59; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_59; }
inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_59(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___95264589E48F94B7857CFF398FB72A537E13EEE2_59 = value;
}
inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; }
inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___95C48758CAE1715783472FB073AB158AB8A0AB2A_60 = value;
}
inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_61)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_61() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_61; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return &___973417296623D8DC6961B09664E54039E44CA5D8_61; }
inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_61(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___973417296623D8DC6961B09664E54039E44CA5D8_61 = value;
}
inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_62)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_62() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_62; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_62; }
inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_62(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___A0074C15377C0C870B055927403EA9FA7A349D12_62 = value;
}
inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63)); }
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; }
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; }
inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_63(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value)
{
___A1319B706116AB2C6D44483F60A7D0ACEA543396_63 = value;
}
inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_64)); }
inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_64() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_64; }
inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_64; }
inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_64(int64_t value)
{
___A13AA52274D951A18029131A8DDECF76B569A15D_64 = value;
}
inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_65)); }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_65() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_65; }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return &___A5444763673307F6828C748D4B9708CFC02B0959_65; }
inline void set_A5444763673307F6828C748D4B9708CFC02B0959_65(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
{
___A5444763673307F6828C748D4B9708CFC02B0959_65 = value;
}
inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; }
inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66 = value;
}
inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67)); }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; }
inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_67(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
{
___A705A106D95282BD15E13EEA6B0AF583FF786D83_67 = value;
}
inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68)); }
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; }
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; }
inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_68(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value)
{
___A8A491E4CED49AE0027560476C10D933CE70C8DF_68 = value;
}
inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_69)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_69() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_69; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_69; }
inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_69(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___AC791C4F39504D1184B73478943D0636258DA7B1_69 = value;
}
inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; }
inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_70(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___AFCD4E1211233E99373A3367B23105A3D624B1F2_70 = value;
}
inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; }
inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71 = value;
}
inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72)); }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; }
inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
{
___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72 = value;
}
inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73)); }
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; }
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; }
inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value)
{
___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73 = value;
}
inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74)); }
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; }
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; }
inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value)
{
___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74 = value;
}
inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75)); }
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; }
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; }
inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_75(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value)
{
___B8F87834C3597B2EEF22BA6D3A392CC925636401_75 = value;
}
inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; }
inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76 = value;
}
inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; }
inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77 = value;
}
inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; }
inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78 = value;
}
inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79)); }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; }
inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_79(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
{
___BF5EB60806ECB74EE484105DD9D6F463BF994867_79 = value;
}
inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_80)); }
inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_80() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_80; }
inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_80; }
inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_80(int64_t value)
{
___C1A1100642BA9685B30A84D97348484E14AA1865_80 = value;
}
inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_81)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_81() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_81; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_81; }
inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_81(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___C6F364A0AD934EFED8909446C215752E565D77C1_81 = value;
}
inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82)); }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; }
inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_82(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
{
___CE5835130F5277F63D716FC9115526B0AC68FFAD_82 = value;
}
inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_83)); }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_83() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_83; }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_83; }
inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_83(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
{
___CE93C35B755802BC4B3D180716B048FC61701EF7_83 = value;
}
inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84)); }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; }
inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value)
{
___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84 = value;
}
inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85)); }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; }
inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
{
___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85 = value;
}
inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86)); }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; }
inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_86(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
{
___DA19DB47B583EFCF7825D2E39D661D2354F28219_86 = value;
}
inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; }
inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87 = value;
}
inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_88)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_88() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_88; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_88; }
inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_88(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___E1827270A5FE1C85F5352A66FD87BA747213D006_88 = value;
}
inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; }
inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89 = value;
}
inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_90)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_90() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_90; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_90; }
inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_90(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___E92B39D8233061927D9ACDE54665E68E7535635A_90 = value;
}
inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_91)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_91() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_91; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return &___EA9506959484C55CFE0C139C624DF6060E285866_91; }
inline void set_EA9506959484C55CFE0C139C624DF6060E285866_91(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___EA9506959484C55CFE0C139C624DF6060E285866_91 = value;
}
inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92)); }
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; }
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; }
inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value)
{
___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92 = value;
}
inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; }
inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_93(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___EBF68F411848D603D059DFDEA2321C5A5EA78044_93 = value;
}
inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; }
inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94 = value;
}
inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; }
inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95 = value;
}
inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_96)); }
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_96() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_96; }
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_96; }
inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_96(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value)
{
___F073AA332018FDA0D572E99448FFF1D6422BD520_96 = value;
}
inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97)); }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; }
inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_97(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
{
___F34B0E10653402E8F788F8BC3F7CD7090928A429_97 = value;
}
inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; }
inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98 = value;
}
inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99)); }
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; }
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; }
inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_99(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value)
{
___F512A9ABF88066AAEB92684F95CC05D8101B462B_99 = value;
}
inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; }
inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100 = value;
}
inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101)); }
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; }
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; }
inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value)
{
___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101 = value;
}
};
// System.AttributeTargets
struct AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741
{
public:
// System.Int32 System.AttributeTargets::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ConsoleKey
struct ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C
{
public:
// System.Int32 System.ConsoleKey::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ConsoleModifiers
struct ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34
{
public:
// System.Int32 System.ConsoleModifiers::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Delegate
struct Delegate_t : 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_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___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_t, ___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_t, ___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_t, ___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((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___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_t, ___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_t, ___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_t, ___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_t, ___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((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___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((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_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_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_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_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Globalization.NumberStyles
struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592
{
public:
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.FileAccess
struct FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6
{
public:
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.FileMode
struct FileMode_tD19D05B1E6CAF201F88401B04FDB25227664C419
{
public:
// System.Int32 System.IO.FileMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileMode_tD19D05B1E6CAF201F88401B04FDB25227664C419, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.FileOptions
struct FileOptions_t12395DCB579B97DF4788AB79553F8815F9625FA7
{
public:
// System.Int32 System.IO.FileOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileOptions_t12395DCB579B97DF4788AB79553F8815F9625FA7, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.FileShare
struct FileShare_t9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684
{
public:
// System.Int32 System.IO.FileShare::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileShare_t9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.SearchOption
struct SearchOption_t41115A8120A32D6A0E970DEAC20E3C1D394E59C1
{
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_t41115A8120A32D6A0E970DEAC20E3C1D394E59C1, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.SeekOrigin
struct SeekOrigin_tAC0AF155E3D8B36359FAD8A95FACA23169D55BB3
{
public:
// System.Int32 System.IO.SeekOrigin::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SeekOrigin_tAC0AF155E3D8B36359FAD8A95FACA23169D55BB3, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.Stream_NullStream
struct NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
public:
};
// System.IO.StreamReader
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
// System.IO.Stream System.IO.StreamReader::stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5;
// System.Text.Encoding System.IO.StreamReader::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_6;
// System.Text.Decoder System.IO.StreamReader::decoder
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_7;
// System.Byte[] System.IO.StreamReader::byteBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_8;
// System.Char[] System.IO.StreamReader::charBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_9;
// System.Byte[] System.IO.StreamReader::_preamble
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____preamble_10;
// System.Int32 System.IO.StreamReader::charPos
int32_t ___charPos_11;
// System.Int32 System.IO.StreamReader::charLen
int32_t ___charLen_12;
// System.Int32 System.IO.StreamReader::byteLen
int32_t ___byteLen_13;
// System.Int32 System.IO.StreamReader::bytePos
int32_t ___bytePos_14;
// System.Int32 System.IO.StreamReader::_maxCharsPerBuffer
int32_t ____maxCharsPerBuffer_15;
// System.Boolean System.IO.StreamReader::_detectEncoding
bool ____detectEncoding_16;
// System.Boolean System.IO.StreamReader::_checkPreamble
bool ____checkPreamble_17;
// System.Boolean System.IO.StreamReader::_isBlocked
bool ____isBlocked_18;
// System.Boolean System.IO.StreamReader::_closable
bool ____closable_19;
// System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncReadTask_20;
public:
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___stream_5)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value);
}
inline static int32_t get_offset_of_encoding_6() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___encoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_6() const { return ___encoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_6() { return &___encoding_6; }
inline void set_encoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___encoding_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_6), (void*)value);
}
inline static int32_t get_offset_of_decoder_7() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___decoder_7)); }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_7() const { return ___decoder_7; }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_7() { return &___decoder_7; }
inline void set_decoder_7(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value)
{
___decoder_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoder_7), (void*)value);
}
inline static int32_t get_offset_of_byteBuffer_8() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteBuffer_8)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_8() const { return ___byteBuffer_8; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_8() { return &___byteBuffer_8; }
inline void set_byteBuffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___byteBuffer_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_8), (void*)value);
}
inline static int32_t get_offset_of_charBuffer_9() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charBuffer_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_9() const { return ___charBuffer_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_9() { return &___charBuffer_9; }
inline void set_charBuffer_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___charBuffer_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_9), (void*)value);
}
inline static int32_t get_offset_of__preamble_10() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____preamble_10)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__preamble_10() const { return ____preamble_10; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__preamble_10() { return &____preamble_10; }
inline void set__preamble_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____preamble_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____preamble_10), (void*)value);
}
inline static int32_t get_offset_of_charPos_11() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charPos_11)); }
inline int32_t get_charPos_11() const { return ___charPos_11; }
inline int32_t* get_address_of_charPos_11() { return &___charPos_11; }
inline void set_charPos_11(int32_t value)
{
___charPos_11 = value;
}
inline static int32_t get_offset_of_charLen_12() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charLen_12)); }
inline int32_t get_charLen_12() const { return ___charLen_12; }
inline int32_t* get_address_of_charLen_12() { return &___charLen_12; }
inline void set_charLen_12(int32_t value)
{
___charLen_12 = value;
}
inline static int32_t get_offset_of_byteLen_13() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteLen_13)); }
inline int32_t get_byteLen_13() const { return ___byteLen_13; }
inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; }
inline void set_byteLen_13(int32_t value)
{
___byteLen_13 = value;
}
inline static int32_t get_offset_of_bytePos_14() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___bytePos_14)); }
inline int32_t get_bytePos_14() const { return ___bytePos_14; }
inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; }
inline void set_bytePos_14(int32_t value)
{
___bytePos_14 = value;
}
inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____maxCharsPerBuffer_15)); }
inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; }
inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; }
inline void set__maxCharsPerBuffer_15(int32_t value)
{
____maxCharsPerBuffer_15 = value;
}
inline static int32_t get_offset_of__detectEncoding_16() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____detectEncoding_16)); }
inline bool get__detectEncoding_16() const { return ____detectEncoding_16; }
inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; }
inline void set__detectEncoding_16(bool value)
{
____detectEncoding_16 = value;
}
inline static int32_t get_offset_of__checkPreamble_17() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____checkPreamble_17)); }
inline bool get__checkPreamble_17() const { return ____checkPreamble_17; }
inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; }
inline void set__checkPreamble_17(bool value)
{
____checkPreamble_17 = value;
}
inline static int32_t get_offset_of__isBlocked_18() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____isBlocked_18)); }
inline bool get__isBlocked_18() const { return ____isBlocked_18; }
inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; }
inline void set__isBlocked_18(bool value)
{
____isBlocked_18 = value;
}
inline static int32_t get_offset_of__closable_19() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____closable_19)); }
inline bool get__closable_19() const { return ____closable_19; }
inline bool* get_address_of__closable_19() { return &____closable_19; }
inline void set__closable_19(bool value)
{
____closable_19 = value;
}
inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____asyncReadTask_20)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncReadTask_20() const { return ____asyncReadTask_20; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; }
inline void set__asyncReadTask_20(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
____asyncReadTask_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncReadTask_20), (void*)value);
}
};
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields
{
public:
// System.IO.StreamReader System.IO.StreamReader::Null
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___Null_4;
public:
inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields, ___Null_4)); }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_Null_4() const { return ___Null_4; }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_Null_4() { return &___Null_4; }
inline void set_Null_4(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value)
{
___Null_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_4), (void*)value);
}
};
// System.IO.StreamWriter
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
// System.IO.Stream System.IO.StreamWriter::stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_12;
// System.Text.Encoding System.IO.StreamWriter::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_13;
// System.Text.Encoder System.IO.StreamWriter::encoder
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * ___encoder_14;
// System.Byte[] System.IO.StreamWriter::byteBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_15;
// System.Char[] System.IO.StreamWriter::charBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_16;
// System.Int32 System.IO.StreamWriter::charPos
int32_t ___charPos_17;
// System.Int32 System.IO.StreamWriter::charLen
int32_t ___charLen_18;
// System.Boolean System.IO.StreamWriter::autoFlush
bool ___autoFlush_19;
// System.Boolean System.IO.StreamWriter::haveWrittenPreamble
bool ___haveWrittenPreamble_20;
// System.Boolean System.IO.StreamWriter::closable
bool ___closable_21;
// System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_asyncWriteTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncWriteTask_22;
public:
inline static int32_t get_offset_of_stream_12() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___stream_12)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_12() const { return ___stream_12; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_12() { return &___stream_12; }
inline void set_stream_12(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___stream_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stream_12), (void*)value);
}
inline static int32_t get_offset_of_encoding_13() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoding_13)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_13() const { return ___encoding_13; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_13() { return &___encoding_13; }
inline void set_encoding_13(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___encoding_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_13), (void*)value);
}
inline static int32_t get_offset_of_encoder_14() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoder_14)); }
inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * get_encoder_14() const { return ___encoder_14; }
inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 ** get_address_of_encoder_14() { return &___encoder_14; }
inline void set_encoder_14(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * value)
{
___encoder_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoder_14), (void*)value);
}
inline static int32_t get_offset_of_byteBuffer_15() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___byteBuffer_15)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_15() const { return ___byteBuffer_15; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_15() { return &___byteBuffer_15; }
inline void set_byteBuffer_15(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___byteBuffer_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_15), (void*)value);
}
inline static int32_t get_offset_of_charBuffer_16() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charBuffer_16)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_16() const { return ___charBuffer_16; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_16() { return &___charBuffer_16; }
inline void set_charBuffer_16(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___charBuffer_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_16), (void*)value);
}
inline static int32_t get_offset_of_charPos_17() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charPos_17)); }
inline int32_t get_charPos_17() const { return ___charPos_17; }
inline int32_t* get_address_of_charPos_17() { return &___charPos_17; }
inline void set_charPos_17(int32_t value)
{
___charPos_17 = value;
}
inline static int32_t get_offset_of_charLen_18() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charLen_18)); }
inline int32_t get_charLen_18() const { return ___charLen_18; }
inline int32_t* get_address_of_charLen_18() { return &___charLen_18; }
inline void set_charLen_18(int32_t value)
{
___charLen_18 = value;
}
inline static int32_t get_offset_of_autoFlush_19() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___autoFlush_19)); }
inline bool get_autoFlush_19() const { return ___autoFlush_19; }
inline bool* get_address_of_autoFlush_19() { return &___autoFlush_19; }
inline void set_autoFlush_19(bool value)
{
___autoFlush_19 = value;
}
inline static int32_t get_offset_of_haveWrittenPreamble_20() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___haveWrittenPreamble_20)); }
inline bool get_haveWrittenPreamble_20() const { return ___haveWrittenPreamble_20; }
inline bool* get_address_of_haveWrittenPreamble_20() { return &___haveWrittenPreamble_20; }
inline void set_haveWrittenPreamble_20(bool value)
{
___haveWrittenPreamble_20 = value;
}
inline static int32_t get_offset_of_closable_21() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___closable_21)); }
inline bool get_closable_21() const { return ___closable_21; }
inline bool* get_address_of_closable_21() { return &___closable_21; }
inline void set_closable_21(bool value)
{
___closable_21 = value;
}
inline static int32_t get_offset_of__asyncWriteTask_22() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ____asyncWriteTask_22)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncWriteTask_22() const { return ____asyncWriteTask_22; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncWriteTask_22() { return &____asyncWriteTask_22; }
inline void set__asyncWriteTask_22(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
____asyncWriteTask_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncWriteTask_22), (void*)value);
}
};
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields
{
public:
// System.IO.StreamWriter System.IO.StreamWriter::Null
StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * ___Null_11;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_UTF8NoBOM
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ____UTF8NoBOM_23;
public:
inline static int32_t get_offset_of_Null_11() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ___Null_11)); }
inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * get_Null_11() const { return ___Null_11; }
inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E ** get_address_of_Null_11() { return &___Null_11; }
inline void set_Null_11(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * value)
{
___Null_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_11), (void*)value);
}
inline static int32_t get_offset_of__UTF8NoBOM_23() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ____UTF8NoBOM_23)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get__UTF8NoBOM_23() const { return ____UTF8NoBOM_23; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of__UTF8NoBOM_23() { return &____UTF8NoBOM_23; }
inline void set__UTF8NoBOM_23(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
____UTF8NoBOM_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&____UTF8NoBOM_23), (void*)value);
}
};
// System.IO.StringReader
struct StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
// System.String System.IO.StringReader::_s
String_t* ____s_4;
// System.Int32 System.IO.StringReader::_pos
int32_t ____pos_5;
// System.Int32 System.IO.StringReader::_length
int32_t ____length_6;
public:
inline static int32_t get_offset_of__s_4() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____s_4)); }
inline String_t* get__s_4() const { return ____s_4; }
inline String_t** get_address_of__s_4() { return &____s_4; }
inline void set__s_4(String_t* value)
{
____s_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____s_4), (void*)value);
}
inline static int32_t get_offset_of__pos_5() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____pos_5)); }
inline int32_t get__pos_5() const { return ____pos_5; }
inline int32_t* get_address_of__pos_5() { return &____pos_5; }
inline void set__pos_5(int32_t value)
{
____pos_5 = value;
}
inline static int32_t get_offset_of__length_6() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____length_6)); }
inline int32_t get__length_6() const { return ____length_6; }
inline int32_t* get_address_of__length_6() { return &____length_6; }
inline void set__length_6(int32_t value)
{
____length_6 = value;
}
};
// System.IO.TextReader_NullTextReader
struct NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
public:
};
// System.IO.TextReader_SyncTextReader
struct SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
// System.IO.TextReader System.IO.TextReader_SyncTextReader::_in
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ____in_4;
public:
inline static int32_t get_offset_of__in_4() { return static_cast<int32_t>(offsetof(SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8, ____in_4)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get__in_4() const { return ____in_4; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of__in_4() { return &____in_4; }
inline void set__in_4(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
____in_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____in_4), (void*)value);
}
};
// System.IO.TextWriter_NullTextWriter
struct NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
public:
};
// System.IO.TextWriter_SyncTextWriter
struct SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
// System.IO.TextWriter System.IO.TextWriter_SyncTextWriter::_out
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ____out_11;
public:
inline static int32_t get_offset_of__out_11() { return static_cast<int32_t>(offsetof(SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93, ____out_11)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get__out_11() const { return ____out_11; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of__out_11() { return &____out_11; }
inline void set__out_11(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
____out_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____out_11), (void*)value);
}
};
// System.Int16Enum
struct Int16Enum_tF03C0C5772A892EB552607A1C0DEF122A930BE80
{
public:
// System.Int16 System.Int16Enum::value__
int16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int16Enum_tF03C0C5772A892EB552607A1C0DEF122A930BE80, ___value___2)); }
inline int16_t get_value___2() const { return ___value___2; }
inline int16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int16_t value)
{
___value___2 = value;
}
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Int64Enum
struct Int64Enum_t7DD4BDEADB660E726D94B249B352C2E2ABC1E580
{
public:
// System.Int64 System.Int64Enum::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int64Enum_t7DD4BDEADB660E726D94B249B352C2E2ABC1E580, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD : public RuntimeObject
{
public:
// System.Object System.MonoAsyncCall::msg
RuntimeObject * ___msg_0;
// System.IntPtr System.MonoAsyncCall::cb_method
intptr_t ___cb_method_1;
// System.Object System.MonoAsyncCall::cb_target
RuntimeObject * ___cb_target_2;
// System.Object System.MonoAsyncCall::state
RuntimeObject * ___state_3;
// System.Object System.MonoAsyncCall::res
RuntimeObject * ___res_4;
// System.Object System.MonoAsyncCall::out_args
RuntimeObject * ___out_args_5;
public:
inline static int32_t get_offset_of_msg_0() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___msg_0)); }
inline RuntimeObject * get_msg_0() const { return ___msg_0; }
inline RuntimeObject ** get_address_of_msg_0() { return &___msg_0; }
inline void set_msg_0(RuntimeObject * value)
{
___msg_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___msg_0), (void*)value);
}
inline static int32_t get_offset_of_cb_method_1() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___cb_method_1)); }
inline intptr_t get_cb_method_1() const { return ___cb_method_1; }
inline intptr_t* get_address_of_cb_method_1() { return &___cb_method_1; }
inline void set_cb_method_1(intptr_t value)
{
___cb_method_1 = value;
}
inline static int32_t get_offset_of_cb_target_2() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___cb_target_2)); }
inline RuntimeObject * get_cb_target_2() const { return ___cb_target_2; }
inline RuntimeObject ** get_address_of_cb_target_2() { return &___cb_target_2; }
inline void set_cb_target_2(RuntimeObject * value)
{
___cb_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cb_target_2), (void*)value);
}
inline static int32_t get_offset_of_state_3() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___state_3)); }
inline RuntimeObject * get_state_3() const { return ___state_3; }
inline RuntimeObject ** get_address_of_state_3() { return &___state_3; }
inline void set_state_3(RuntimeObject * value)
{
___state_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___state_3), (void*)value);
}
inline static int32_t get_offset_of_res_4() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___res_4)); }
inline RuntimeObject * get_res_4() const { return ___res_4; }
inline RuntimeObject ** get_address_of_res_4() { return &___res_4; }
inline void set_res_4(RuntimeObject * value)
{
___res_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___res_4), (void*)value);
}
inline static int32_t get_offset_of_out_args_5() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___out_args_5)); }
inline RuntimeObject * get_out_args_5() const { return ___out_args_5; }
inline RuntimeObject ** get_address_of_out_args_5() { return &___out_args_5; }
inline void set_out_args_5(RuntimeObject * value)
{
___out_args_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___out_args_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke
{
Il2CppIUnknown* ___msg_0;
intptr_t ___cb_method_1;
Il2CppIUnknown* ___cb_target_2;
Il2CppIUnknown* ___state_3;
Il2CppIUnknown* ___res_4;
Il2CppIUnknown* ___out_args_5;
};
// Native definition for COM marshalling of System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com
{
Il2CppIUnknown* ___msg_0;
intptr_t ___cb_method_1;
Il2CppIUnknown* ___cb_target_2;
Il2CppIUnknown* ___state_3;
Il2CppIUnknown* ___res_4;
Il2CppIUnknown* ___out_args_5;
};
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
// System.Object System.Reflection.Assembly::_evidence
RuntimeObject * ____evidence_2;
// System.Object System.Reflection.Assembly::_minimum
RuntimeObject * ____minimum_3;
// System.Object System.Reflection.Assembly::_optional
RuntimeObject * ____optional_4;
// System.Object System.Reflection.Assembly::_refuse
RuntimeObject * ____refuse_5;
// System.Object System.Reflection.Assembly::_granted
RuntimeObject * ____granted_6;
// System.Object System.Reflection.Assembly::_denied
RuntimeObject * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(RuntimeObject * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(RuntimeObject * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(RuntimeObject * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(RuntimeObject * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(RuntimeObject * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(RuntimeObject * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
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_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF : public MethodBase_t
{
public:
public:
};
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields
{
public:
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
public:
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___ConstructorName_0)); }
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
inline void set_ConstructorName_0(String_t* value)
{
___ConstructorName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___TypeConstructorName_1)); }
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
inline void set_TypeConstructorName_1(String_t* value)
{
___TypeConstructorName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value);
}
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
// System.Reflection.PInfo
struct PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B
{
public:
// System.Int32 System.Reflection.PInfo::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110
{
public:
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.PropertyAttributes
struct PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C
{
public:
// System.Int32 System.Reflection.PropertyAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.RuntimeEventInfo
struct RuntimeEventInfo_tFBC185ED030EEA019664838A8404821CB711BC09 : public EventInfo_t
{
public:
public:
};
// System.Reflection.RuntimePropertyInfo
struct RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4 : public PropertyInfo_t
{
public:
public:
};
// System.Reflection.TypeAttributes
struct TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30
{
public:
// System.Int32 System.Reflection.TypeAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.InteropServices.GCHandleType
struct GCHandleType_t7155EF9CB120186C6753EE17470D37E148CB2EF1
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandleType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GCHandleType_t7155EF9CB120186C6753EE17470D37E148CB2EF1, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.InteropServices.SafeHandle
struct SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9
{
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_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ___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_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____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_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____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_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____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;
}
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F
{
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_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
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_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.Threading.ExecutionContext_CaptureOptions
struct CaptureOptions_t7D9885DDA178752A2B4CA4EB542756102B918B6C
{
public:
// System.Int32 System.Threading.ExecutionContext_CaptureOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CaptureOptions_t7D9885DDA178752A2B4CA4EB542756102B918B6C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.ExecutionContext_Flags
struct Flags_t8F565E43354BBB9A79D7F0308B469D11A82268BD
{
public:
// System.Int32 System.Threading.ExecutionContext_Flags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t8F565E43354BBB9A79D7F0308B469D11A82268BD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SemaphoreSlim::m_currentCount
int32_t ___m_currentCount_0;
// System.Int32 System.Threading.SemaphoreSlim::m_maxCount
int32_t ___m_maxCount_1;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SemaphoreSlim::m_waitCount
int32_t ___m_waitCount_2;
// System.Object System.Threading.SemaphoreSlim::m_lockObj
RuntimeObject * ___m_lockObj_3;
// System.Threading.ManualResetEvent modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SemaphoreSlim::m_waitHandle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_waitHandle_4;
// System.Threading.SemaphoreSlim_TaskNode System.Threading.SemaphoreSlim::m_asyncHead
TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D * ___m_asyncHead_5;
// System.Threading.SemaphoreSlim_TaskNode System.Threading.SemaphoreSlim::m_asyncTail
TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D * ___m_asyncTail_6;
public:
inline static int32_t get_offset_of_m_currentCount_0() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048, ___m_currentCount_0)); }
inline int32_t get_m_currentCount_0() const { return ___m_currentCount_0; }
inline int32_t* get_address_of_m_currentCount_0() { return &___m_currentCount_0; }
inline void set_m_currentCount_0(int32_t value)
{
___m_currentCount_0 = value;
}
inline static int32_t get_offset_of_m_maxCount_1() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048, ___m_maxCount_1)); }
inline int32_t get_m_maxCount_1() const { return ___m_maxCount_1; }
inline int32_t* get_address_of_m_maxCount_1() { return &___m_maxCount_1; }
inline void set_m_maxCount_1(int32_t value)
{
___m_maxCount_1 = value;
}
inline static int32_t get_offset_of_m_waitCount_2() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048, ___m_waitCount_2)); }
inline int32_t get_m_waitCount_2() const { return ___m_waitCount_2; }
inline int32_t* get_address_of_m_waitCount_2() { return &___m_waitCount_2; }
inline void set_m_waitCount_2(int32_t value)
{
___m_waitCount_2 = value;
}
inline static int32_t get_offset_of_m_lockObj_3() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048, ___m_lockObj_3)); }
inline RuntimeObject * get_m_lockObj_3() const { return ___m_lockObj_3; }
inline RuntimeObject ** get_address_of_m_lockObj_3() { return &___m_lockObj_3; }
inline void set_m_lockObj_3(RuntimeObject * value)
{
___m_lockObj_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_lockObj_3), (void*)value);
}
inline static int32_t get_offset_of_m_waitHandle_4() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048, ___m_waitHandle_4)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_waitHandle_4() const { return ___m_waitHandle_4; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_waitHandle_4() { return &___m_waitHandle_4; }
inline void set_m_waitHandle_4(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
___m_waitHandle_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_waitHandle_4), (void*)value);
}
inline static int32_t get_offset_of_m_asyncHead_5() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048, ___m_asyncHead_5)); }
inline TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D * get_m_asyncHead_5() const { return ___m_asyncHead_5; }
inline TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D ** get_address_of_m_asyncHead_5() { return &___m_asyncHead_5; }
inline void set_m_asyncHead_5(TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D * value)
{
___m_asyncHead_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_asyncHead_5), (void*)value);
}
inline static int32_t get_offset_of_m_asyncTail_6() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048, ___m_asyncTail_6)); }
inline TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D * get_m_asyncTail_6() const { return ___m_asyncTail_6; }
inline TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D ** get_address_of_m_asyncTail_6() { return &___m_asyncTail_6; }
inline void set_m_asyncTail_6(TaskNode_t2497E541C4CB8A41A55B30DFBE3A30F68B140E2D * value)
{
___m_asyncTail_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_asyncTail_6), (void*)value);
}
};
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_StaticFields
{
public:
// System.Threading.Tasks.Task`1<System.Boolean> System.Threading.SemaphoreSlim::s_trueTask
Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___s_trueTask_7;
// System.Action`1<System.Object> System.Threading.SemaphoreSlim::s_cancellationTokenCanceledEventHandler
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_cancellationTokenCanceledEventHandler_8;
public:
inline static int32_t get_offset_of_s_trueTask_7() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_StaticFields, ___s_trueTask_7)); }
inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_s_trueTask_7() const { return ___s_trueTask_7; }
inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_s_trueTask_7() { return &___s_trueTask_7; }
inline void set_s_trueTask_7(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value)
{
___s_trueTask_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_trueTask_7), (void*)value);
}
inline static int32_t get_offset_of_s_cancellationTokenCanceledEventHandler_8() { return static_cast<int32_t>(offsetof(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_StaticFields, ___s_cancellationTokenCanceledEventHandler_8)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_cancellationTokenCanceledEventHandler_8() const { return ___s_cancellationTokenCanceledEventHandler_8; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_cancellationTokenCanceledEventHandler_8() { return &___s_cancellationTokenCanceledEventHandler_8; }
inline void set_s_cancellationTokenCanceledEventHandler_8(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_cancellationTokenCanceledEventHandler_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_cancellationTokenCanceledEventHandler_8), (void*)value);
}
};
// System.Threading.StackCrawlMark
struct StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943
{
public:
// System.Int32 System.Threading.StackCrawlMark::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task_ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_action_5), (void*)value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_stateObject_6), (void*)value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskScheduler_7)); }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_taskScheduler_7), (void*)value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_parent_8)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_parent_8), (void*)value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_continuationObject_10), (void*)value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_contingentProperties_15)); }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_contingentProperties_15), (void*)value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task_ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_factory_3)); }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_factory_3), (void*)value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCompletionSentinel_11), (void*)value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_currentActiveTasks_13), (void*)value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_activeTasksLock_14), (void*)value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCancelCallback_16), (void*)value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_createContingentProperties_17), (void*)value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_completedTask_18)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_completedTask_18), (void*)value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsExceptionObservedByParentPredicate_19), (void*)value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ecCallback_20), (void*)value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsTaskContinuationNullPredicate_21), (void*)value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_currentTask_0), (void*)value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_stackGuard_1), (void*)value);
}
};
// System.Threading.Tasks.TaskContinuationOptions
struct TaskContinuationOptions_t749581ABDD24D74BD051F09EC4E3408C209121A2
{
public:
// System.Int32 System.Threading.Tasks.TaskContinuationOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskContinuationOptions_t749581ABDD24D74BD051F09EC4E3408C209121A2, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.Tasks.TaskCreationOptions
struct TaskCreationOptions_t73D75E64925AACDF2A90DDB3D508192A8E74D375
{
public:
// System.Int32 System.Threading.Tasks.TaskCreationOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskCreationOptions_t73D75E64925AACDF2A90DDB3D508192A8E74D375, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskScheduler::m_taskSchedulerId
int32_t ___m_taskSchedulerId_3;
public:
inline static int32_t get_offset_of_m_taskSchedulerId_3() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114, ___m_taskSchedulerId_3)); }
inline int32_t get_m_taskSchedulerId_3() const { return ___m_taskSchedulerId_3; }
inline int32_t* get_address_of_m_taskSchedulerId_3() { return &___m_taskSchedulerId_3; }
inline void set_m_taskSchedulerId_3(int32_t value)
{
___m_taskSchedulerId_3 = value;
}
};
struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields
{
public:
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> System.Threading.Tasks.TaskScheduler::s_activeTaskSchedulers
ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * ___s_activeTaskSchedulers_0;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::s_defaultTaskScheduler
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___s_defaultTaskScheduler_1;
// System.Int32 System.Threading.Tasks.TaskScheduler::s_taskSchedulerIdCounter
int32_t ___s_taskSchedulerIdCounter_2;
// System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> System.Threading.Tasks.TaskScheduler::_unobservedTaskException
EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * ____unobservedTaskException_4;
// System.Object System.Threading.Tasks.TaskScheduler::_unobservedTaskExceptionLockObject
RuntimeObject * ____unobservedTaskExceptionLockObject_5;
public:
inline static int32_t get_offset_of_s_activeTaskSchedulers_0() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ___s_activeTaskSchedulers_0)); }
inline ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * get_s_activeTaskSchedulers_0() const { return ___s_activeTaskSchedulers_0; }
inline ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C ** get_address_of_s_activeTaskSchedulers_0() { return &___s_activeTaskSchedulers_0; }
inline void set_s_activeTaskSchedulers_0(ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * value)
{
___s_activeTaskSchedulers_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_activeTaskSchedulers_0), (void*)value);
}
inline static int32_t get_offset_of_s_defaultTaskScheduler_1() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ___s_defaultTaskScheduler_1)); }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_s_defaultTaskScheduler_1() const { return ___s_defaultTaskScheduler_1; }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_s_defaultTaskScheduler_1() { return &___s_defaultTaskScheduler_1; }
inline void set_s_defaultTaskScheduler_1(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value)
{
___s_defaultTaskScheduler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_defaultTaskScheduler_1), (void*)value);
}
inline static int32_t get_offset_of_s_taskSchedulerIdCounter_2() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ___s_taskSchedulerIdCounter_2)); }
inline int32_t get_s_taskSchedulerIdCounter_2() const { return ___s_taskSchedulerIdCounter_2; }
inline int32_t* get_address_of_s_taskSchedulerIdCounter_2() { return &___s_taskSchedulerIdCounter_2; }
inline void set_s_taskSchedulerIdCounter_2(int32_t value)
{
___s_taskSchedulerIdCounter_2 = value;
}
inline static int32_t get_offset_of__unobservedTaskException_4() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ____unobservedTaskException_4)); }
inline EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * get__unobservedTaskException_4() const { return ____unobservedTaskException_4; }
inline EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC ** get_address_of__unobservedTaskException_4() { return &____unobservedTaskException_4; }
inline void set__unobservedTaskException_4(EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * value)
{
____unobservedTaskException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____unobservedTaskException_4), (void*)value);
}
inline static int32_t get_offset_of__unobservedTaskExceptionLockObject_5() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ____unobservedTaskExceptionLockObject_5)); }
inline RuntimeObject * get__unobservedTaskExceptionLockObject_5() const { return ____unobservedTaskExceptionLockObject_5; }
inline RuntimeObject ** get_address_of__unobservedTaskExceptionLockObject_5() { return &____unobservedTaskExceptionLockObject_5; }
inline void set__unobservedTaskExceptionLockObject_5(RuntimeObject * value)
{
____unobservedTaskExceptionLockObject_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____unobservedTaskExceptionLockObject_5), (void*)value);
}
};
// System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IntPtr System.Threading.WaitHandle::waitHandle
intptr_t ___waitHandle_3;
// Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle
SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * ___safeWaitHandle_4;
// System.Boolean System.Threading.WaitHandle::hasThreadAffinity
bool ___hasThreadAffinity_5;
public:
inline static int32_t get_offset_of_waitHandle_3() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___waitHandle_3)); }
inline intptr_t get_waitHandle_3() const { return ___waitHandle_3; }
inline intptr_t* get_address_of_waitHandle_3() { return &___waitHandle_3; }
inline void set_waitHandle_3(intptr_t value)
{
___waitHandle_3 = value;
}
inline static int32_t get_offset_of_safeWaitHandle_4() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___safeWaitHandle_4)); }
inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; }
inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; }
inline void set_safeWaitHandle_4(SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * value)
{
___safeWaitHandle_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___safeWaitHandle_4), (void*)value);
}
inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___hasThreadAffinity_5)); }
inline bool get_hasThreadAffinity_5() const { return ___hasThreadAffinity_5; }
inline bool* get_address_of_hasThreadAffinity_5() { return &___hasThreadAffinity_5; }
inline void set_hasThreadAffinity_5(bool value)
{
___hasThreadAffinity_5 = value;
}
};
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields
{
public:
// System.IntPtr System.Threading.WaitHandle::InvalidHandle
intptr_t ___InvalidHandle_10;
public:
inline static int32_t get_offset_of_InvalidHandle_10() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields, ___InvalidHandle_10)); }
inline intptr_t get_InvalidHandle_10() const { return ___InvalidHandle_10; }
inline intptr_t* get_address_of_InvalidHandle_10() { return &___InvalidHandle_10; }
inline void set_InvalidHandle_10(intptr_t value)
{
___InvalidHandle_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// System.TypeCode
struct TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6
{
public:
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6, ___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;
}
};
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
struct SafeHandleZeroOrMinusOneIsInvalid_t779A965C82098677DF1ED10A134DBCDEC8AACB8E : public SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383
{
public:
public:
};
// System.AttributeUsageAttribute
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.AttributeTargets System.AttributeUsageAttribute::m_attributeTarget
int32_t ___m_attributeTarget_0;
// System.Boolean System.AttributeUsageAttribute::m_allowMultiple
bool ___m_allowMultiple_1;
// System.Boolean System.AttributeUsageAttribute::m_inherited
bool ___m_inherited_2;
public:
inline static int32_t get_offset_of_m_attributeTarget_0() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_attributeTarget_0)); }
inline int32_t get_m_attributeTarget_0() const { return ___m_attributeTarget_0; }
inline int32_t* get_address_of_m_attributeTarget_0() { return &___m_attributeTarget_0; }
inline void set_m_attributeTarget_0(int32_t value)
{
___m_attributeTarget_0 = value;
}
inline static int32_t get_offset_of_m_allowMultiple_1() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_allowMultiple_1)); }
inline bool get_m_allowMultiple_1() const { return ___m_allowMultiple_1; }
inline bool* get_address_of_m_allowMultiple_1() { return &___m_allowMultiple_1; }
inline void set_m_allowMultiple_1(bool value)
{
___m_allowMultiple_1 = value;
}
inline static int32_t get_offset_of_m_inherited_2() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_inherited_2)); }
inline bool get_m_inherited_2() const { return ___m_inherited_2; }
inline bool* get_address_of_m_inherited_2() { return &___m_inherited_2; }
inline void set_m_inherited_2(bool value)
{
___m_inherited_2 = value;
}
};
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields
{
public:
// System.AttributeUsageAttribute System.AttributeUsageAttribute::Default
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___Default_3;
public:
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields, ___Default_3)); }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get_Default_3() const { return ___Default_3; }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of_Default_3() { return &___Default_3; }
inline void set_Default_3(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value)
{
___Default_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
}
};
// System.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768
{
public:
// System.Char System.ConsoleKeyInfo::_keyChar
Il2CppChar ____keyChar_0;
// System.ConsoleKey System.ConsoleKeyInfo::_key
int32_t ____key_1;
// System.ConsoleModifiers System.ConsoleKeyInfo::_mods
int32_t ____mods_2;
public:
inline static int32_t get_offset_of__keyChar_0() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____keyChar_0)); }
inline Il2CppChar get__keyChar_0() const { return ____keyChar_0; }
inline Il2CppChar* get_address_of__keyChar_0() { return &____keyChar_0; }
inline void set__keyChar_0(Il2CppChar value)
{
____keyChar_0 = value;
}
inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____key_1)); }
inline int32_t get__key_1() const { return ____key_1; }
inline int32_t* get_address_of__key_1() { return &____key_1; }
inline void set__key_1(int32_t value)
{
____key_1 = value;
}
inline static int32_t get_offset_of__mods_2() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____mods_2)); }
inline int32_t get__mods_2() const { return ____mods_2; }
inline int32_t* get_address_of__mods_2() { return &____mods_2; }
inline void set__mods_2(int32_t value)
{
____mods_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// Native definition for COM marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject
{
public:
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3;
// System.String System.Globalization.NumberFormatInfo::positiveSign
String_t* ___positiveSign_4;
// System.String System.Globalization.NumberFormatInfo::negativeSign
String_t* ___negativeSign_5;
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
String_t* ___numberDecimalSeparator_6;
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
String_t* ___numberGroupSeparator_7;
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
String_t* ___currencyGroupSeparator_8;
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
String_t* ___currencyDecimalSeparator_9;
// System.String System.Globalization.NumberFormatInfo::currencySymbol
String_t* ___currencySymbol_10;
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
String_t* ___ansiCurrencySymbol_11;
// System.String System.Globalization.NumberFormatInfo::nanSymbol
String_t* ___nanSymbol_12;
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
String_t* ___positiveInfinitySymbol_13;
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
String_t* ___negativeInfinitySymbol_14;
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
String_t* ___percentDecimalSeparator_15;
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
String_t* ___percentGroupSeparator_16;
// System.String System.Globalization.NumberFormatInfo::percentSymbol
String_t* ___percentSymbol_17;
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
String_t* ___perMilleSymbol_18;
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19;
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
int32_t ___m_dataItem_20;
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
int32_t ___numberDecimalDigits_21;
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
int32_t ___currencyDecimalDigits_22;
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
int32_t ___currencyPositivePattern_23;
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
int32_t ___currencyNegativePattern_24;
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
int32_t ___numberNegativePattern_25;
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
int32_t ___percentPositivePattern_26;
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
int32_t ___percentNegativePattern_27;
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
int32_t ___percentDecimalDigits_28;
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
int32_t ___digitSubstitution_29;
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
bool ___isReadOnly_30;
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
bool ___m_useUserOverride_31;
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
bool ___m_isInvariant_32;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
bool ___validForParseAsNumber_33;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
bool ___validForParseAsCurrency_34;
public:
inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; }
inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___numberGroupSizes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value);
}
inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; }
inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___currencyGroupSizes_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value);
}
inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; }
inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___percentGroupSizes_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value);
}
inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); }
inline String_t* get_positiveSign_4() const { return ___positiveSign_4; }
inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; }
inline void set_positiveSign_4(String_t* value)
{
___positiveSign_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value);
}
inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); }
inline String_t* get_negativeSign_5() const { return ___negativeSign_5; }
inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; }
inline void set_negativeSign_5(String_t* value)
{
___negativeSign_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value);
}
inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); }
inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; }
inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; }
inline void set_numberDecimalSeparator_6(String_t* value)
{
___numberDecimalSeparator_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value);
}
inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); }
inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; }
inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; }
inline void set_numberGroupSeparator_7(String_t* value)
{
___numberGroupSeparator_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value);
}
inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); }
inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; }
inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; }
inline void set_currencyGroupSeparator_8(String_t* value)
{
___currencyGroupSeparator_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value);
}
inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); }
inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; }
inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; }
inline void set_currencyDecimalSeparator_9(String_t* value)
{
___currencyDecimalSeparator_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value);
}
inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); }
inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; }
inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; }
inline void set_currencySymbol_10(String_t* value)
{
___currencySymbol_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value);
}
inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); }
inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; }
inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; }
inline void set_ansiCurrencySymbol_11(String_t* value)
{
___ansiCurrencySymbol_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value);
}
inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); }
inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; }
inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; }
inline void set_nanSymbol_12(String_t* value)
{
___nanSymbol_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value);
}
inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); }
inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; }
inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; }
inline void set_positiveInfinitySymbol_13(String_t* value)
{
___positiveInfinitySymbol_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value);
}
inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); }
inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; }
inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; }
inline void set_negativeInfinitySymbol_14(String_t* value)
{
___negativeInfinitySymbol_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value);
}
inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); }
inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; }
inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; }
inline void set_percentDecimalSeparator_15(String_t* value)
{
___percentDecimalSeparator_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value);
}
inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); }
inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; }
inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; }
inline void set_percentGroupSeparator_16(String_t* value)
{
___percentGroupSeparator_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value);
}
inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); }
inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; }
inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; }
inline void set_percentSymbol_17(String_t* value)
{
___percentSymbol_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value);
}
inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); }
inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; }
inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; }
inline void set_perMilleSymbol_18(String_t* value)
{
___perMilleSymbol_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value);
}
inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; }
inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___nativeDigits_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value);
}
inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); }
inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; }
inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; }
inline void set_m_dataItem_20(int32_t value)
{
___m_dataItem_20 = value;
}
inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); }
inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; }
inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; }
inline void set_numberDecimalDigits_21(int32_t value)
{
___numberDecimalDigits_21 = value;
}
inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); }
inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; }
inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; }
inline void set_currencyDecimalDigits_22(int32_t value)
{
___currencyDecimalDigits_22 = value;
}
inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); }
inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; }
inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; }
inline void set_currencyPositivePattern_23(int32_t value)
{
___currencyPositivePattern_23 = value;
}
inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); }
inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; }
inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; }
inline void set_currencyNegativePattern_24(int32_t value)
{
___currencyNegativePattern_24 = value;
}
inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); }
inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; }
inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; }
inline void set_numberNegativePattern_25(int32_t value)
{
___numberNegativePattern_25 = value;
}
inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); }
inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; }
inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; }
inline void set_percentPositivePattern_26(int32_t value)
{
___percentPositivePattern_26 = value;
}
inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); }
inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; }
inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; }
inline void set_percentNegativePattern_27(int32_t value)
{
___percentNegativePattern_27 = value;
}
inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); }
inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; }
inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; }
inline void set_percentDecimalDigits_28(int32_t value)
{
___percentDecimalDigits_28 = value;
}
inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); }
inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; }
inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; }
inline void set_digitSubstitution_29(int32_t value)
{
___digitSubstitution_29 = value;
}
inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); }
inline bool get_isReadOnly_30() const { return ___isReadOnly_30; }
inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; }
inline void set_isReadOnly_30(bool value)
{
___isReadOnly_30 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); }
inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; }
inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; }
inline void set_m_useUserOverride_31(bool value)
{
___m_useUserOverride_31 = value;
}
inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); }
inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; }
inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; }
inline void set_m_isInvariant_32(bool value)
{
___m_isInvariant_32 = value;
}
inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); }
inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; }
inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; }
inline void set_validForParseAsNumber_33(bool value)
{
___validForParseAsNumber_33 = value;
}
inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); }
inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; }
inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; }
inline void set_validForParseAsCurrency_34(bool value)
{
___validForParseAsCurrency_34 = value;
}
};
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields
{
public:
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0;
public:
inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; }
inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
___invariantInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value);
}
};
// System.IO.FileStream
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
// System.Byte[] System.IO.FileStream::buf
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_6;
// System.String System.IO.FileStream::name
String_t* ___name_7;
// Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle
SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * ___safeHandle_8;
// System.Boolean System.IO.FileStream::isExposed
bool ___isExposed_9;
// System.Int64 System.IO.FileStream::append_startpos
int64_t ___append_startpos_10;
// System.IO.FileAccess System.IO.FileStream::access
int32_t ___access_11;
// System.Boolean System.IO.FileStream::owner
bool ___owner_12;
// System.Boolean System.IO.FileStream::async
bool ___async_13;
// System.Boolean System.IO.FileStream::canseek
bool ___canseek_14;
// System.Boolean System.IO.FileStream::anonymous
bool ___anonymous_15;
// System.Boolean System.IO.FileStream::buf_dirty
bool ___buf_dirty_16;
// System.Int32 System.IO.FileStream::buf_size
int32_t ___buf_size_17;
// System.Int32 System.IO.FileStream::buf_length
int32_t ___buf_length_18;
// System.Int32 System.IO.FileStream::buf_offset
int32_t ___buf_offset_19;
// System.Int64 System.IO.FileStream::buf_start
int64_t ___buf_start_20;
public:
inline static int32_t get_offset_of_buf_6() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_6)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_6() const { return ___buf_6; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_6() { return &___buf_6; }
inline void set_buf_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buf_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buf_6), (void*)value);
}
inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___name_7)); }
inline String_t* get_name_7() const { return ___name_7; }
inline String_t** get_address_of_name_7() { return &___name_7; }
inline void set_name_7(String_t* value)
{
___name_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_7), (void*)value);
}
inline static int32_t get_offset_of_safeHandle_8() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___safeHandle_8)); }
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * get_safeHandle_8() const { return ___safeHandle_8; }
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB ** get_address_of_safeHandle_8() { return &___safeHandle_8; }
inline void set_safeHandle_8(SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * value)
{
___safeHandle_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___safeHandle_8), (void*)value);
}
inline static int32_t get_offset_of_isExposed_9() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___isExposed_9)); }
inline bool get_isExposed_9() const { return ___isExposed_9; }
inline bool* get_address_of_isExposed_9() { return &___isExposed_9; }
inline void set_isExposed_9(bool value)
{
___isExposed_9 = value;
}
inline static int32_t get_offset_of_append_startpos_10() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___append_startpos_10)); }
inline int64_t get_append_startpos_10() const { return ___append_startpos_10; }
inline int64_t* get_address_of_append_startpos_10() { return &___append_startpos_10; }
inline void set_append_startpos_10(int64_t value)
{
___append_startpos_10 = value;
}
inline static int32_t get_offset_of_access_11() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___access_11)); }
inline int32_t get_access_11() const { return ___access_11; }
inline int32_t* get_address_of_access_11() { return &___access_11; }
inline void set_access_11(int32_t value)
{
___access_11 = value;
}
inline static int32_t get_offset_of_owner_12() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___owner_12)); }
inline bool get_owner_12() const { return ___owner_12; }
inline bool* get_address_of_owner_12() { return &___owner_12; }
inline void set_owner_12(bool value)
{
___owner_12 = value;
}
inline static int32_t get_offset_of_async_13() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___async_13)); }
inline bool get_async_13() const { return ___async_13; }
inline bool* get_address_of_async_13() { return &___async_13; }
inline void set_async_13(bool value)
{
___async_13 = value;
}
inline static int32_t get_offset_of_canseek_14() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___canseek_14)); }
inline bool get_canseek_14() const { return ___canseek_14; }
inline bool* get_address_of_canseek_14() { return &___canseek_14; }
inline void set_canseek_14(bool value)
{
___canseek_14 = value;
}
inline static int32_t get_offset_of_anonymous_15() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___anonymous_15)); }
inline bool get_anonymous_15() const { return ___anonymous_15; }
inline bool* get_address_of_anonymous_15() { return &___anonymous_15; }
inline void set_anonymous_15(bool value)
{
___anonymous_15 = value;
}
inline static int32_t get_offset_of_buf_dirty_16() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_dirty_16)); }
inline bool get_buf_dirty_16() const { return ___buf_dirty_16; }
inline bool* get_address_of_buf_dirty_16() { return &___buf_dirty_16; }
inline void set_buf_dirty_16(bool value)
{
___buf_dirty_16 = value;
}
inline static int32_t get_offset_of_buf_size_17() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_size_17)); }
inline int32_t get_buf_size_17() const { return ___buf_size_17; }
inline int32_t* get_address_of_buf_size_17() { return &___buf_size_17; }
inline void set_buf_size_17(int32_t value)
{
___buf_size_17 = value;
}
inline static int32_t get_offset_of_buf_length_18() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_length_18)); }
inline int32_t get_buf_length_18() const { return ___buf_length_18; }
inline int32_t* get_address_of_buf_length_18() { return &___buf_length_18; }
inline void set_buf_length_18(int32_t value)
{
___buf_length_18 = value;
}
inline static int32_t get_offset_of_buf_offset_19() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_offset_19)); }
inline int32_t get_buf_offset_19() const { return ___buf_offset_19; }
inline int32_t* get_address_of_buf_offset_19() { return &___buf_offset_19; }
inline void set_buf_offset_19(int32_t value)
{
___buf_offset_19 = value;
}
inline static int32_t get_offset_of_buf_start_20() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_start_20)); }
inline int64_t get_buf_start_20() const { return ___buf_start_20; }
inline int64_t* get_address_of_buf_start_20() { return &___buf_start_20; }
inline void set_buf_start_20(int64_t value)
{
___buf_start_20 = value;
}
};
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields
{
public:
// System.Byte[] System.IO.FileStream::buf_recycle
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_recycle_4;
// System.Object System.IO.FileStream::buf_recycle_lock
RuntimeObject * ___buf_recycle_lock_5;
public:
inline static int32_t get_offset_of_buf_recycle_4() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_recycle_4() const { return ___buf_recycle_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_recycle_4() { return &___buf_recycle_4; }
inline void set_buf_recycle_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buf_recycle_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_4), (void*)value);
}
inline static int32_t get_offset_of_buf_recycle_lock_5() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_lock_5)); }
inline RuntimeObject * get_buf_recycle_lock_5() const { return ___buf_recycle_lock_5; }
inline RuntimeObject ** get_address_of_buf_recycle_lock_5() { return &___buf_recycle_lock_5; }
inline void set_buf_recycle_lock_5(RuntimeObject * value)
{
___buf_recycle_lock_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_lock_5), (void*)value);
}
};
// System.IO.StreamReader_NullStreamReader
struct NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 : public StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E
{
public:
public:
};
// System.IO.UnexceptionalStreamReader
struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA : public StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E
{
public:
public:
};
struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields
{
public:
// System.Boolean[] System.IO.UnexceptionalStreamReader::newline
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___newline_21;
// System.Char System.IO.UnexceptionalStreamReader::newlineChar
Il2CppChar ___newlineChar_22;
public:
inline static int32_t get_offset_of_newline_21() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields, ___newline_21)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get_newline_21() const { return ___newline_21; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of_newline_21() { return &___newline_21; }
inline void set_newline_21(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
___newline_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___newline_21), (void*)value);
}
inline static int32_t get_offset_of_newlineChar_22() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields, ___newlineChar_22)); }
inline Il2CppChar get_newlineChar_22() const { return ___newlineChar_22; }
inline Il2CppChar* get_address_of_newlineChar_22() { return &___newlineChar_22; }
inline void set_newlineChar_22(Il2CppChar value)
{
___newlineChar_22 = value;
}
};
// System.IO.UnexceptionalStreamWriter
struct UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB : public StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E
{
public:
public:
};
// System.IO.UnmanagedMemoryStream
struct UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
// System.Runtime.InteropServices.SafeBuffer System.IO.UnmanagedMemoryStream::_buffer
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * ____buffer_4;
// System.Byte* System.IO.UnmanagedMemoryStream::_mem
uint8_t* ____mem_5;
// System.Int64 System.IO.UnmanagedMemoryStream::_length
int64_t ____length_6;
// System.Int64 System.IO.UnmanagedMemoryStream::_capacity
int64_t ____capacity_7;
// System.Int64 System.IO.UnmanagedMemoryStream::_position
int64_t ____position_8;
// System.Int64 System.IO.UnmanagedMemoryStream::_offset
int64_t ____offset_9;
// System.IO.FileAccess System.IO.UnmanagedMemoryStream::_access
int32_t ____access_10;
// System.Boolean System.IO.UnmanagedMemoryStream::_isOpen
bool ____isOpen_11;
public:
inline static int32_t get_offset_of__buffer_4() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____buffer_4)); }
inline SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * get__buffer_4() const { return ____buffer_4; }
inline SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 ** get_address_of__buffer_4() { return &____buffer_4; }
inline void set__buffer_4(SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * value)
{
____buffer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_4), (void*)value);
}
inline static int32_t get_offset_of__mem_5() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____mem_5)); }
inline uint8_t* get__mem_5() const { return ____mem_5; }
inline uint8_t** get_address_of__mem_5() { return &____mem_5; }
inline void set__mem_5(uint8_t* value)
{
____mem_5 = value;
}
inline static int32_t get_offset_of__length_6() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____length_6)); }
inline int64_t get__length_6() const { return ____length_6; }
inline int64_t* get_address_of__length_6() { return &____length_6; }
inline void set__length_6(int64_t value)
{
____length_6 = value;
}
inline static int32_t get_offset_of__capacity_7() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____capacity_7)); }
inline int64_t get__capacity_7() const { return ____capacity_7; }
inline int64_t* get_address_of__capacity_7() { return &____capacity_7; }
inline void set__capacity_7(int64_t value)
{
____capacity_7 = value;
}
inline static int32_t get_offset_of__position_8() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____position_8)); }
inline int64_t get__position_8() const { return ____position_8; }
inline int64_t* get_address_of__position_8() { return &____position_8; }
inline void set__position_8(int64_t value)
{
____position_8 = value;
}
inline static int32_t get_offset_of__offset_9() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____offset_9)); }
inline int64_t get__offset_9() const { return ____offset_9; }
inline int64_t* get_address_of__offset_9() { return &____offset_9; }
inline void set__offset_9(int64_t value)
{
____offset_9 = value;
}
inline static int32_t get_offset_of__access_10() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____access_10)); }
inline int32_t get__access_10() const { return ____access_10; }
inline int32_t* get_address_of__access_10() { return &____access_10; }
inline void set__access_10(int32_t value)
{
____access_10 = value;
}
inline static int32_t get_offset_of__isOpen_11() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____isOpen_11)); }
inline bool get__isOpen_11() const { return ____isOpen_11; }
inline bool* get_address_of__isOpen_11() { return &____isOpen_11; }
inline void set__isOpen_11(bool value)
{
____isOpen_11 = value;
}
};
// System.InvalidTimeZoneException
struct InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 : public Exception_t
{
public:
public:
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.Reflection.MonoEvent
struct MonoEvent_t : public RuntimeEventInfo_tFBC185ED030EEA019664838A8404821CB711BC09
{
public:
// System.IntPtr System.Reflection.MonoEvent::klass
intptr_t ___klass_1;
// System.IntPtr System.Reflection.MonoEvent::handle
intptr_t ___handle_2;
public:
inline static int32_t get_offset_of_klass_1() { return static_cast<int32_t>(offsetof(MonoEvent_t, ___klass_1)); }
inline intptr_t get_klass_1() const { return ___klass_1; }
inline intptr_t* get_address_of_klass_1() { return &___klass_1; }
inline void set_klass_1(intptr_t value)
{
___klass_1 = value;
}
inline static int32_t get_offset_of_handle_2() { return static_cast<int32_t>(offsetof(MonoEvent_t, ___handle_2)); }
inline intptr_t get_handle_2() const { return ___handle_2; }
inline intptr_t* get_address_of_handle_2() { return &___handle_2; }
inline void set_handle_2(intptr_t value)
{
___handle_2 = value;
}
};
// System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F
{
public:
// System.Type System.Reflection.MonoPropertyInfo::parent
Type_t * ___parent_0;
// System.Type System.Reflection.MonoPropertyInfo::declaring_type
Type_t * ___declaring_type_1;
// System.String System.Reflection.MonoPropertyInfo::name
String_t* ___name_2;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::get_method
MethodInfo_t * ___get_method_3;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::set_method
MethodInfo_t * ___set_method_4;
// System.Reflection.PropertyAttributes System.Reflection.MonoPropertyInfo::attrs
int32_t ___attrs_5;
public:
inline static int32_t get_offset_of_parent_0() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___parent_0)); }
inline Type_t * get_parent_0() const { return ___parent_0; }
inline Type_t ** get_address_of_parent_0() { return &___parent_0; }
inline void set_parent_0(Type_t * value)
{
___parent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_0), (void*)value);
}
inline static int32_t get_offset_of_declaring_type_1() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___declaring_type_1)); }
inline Type_t * get_declaring_type_1() const { return ___declaring_type_1; }
inline Type_t ** get_address_of_declaring_type_1() { return &___declaring_type_1; }
inline void set_declaring_type_1(Type_t * value)
{
___declaring_type_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___declaring_type_1), (void*)value);
}
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___name_2)); }
inline String_t* get_name_2() const { return ___name_2; }
inline String_t** get_address_of_name_2() { return &___name_2; }
inline void set_name_2(String_t* value)
{
___name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_2), (void*)value);
}
inline static int32_t get_offset_of_get_method_3() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___get_method_3)); }
inline MethodInfo_t * get_get_method_3() const { return ___get_method_3; }
inline MethodInfo_t ** get_address_of_get_method_3() { return &___get_method_3; }
inline void set_get_method_3(MethodInfo_t * value)
{
___get_method_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___get_method_3), (void*)value);
}
inline static int32_t get_offset_of_set_method_4() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___set_method_4)); }
inline MethodInfo_t * get_set_method_4() const { return ___set_method_4; }
inline MethodInfo_t ** get_address_of_set_method_4() { return &___set_method_4; }
inline void set_set_method_4(MethodInfo_t * value)
{
___set_method_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___set_method_4), (void*)value);
}
inline static int32_t get_offset_of_attrs_5() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___attrs_5)); }
inline int32_t get_attrs_5() const { return ___attrs_5; }
inline int32_t* get_address_of_attrs_5() { return &___attrs_5; }
inline void set_attrs_5(int32_t value)
{
___attrs_5 = value;
}
};
// Native definition for P/Invoke marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_pinvoke
{
Type_t * ___parent_0;
Type_t * ___declaring_type_1;
char* ___name_2;
MethodInfo_t * ___get_method_3;
MethodInfo_t * ___set_method_4;
int32_t ___attrs_5;
};
// Native definition for COM marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_com
{
Type_t * ___parent_0;
Type_t * ___declaring_type_1;
Il2CppChar* ___name_2;
MethodInfo_t * ___get_method_3;
MethodInfo_t * ___set_method_4;
int32_t ___attrs_5;
};
// System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB : public RuntimeObject
{
public:
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t * ___ClassImpl_0;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject * ___DefaultValueImpl_1;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t * ___MemberImpl_2;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_3;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_4;
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_5;
// System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
public:
inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___ClassImpl_0)); }
inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
inline void set_ClassImpl_0(Type_t * value)
{
___ClassImpl_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value);
}
inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___DefaultValueImpl_1)); }
inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
inline void set_DefaultValueImpl_1(RuntimeObject * value)
{
___DefaultValueImpl_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value);
}
inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___MemberImpl_2)); }
inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
inline void set_MemberImpl_2(MemberInfo_t * value)
{
___MemberImpl_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value);
}
inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___NameImpl_3)); }
inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
inline void set_NameImpl_3(String_t* value)
{
___NameImpl_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value);
}
inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___PositionImpl_4)); }
inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
inline void set_PositionImpl_4(int32_t value)
{
___PositionImpl_4 = value;
}
inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___AttrsImpl_5)); }
inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
inline void set_AttrsImpl_5(int32_t value)
{
___AttrsImpl_5 = value;
}
inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___marshalAs_6)); }
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * get_marshalAs_6() const { return ___marshalAs_6; }
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
inline void set_marshalAs_6(MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * value)
{
___marshalAs_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
char* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
};
// Native definition for COM marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
Il2CppChar* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
};
// System.Reflection.RuntimeConstructorInfo
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D : public ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF
{
public:
public:
};
// System.Reflection.RuntimeMethodInfo
struct RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E : public MethodInfo_t
{
public:
public:
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034
{
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_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___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((void**)(&___m_additionalContext_0), (void*)value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Threading.EventWaitHandle
struct EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 : public WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6
{
public:
public:
};
// System.Threading.ExecutionContext
struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 : public RuntimeObject
{
public:
// System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____syncContext_0;
// System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContextNoFlow
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____syncContextNoFlow_1;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Threading.ExecutionContext::_logicalCallContext
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ____logicalCallContext_2;
// System.Runtime.Remoting.Messaging.IllogicalCallContext System.Threading.ExecutionContext::_illogicalCallContext
IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * ____illogicalCallContext_3;
// System.Threading.ExecutionContext_Flags System.Threading.ExecutionContext::_flags
int32_t ____flags_4;
// System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object> System.Threading.ExecutionContext::_localValues
Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * ____localValues_5;
// System.Collections.Generic.List`1<System.Threading.IAsyncLocal> System.Threading.ExecutionContext::_localChangeNotifications
List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * ____localChangeNotifications_6;
public:
inline static int32_t get_offset_of__syncContext_0() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____syncContext_0)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__syncContext_0() const { return ____syncContext_0; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__syncContext_0() { return &____syncContext_0; }
inline void set__syncContext_0(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____syncContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncContext_0), (void*)value);
}
inline static int32_t get_offset_of__syncContextNoFlow_1() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____syncContextNoFlow_1)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__syncContextNoFlow_1() const { return ____syncContextNoFlow_1; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__syncContextNoFlow_1() { return &____syncContextNoFlow_1; }
inline void set__syncContextNoFlow_1(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____syncContextNoFlow_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncContextNoFlow_1), (void*)value);
}
inline static int32_t get_offset_of__logicalCallContext_2() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____logicalCallContext_2)); }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get__logicalCallContext_2() const { return ____logicalCallContext_2; }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of__logicalCallContext_2() { return &____logicalCallContext_2; }
inline void set__logicalCallContext_2(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
{
____logicalCallContext_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____logicalCallContext_2), (void*)value);
}
inline static int32_t get_offset_of__illogicalCallContext_3() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____illogicalCallContext_3)); }
inline IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * get__illogicalCallContext_3() const { return ____illogicalCallContext_3; }
inline IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 ** get_address_of__illogicalCallContext_3() { return &____illogicalCallContext_3; }
inline void set__illogicalCallContext_3(IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * value)
{
____illogicalCallContext_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____illogicalCallContext_3), (void*)value);
}
inline static int32_t get_offset_of__flags_4() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____flags_4)); }
inline int32_t get__flags_4() const { return ____flags_4; }
inline int32_t* get_address_of__flags_4() { return &____flags_4; }
inline void set__flags_4(int32_t value)
{
____flags_4 = value;
}
inline static int32_t get_offset_of__localValues_5() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____localValues_5)); }
inline Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * get__localValues_5() const { return ____localValues_5; }
inline Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A ** get_address_of__localValues_5() { return &____localValues_5; }
inline void set__localValues_5(Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * value)
{
____localValues_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localValues_5), (void*)value);
}
inline static int32_t get_offset_of__localChangeNotifications_6() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____localChangeNotifications_6)); }
inline List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * get__localChangeNotifications_6() const { return ____localChangeNotifications_6; }
inline List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB ** get_address_of__localChangeNotifications_6() { return &____localChangeNotifications_6; }
inline void set__localChangeNotifications_6(List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * value)
{
____localChangeNotifications_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localChangeNotifications_6), (void*)value);
}
};
struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_StaticFields
{
public:
// System.Threading.ExecutionContext System.Threading.ExecutionContext::s_dummyDefaultEC
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___s_dummyDefaultEC_7;
public:
inline static int32_t get_offset_of_s_dummyDefaultEC_7() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_StaticFields, ___s_dummyDefaultEC_7)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_s_dummyDefaultEC_7() const { return ___s_dummyDefaultEC_7; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_s_dummyDefaultEC_7() { return &___s_dummyDefaultEC_7; }
inline void set_s_dummyDefaultEC_7(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
___s_dummyDefaultEC_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_dummyDefaultEC_7), (void*)value);
}
};
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87, ___m_result_22)); }
inline int32_t get_m_result_22() const { return ___m_result_22; }
inline int32_t* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(int32_t value)
{
___m_result_22 = value;
}
};
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value);
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___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_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Threading.Tasks.Task,System.Object>
struct Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
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_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.ArithmeticException
struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Func`1<System.Threading.ManualResetEvent>
struct Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<System.Threading.SemaphoreSlim>
struct Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Int32>
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.String>
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF : public MulticastDelegate_t
{
public:
public:
};
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.IO.IOException::_maybeFullPath
String_t* ____maybeFullPath_17;
public:
inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____maybeFullPath_17)); }
inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; }
inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; }
inline void set__maybeFullPath_17(String_t* value)
{
____maybeFullPath_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value);
}
};
// System.IO.PinnedBufferMemoryStream
struct PinnedBufferMemoryStream_t2B64686A5B889DF38F012632D00C933752FE5A25 : public UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E
{
public:
// System.Byte[] System.IO.PinnedBufferMemoryStream::_array
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____array_12;
// System.Runtime.InteropServices.GCHandle System.IO.PinnedBufferMemoryStream::_pinningHandle
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ____pinningHandle_13;
public:
inline static int32_t get_offset_of__array_12() { return static_cast<int32_t>(offsetof(PinnedBufferMemoryStream_t2B64686A5B889DF38F012632D00C933752FE5A25, ____array_12)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__array_12() const { return ____array_12; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__array_12() { return &____array_12; }
inline void set__array_12(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____array_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_12), (void*)value);
}
inline static int32_t get_offset_of__pinningHandle_13() { return static_cast<int32_t>(offsetof(PinnedBufferMemoryStream_t2B64686A5B889DF38F012632D00C933752FE5A25, ____pinningHandle_13)); }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get__pinningHandle_13() const { return ____pinningHandle_13; }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of__pinningHandle_13() { return &____pinningHandle_13; }
inline void set__pinningHandle_13(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
____pinningHandle_13 = value;
}
};
// System.IO.Stream_ReadWriteTask
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 : public Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87
{
public:
// System.Boolean System.IO.Stream_ReadWriteTask::_isRead
bool ____isRead_25;
// System.IO.Stream System.IO.Stream_ReadWriteTask::_stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ____stream_26;
// System.Byte[] System.IO.Stream_ReadWriteTask::_buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____buffer_27;
// System.Int32 System.IO.Stream_ReadWriteTask::_offset
int32_t ____offset_28;
// System.Int32 System.IO.Stream_ReadWriteTask::_count
int32_t ____count_29;
// System.AsyncCallback System.IO.Stream_ReadWriteTask::_callback
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ____callback_30;
// System.Threading.ExecutionContext System.IO.Stream_ReadWriteTask::_context
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ____context_31;
public:
inline static int32_t get_offset_of__isRead_25() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80, ____isRead_25)); }
inline bool get__isRead_25() const { return ____isRead_25; }
inline bool* get_address_of__isRead_25() { return &____isRead_25; }
inline void set__isRead_25(bool value)
{
____isRead_25 = value;
}
inline static int32_t get_offset_of__stream_26() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80, ____stream_26)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get__stream_26() const { return ____stream_26; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of__stream_26() { return &____stream_26; }
inline void set__stream_26(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
____stream_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stream_26), (void*)value);
}
inline static int32_t get_offset_of__buffer_27() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80, ____buffer_27)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__buffer_27() const { return ____buffer_27; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__buffer_27() { return &____buffer_27; }
inline void set__buffer_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____buffer_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_27), (void*)value);
}
inline static int32_t get_offset_of__offset_28() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80, ____offset_28)); }
inline int32_t get__offset_28() const { return ____offset_28; }
inline int32_t* get_address_of__offset_28() { return &____offset_28; }
inline void set__offset_28(int32_t value)
{
____offset_28 = value;
}
inline static int32_t get_offset_of__count_29() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80, ____count_29)); }
inline int32_t get__count_29() const { return ____count_29; }
inline int32_t* get_address_of__count_29() { return &____count_29; }
inline void set__count_29(int32_t value)
{
____count_29 = value;
}
inline static int32_t get_offset_of__callback_30() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80, ____callback_30)); }
inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * get__callback_30() const { return ____callback_30; }
inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 ** get_address_of__callback_30() { return &____callback_30; }
inline void set__callback_30(AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * value)
{
____callback_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callback_30), (void*)value);
}
inline static int32_t get_offset_of__context_31() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80, ____context_31)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get__context_31() const { return ____context_31; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of__context_31() { return &____context_31; }
inline void set__context_31(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
____context_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_31), (void*)value);
}
};
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_StaticFields
{
public:
// System.Threading.ContextCallback System.IO.Stream_ReadWriteTask::s_invokeAsyncCallback
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_invokeAsyncCallback_32;
public:
inline static int32_t get_offset_of_s_invokeAsyncCallback_32() { return static_cast<int32_t>(offsetof(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_StaticFields, ___s_invokeAsyncCallback_32)); }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_invokeAsyncCallback_32() const { return ___s_invokeAsyncCallback_32; }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_invokeAsyncCallback_32() { return &___s_invokeAsyncCallback_32; }
inline void set_s_invokeAsyncCallback_32(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value)
{
___s_invokeAsyncCallback_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_invokeAsyncCallback_32), (void*)value);
}
};
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidCastException
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidProgramException
struct InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.MemberAccessException
struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.MulticastNotSupportedException
struct MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NullConsoleDriver
struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D : public RuntimeObject
{
public:
public:
};
struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields
{
public:
// System.ConsoleKeyInfo System.NullConsoleDriver::EmptyConsoleKeyInfo
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___EmptyConsoleKeyInfo_0;
public:
inline static int32_t get_offset_of_EmptyConsoleKeyInfo_0() { return static_cast<int32_t>(offsetof(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields, ___EmptyConsoleKeyInfo_0)); }
inline ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 get_EmptyConsoleKeyInfo_0() const { return ___EmptyConsoleKeyInfo_0; }
inline ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * get_address_of_EmptyConsoleKeyInfo_0() { return &___EmptyConsoleKeyInfo_0; }
inline void set_EmptyConsoleKeyInfo_0(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 value)
{
___EmptyConsoleKeyInfo_0 = value;
}
};
// System.NullReferenceException
struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.OperationCanceledException
struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ____cancellationToken_17;
public:
inline static int32_t get_offset_of__cancellationToken_17() { return static_cast<int32_t>(offsetof(OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90, ____cancellationToken_17)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get__cancellationToken_17() const { return ____cancellationToken_17; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of__cancellationToken_17() { return &____cancellationToken_17; }
inline void set__cancellationToken_17(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
____cancellationToken_17 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____cancellationToken_17))->___m_source_0), (void*)NULL);
}
};
// System.Reflection.MonoCMethod
struct MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 : public RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D
{
public:
// System.IntPtr System.Reflection.MonoCMethod::mhandle
intptr_t ___mhandle_2;
// System.String System.Reflection.MonoCMethod::name
String_t* ___name_3;
// System.Type System.Reflection.MonoCMethod::reftype
Type_t * ___reftype_4;
public:
inline static int32_t get_offset_of_mhandle_2() { return static_cast<int32_t>(offsetof(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61, ___mhandle_2)); }
inline intptr_t get_mhandle_2() const { return ___mhandle_2; }
inline intptr_t* get_address_of_mhandle_2() { return &___mhandle_2; }
inline void set_mhandle_2(intptr_t value)
{
___mhandle_2 = value;
}
inline static int32_t get_offset_of_name_3() { return static_cast<int32_t>(offsetof(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61, ___name_3)); }
inline String_t* get_name_3() const { return ___name_3; }
inline String_t** get_address_of_name_3() { return &___name_3; }
inline void set_name_3(String_t* value)
{
___name_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_3), (void*)value);
}
inline static int32_t get_offset_of_reftype_4() { return static_cast<int32_t>(offsetof(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61, ___reftype_4)); }
inline Type_t * get_reftype_4() const { return ___reftype_4; }
inline Type_t ** get_address_of_reftype_4() { return &___reftype_4; }
inline void set_reftype_4(Type_t * value)
{
___reftype_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reftype_4), (void*)value);
}
};
// System.Reflection.MonoMethod
struct MonoMethod_t : public RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E
{
public:
// System.IntPtr System.Reflection.MonoMethod::mhandle
intptr_t ___mhandle_0;
// System.String System.Reflection.MonoMethod::name
String_t* ___name_1;
// System.Type System.Reflection.MonoMethod::reftype
Type_t * ___reftype_2;
public:
inline static int32_t get_offset_of_mhandle_0() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___mhandle_0)); }
inline intptr_t get_mhandle_0() const { return ___mhandle_0; }
inline intptr_t* get_address_of_mhandle_0() { return &___mhandle_0; }
inline void set_mhandle_0(intptr_t value)
{
___mhandle_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value);
}
inline static int32_t get_offset_of_reftype_2() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___reftype_2)); }
inline Type_t * get_reftype_2() const { return ___reftype_2; }
inline Type_t ** get_address_of_reftype_2() { return &___reftype_2; }
inline void set_reftype_2(Type_t * value)
{
___reftype_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reftype_2), (void*)value);
}
};
// System.Reflection.MonoProperty
struct MonoProperty_t : public RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4
{
public:
// System.IntPtr System.Reflection.MonoProperty::klass
intptr_t ___klass_0;
// System.IntPtr System.Reflection.MonoProperty::prop
intptr_t ___prop_1;
// System.Reflection.MonoPropertyInfo System.Reflection.MonoProperty::info
MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F ___info_2;
// System.Reflection.PInfo System.Reflection.MonoProperty::cached
int32_t ___cached_3;
// System.Reflection.MonoProperty_GetterAdapter System.Reflection.MonoProperty::cached_getter
GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * ___cached_getter_4;
public:
inline static int32_t get_offset_of_klass_0() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___klass_0)); }
inline intptr_t get_klass_0() const { return ___klass_0; }
inline intptr_t* get_address_of_klass_0() { return &___klass_0; }
inline void set_klass_0(intptr_t value)
{
___klass_0 = value;
}
inline static int32_t get_offset_of_prop_1() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___prop_1)); }
inline intptr_t get_prop_1() const { return ___prop_1; }
inline intptr_t* get_address_of_prop_1() { return &___prop_1; }
inline void set_prop_1(intptr_t value)
{
___prop_1 = value;
}
inline static int32_t get_offset_of_info_2() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___info_2)); }
inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F get_info_2() const { return ___info_2; }
inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F * get_address_of_info_2() { return &___info_2; }
inline void set_info_2(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F value)
{
___info_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___parent_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___declaring_type_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___name_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___get_method_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___set_method_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_cached_3() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_3)); }
inline int32_t get_cached_3() const { return ___cached_3; }
inline int32_t* get_address_of_cached_3() { return &___cached_3; }
inline void set_cached_3(int32_t value)
{
___cached_3 = value;
}
inline static int32_t get_offset_of_cached_getter_4() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_getter_4)); }
inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * get_cached_getter_4() const { return ___cached_getter_4; }
inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 ** get_address_of_cached_getter_4() { return &___cached_getter_4; }
inline void set_cached_getter_4(GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * value)
{
___cached_getter_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_getter_4), (void*)value);
}
};
// System.Reflection.TypeInfo
struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t
{
public:
public:
};
// System.Runtime.InteropServices.SafeBuffer
struct SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 : public SafeHandleZeroOrMinusOneIsInvalid_t779A965C82098677DF1ED10A134DBCDEC8AACB8E
{
public:
// System.Boolean System.Runtime.InteropServices.SafeBuffer::inited
bool ___inited_6;
public:
inline static int32_t get_offset_of_inited_6() { return static_cast<int32_t>(offsetof(SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208, ___inited_6)); }
inline bool get_inited_6() const { return ___inited_6; }
inline bool* get_address_of_inited_6() { return &___inited_6; }
inline void set_inited_6(bool value)
{
___inited_6 = value;
}
};
// System.Security.SecurityException
struct SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.Security.SecurityException::permissionState
String_t* ___permissionState_17;
public:
inline static int32_t get_offset_of_permissionState_17() { return static_cast<int32_t>(offsetof(SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5, ___permissionState_17)); }
inline String_t* get_permissionState_17() const { return ___permissionState_17; }
inline String_t** get_address_of_permissionState_17() { return &___permissionState_17; }
inline void set_permissionState_17(String_t* value)
{
___permissionState_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___permissionState_17), (void*)value);
}
};
// System.Threading.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 : public MulticastDelegate_t
{
public:
public:
};
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 : public EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98
{
public:
public:
};
// System.UnauthorizedAccessException
struct UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
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_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_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_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
// System.IO.DirectoryNotFoundException
struct DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
// System.IO.DriveNotFoundException
struct DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
// System.IO.EndOfStreamException
struct EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
// System.IO.FileNotFoundException
struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
// System.String System.IO.FileNotFoundException::_fileName
String_t* ____fileName_18;
// System.String System.IO.FileNotFoundException::_fusionLog
String_t* ____fusionLog_19;
public:
inline static int32_t get_offset_of__fileName_18() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fileName_18)); }
inline String_t* get__fileName_18() const { return ____fileName_18; }
inline String_t** get_address_of__fileName_18() { return &____fileName_18; }
inline void set__fileName_18(String_t* value)
{
____fileName_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fileName_18), (void*)value);
}
inline static int32_t get_offset_of__fusionLog_19() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fusionLog_19)); }
inline String_t* get__fusionLog_19() const { return ____fusionLog_19; }
inline String_t** get_address_of__fusionLog_19() { return &____fusionLog_19; }
inline void set__fusionLog_19(String_t* value)
{
____fusionLog_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fusionLog_19), (void*)value);
}
};
// System.IO.PathTooLongException
struct PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
// System.MethodAccessException
struct MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0
{
public:
public:
};
// System.MissingMemberException
struct MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0
{
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_tD06FDBE8142446525DF1C40351D523A228373821* ___Signature_19;
public:
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___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((void**)(&___ClassName_17), (void*)value);
}
inline static int32_t get_offset_of_MemberName_18() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___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((void**)(&___MemberName_18), (void*)value);
}
inline static int32_t get_offset_of_Signature_19() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___Signature_19)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Signature_19() const { return ___Signature_19; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Signature_19() { return &___Signature_19; }
inline void set_Signature_19(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Signature_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Signature_19), (void*)value);
}
};
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A : public InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1
{
public:
// System.String System.ObjectDisposedException::objectName
String_t* ___objectName_17;
public:
inline static int32_t get_offset_of_objectName_17() { return static_cast<int32_t>(offsetof(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A, ___objectName_17)); }
inline String_t* get_objectName_17() const { return ___objectName_17; }
inline String_t** get_address_of_objectName_17() { return &___objectName_17; }
inline void set_objectName_17(String_t* value)
{
___objectName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectName_17), (void*)value);
}
};
// System.OverflowException
struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269
{
public:
public:
};
// System.Reflection.CustomAttributeFormatException
struct CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D : public FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC
{
public:
public:
};
// System.RuntimeType
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC
{
public:
// System.MonoTypeInfo System.RuntimeType::type_info
MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26;
// System.Object System.RuntimeType::GenericCache
RuntimeObject * ___GenericCache_27;
// System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor
RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28;
public:
inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; }
inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value)
{
___type_info_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value);
}
inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); }
inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; }
inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; }
inline void set_GenericCache_27(RuntimeObject * value)
{
___GenericCache_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value);
}
inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; }
inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value)
{
___m_serializationCtor_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value);
}
};
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields
{
public:
// System.RuntimeType System.RuntimeType::ValueType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10;
// System.RuntimeType System.RuntimeType::EnumType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11;
// System.RuntimeType System.RuntimeType::ObjectType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12;
// System.RuntimeType System.RuntimeType::StringType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13;
// System.RuntimeType System.RuntimeType::DelegateType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14;
// System.Type[] System.RuntimeType::s_SICtorParamTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15;
// System.RuntimeType System.RuntimeType::s_typedRef
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25;
public:
inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; }
inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ValueType_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value);
}
inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; }
inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___EnumType_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value);
}
inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; }
inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ObjectType_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value);
}
inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; }
inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___StringType_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value);
}
inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; }
inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___DelegateType_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value);
}
inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; }
inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___s_SICtorParamTypes_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value);
}
inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; }
inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___s_typedRef_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value);
}
};
// System.MissingFieldException
struct MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 : public MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD
{
public:
public:
};
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 : public MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD
{
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_t7D33DFD3009E4F19BE4DD0967F04D3878F348498, ___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((void**)(&___signature_20), (void*)value);
}
};
// System.MonoType
struct MonoType_t : public RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : 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.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_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, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.LocalDataStoreElement[]
struct LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * m_Items[1];
public:
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA ** 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, LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Double[]
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray
{
public:
ALIGN_FIELD (8) double m_Items[1];
public:
inline double GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline double* 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, double value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline double GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
{
m_Items[index] = value;
}
};
// System.Attribute[]
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * m_Items[1];
public:
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** 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, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.CustomAttributeData[]
struct CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * m_Items[1];
public:
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 ** 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, CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * m_Items[1];
public:
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** 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, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_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, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_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, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : 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;
}
};
IL2CPP_EXTERN_C void Delegate_t_marshal_pinvoke(const Delegate_t& unmarshaled, Delegate_t_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void Delegate_t_marshal_pinvoke_back(const Delegate_t_marshaled_pinvoke& marshaled, Delegate_t& unmarshaled);
IL2CPP_EXTERN_C void Delegate_t_marshal_pinvoke_cleanup(Delegate_t_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void Delegate_t_marshal_com(const Delegate_t& unmarshaled, Delegate_t_marshaled_com& marshaled);
IL2CPP_EXTERN_C void Delegate_t_marshal_com_back(const Delegate_t_marshaled_com& marshaled, Delegate_t& unmarshaled);
IL2CPP_EXTERN_C void Delegate_t_marshal_com_cleanup(Delegate_t_marshaled_com& marshaled);
// System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_gshared (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Func`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyInitializer_EnsureInitialized_TisRuntimeObject_m7B0E3E50F3847BD7E9A7254C24D6DAA8994F6CC7_gshared (RuntimeObject ** ___target0, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___valueFactory1, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_gshared (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::GetAwaiter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_gshared (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, const RuntimeMethod* method);
// System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mB83B0C1C61CED5B54803D334FFC7187881D32EFB_gshared (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Tuple`2<T1,T2> System.Tuple::Create<System.Object,System.Object>(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * Tuple_Create_TisRuntimeObject_TisRuntimeObject_m0E4A5F787779B362E52ED19238D9850158D62836_gshared (RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method);
// T1 System.Tuple`2<System.Object,System.Object>::get_Item1()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m6510C633C5CE5469F032825306A482F311F89A20_gshared_inline (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * __this, const RuntimeMethod* method);
// T2 System.Tuple`2<System.Object,System.Object>::get_Item2()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_mF200874169D9957B0B84C426263AF8D9AC06F165_gshared_inline (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___function0, RuntimeObject * ___state1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method);
// System.Void System.IO.SearchResultHandler`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SearchResultHandler_1__ctor_m4699E42225BBEE44986AE8C44D37A72CF396166E_gshared (SearchResultHandler_1_t8F3FC374A9C3B6ACC965D7728D3926838F62AA4A * __this, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// T1 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item1()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_mB9F3262AABCA302F85A50469C7EC4E7CB4524028_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// T2 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item2()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_mE1BF4632C63BD8DBF8A578455582CC2F21FD4002_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// T3 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item3()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_mA5222F04F99CBA901A4A5B11CCE3D5DA7E8277C3_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// T4 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item4()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item4_mBC1FC8F28A1BFFE2AB0AFD164DE6305FE98EDA69_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// T1 System.Tuple`2<System.Object,System.Char>::get_Item1()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_mA483C126556F793CB20A05976E11B4A331D96AA9_gshared_inline (Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000 * __this, const RuntimeMethod* method);
// T2 System.Tuple`2<System.Object,System.Char>::get_Item2()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar Tuple_2_get_Item2_m41639BC03C1D91747BE1B3493BAC59AB4B6469AF_gshared_inline (Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m65245601C668347780A2F6D1A8D7EEC7D79AD673_gshared (RuntimeObject* ___dictionary0, RuntimeObject * ___key1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Object>(T[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * Array_AsReadOnly_TisRuntimeObject_m5128285E46B9807817464A6C1048C00E81022EFF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Int32 System.Array::LastIndexOf<System.Object>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Array::Resize<System.Char>(T[]&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** ___array0, int32_t ___newSize1, const RuntimeMethod* method);
// System.Int32 System.String::IndexOfAny(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_m1AD95EBF79BB7FBFC7FC30DA9B1B8015BC3ABA6D (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___anyOf0, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method);
// System.Void System.IO.IOException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175 (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Exception::SetErrorCode(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method);
// System.Void System.IO.IOException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_m4F1FE1C9D6332E1CB7A2EA5BE40D7B311E0DD85B (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.IO.UnmanagedMemoryStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.GCHandle::.ctor(System.Object,System.Runtime.InteropServices.GCHandleType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle__ctor_m778D815E149206CA068A7A97DD0E585D4D19B083 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, RuntimeObject * ___value0, int32_t ___type1, const RuntimeMethod* method);
// System.Void System.IO.UnmanagedMemoryStream::Initialize(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t* ___pointer0, int64_t ___length1, int64_t ___capacity2, int32_t ___access3, bool ___skipSecurityCheck4, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.GCHandle::Free()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle_Free_m392ECC9B1058E35A0FD5CF21A65F212873FC26F0 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, const RuntimeMethod* method);
// System.Void System.IO.UnmanagedMemoryStream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Dispose_mA8E1A981BC7EFDFAC1B4C4E95D1CAB823EA284CA (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Func`1<System.Threading.SemaphoreSlim>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_m1C192A08B472664A240EE20F093AB3D29A555817 (Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_gshared)(__this, ___object0, ___method1, method);
}
// T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.SemaphoreSlim>(T&,System.Func`1<T>)
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * LazyInitializer_EnsureInitialized_TisSemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_mFA528DFBF5A5DDCFC6A4A4556DA57DAD76196C67 (SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** ___target0, Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * ___valueFactory1, const RuntimeMethod* method)
{
return (( SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * (*) (SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 **, Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 *, const RuntimeMethod*))LazyInitializer_EnsureInitialized_TisRuntimeObject_m7B0E3E50F3847BD7E9A7254C24D6DAA8994F6CC7_gshared)(___target0, ___valueFactory1, method);
}
// System.Void System.GC::SuppressFinalize(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.IAsyncResult System.IO.Stream::BeginReadInternal(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BeginReadInternal_m60C7782571CF8C69B885E18BFF34B35B3DC300FC (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, bool ___serializeAsynchronously5, const RuntimeMethod* method);
// System.Void System.IO.__Error::ReadNotSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696 (const RuntimeMethod* method);
// System.IAsyncResult System.IO.Stream::BlockingBeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BlockingBeginRead_mACB9EF43064AEBB8CF5582CC4416CCD85BBA0C3F (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method);
// System.Threading.SemaphoreSlim System.IO.Stream::EnsureAsyncActiveSemaphoreInitialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * Stream_EnsureAsyncActiveSemaphoreInitialized_m874CD5FC48757D8810E4DD57DADD850A338BDED2 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task System.Threading.SemaphoreSlim::WaitAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * SemaphoreSlim_WaitAsync_mEEDF1F56EF96E2276622B97F79A28D194169B9F6 (SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * __this, const RuntimeMethod* method);
// System.Void System.Threading.SemaphoreSlim::Wait()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SemaphoreSlim_Wait_mE6DB20AC7CFF0C340A498D74D8A014566BE6DC5C (SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * __this, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917 (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.IO.Stream/ReadWriteTask::.ctor(System.Boolean,System.Func`2<System.Object,System.Int32>,System.Object,System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.AsyncCallback)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ReadWriteTask__ctor_mE4914C482924D77EE547ACF41C3309E33F1DE830 (ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * __this, bool ___isRead0, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___function1, RuntimeObject * ___state2, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream3, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer4, int32_t ___offset5, int32_t ___count6, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback7, const RuntimeMethod* method);
// System.Void System.IO.Stream::RunReadWriteTaskWhenReady(System.Threading.Tasks.Task,System.IO.Stream/ReadWriteTask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_RunReadWriteTaskWhenReady_m42E40F1AB2522AC449FF9332FD46A220A6CDE147 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___asyncWaiter0, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ___readWriteTask1, const RuntimeMethod* method);
// System.Void System.IO.Stream::RunReadWriteTask(System.IO.Stream/ReadWriteTask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ___readWriteTask0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Int32 System.IO.Stream::BlockingEndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stream_BlockingEndRead_mB7BC9561AA27BEED2AB5758DA29B876DD8AB99F1 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::GetAwaiter()
inline TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3 (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method)
{
return (( TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_gshared)(__this, method);
}
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult()
inline int32_t TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9 (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_gshared)(__this, method);
}
// System.Int32 System.Threading.SemaphoreSlim::Release()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SemaphoreSlim_Release_m963242914A622613DD41C740400F7D40C85BD169 (SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * __this, const RuntimeMethod* method);
// System.IAsyncResult System.IO.Stream::BeginWriteInternal(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BeginWriteInternal_mF9557BA2F5E6556C7CB979F46D2F3DA2A5C43668 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, bool ___serializeAsynchronously5, const RuntimeMethod* method);
// System.Void System.IO.__Error::WriteNotSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B (const RuntimeMethod* method);
// System.IAsyncResult System.IO.Stream::BlockingBeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BlockingBeginWrite_m4D04E97AFDD77BE540B297163DF825E948E3C00C (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method);
// System.Void System.Action`2<System.Threading.Tasks.Task,System.Object>::.ctor(System.Object,System.IntPtr)
inline void Action_2__ctor_m58B3F295A5FFFD735D3E3C72214C7CF4476317E5 (Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mB83B0C1C61CED5B54803D334FFC7187881D32EFB_gshared)(__this, ___object0, ___method1, method);
}
// System.Tuple`2<T1,T2> System.Tuple::Create<System.IO.Stream,System.IO.Stream/ReadWriteTask>(T1,T2)
inline Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * Tuple_Create_TisStream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_TisReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_m22133E1CA323ACE1BF3C077F34ADDD2FA852EB70 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___item10, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ___item21, const RuntimeMethod* method)
{
return (( Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * (*) (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *, const RuntimeMethod*))Tuple_Create_TisRuntimeObject_TisRuntimeObject_m0E4A5F787779B362E52ED19238D9850158D62836_gshared)(___item10, ___item21, method);
}
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::get_Default()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_inline (const RuntimeMethod* method);
// System.Threading.Tasks.Task System.Threading.Tasks.Task::ContinueWith(System.Action`2<System.Threading.Tasks.Task,System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_ContinueWith_m77623659683CA3E09520D79D60D8A04214E4CE5A (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * ___continuationAction0, RuntimeObject * ___state1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, int32_t ___continuationOptions3, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler4, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::ScheduleAndStart(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_ScheduleAndStart_m7A3334C89BD4B47370D0A3CAE575EA54CCA01AEF (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___needsProtection0, const RuntimeMethod* method);
// System.Void System.IO.Stream::BlockingEndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_BlockingEndWrite_m95DB7F725ECAC7820975AAEF9801C834FFB92BF5 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method);
// System.Void System.IO.Stream/SynchronousAsyncResult::.ctor(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult__ctor_mD70656983C10103E00C79A6738468C5211F3A31C (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, int32_t ___bytesRead0, RuntimeObject * ___asyncStateObject1, const RuntimeMethod* method);
// System.Void System.IO.Stream/SynchronousAsyncResult::.ctor(System.Exception,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult__ctor_m50A54079C49E00F187CB5AB20A28AD3609B86C0C (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, Exception_t * ___ex0, RuntimeObject * ___asyncStateObject1, bool ___isWrite2, const RuntimeMethod* method);
// System.Void System.AsyncCallback::Invoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject* ___ar0, const RuntimeMethod* method);
// System.Int32 System.IO.Stream/SynchronousAsyncResult::EndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SynchronousAsyncResult_EndRead_m995E037B3AB2E9DE4D215833CA7E81B60D869924 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method);
// System.Void System.IO.Stream/SynchronousAsyncResult::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult__ctor_mFE74FD77B0CE7BB1D2717CF98831E50D4ACF0A8D (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, RuntimeObject * ___asyncStateObject0, const RuntimeMethod* method);
// System.Void System.IO.Stream/SynchronousAsyncResult::EndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult_EndWrite_mF1F332953F2F8651DEFCBC8EB0616A759504F2B7 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method);
// System.Void System.MarshalByRefObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method);
// System.Void System.IO.Stream/NullStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream__ctor_m33B984F0C9CBADFF8D35BEAAECE7E441D0E30E95 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method);
// System.Void System.IO.Stream/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mC41B9842076FF52762F4BF89FAEA2440BF9C56E2 (U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * __this, const RuntimeMethod* method);
// System.Void System.Threading.SemaphoreSlim::.ctor(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SemaphoreSlim__ctor_mE9DFD50375754E2D73606021F0E4F103E946C50E (SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * __this, int32_t ___initialCount0, int32_t ___maxCount1, const RuntimeMethod* method);
// System.Threading.Tasks.Task System.Threading.Tasks.Task::get_InternalCurrent()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline (const RuntimeMethod* method);
// System.Void System.IO.Stream/ReadWriteTask::ClearBeginState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadWriteTask_ClearBeginState_m3AF099742BF157939A0CD5DB9AE7472669850836 (ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * __this, const RuntimeMethod* method);
// T1 System.Tuple`2<System.IO.Stream,System.IO.Stream/ReadWriteTask>::get_Item1()
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Tuple_2_get_Item1_m45E38FD03787621623378924C1ABCFCD968A8A3B_inline (Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * __this, const RuntimeMethod* method)
{
return (( Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * (*) (Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 *, const RuntimeMethod*))Tuple_2_get_Item1_m6510C633C5CE5469F032825306A482F311F89A20_gshared_inline)(__this, method);
}
// T2 System.Tuple`2<System.IO.Stream,System.IO.Stream/ReadWriteTask>::get_Item2()
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * Tuple_2_get_Item2_mEF37E72592F83D030DE5F895B47DAB113C382796_inline (Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * __this, const RuntimeMethod* method)
{
return (( ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * (*) (Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 *, const RuntimeMethod*))Tuple_2_get_Item2_mF200874169D9957B0B84C426263AF8D9AC06F165_gshared_inline)(__this, method);
}
// System.Void System.IO.Stream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method);
// System.Threading.CancellationToken System.Threading.CancellationToken::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB CancellationToken_get_None_m008D4CF5E11172703A6D781A3C30E6E537004F1D (const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)
inline void Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___function0, RuntimeObject * ___state1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method)
{
(( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *, RuntimeObject *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, const RuntimeMethod*))Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_gshared)(__this, ___function0, ___state1, ___cancellationToken2, ___creationOptions3, method);
}
// System.Threading.ExecutionContext System.Threading.ExecutionContext::Capture(System.Threading.StackCrawlMark&,System.Threading.ExecutionContext/CaptureOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ExecutionContext_Capture_m03E9840F580CC8E82725D5969D6132B0ABADD5F2 (int32_t* ___stackMark0, int32_t ___options1, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_AddCompletionAction_m211F80F6F259D8F8CBB408A901101B91923800C1 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, RuntimeObject* ___action0, const RuntimeMethod* method);
// System.Void System.Threading.ContextCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallback__ctor_m079F8FC3EE21C47D9FDD09FD90C14BDD34539493 (ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Threading.ExecutionContext::Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionContext_Run_mFF76DDA6501D993EB4A4B79EFDAF1F6476920945 (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___executionContext0, ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___callback1, RuntimeObject * ___state2, bool ___preserveSyncCtx3, const RuntimeMethod* method);
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Runtime.ExceptionServices.ExceptionDispatchInfo::Capture(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23 (Exception_t * ___source0, const RuntimeMethod* method);
// System.Void System.Func`1<System.Threading.ManualResetEvent>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_mE6951FF55B0AC677D1C5F9DF997ACD1C0F0F2917 (Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_gshared)(__this, ___object0, ___method1, method);
}
// T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.ManualResetEvent>(T&,System.Func`1<T>)
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * LazyInitializer_EnsureInitialized_TisManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_m58CEB8458EDB19860D84BC4C322F94D2124C4014 (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** ___target0, Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * ___valueFactory1, const RuntimeMethod* method)
{
return (( ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * (*) (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 **, Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A *, const RuntimeMethod*))LazyInitializer_EnsureInitialized_TisRuntimeObject_m7B0E3E50F3847BD7E9A7254C24D6DAA8994F6CC7_gshared)(___target0, ___valueFactory1, method);
}
// System.Void System.Runtime.ExceptionServices.ExceptionDispatchInfo::Throw()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionDispatchInfo_Throw_m9630C06EF8D7CDF5BD5DC76144CD98C4D9E8D26F (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method);
// System.Void System.IO.__Error::WrongAsyncResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909 (const RuntimeMethod* method);
// System.Void System.IO.__Error::EndReadCalledTwice()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA (const RuntimeMethod* method);
// System.Void System.IO.Stream/SynchronousAsyncResult::ThrowIfError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult_ThrowIfError_m5653FF1252A2B4D89D31B8BDBC2209EB5E2D8068 (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, const RuntimeMethod* method);
// System.Void System.IO.__Error::EndWriteCalledTwice()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C (const RuntimeMethod* method);
// System.Void System.IO.Stream/SynchronousAsyncResult/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m7DEF29BD0A5C24262F91CAFDD7054A27BA6C2671 (U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * __this, const RuntimeMethod* method);
// System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1 (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * __this, bool ___initialState0, const RuntimeMethod* method);
// System.Void System.IO.TextReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m7160F36EA1D6A04F27A7C4622B74AB10BCB70980 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, bool ___detectEncodingFromByteOrderMarks1, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_UTF8()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method);
// System.Int32 System.IO.StreamReader::get_DefaultBufferSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_get_DefaultBufferSize_mEB8626E984849BF091BF0D2140C91E2812D7872E (const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, bool ___leaveOpen4, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::Init(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_Init_m6CD01243AB3564C5E8B45E9823041C09D359FC9B (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, bool ___leaveOpen4, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m0B7DB61C7C0ED190FB707A317A134A83EDFE3FAC (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, bool ___detectEncodingFromByteOrderMarks1, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m247DA0D4A2DDF5CE686C089B75F8989C4F601AFB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, bool ___checkHost4, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
// System.String System.IO.Path::GetFileName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E (String_t* ___path0, const RuntimeMethod* method);
// System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.String,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileStream__ctor_m4818E4AD857A0B285557E2B41E582D2237F49209 (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * __this, String_t* ___path0, int32_t ___mode1, int32_t ___access2, int32_t ___share3, int32_t ___bufferSize4, int32_t ___options5, String_t* ___msgPath6, bool ___bFromProxy7, bool ___useLongPath8, bool ___checkHost9, const RuntimeMethod* method);
// System.Boolean System.IO.StreamReader::get_LeaveOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamReader_get_LeaveOpen_m666D02CB6FF3AD8E1072257A272729F7F179F359 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Void System.IO.TextReader::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextReader_Dispose_m0DF461F7F5A52AD0C5ACB65BC5DD69106975AD0A (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.IO.__Error::ReaderClosed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717 (const RuntimeMethod* method);
// System.Void System.IO.StreamReader::CheckAsyncTaskInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Int32 System.IO.StreamReader::ReadBuffer(System.Char[],System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_ReadBuffer_m0D2875C8C884E4625AA8DE3233975661463F178D (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___userBuffer0, int32_t ___userOffset1, int32_t ___desiredChars2, bool* ___readToUserBuffer3, const RuntimeMethod* method);
// System.Boolean System.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8 (StringBuilder_t * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___value0, int32_t ___startIndex1, int32_t ___charCount2, const RuntimeMethod* method);
// System.Void System.Text.UnicodeEncoding::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnicodeEncoding__ctor_m008B9B92D414A56B533624021525F53B2A73BD10 (UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 * __this, bool ___bigEndian0, bool ___byteOrderMark1, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::CompressBuffer(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, int32_t ___n0, const RuntimeMethod* method);
// System.Void System.Text.UTF32Encoding::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF32Encoding__ctor_m29D20C03874A58220973F79277050D62F8CA2475 (UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A * __this, bool ___bigEndian0, bool ___byteOrderMark1, const RuntimeMethod* method);
// System.Boolean System.IO.StreamReader::IsPreamble()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamReader_IsPreamble_m8F4635F47125EC8042D1EE51A476C7E8B64855A8 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::DetectEncoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_DetectEncoding_m5626B39F6A0FD6DC107B6A63B0E4840230FFCF14 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
// System.Void System.IO.StreamReader/NullStreamReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mFF4CF43617782C8B2EA8CED3C45571DD6B3AF7C6 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::Init(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_Init_mC5734A273A032305AF7F33DDB1BC2988C44D188C (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method);
// System.Void System.Text.UTF8Encoding::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * __this, bool ___encoderShouldEmitUTF8Identifier0, bool ___throwOnInvalidBytes1, const RuntimeMethod* method);
// System.Void System.Threading.Thread::MemoryBarrier()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_MemoryBarrier_mAB9F6B8404ACCE0D17BEDBD656782FEDDBC9FB8A (const RuntimeMethod* method);
// System.Void System.IO.TextWriter::.ctor(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
// System.Text.Encoding System.IO.StreamWriter::get_UTF8NoBOM()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8 (const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, int32_t ___bufferSize2, bool ___leaveOpen3, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Init(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___streamArg0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encodingArg1, int32_t ___bufferSize2, bool ___shouldLeaveOpen3, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m15EC5B8866FB9D0124CBE8E2C56AF4E5448E7FFD (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, bool ___checkHost4, const RuntimeMethod* method);
// System.IO.Stream System.IO.StreamWriter::CreateFile(System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6 (String_t* ___path0, bool ___append1, bool ___checkHost2, const RuntimeMethod* method);
// System.Boolean System.IO.StreamWriter::get_LeaveOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::CheckAsyncTaskInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Flush(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, bool ___flushStream0, bool ___flushEncoder1, const RuntimeMethod* method);
// System.Void System.IO.TextWriter::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Dispose_m53C25DF618C5F0D730B0E3EB96D056C301B66DFD (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.IO.__Error::WriterClosed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F (const RuntimeMethod* method);
// System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661 (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.Void System.IO.SearchResultHandler`1<System.String>::.ctor()
inline void SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32 (SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C * __this, const RuntimeMethod* method)
{
(( void (*) (SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C *, const RuntimeMethod*))SearchResultHandler_1__ctor_m4699E42225BBEE44986AE8C44D37A72CF396166E_gshared)(__this, method);
}
// Microsoft.Win32.Win32Native/WIN32_FIND_DATA System.IO.SearchResult::get_FindData()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE_inline (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method);
// System.Boolean System.IO.FileSystemEnumerableHelpers::IsFile(Microsoft.Win32.Win32Native/WIN32_FIND_DATA)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FileSystemEnumerableHelpers_IsFile_m31E8694B440156340BA6E5C5F9639E506990BFBD (WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * ___data0, const RuntimeMethod* method);
// System.Boolean System.IO.FileSystemEnumerableHelpers::IsDir(Microsoft.Win32.Win32Native/WIN32_FIND_DATA)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FileSystemEnumerableHelpers_IsDir_mE9E04617BCC965AA8BE4AAE0E53E8283D9BE02C0 (WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * ___data0, const RuntimeMethod* method);
// System.String System.IO.SearchResult::get_UserPath()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* SearchResult_get_UserPath_mB57A92D43162037A6A6F8AA91903F33C6D14B636_inline (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int32 System.Text.StringBuilder::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Void System.IO.TextReader/SyncTextReader::.ctor(System.IO.TextReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___t0, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427 (Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.IO.TextReader/NullTextReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6 (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, const RuntimeMethod* method);
// System.Void System.IO.TextReader/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mD3FA2AB29BCF10A7A60EC4C6780195BE8F6F7C3A (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, const RuntimeMethod* method);
// T1 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item1()
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87_inline (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item1_mB9F3262AABCA302F85A50469C7EC4E7CB4524028_gshared_inline)(__this, method);
}
// T2 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item2()
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B_inline (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item2_mE1BF4632C63BD8DBF8A578455582CC2F21FD4002_gshared_inline)(__this, method);
}
// T3 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item3()
inline int32_t Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA_inline (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item3_mA5222F04F99CBA901A4A5B11CCE3D5DA7E8277C3_gshared_inline)(__this, method);
}
// T4 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item4()
inline int32_t Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F_inline (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item4_mBC1FC8F28A1BFFE2AB0AFD164DE6305FE98EDA69_gshared_inline)(__this, method);
}
// System.String System.Environment::get_NewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method);
// System.String System.IO.TextWriter::get_InitialNewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26 (const RuntimeMethod* method);
// System.Char[] System.String::ToCharArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6 (String_t* __this, const RuntimeMethod* method);
// System.Threading.Thread System.Threading.Thread::get_CurrentThread()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E (const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Threading.Thread::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method);
// System.Void System.IO.TextWriter/SyncTextWriter::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___t0, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method);
// System.Void System.IO.TextWriter/NullTextWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510 (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.IO.TextWriter/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4BFB82C1926D0A1E0F29F2793EEF2848A79883C6 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, const RuntimeMethod* method);
// T1 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item1()
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_inline (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * __this, const RuntimeMethod* method)
{
return (( TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * (*) (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *, const RuntimeMethod*))Tuple_2_get_Item1_mA483C126556F793CB20A05976E11B4A331D96AA9_gshared_inline)(__this, method);
}
// T2 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item2()
inline Il2CppChar Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_inline (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * __this, const RuntimeMethod* method)
{
return (( Il2CppChar (*) (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *, const RuntimeMethod*))Tuple_2_get_Item2_m41639BC03C1D91747BE1B3493BAC59AB4B6469AF_gshared_inline)(__this, method);
}
// T1 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item1()
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_inline (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * __this, const RuntimeMethod* method)
{
return (( TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * (*) (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *, const RuntimeMethod*))Tuple_2_get_Item1_m6510C633C5CE5469F032825306A482F311F89A20_gshared_inline)(__this, method);
}
// T2 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item2()
inline String_t* Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_inline (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *, const RuntimeMethod*))Tuple_2_get_Item2_mF200874169D9957B0B84C426263AF8D9AC06F165_gshared_inline)(__this, method);
}
// T1 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item1()
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_inline (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item1_mB9F3262AABCA302F85A50469C7EC4E7CB4524028_gshared_inline)(__this, method);
}
// T2 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item2()
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_inline (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item2_mE1BF4632C63BD8DBF8A578455582CC2F21FD4002_gshared_inline)(__this, method);
}
// T3 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item3()
inline int32_t Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_inline (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item3_mA5222F04F99CBA901A4A5B11CCE3D5DA7E8277C3_gshared_inline)(__this, method);
}
// T4 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item4()
inline int32_t Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_inline (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item4_mBC1FC8F28A1BFFE2AB0AFD164DE6305FE98EDA69_gshared_inline)(__this, method);
}
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method);
// System.Int32 System.IO.StreamReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_Peek_m8C914AF78EEF625B3DD817688FF76FCA1BA62E50 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Int32 System.IO.StreamReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_Read_m04DCEDFC21FBC69F0E795164739D799FEA69562E (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Boolean System.IO.UnexceptionalStreamReader::CheckEOL(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, Il2CppChar ___current0, const RuntimeMethod* method);
// System.String System.IO.StreamReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StreamReader_ReadLine_m6F43A4370F3F23B1882543F76DAF5AA30681E477 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.String System.IO.StreamReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StreamReader_ReadToEnd_m5AB87727EA94EEC0577189AFBC4EE9FAAA22C2FB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Flush_m326E76BE755A73CCBCD715166925FC9C5ADF8FB5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_mF8B514CF8D521D390B0F1F9950851B358560F623 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_m71F168D89F89E740DF5E16D48C58624712CA808A (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_mDBCA4E464A543DFD00B0619943BA0C7F15DB55FE (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.IO.Stream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_mC0F23B2D31DC853B12A10F0233173A278FF21B05 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.IO.__Error::StreamIsClosed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37 (const RuntimeMethod* method);
// System.Int64 System.Threading.Interlocked::Read(System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB (int64_t* ___location0, const RuntimeMethod* method);
// System.Int64 System.Threading.Interlocked::Exchange(System.Int64&,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB (int64_t* ___location10, int64_t ___value1, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::PrepareConstrainedRegions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027 (const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.SafeBuffer::AcquirePointer(System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6 (SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * __this, uint8_t** ___pointer0, const RuntimeMethod* method);
// System.Void System.Buffer::Memcpy(System.Byte[],System.Int32,System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___dest0, int32_t ___destIndex1, uint8_t* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.SafeBuffer::ReleasePointer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D (SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * __this, const RuntimeMethod* method);
// System.Void System.Buffer::ZeroMemory(System.Byte*,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC (uint8_t* ___src0, int64_t ___len1, const RuntimeMethod* method);
// System.Void System.Buffer::Memcpy(System.Byte*,System.Int32,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3 (uint8_t* ___pDest0, int32_t ___destIndex1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method);
// System.Void System.IO.EndOfStreamException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EndOfStreamException__ctor_m6C04807A20CAA05C763225A3EC2F79B756FFBAC6 (EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.ObjectDisposedException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * __this, String_t* ___objectName0, String_t* ___message1, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method);
// System.Boolean System.IO.PathInternal::IsPartiallyQualified(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PathInternal_IsPartiallyQualified_m04BC87968B46BEDDAB66FA4773F8B146E7F70E68 (String_t* ___path0, const RuntimeMethod* method);
// System.Boolean System.IO.Path::IsDirectorySeparator(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Path_IsDirectorySeparator_m12C353D093EE8E9EA5C1B818004DCABB40B6F832 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.String System.IO.__Error::GetDisplayablePath(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105 (String_t* ___path0, bool ___isInvalidPath1, const RuntimeMethod* method);
// System.Void System.IO.FileNotFoundException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileNotFoundException__ctor_mA72DAA77008E903BC162A8D32FDE7F874B27E858 (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method);
// System.Void System.IO.FileNotFoundException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98 (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * __this, String_t* ___message0, String_t* ___fileName1, const RuntimeMethod* method);
// System.Void System.IO.DirectoryNotFoundException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryNotFoundException__ctor_mFE363B5843BABE6F4801ABC79B7643C5BED4797B (DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.UnauthorizedAccessException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnauthorizedAccessException__ctor_mFE97E700E2ADBC5A46A6A43642CFA2FCB8C0BA85 (UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 Microsoft.Win32.Win32Native::MakeHRFromErrorCode(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720 (int32_t ___errorCode0, const RuntimeMethod* method);
// System.Void System.IO.IOException::.ctor(System.String,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, String_t* ___message0, int32_t ___hresult1, String_t* ___maybeFullPath2, const RuntimeMethod* method);
// System.Void System.IO.PathTooLongException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathTooLongException__ctor_m245E1CA7C92C2F6406440660F4AF765583E024C8 (PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IO.DriveNotFoundException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DriveNotFoundException__ctor_m507AB9B313C4AF69DABD394073D0DC9A952EDF1B (DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C * __this, String_t* ___message0, const RuntimeMethod* method);
// System.String Microsoft.Win32.Win32Native::GetMessage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Win32Native_GetMessage_m68D6D40DD33D7F2FF30B7CE600BADBEB4EE41B87 (int32_t ___hr0, const RuntimeMethod* method);
// System.Void System.OperationCanceledException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperationCanceledException__ctor_m2B04DF548109DAA7069F6108990F53588B5C5CA4 (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Int32 System.Int16::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C (int16_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Int16::CompareTo(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE (int16_t* __this, int16_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int16::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024 (int16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int16::Equals(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B (int16_t* __this, int16_t ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int16::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798 (int16_t* __this, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9 (const RuntimeMethod* method);
// System.String System.Number::FormatInt32(System.Int32,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984 (int32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.String System.Int16::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5 (int16_t* __this, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A (RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
// System.String System.Int16::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Int16::ToString(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420 (int16_t* __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info1, const RuntimeMethod* method);
// System.String System.Int16::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A (int16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.String System.Number::FormatUInt32(System.UInt32,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE (uint32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(System.Globalization.NumberStyles)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3 (int32_t ___style0, const RuntimeMethod* method);
// System.Int32 System.Number::ParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.Void System.OverflowException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.OverflowException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731 (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, const RuntimeMethod* method);
// System.TypeCode System.Int16::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585 (int16_t* __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m06007FC94CD66F1273731E389C6C7DC24B02B505 (int16_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int16::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Convert::ToChar(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F (int16_t ___value0, const RuntimeMethod* method);
// System.Char System.Int16::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF (int16_t ___value0, const RuntimeMethod* method);
// System.SByte System.Int16::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807 (int16_t ___value0, const RuntimeMethod* method);
// System.Byte System.Int16::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Int16::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF (int16_t ___value0, const RuntimeMethod* method);
// System.UInt16 System.Int16::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mB0AA47EFAB81D1DBA0C2153ECBD0E19DE230BE2C (int16_t ___value0, const RuntimeMethod* method);
// System.Int32 System.Int16::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8 (int16_t ___value0, const RuntimeMethod* method);
// System.UInt32 System.Int16::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Convert::ToInt64(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m2261BB84FA0B10E657E622163945B4ED9D3C2D11 (int16_t ___value0, const RuntimeMethod* method);
// System.Int64 System.Int16::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A (int16_t ___value0, const RuntimeMethod* method);
// System.UInt64 System.Int16::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m419FC798EE52D4A39F7719FA060CC198EF94F2B0 (int16_t ___value0, const RuntimeMethod* method);
// System.Single System.Int16::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m9FFE6DC9FE9E17546E9681806ED4613D582A2D6C (int16_t ___value0, const RuntimeMethod* method);
// System.Double System.Int16::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mD9355C906353F7E283024449544616979EF4823E (int16_t ___value0, const RuntimeMethod* method);
// System.Decimal System.Int16::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Void System.InvalidCastException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method);
// System.DateTime System.Int16::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method);
// System.Object System.Int16::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3 (int16_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int32 System.Int32::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2 (int32_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B (int32_t* __this, int32_t ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A (int32_t* __this, const RuntimeMethod* method);
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02 (int32_t* __this, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Boolean System.Number::TryParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, int32_t* ___result3, const RuntimeMethod* method);
// System.TypeCode System.Int32::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601 (int32_t* __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m30441623AE02A6C619CB77CD91B6A6199B90BC94 (int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int32::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Convert::ToChar(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245 (int32_t ___value0, const RuntimeMethod* method);
// System.Char System.Int32::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34 (int32_t ___value0, const RuntimeMethod* method);
// System.SByte System.Int32::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64 (int32_t ___value0, const RuntimeMethod* method);
// System.Byte System.Int32::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3 (int32_t ___value0, const RuntimeMethod* method);
// System.Int16 System.Int32::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7 (int32_t ___value0, const RuntimeMethod* method);
// System.UInt16 System.Int32::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Int32::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41 (int32_t ___value0, const RuntimeMethod* method);
// System.UInt32 System.Int32::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Convert::ToInt64(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m61697621C2BC4FDADFE1742507EBA7B3C1D76475 (int32_t ___value0, const RuntimeMethod* method);
// System.Int64 System.Int32::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772 (int32_t ___value0, const RuntimeMethod* method);
// System.UInt64 System.Int32::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m4D6202BB2F75526A5E01DA49A35D26007C76A21C (int32_t ___value0, const RuntimeMethod* method);
// System.Single System.Int32::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mAE52754212671CD42E2C67BD9ABCE18DAEE443CC (int32_t ___value0, const RuntimeMethod* method);
// System.Double System.Int32::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m707FBD6E1B6D6F7F71D1D492C5F5AE981B561DEF (int32_t ___value0, const RuntimeMethod* method);
// System.Decimal System.Int32::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.DateTime System.Int32::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Int32::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C (int32_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int32 System.Int64::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190 (int64_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Int64::CompareTo(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2 (int64_t* __this, int64_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int64::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C (int64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int64::Equals(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F (int64_t* __this, int64_t ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int64::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4 (int64_t* __this, const RuntimeMethod* method);
// System.String System.Number::FormatInt64(System.Int64,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB (int64_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.String System.Int64::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C (int64_t* __this, const RuntimeMethod* method);
// System.String System.Int64::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Int64::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int64 System.Number::ParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method);
// System.Boolean System.Number::TryParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, int64_t* ___result3, const RuntimeMethod* method);
// System.TypeCode System.Int64::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911 (int64_t* __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m6EB15B3E1D9AC269065DB500E880A81AA42AF5E7 (int64_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int64::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Convert::ToChar(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29 (int64_t ___value0, const RuntimeMethod* method);
// System.Char System.Int64::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767 (int64_t ___value0, const RuntimeMethod* method);
// System.SByte System.Int64::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935 (int64_t ___value0, const RuntimeMethod* method);
// System.Byte System.Int64::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF (int64_t ___value0, const RuntimeMethod* method);
// System.Int16 System.Int64::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7 (int64_t ___value0, const RuntimeMethod* method);
// System.UInt16 System.Int64::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B (int64_t ___value0, const RuntimeMethod* method);
// System.Int32 System.Int64::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4 (int64_t ___value0, const RuntimeMethod* method);
// System.UInt32 System.Int64::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Int64::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098 (int64_t ___value0, const RuntimeMethod* method);
// System.UInt64 System.Int64::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m3A854A75BE60D077E283A444B4EEF3ED6E984F9A (int64_t ___value0, const RuntimeMethod* method);
// System.Single System.Int64::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m5948DF15E5B6EAE3A3D443BB5DAB6D6BF5D4E785 (int64_t ___value0, const RuntimeMethod* method);
// System.Double System.Int64::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mECE2EDC28EBA5F0B88702C15D0A3A1DABEE8D6A1 (int64_t ___value0, const RuntimeMethod* method);
// System.Decimal System.Int64::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.DateTime System.Int64::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Int64::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5 (int64_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6 (intptr_t* __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD (intptr_t* __this, int64_t ___value0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Void*)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method);
// System.Int64 System.Runtime.Serialization.SerializationInfo::GetInt64(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t SerializationInfo_GetInt64_mD9FB62CFBEC90A544B95912AB9FA24377AC17E54 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Int64 System.IntPtr::ToInt64()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B (intptr_t* __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mCCC2918D05840247B2A72A834940BD36AD7F5DE4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int64_t ___value1, const RuntimeMethod* method);
// System.Void System.IntPtr::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816 (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Boolean System.IntPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.IntPtr::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A (intptr_t* __this, const RuntimeMethod* method);
// System.Int32 System.IntPtr::get_Size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929 (const RuntimeMethod* method);
// System.Void* System.IntPtr::ToPointer()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void* IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65_inline (intptr_t* __this, const RuntimeMethod* method);
// System.String System.IntPtr::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF (intptr_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.IntPtr::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C (intptr_t* __this, const RuntimeMethod* method);
// System.Boolean System.IntPtr::IsNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4 (intptr_t* __this, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1 (Exception_t * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method);
// System.Void System.LocalDataStoreMgr::DeleteLocalDataStore(System.LocalDataStore)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method);
// System.Void System.LocalDataStoreMgr::ValidateSlot(System.LocalDataStoreSlot)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method);
// System.Int32 System.LocalDataStoreSlot::get_Slot()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79_inline (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method);
// System.Int64 System.LocalDataStoreElement::get_Cookie()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88_inline (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method);
// System.Int64 System.LocalDataStoreSlot::get_Cookie()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5_inline (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method);
// System.Object System.LocalDataStoreElement::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStoreElement_get_Value_m5822C535F5DD63A7F1BA4EFA424D82450C972A16_inline (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method);
// System.LocalDataStoreElement System.LocalDataStore::PopulateElement(System.LocalDataStoreSlot)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method);
// System.Void System.LocalDataStoreElement::set_Value(System.Object)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void LocalDataStoreElement_set_Value_mA97C37A5E8F4E76276D025D604DCBAD1400570B3_inline (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Int32 System.LocalDataStoreMgr::GetSlotTableLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocalDataStoreMgr_GetSlotTableLength_mE37679FF2EE2BFE95424C5494E5159275D0EE920 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
// System.Void System.LocalDataStoreElement::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreElement__ctor_mA1B8C77848E6785BB0D83054DB673A85DC185034 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, int64_t ___cookie0, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.LocalDataStore::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore_Dispose_m2B25B7ACE605E5F0366A6063B5B9978C8656D935 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, const RuntimeMethod* method);
// System.Void System.LocalDataStore::.ctor(System.LocalDataStoreMgr,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___InitialCapacity1, const RuntimeMethod* method);
// System.Void System.LocalDataStoreHolder::.ctor(System.LocalDataStore)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreHolder__ctor_m87A5B4E0605928E76A804DF75AE5EFBAE417589A (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.LocalDataStore>::Add(T)
inline void List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1<System.LocalDataStore>::Remove(T)
inline bool List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE *, const RuntimeMethod*))List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared)(__this, ___item0, method);
}
// System.Void System.LocalDataStoreSlot::.ctor(System.LocalDataStoreMgr,System.Int32,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreSlot__ctor_mB1C1592C2941720C53B2F21CBBB875667FF23D89 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___slot1, int64_t ___cookie2, const RuntimeMethod* method);
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateDataSlot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Add(TKey,TValue)
inline void Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * __this, String_t* ___key0, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *, String_t*, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method);
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.String,System.LocalDataStoreSlot>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey)
inline LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE (RuntimeObject* ___dictionary0, String_t* ___key1, const RuntimeMethod* method)
{
return (( LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * (*) (RuntimeObject*, String_t*, const RuntimeMethod*))CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m65245601C668347780A2F6D1A8D7EEC7D79AD673_gshared)(___dictionary0, ___key1, method);
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Remove(TKey)
inline bool Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1 (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared)(__this, ___key0, method);
}
// T System.Collections.Generic.List`1<System.LocalDataStore>::get_Item(System.Int32)
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537_inline (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Void System.LocalDataStore::FreeData(System.Int32,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore_FreeData_m7DC3DC695D322B7F2ED47F357447D2790821B10C (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.LocalDataStore>::get_Count()
inline int32_t List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572_inline (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.LocalDataStoreMgr System.LocalDataStoreSlot::get_Manager()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * LocalDataStoreSlot_get_Manager_m75417D224C02173EC33CFD9BF494E82A70B21EDD_inline (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.LocalDataStore>::.ctor()
inline void List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::.ctor()
inline void Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8 (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method);
}
// System.Void System.LocalDataStoreMgr::FreeDataSlot(System.Int32,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method);
// System.Int32 System.Math::AbsHelper(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802 (int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Single::IsNaN(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB (float ___f0, const RuntimeMethod* method);
// System.Boolean System.Double::IsNaN(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method);
// System.Boolean System.Double::IsPositiveInfinity(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsPositiveInfinity_m45537C58204CD5AA96F39D42F4CB8DADA128C77B (double ___d0, const RuntimeMethod* method);
// System.Void System.MemberAccessException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.MemberAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.MissingMemberException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.MissingMemberException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.String System.MissingMemberException::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method);
// System.String System.MissingMemberException::FormatSignature(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___signature0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.Void System.MissingMemberException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method);
// System.String System.Exception::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD (Exception_t * __this, const RuntimeMethod* method);
// System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, Type_t * ___type2, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Equality(System.Reflection.Assembly,System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316 (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Inequality(System.Reflection.Assembly,System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.Object[] System.Reflection.MonoMethod::GetPseudoCustomAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoMethod_GetPseudoCustomAttributes_mE46E69D39791BDF9B87A893B6EEB17B75754DE31 (MonoMethod_t * __this, const RuntimeMethod* method);
// System.Object[] System.Reflection.FieldInfo::GetPseudoCustomAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* FieldInfo_GetPseudoCustomAttributes_m54546ADF590198164EE361638CFBDA4CFC733994 (FieldInfo_t * __this, const RuntimeMethod* method);
// System.Object[] System.Reflection.ParameterInfo::GetPseudoCustomAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ParameterInfo_GetPseudoCustomAttributes_m6A16386472EB8A4B1448EB11CC4B987F06281E22 (ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * __this, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Reflection.TypeAttributes System.Type::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_get_Attributes_m8B229CC7A4DDE25E0EEB1A9F09FC61C499A72163 (Type_t * __this, const RuntimeMethod* method);
// System.Void System.SerializableAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializableAttribute__ctor_m2EEE0A59C8AE32A075D806DDBB0D41EB85F049E8 (SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F * __this, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.ComImportAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComImportAttribute__ctor_m372EC8A68CB0323D4453D465DD612CDE9B595678 (ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 * __this, const RuntimeMethod* method);
// System.Boolean System.MonoCustomAttrs::IsUserCattrProvider(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesInternal(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___pseudoAttrs2, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9 (RuntimeObject* ___obj0, Type_t * ___attributeType1, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesBase(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inheritedOnly2, const RuntimeMethod* method);
// System.Void System.Reflection.CustomAttributeFormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F (Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method);
// System.Reflection.ICustomAttributeProvider System.MonoCustomAttrs::GetBase(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F (RuntimeObject* ___obj0, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsSealed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A (Type_t * __this, const RuntimeMethod* method);
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsage(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F (Type_t * ___attributeType0, const RuntimeMethod* method);
// System.Boolean System.AttributeUsageAttribute::get_Inherited()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F_inline (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method);
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Void System.Array::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
inline void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57 (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, ___capacity0, method);
}
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
inline void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138 (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, RuntimeObject *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Boolean System.Type::get_IsValueType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
inline int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[],System.Int32)
inline void List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, const RuntimeMethod*))List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_gshared)(__this, ___array0, ___arrayIndex1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::.ctor(System.Int32)
inline void Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533 (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared)(__this, ___capacity0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73 (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * __this, Type_t * ___key0, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *, Type_t *, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method);
}
// System.AttributeUsageAttribute System.MonoCustomAttrs/AttributeInfo::get_Usage()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * AttributeInfo_get_Usage_mC0CA19AEB050A11C3E89E5A015E204AB9D51F4A0_inline (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method);
// System.Boolean System.AttributeUsageAttribute::get_AllowMultiple()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_AllowMultiple_mF910B0B16B485A8F02C54854FC9A9604B8810FF7_inline (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method);
// System.Int32 System.MonoCustomAttrs/AttributeInfo::get_InheritanceLevel()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t AttributeInfo_get_InheritanceLevel_mDC293DDDC43F613FBBA304C3A5FDC63AB3961AAD_inline (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method);
// System.Void System.MonoCustomAttrs/AttributeInfo::.ctor(System.AttributeUsageAttribute,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeInfo__ctor_mB43DF2481E1EE03052137FEB5EADDDF71F935BFF (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___usage0, int32_t ___inheritanceLevel1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::Add(TKey,TValue)
inline void Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * __this, Type_t * ___key0, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *, Type_t *, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method);
}
// System.Object System.Array::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
// System.Reflection.CustomAttributeData[] System.MonoCustomAttrs::GetCustomAttributesDataInternal(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500 (RuntimeObject* ___obj0, const RuntimeMethod* method);
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeData>(T[])
inline ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F * Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E (CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* ___array0, const RuntimeMethod* method)
{
return (( ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F * (*) (CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB*, const RuntimeMethod*))Array_AsReadOnly_TisRuntimeObject_m5128285E46B9807817464A6C1048C00E81022EFF_gshared)(___array0, method);
}
// System.Boolean System.MonoCustomAttrs::IsDefinedInternal(System.Reflection.ICustomAttributeProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700 (RuntimeObject* ___obj0, Type_t * ___AttributeType1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsVirtual()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4 (MethodBase_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Type,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0 (Type_t * __this, String_t* ___name0, Type_t * ___returnType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3 (Type_t * __this, String_t* ___name0, Type_t * ___returnType1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B (MethodBase_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5 (MethodBase_t * __this, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.MonoCustomAttrs::GetBasePropertyDefinition(System.Reflection.MonoProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8 (MonoProperty_t * ___property0, const RuntimeMethod* method);
// System.Reflection.EventInfo System.MonoCustomAttrs::GetBaseEventDefinition(System.Reflection.MonoEvent)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventInfo_t * MonoCustomAttrs_GetBaseEventDefinition_mB663428AC56D3B5530449230B5060FC157F25F2D (MonoEvent_t * ___evt0, const RuntimeMethod* method);
// System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, int32_t ___validOn0, const RuntimeMethod* method);
// System.Void System.FormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::.ctor()
inline void Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56 (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * __this, Type_t * ___key0, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *, Type_t *, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method);
}
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsageNoCache(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949 (Type_t * ___attributeType0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * __this, Type_t * ___key0, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *, Type_t *, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
// System.Void System.Delegate::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Delegate_GetObjectData_m4471B2DAE39E8F41977BAD88E2CDCA01217B2D71 (Delegate_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Boolean System.Delegate::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Delegate_Equals_m3256FBF115534E4E8D5B83350AA95EC60D84899D (Delegate_t * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Delegate::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Delegate_GetHashCode_m8FBCC6E42228A161DA710A330981B8E19BC6FABC (Delegate_t * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Delegate::get_Method()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048 (Delegate_t * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Delegate::GetMethodImpl()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_GetMethodImpl_m804444FE22E0481DDB8A41E0E25114E744D76921 (Delegate_t * __this, const RuntimeMethod* method);
// System.MulticastDelegate System.Delegate::AllocDelegateLike_internal(System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MulticastDelegate_t * Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F (Delegate_t * ___d0, const RuntimeMethod* method);
// System.Int32 System.Array::LastIndexOf<System.Delegate>(T[],T)
inline int32_t Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45 (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___array0, Delegate_t * ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*, Delegate_t *, const RuntimeMethod*))Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_gshared)(___array0, ___value1, method);
}
// System.Void System.InvalidOperationException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, const RuntimeMethod* method);
// System.Int32 System.MulticastDelegate::LastIndexOf(System.Delegate[],System.Delegate[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MulticastDelegate_LastIndexOf_mC8608A9B5AD9B47651893C1F9FD4EE93E883230D (MulticastDelegate_t * __this, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___haystack0, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___needle1, const RuntimeMethod* method);
// System.Void System.ConsoleKeyInfo::.ctor(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, Il2CppChar ___keyChar0, int32_t ___key1, bool ___shift2, bool ___alt3, bool ___control4, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Decimal,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9 (String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Double,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717 (String_t* ___format0, double ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Int32,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950 (String_t* ___format0, int32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt32,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C (String_t* ___format0, uint32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Int64,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05 (String_t* ___format0, int64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt64,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201 (String_t* ___format0, uint64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Single,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657 (String_t* ___format0, float ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToUInt32(System.Number/NumberBuffer&,System.UInt32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToUInt64(System.Number/NumberBuffer&,System.UInt64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method);
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B (const RuntimeMethod* method);
// System.Char* System.Number::MatchChars(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_m7EE86D2BE9EC4117EE64EF821DB270C0A717ACAC (Il2CppChar* ___p0, Il2CppChar* ___str1, const RuntimeMethod* method);
// System.Void System.Number/NumberBuffer::.ctor(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, uint8_t* ___stackBuffer0, const RuntimeMethod* method);
// System.Void System.Number::StringToNumber(System.String,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info3, bool ___parseDecimal4, const RuntimeMethod* method);
// System.Byte* System.Number/NumberBuffer::PackForNative()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, const RuntimeMethod* method);
// System.Boolean System.Number::NumberBufferToDecimal(System.Byte*,System.Decimal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7 (uint8_t* ___number0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7 (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt3, bool ___parseDecimal4, const RuntimeMethod* method);
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PositiveInfinitySymbol()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NegativeInfinitySymbol()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NaNSymbol()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.Number::NumberBufferToDouble(System.Byte*,System.Double&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D (uint8_t* ___number0, double* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToInt32(System.Number/NumberBuffer&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToInt32_m9229BEC2774D0AC4211B2D01CDD18EB1FB5DDDD7 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToInt32(System.Number/NumberBuffer&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToInt32_m21C6C8AB448D962C7658840F3C511835089D26E6 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToInt64(System.Number/NumberBuffer&,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToInt64(System.Number/NumberBuffer&,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_CurrencySymbol()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NumberDecimalSeparator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NumberGroupSeparator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_CurrencyDecimalSeparator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencyDecimalSeparator_mB1EE2B6EA5D9F58355F26F071B9A08435378214D_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_CurrencyGroupSeparator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencyGroupSeparator_m5AC1CA2A478284D1D059459951C8208168A20130_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.Number::IsWhite(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700 (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_NumberNegativePattern()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PositiveSign()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Char* System.Number::MatchChars(System.Char*,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA (Il2CppChar* ___p0, String_t* ___str1, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NegativeSign()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.Single::IsInfinity(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_IsInfinity_m811B198540AB538C4FE145F7C0303C4AD772988B (float ___f0, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToUInt32(System.Number/NumberBuffer&,System.UInt32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToUInt32_m60BDF4513A1673F8F993CAA12CA865FD4294308F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToUInt64(System.Number/NumberBuffer&,System.UInt64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToUInt64_m4F1E853E52800DA97846B99A6989596F310501C0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::ParseNumber(System.Char*&,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241 (Il2CppChar** ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method);
// System.Boolean System.Number::TrailingZeros(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_m515B5B64EE9D50013D45179933663F00752A2DEC (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method);
// System.Void System.NumberFormatter::GetFormatterTables(System.UInt64*&,System.Int32*&,System.Char*&,System.Char*&,System.Int64*&,System.Int32*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE (uint64_t** ___MantissaBitsTable0, int32_t** ___TensExponentTable1, Il2CppChar** ___DigitLowerTable2, Il2CppChar** ___DigitUpperTable3, int64_t** ___TenPowersList4, int32_t** ___DecHexDigits5, const RuntimeMethod* method);
// System.UInt32 System.NumberFormatter::FastToDecHex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F (int32_t ___val0, const RuntimeMethod* method);
// System.UInt32 System.NumberFormatter::ToDecHex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D (int32_t ___val0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::FastDecHexLen(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4 (int32_t ___val0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::DecHexLen(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579 (uint32_t ___val0, const RuntimeMethod* method);
// System.Int64 System.NumberFormatter::GetTenPowerOf(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C (int32_t ___i0, const RuntimeMethod* method);
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Void System.NumberFormatter::set_CurrentCulture(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___value0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::ParsePrecision(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_ParsePrecision_m333DE08D2CE6C38EBCEF7D7B94D18CDC3224154C (String_t* ___format0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::DecHexLen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitHex(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_mE511B45BE25B2E1D22059420D16055CBA7E1EAA4 (double ___value0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::ScaleOrder(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2 (int64_t ___hi0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::InitialFloatingPrecision()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::CountTrailingZeros()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Int32[] System.Decimal::GetBits(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* Decimal_GetBits_m581C2DB9823AC9CD84817738A740E8A7D39609BF (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___hi0, uint64_t ___lo1, const RuntimeMethod* method);
// System.Void System.Array::Resize<System.Char>(T[]&,System.Int32)
inline void Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
(( void (*) (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2**, int32_t, const RuntimeMethod*))Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_gshared)(___array0, ___newSize1, method);
}
// System.Void System.NumberFormatter::Resize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___len0, const RuntimeMethod* method);
// System.Boolean System.Globalization.CultureInfo::get_IsReadOnly()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::RoundBits(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___shift0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AddOneToDecHex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::RemoveTrailingZeros()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_RemoveTrailingZeros_mFE3D46E49E75DEAF1406B777009FF6A21F3BC6CF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.UInt32 System.NumberFormatter::AddOneToDecHex(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7 (uint32_t ___val0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::CountTrailingZeros(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B (uint32_t ___val0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::.ctor(System.Threading.Thread)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current0, const RuntimeMethod* method);
// System.NumberFormatter System.NumberFormatter::GetInstance(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99 (RuntimeObject* ___fp0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.UInt32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_m90911E05952A76710E710724EB8F62C3DCD8D34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method);
// System.String System.NumberFormatter::IntegerToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, RuntimeObject* ___fp1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Release()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_m7D7CC10DDA255BB0023BD72A0C91F09AD729BE2E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_m6C605647C5BD888F8F085190C2F56EBB905598E1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint64_t ___value1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mC48E49CCC89DD59718AC2D00A477CA8F397FBA8C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int64_t ___value1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Double,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, double ___value1, int32_t ___defPrecision2, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.NumberFormatter::GetNumberFormatInstance(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, RuntimeObject* ___fp0, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatRoundtrip(System.Single,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_mBE6EBC5BD83D8DB4BAE38032B659B9E3BB291439 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, float ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatRoundtrip(System.Double,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, double ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatCurrency(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatDecimal(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatFixedPoint(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatGeneral(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatNumber(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatPercent(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatHexadecimal(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatCustom(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_CurrencyDecimalDigits()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyDecimalDigits_mB08BE40DFC57B589B74916CF3D63CEBBC7432C25_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::RoundDecimal(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___decimals0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::get_IntegerDigits()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::ResetCharBuf(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___size0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_CurrencyPositivePattern()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyPositivePattern_mA9F592EAAA7F5BD929C60D65936892A45A101D7B_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___s0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_CurrencyNegativePattern()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyNegativePattern_mFC6B6D99EB695BFB5ED94F3F7F4DD40F5D02A58A_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32[] System.Globalization.NumberFormatInfo::get_CurrencyGroupSizes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* NumberFormatInfo_get_CurrencyGroupSizes_m422B13575ABEF5EC163FE50A6CF26AADFCAB9324 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendIntegerStringWithGroupSeparator(System.Int32[],System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___groups0, String_t* ___groupSeparator1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_NumberDecimalDigits()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_NumberDecimalDigits_m52C856E2079DAA1657069DB00506DCF77EA62DC2_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_mD6FB81A7D8109CDAED213804F4D91E2FA476BD88 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, const RuntimeMethod* method);
// System.NumberFormatter System.NumberFormatter::GetClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Double System.Double::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Single System.Single::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Single_Parse_m341EA42F7782B136FA7335771DA3C6C96AF6BD86 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::get_IsFloatingSource()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsFloatingSource_m6CFAC659F6A85391D719FE8364828EDA57232B1A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::RoundPos(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___pos0, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, int32_t ___expDigits2, const RuntimeMethod* method);
// System.Int32[] System.Globalization.NumberFormatInfo::get_NumberGroupSizes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* NumberFormatInfo_get_NumberGroupSizes_m565821165B43AA202D8F644E4403A3181188965A (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_PercentDecimalDigits()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentDecimalDigits_mC976C226BAA510C75E13D526FF7407B2A2E2A164_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Multiply10(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_PercentPositivePattern()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentPositivePattern_mD23B2B53488F48B707952CCFADD216A7E7BAA430_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PercentSymbol()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_PercentNegativePattern()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentNegativePattern_m9563E73E22236A41D695465A1B2E76F3AA7DD463_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32[] System.Globalization.NumberFormatInfo::get_PercentGroupSizes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* NumberFormatInfo_get_PercentGroupSizes_m4E8851281AB5160EC0EE06F633B08235440DF4C8 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PercentGroupSeparator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentGroupSeparator_mBCCC5E617B3BEFED528AB99571AC593CEA45B4EC_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PercentDecimalSeparator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentDecimalSeparator_m8E0E23E04199DCA6D6E7E494D11522465180CCD2_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendOneDigit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendOneDigit_m00E78B4DAFD47E5393BF1B3664B4453A646061A5 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendExponent(System.Globalization.NumberFormatInfo,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi0, int32_t ___exponent1, int32_t ___minDigits2, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::get_IsZero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter/CustomInfo::GetActiveSection(System.String,System.Boolean&,System.Boolean,System.Int32&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomInfo_GetActiveSection_m3C48CF37C771F5434981309EEBDB47383654E25A (String_t* ___format0, bool* ___positive1, bool ___zero2, int32_t* ___offset3, int32_t* ___length4, const RuntimeMethod* method);
// System.NumberFormatter/CustomInfo System.NumberFormatter/CustomInfo::Parse(System.String,System.Int32,System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * CustomInfo_Parse_m221FEE3DBA88FC585E7EC4F51CE590B9BE0E334A (String_t* ___format0, int32_t ___offset1, int32_t ___length2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi3, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Divide10(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Divide10_m19182F6184716E02E9DBA42FCF89EFEBA7AC19B7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendNonNegativeNumber(System.Text.StringBuilder,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1 (StringBuilder_t * ___sb0, int32_t ___v1, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::get_IsZeroInteger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_m37A5A133D337FE0E7378D3F5C9B5C42ABC4F500C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, StringBuilder_t * ___sb1, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::get_DecimalDigits()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_DecimalDigits_m7D1E99D450C28EEB92D1C28F23393F18A2AB202E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE1BE0D20CD069420690F5E5C06A394C7369C90BF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, StringBuilder_t * ___sb1, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05 (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, int32_t ___count2, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::IsZeroOnly(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716 (StringBuilder_t * ___sb0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::ZeroTrimEnd(System.Text.StringBuilder,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_ZeroTrimEnd_mCFA43BC122387E7BB042BCD81DE7DE4870FB5D99 (StringBuilder_t * ___sb0, bool ___canEmpty1, const RuntimeMethod* method);
// System.String System.NumberFormatter/CustomInfo::Format(System.String,System.Int32,System.Int32,System.Globalization.NumberFormatInfo,System.Boolean,System.Text.StringBuilder,System.Text.StringBuilder,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CustomInfo_Format_m1A29FF4C0EF0861E7E2564D8548EEA6916D91252 (CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * __this, String_t* ___format0, int32_t ___offset1, int32_t ___length2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi3, bool ___positive4, StringBuilder_t * ___sb_int5, StringBuilder_t * ___sb_dec6, StringBuilder_t * ___sb_exp7, const RuntimeMethod* method);
// System.Char System.Text.StringBuilder::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Boolean System.Char::IsDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m77591C20EDA3ADEE2FAF1987321D686E249326C5 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45 (StringBuilder_t * __this, Il2CppChar ___value0, int32_t ___repeatCount1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, StringBuilder_t * ___sb2, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Append(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, int32_t ___cnt1, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::set_Chars(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method);
// System.Object System.Object::MemberwiseClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.IO.PathInternal::IsPartiallyQualified(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PathInternal_IsPartiallyQualified_m04BC87968B46BEDDAB66FA4773F8B146E7F70E68 (String_t* ___path0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.IO.PathInternal::HasIllegalCharacters(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PathInternal_HasIllegalCharacters_mDE3FB11E02AC6CD38B2DCAC0B1A737F37CB341A7 (String_t* ___path0, bool ___checkAdditional1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PathInternal_HasIllegalCharacters_mDE3FB11E02AC6CD38B2DCAC0B1A737F37CB341A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___path0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ((Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields*)il2cpp_codegen_static_fields_for(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var))->get_InvalidPathChars_0();
NullCheck(L_0);
int32_t L_2 = String_IndexOfAny_m1AD95EBF79BB7FBFC7FC30DA9B1B8015BC3ABA6D(L_0, L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 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.IO.PathTooLongException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathTooLongException__ctor_m43D8612C5F39D3F8EB07946DADD9B43DB585995F (PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PathTooLongException__ctor_m43D8612C5F39D3F8EB07946DADD9B43DB585995F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBAE1EBEC7E602C6020B7B0FC2AB9BBE7B9F5F915, /*hidden argument*/NULL);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024690), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.PathTooLongException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathTooLongException__ctor_m245E1CA7C92C2F6406440660F4AF765583E024C8 (PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024690), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.PathTooLongException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathTooLongException__ctor_m547B9E1C62B5CF025AEE86F80AF0BA7A65356908 (PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
IOException__ctor_m4F1FE1C9D6332E1CB7A2EA5BE40D7B311E0DD85B(__this, L_0, L_1, /*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.IO.PinnedBufferMemoryStream::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PinnedBufferMemoryStream__ctor_m79A845DB8C49B20AD09F2AF704123771A8AEC9D4 (PinnedBufferMemoryStream_t2B64686A5B889DF38F012632D00C933752FE5A25 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PinnedBufferMemoryStream__ctor_m79A845DB8C49B20AD09F2AF704123771A8AEC9D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
{
UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
NullCheck(L_0);
V_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))));
int32_t L_1 = V_0;
if (L_1)
{
goto IL_0017;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___array0 = L_2;
V_0 = 0;
}
IL_0017:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array0;
__this->set__array_12(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___array0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_5;
memset((&L_5), 0, sizeof(L_5));
GCHandle__ctor_m778D815E149206CA068A7A97DD0E585D4D19B083((&L_5), (RuntimeObject *)(RuntimeObject *)L_4, 3, /*hidden argument*/NULL);
__this->set__pinningHandle_13(L_5);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get__array_12();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6;
V_2 = L_7;
if (!L_7)
{
goto IL_003a;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_2;
NullCheck(L_8);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))
{
goto IL_003f;
}
}
IL_003a:
{
V_1 = (uint8_t*)(((uintptr_t)0));
goto IL_0048;
}
IL_003f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_2;
NullCheck(L_9);
V_1 = (uint8_t*)(((uintptr_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0048:
{
uint8_t* L_10 = V_1;
int32_t L_11 = V_0;
int32_t L_12 = V_0;
UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196(__this, (uint8_t*)(uint8_t*)L_10, (((int64_t)((int64_t)L_11))), (((int64_t)((int64_t)L_12))), 1, (bool)1, /*hidden argument*/NULL);
V_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
return;
}
}
// System.Void System.IO.PinnedBufferMemoryStream::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PinnedBufferMemoryStream_Finalize_m315E623A3141C1854609BC3A31C72E2AE8AF9C2C (PinnedBufferMemoryStream_t2B64686A5B889DF38F012632D00C933752FE5A25 * __this, 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(14 /* System.Void System.IO.Stream::Dispose(System.Boolean) */, __this, (bool)0);
IL2CPP_LEAVE(0x10, FINALLY_0009);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0009;
}
FINALLY_0009:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(9)
} // end finally (depth: 1)
IL2CPP_CLEANUP(9)
{
IL2CPP_JUMP_TBL(0x10, IL_0010)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0010:
{
return;
}
}
// System.Void System.IO.PinnedBufferMemoryStream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PinnedBufferMemoryStream_Dispose_mA3E35DC00466EFDAA8DCCADF7FF44C51FBDB7C59 (PinnedBufferMemoryStream_t2B64686A5B889DF38F012632D00C933752FE5A25 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
bool L_0 = ((UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E *)__this)->get__isOpen_11();
if (!L_0)
{
goto IL_001a;
}
}
{
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * L_1 = __this->get_address_of__pinningHandle_13();
GCHandle_Free_m392ECC9B1058E35A0FD5CF21A65F212873FC26F0((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)L_1, /*hidden argument*/NULL);
((UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E *)__this)->set__isOpen_11((bool)0);
}
IL_001a:
{
bool L_2 = ___disposing0;
UnmanagedMemoryStream_Dispose_mA8E1A981BC7EFDFAC1B4C4E95D1CAB823EA284CA(__this, L_2, /*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
// System.Void System.IO.SearchResult::.ctor(System.String,System.String,Microsoft.Win32.Win32Native_WIN32_FIND_DATA)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SearchResult__ctor_m5E8D5D407EFFA5AAE3B8E31866F12DC431E7FB8B (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, String_t* ___fullPath0, String_t* ___userPath1, WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * ___findData2, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___fullPath0;
__this->set_fullPath_0(L_0);
String_t* L_1 = ___userPath1;
__this->set_userPath_1(L_1);
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * L_2 = ___findData2;
__this->set_findData_2(L_2);
return;
}
}
// System.String System.IO.SearchResult::get_UserPath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SearchResult_get_UserPath_mB57A92D43162037A6A6F8AA91903F33C6D14B636 (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_userPath_1();
return L_0;
}
}
// Microsoft.Win32.Win32Native_WIN32_FIND_DATA System.IO.SearchResult::get_FindData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method)
{
{
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * L_0 = __this->get_findData_2();
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
#ifdef __clang__
#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.Threading.SemaphoreSlim System.IO.Stream::EnsureAsyncActiveSemaphoreInitialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * Stream_EnsureAsyncActiveSemaphoreInitialized_m874CD5FC48757D8810E4DD57DADD850A338BDED2 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_EnsureAsyncActiveSemaphoreInitialized_m874CD5FC48757D8810E4DD57DADD850A338BDED2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * G_B2_0 = NULL;
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** G_B2_1 = NULL;
Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * G_B1_0 = NULL;
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** G_B1_1 = NULL;
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** L_0 = __this->get_address_of__asyncActiveSemaphore_3();
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * L_1 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9__4_0_1();
Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * L_2 = L_1;
G_B1_0 = L_2;
G_B1_1 = L_0;
if (L_2)
{
G_B2_0 = L_2;
G_B2_1 = L_0;
goto IL_0025;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * L_3 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * L_4 = (Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 *)il2cpp_codegen_object_new(Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3_il2cpp_TypeInfo_var);
Func_1__ctor_m1C192A08B472664A240EE20F093AB3D29A555817(L_4, L_3, (intptr_t)((intptr_t)U3CU3Ec_U3CEnsureAsyncActiveSemaphoreInitializedU3Eb__4_0_mFC89B6BDAEAB17521C199A8E86DF2CF193B73185_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m1C192A08B472664A240EE20F093AB3D29A555817_RuntimeMethod_var);
Func_1_t540A1319735B4DFC565B97D41CAEC9A2AD6207A3 * L_5 = L_4;
((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->set_U3CU3E9__4_0_1(L_5);
G_B2_0 = L_5;
G_B2_1 = G_B1_1;
}
IL_0025:
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_6 = LazyInitializer_EnsureInitialized_TisSemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_mFA528DFBF5A5DDCFC6A4A4556DA57DAD76196C67((SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 **)G_B2_1, G_B2_0, /*hidden argument*/LazyInitializer_EnsureInitialized_TisSemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_mFA528DFBF5A5DDCFC6A4A4556DA57DAD76196C67_RuntimeMethod_var);
return L_6;
}
}
// System.Void System.IO.Stream::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Close_m3E7D77CC56A0776F17B5C4480D62F7800DD03C0D (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_Close_m3E7D77CC56A0776F17B5C4480D62F7800DD03C0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(14 /* System.Void System.IO.Stream::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.Stream::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_m186A8E680F2528DEDFF8F0069CC33BD813FFB1C7 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method)
{
{
VirtActionInvoker0::Invoke(13 /* System.Void System.IO.Stream::Close() */, __this);
return;
}
}
// System.Void System.IO.Stream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_mC0F23B2D31DC853B12A10F0233173A278FF21B05 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.IAsyncResult System.IO.Stream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BeginRead_mBF8B16ED8510AD6BE9D0A3EE1A933D6515CF160D (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_3 = ___callback3;
RuntimeObject * L_4 = ___state4;
RuntimeObject* L_5 = Stream_BeginReadInternal_m60C7782571CF8C69B885E18BFF34B35B3DC300FC(__this, L_0, L_1, L_2, L_3, L_4, (bool)0, /*hidden argument*/NULL);
return L_5;
}
}
// System.IAsyncResult System.IO.Stream::BeginReadInternal(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BeginReadInternal_m60C7782571CF8C69B885E18BFF34B35B3DC300FC (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, bool ___serializeAsynchronously5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_BeginReadInternal_m60C7782571CF8C69B885E18BFF34B35B3DC300FC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * V_0 = NULL;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_1 = NULL;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * V_2 = NULL;
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * G_B9_0 = NULL;
int32_t G_B9_1 = 0;
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * G_B8_0 = NULL;
int32_t G_B8_1 = 0;
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, __this);
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696(/*hidden argument*/NULL);
}
IL_000d:
{
bool L_1 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_1)
{
goto IL_0022;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0;
int32_t L_3 = ___offset1;
int32_t L_4 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_5 = ___callback3;
RuntimeObject * L_6 = ___state4;
RuntimeObject* L_7 = Stream_BlockingBeginRead_mACB9EF43064AEBB8CF5582CC4416CCD85BBA0C3F(__this, L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_0022:
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_8 = Stream_EnsureAsyncActiveSemaphoreInitialized_m874CD5FC48757D8810E4DD57DADD850A338BDED2(__this, /*hidden argument*/NULL);
V_0 = L_8;
V_1 = (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)NULL;
bool L_9 = ___serializeAsynchronously5;
if (!L_9)
{
goto IL_0038;
}
}
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_10 = V_0;
NullCheck(L_10);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_11 = SemaphoreSlim_WaitAsync_mEEDF1F56EF96E2276622B97F79A28D194169B9F6(L_10, /*hidden argument*/NULL);
V_1 = L_11;
goto IL_003e;
}
IL_0038:
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_12 = V_0;
NullCheck(L_12);
SemaphoreSlim_Wait_mE6DB20AC7CFF0C340A498D74D8A014566BE6DC5C(L_12, /*hidden argument*/NULL);
}
IL_003e:
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_13 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9__39_0_2();
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_14 = L_13;
G_B8_0 = L_14;
G_B8_1 = 1;
if (L_14)
{
G_B9_0 = L_14;
G_B9_1 = 1;
goto IL_005e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * L_15 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_16 = (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)il2cpp_codegen_object_new(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_il2cpp_TypeInfo_var);
Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917(L_16, L_15, (intptr_t)((intptr_t)U3CU3Ec_U3CBeginReadInternalU3Eb__39_0_mA916204119245A554120ADD0684F65FE62EC9100_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_RuntimeMethod_var);
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_17 = L_16;
((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->set_U3CU3E9__39_0_2(L_17);
G_B9_0 = L_17;
G_B9_1 = G_B8_1;
}
IL_005e:
{
RuntimeObject * L_18 = ___state4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___buffer0;
int32_t L_20 = ___offset1;
int32_t L_21 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_22 = ___callback3;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_23 = (ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)il2cpp_codegen_object_new(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var);
ReadWriteTask__ctor_mE4914C482924D77EE547ACF41C3309E33F1DE830(L_23, (bool)G_B9_1, G_B9_0, L_18, __this, L_19, L_20, L_21, L_22, /*hidden argument*/NULL);
V_2 = L_23;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_24 = V_1;
if (!L_24)
{
goto IL_0079;
}
}
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_25 = V_1;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_26 = V_2;
Stream_RunReadWriteTaskWhenReady_m42E40F1AB2522AC449FF9332FD46A220A6CDE147(__this, L_25, L_26, /*hidden argument*/NULL);
goto IL_0080;
}
IL_0079:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_27 = V_2;
Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7(__this, L_27, /*hidden argument*/NULL);
}
IL_0080:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_28 = V_2;
return L_28;
}
}
// System.Int32 System.IO.Stream::EndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * V_0 = NULL;
TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___asyncResult0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral5B3BD2481D1A6E4A5654FB0FCDF9C6265B5A959F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F_RuntimeMethod_var);
}
IL_000e:
{
bool L_2 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_2)
{
goto IL_001c;
}
}
{
RuntimeObject* L_3 = ___asyncResult0;
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
int32_t L_4 = Stream_BlockingEndRead_mB7BC9561AA27BEED2AB5758DA29B876DD8AB99F1(L_3, /*hidden argument*/NULL);
return L_4;
}
IL_001c:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_5 = __this->get__activeReadWriteTask_2();
V_0 = L_5;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_6 = V_0;
if (L_6)
{
goto IL_0036;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9F6157A7CAD5FA63D45B6A52A9BA4C281668A407, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F_RuntimeMethod_var);
}
IL_0036:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_9 = V_0;
RuntimeObject* L_10 = ___asyncResult0;
if ((((RuntimeObject*)(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)L_9) == ((RuntimeObject*)(RuntimeObject*)L_10)))
{
goto IL_004a;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9F6157A7CAD5FA63D45B6A52A9BA4C281668A407, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_12 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F_RuntimeMethod_var);
}
IL_004a:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_13 = V_0;
NullCheck(L_13);
bool L_14 = L_13->get__isRead_25();
if (L_14)
{
goto IL_0062;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9F6157A7CAD5FA63D45B6A52A9BA4C281668A407, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_16 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_16, L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, Stream_EndRead_mA8D81CE363398C9D2760A2088C2D1A940B56FE2F_RuntimeMethod_var);
}
IL_0062:
{
}
IL_0063:
try
{ // begin try (depth: 1)
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_17 = V_0;
NullCheck(L_17);
TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 L_18 = Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3(L_17, /*hidden argument*/Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_RuntimeMethod_var);
V_1 = L_18;
int32_t L_19 = TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9((TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *)(&V_1), /*hidden argument*/TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_RuntimeMethod_var);
V_2 = L_19;
IL2CPP_LEAVE(0x88, FINALLY_0074);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0074;
}
FINALLY_0074:
{ // begin finally (depth: 1)
__this->set__activeReadWriteTask_2((ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)NULL);
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_20 = __this->get__asyncActiveSemaphore_3();
NullCheck(L_20);
SemaphoreSlim_Release_m963242914A622613DD41C740400F7D40C85BD169(L_20, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(116)
} // end finally (depth: 1)
IL2CPP_CLEANUP(116)
{
IL2CPP_JUMP_TBL(0x88, IL_0088)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0088:
{
int32_t L_21 = V_2;
return L_21;
}
}
// System.IAsyncResult System.IO.Stream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BeginWrite_mFF3CB915FA5A878608575A46C75C1A9D9D3706D9 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_3 = ___callback3;
RuntimeObject * L_4 = ___state4;
RuntimeObject* L_5 = Stream_BeginWriteInternal_mF9557BA2F5E6556C7CB979F46D2F3DA2A5C43668(__this, L_0, L_1, L_2, L_3, L_4, (bool)0, /*hidden argument*/NULL);
return L_5;
}
}
// System.IAsyncResult System.IO.Stream::BeginWriteInternal(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BeginWriteInternal_mF9557BA2F5E6556C7CB979F46D2F3DA2A5C43668 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, bool ___serializeAsynchronously5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_BeginWriteInternal_mF9557BA2F5E6556C7CB979F46D2F3DA2A5C43668_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * V_0 = NULL;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_1 = NULL;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * V_2 = NULL;
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * G_B9_0 = NULL;
int32_t G_B9_1 = 0;
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * G_B8_0 = NULL;
int32_t G_B8_1 = 0;
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, __this);
if (L_0)
{
goto IL_000d;
}
}
{
__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B(/*hidden argument*/NULL);
}
IL_000d:
{
bool L_1 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_1)
{
goto IL_0022;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0;
int32_t L_3 = ___offset1;
int32_t L_4 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_5 = ___callback3;
RuntimeObject * L_6 = ___state4;
RuntimeObject* L_7 = Stream_BlockingBeginWrite_m4D04E97AFDD77BE540B297163DF825E948E3C00C(__this, L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_0022:
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_8 = Stream_EnsureAsyncActiveSemaphoreInitialized_m874CD5FC48757D8810E4DD57DADD850A338BDED2(__this, /*hidden argument*/NULL);
V_0 = L_8;
V_1 = (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)NULL;
bool L_9 = ___serializeAsynchronously5;
if (!L_9)
{
goto IL_0038;
}
}
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_10 = V_0;
NullCheck(L_10);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_11 = SemaphoreSlim_WaitAsync_mEEDF1F56EF96E2276622B97F79A28D194169B9F6(L_10, /*hidden argument*/NULL);
V_1 = L_11;
goto IL_003e;
}
IL_0038:
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_12 = V_0;
NullCheck(L_12);
SemaphoreSlim_Wait_mE6DB20AC7CFF0C340A498D74D8A014566BE6DC5C(L_12, /*hidden argument*/NULL);
}
IL_003e:
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_13 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9__46_0_3();
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_14 = L_13;
G_B8_0 = L_14;
G_B8_1 = 0;
if (L_14)
{
G_B9_0 = L_14;
G_B9_1 = 0;
goto IL_005e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * L_15 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_16 = (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)il2cpp_codegen_object_new(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_il2cpp_TypeInfo_var);
Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917(L_16, L_15, (intptr_t)((intptr_t)U3CU3Ec_U3CBeginWriteInternalU3Eb__46_0_m91FE2212E52436AAC7F76E6E1CE34A2BC249A050_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_RuntimeMethod_var);
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_17 = L_16;
((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->set_U3CU3E9__46_0_3(L_17);
G_B9_0 = L_17;
G_B9_1 = G_B8_1;
}
IL_005e:
{
RuntimeObject * L_18 = ___state4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___buffer0;
int32_t L_20 = ___offset1;
int32_t L_21 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_22 = ___callback3;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_23 = (ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)il2cpp_codegen_object_new(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var);
ReadWriteTask__ctor_mE4914C482924D77EE547ACF41C3309E33F1DE830(L_23, (bool)G_B9_1, G_B9_0, L_18, __this, L_19, L_20, L_21, L_22, /*hidden argument*/NULL);
V_2 = L_23;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_24 = V_1;
if (!L_24)
{
goto IL_0079;
}
}
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_25 = V_1;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_26 = V_2;
Stream_RunReadWriteTaskWhenReady_m42E40F1AB2522AC449FF9332FD46A220A6CDE147(__this, L_25, L_26, /*hidden argument*/NULL);
goto IL_0080;
}
IL_0079:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_27 = V_2;
Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7(__this, L_27, /*hidden argument*/NULL);
}
IL_0080:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_28 = V_2;
return L_28;
}
}
// System.Void System.IO.Stream::RunReadWriteTaskWhenReady(System.Threading.Tasks.Task,System.IO.Stream_ReadWriteTask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_RunReadWriteTaskWhenReady_m42E40F1AB2522AC449FF9332FD46A220A6CDE147 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___asyncWaiter0, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ___readWriteTask1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_RunReadWriteTaskWhenReady_m42E40F1AB2522AC449FF9332FD46A220A6CDE147_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0;
memset((&V_0), 0, sizeof(V_0));
Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * G_B4_0 = NULL;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * G_B4_1 = NULL;
Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * G_B3_0 = NULL;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * G_B3_1 = NULL;
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ___asyncWaiter0;
NullCheck(L_0);
bool L_1 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_2 = ___readWriteTask1;
Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7(__this, L_2, /*hidden argument*/NULL);
return;
}
IL_0010:
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = ___asyncWaiter0;
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * L_4 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9__47_0_4();
Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = L_3;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = L_3;
goto IL_0030;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * L_6 = ((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * L_7 = (Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 *)il2cpp_codegen_object_new(Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8_il2cpp_TypeInfo_var);
Action_2__ctor_m58B3F295A5FFFD735D3E3C72214C7CF4476317E5(L_7, L_6, (intptr_t)((intptr_t)U3CU3Ec_U3CRunReadWriteTaskWhenReadyU3Eb__47_0_mAABA4692CAA24F0FAFC71C3CB9B951F5CE4E8CF6_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_m58B3F295A5FFFD735D3E3C72214C7CF4476317E5_RuntimeMethod_var);
Action_2_tC5CBC473593FC52892A3A27575658B0C050584D8 * L_8 = L_7;
((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->set_U3CU3E9__47_0_4(L_8);
G_B4_0 = L_8;
G_B4_1 = G_B3_1;
}
IL_0030:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_9 = ___readWriteTask1;
Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * L_10 = Tuple_Create_TisStream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_TisReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_m22133E1CA323ACE1BF3C077F34ADDD2FA852EB70(__this, L_9, /*hidden argument*/Tuple_Create_TisStream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_TisReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_m22133E1CA323ACE1BF3C077F34ADDD2FA852EB70_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ));
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var);
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_12 = TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_inline(/*hidden argument*/NULL);
NullCheck(G_B4_1);
Task_ContinueWith_m77623659683CA3E09520D79D60D8A04214E4CE5A(G_B4_1, G_B4_0, L_10, L_11, ((int32_t)524288), L_12, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.Stream::RunReadWriteTask(System.IO.Stream_ReadWriteTask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ___readWriteTask0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_0 = ___readWriteTask0;
__this->set__activeReadWriteTask_2(L_0);
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_1 = ___readWriteTask0;
IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var);
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_2 = TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_inline(/*hidden argument*/NULL);
NullCheck(L_1);
((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_1)->set_m_taskScheduler_7(L_2);
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_3 = ___readWriteTask0;
NullCheck(L_3);
Task_ScheduleAndStart_m7A3334C89BD4B47370D0A3CAE575EA54CCA01AEF(L_3, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.Stream::EndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * V_0 = NULL;
TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___asyncResult0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral5B3BD2481D1A6E4A5654FB0FCDF9C6265B5A959F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032_RuntimeMethod_var);
}
IL_000e:
{
bool L_2 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_2)
{
goto IL_001c;
}
}
{
RuntimeObject* L_3 = ___asyncResult0;
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream_BlockingEndWrite_m95DB7F725ECAC7820975AAEF9801C834FFB92BF5(L_3, /*hidden argument*/NULL);
return;
}
IL_001c:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_4 = __this->get__activeReadWriteTask_2();
V_0 = L_4;
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_5 = V_0;
if (L_5)
{
goto IL_0036;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral056604D121EC07E667384774DAE552AAA76CF3B8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032_RuntimeMethod_var);
}
IL_0036:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_8 = V_0;
RuntimeObject* L_9 = ___asyncResult0;
if ((((RuntimeObject*)(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)L_8) == ((RuntimeObject*)(RuntimeObject*)L_9)))
{
goto IL_004a;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral056604D121EC07E667384774DAE552AAA76CF3B8, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_11 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032_RuntimeMethod_var);
}
IL_004a:
{
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_12 = V_0;
NullCheck(L_12);
bool L_13 = L_12->get__isRead_25();
if (!L_13)
{
goto IL_0062;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral056604D121EC07E667384774DAE552AAA76CF3B8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, Stream_EndWrite_mE7A87B817FDCB90247FAF760BE83172B1D616032_RuntimeMethod_var);
}
IL_0062:
{
}
IL_0063:
try
{ // begin try (depth: 1)
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_16 = V_0;
NullCheck(L_16);
TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 L_17 = Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3(L_16, /*hidden argument*/Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_RuntimeMethod_var);
V_1 = L_17;
TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9((TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *)(&V_1), /*hidden argument*/TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_RuntimeMethod_var);
IL2CPP_LEAVE(0x88, FINALLY_0074);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0074;
}
FINALLY_0074:
{ // begin finally (depth: 1)
__this->set__activeReadWriteTask_2((ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)NULL);
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_18 = __this->get__asyncActiveSemaphore_3();
NullCheck(L_18);
SemaphoreSlim_Release_m963242914A622613DD41C740400F7D40C85BD169(L_18, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(116)
} // end finally (depth: 1)
IL2CPP_CLEANUP(116)
{
IL2CPP_JUMP_TBL(0x88, IL_0088)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0088:
{
return;
}
}
// System.Int32 System.IO.Stream::ReadByte()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stream_ReadByte_m0FAFF74832FDD03E65BD221CD68A743C893EC6B7 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_ReadByte_m0FAFF74832FDD03E65BD221CD68A743C893EC6B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
V_0 = L_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
int32_t L_2 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, __this, L_1, 0, 1);
if (L_2)
{
goto IL_0014;
}
}
{
return (-1);
}
IL_0014:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = 0;
uint8_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
// System.Void System.IO.Stream::WriteByte(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_WriteByte_mA20A780D5019E9C5FDC5C09D23FBFEE1EFA94CC3 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, uint8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_WriteByte_mA20A780D5019E9C5FDC5C09D23FBFEE1EFA94CC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
V_0 = L_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
uint8_t L_2 = ___value0;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, __this, L_3, 0, 1);
return;
}
}
// System.IAsyncResult System.IO.Stream::BlockingBeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BlockingBeginRead_mACB9EF43064AEBB8CF5582CC4416CCD85BBA0C3F (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_BlockingBeginRead_mACB9EF43064AEBB8CF5582CC4416CCD85BBA0C3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
int32_t L_3 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
RuntimeObject * L_4 = ___state4;
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_5 = (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 *)il2cpp_codegen_object_new(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541_il2cpp_TypeInfo_var);
SynchronousAsyncResult__ctor_mD70656983C10103E00C79A6738468C5211F3A31C(L_5, L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_001e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0013;
throw e;
}
CATCH_0013:
{ // begin catch(System.IO.IOException)
RuntimeObject * L_6 = ___state4;
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_7 = (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 *)il2cpp_codegen_object_new(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541_il2cpp_TypeInfo_var);
SynchronousAsyncResult__ctor_m50A54079C49E00F187CB5AB20A28AD3609B86C0C(L_7, ((IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)__exception_local), L_6, (bool)0, /*hidden argument*/NULL);
V_0 = L_7;
goto IL_001e;
} // end catch (depth: 1)
IL_001e:
{
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_8 = ___callback3;
if (!L_8)
{
goto IL_002a;
}
}
{
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_9 = ___callback3;
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_10 = V_0;
NullCheck(L_9);
AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C(L_9, L_10, /*hidden argument*/NULL);
}
IL_002a:
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_11 = V_0;
return L_11;
}
}
// System.Int32 System.IO.Stream::BlockingEndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stream_BlockingEndRead_mB7BC9561AA27BEED2AB5758DA29B876DD8AB99F1 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___asyncResult0;
int32_t L_1 = SynchronousAsyncResult_EndRead_m995E037B3AB2E9DE4D215833CA7E81B60D869924(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.IAsyncResult System.IO.Stream::BlockingBeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stream_BlockingBeginWrite_m4D04E97AFDD77BE540B297163DF825E948E3C00C (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream_BlockingBeginWrite_m4D04E97AFDD77BE540B297163DF825E948E3C00C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
RuntimeObject * L_3 = ___state4;
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_4 = (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 *)il2cpp_codegen_object_new(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541_il2cpp_TypeInfo_var);
SynchronousAsyncResult__ctor_mFE74FD77B0CE7BB1D2717CF98831E50D4ACF0A8D(L_4, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_001e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0013;
throw e;
}
CATCH_0013:
{ // begin catch(System.IO.IOException)
RuntimeObject * L_5 = ___state4;
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_6 = (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 *)il2cpp_codegen_object_new(SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541_il2cpp_TypeInfo_var);
SynchronousAsyncResult__ctor_m50A54079C49E00F187CB5AB20A28AD3609B86C0C(L_6, ((IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)__exception_local), L_5, (bool)1, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_001e;
} // end catch (depth: 1)
IL_001e:
{
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_7 = ___callback3;
if (!L_7)
{
goto IL_002a;
}
}
{
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_8 = ___callback3;
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_9 = V_0;
NullCheck(L_8);
AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C(L_8, L_9, /*hidden argument*/NULL);
}
IL_002a:
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_10 = V_0;
return L_10;
}
}
// System.Void System.IO.Stream::BlockingEndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_BlockingEndWrite_m95DB7F725ECAC7820975AAEF9801C834FFB92BF5 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___asyncResult0;
SynchronousAsyncResult_EndWrite_mF1F332953F2F8651DEFCBC8EB0616A759504F2B7(L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.Stream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.Stream::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream__cctor_mA818E89F35B0DDE2D1C241F5FFB244A1088A029B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stream__cctor_mA818E89F35B0DDE2D1C241F5FFB244A1088A029B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * L_0 = (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E *)il2cpp_codegen_object_new(NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E_il2cpp_TypeInfo_var);
NullStream__ctor_m33B984F0C9CBADFF8D35BEAAECE7E441D0E30E95(L_0, /*hidden argument*/NULL);
((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var))->set_Null_1(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.IO.Stream_<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mD19C2C81E14C904D5B730513379F67EE4C82FB38 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_mD19C2C81E14C904D5B730513379F67EE4C82FB38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * L_0 = (U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 *)il2cpp_codegen_object_new(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_mC41B9842076FF52762F4BF89FAEA2440BF9C56E2(L_0, /*hidden argument*/NULL);
((U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.IO.Stream_<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mC41B9842076FF52762F4BF89FAEA2440BF9C56E2 (U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Threading.SemaphoreSlim System.IO.Stream_<>c::<EnsureAsyncActiveSemaphoreInitialized>b__4_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * U3CU3Ec_U3CEnsureAsyncActiveSemaphoreInitializedU3Eb__4_0_mFC89B6BDAEAB17521C199A8E86DF2CF193B73185 (U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CEnsureAsyncActiveSemaphoreInitializedU3Eb__4_0_mFC89B6BDAEAB17521C199A8E86DF2CF193B73185_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * L_0 = (SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 *)il2cpp_codegen_object_new(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048_il2cpp_TypeInfo_var);
SemaphoreSlim__ctor_mE9DFD50375754E2D73606021F0E4F103E946C50E(L_0, 1, 1, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.IO.Stream_<>c::<BeginReadInternal>b__39_0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CBeginReadInternalU3Eb__39_0_mA916204119245A554120ADD0684F65FE62EC9100 (U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * __this, RuntimeObject * ___U3Cp0U3E0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CBeginReadInternalU3Eb__39_0_mA916204119245A554120ADD0684F65FE62EC9100_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline(/*hidden argument*/NULL);
V_0 = ((ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)IsInstSealed((RuntimeObject*)L_0, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var));
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_1 = V_0;
NullCheck(L_1);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = L_1->get__stream_26();
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_3 = V_0;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3->get__buffer_27();
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = L_5->get__offset_28();
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = L_7->get__count_29();
NullCheck(L_2);
int32_t L_9 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_10 = V_0;
NullCheck(L_10);
ReadWriteTask_ClearBeginState_m3AF099742BF157939A0CD5DB9AE7472669850836(L_10, /*hidden argument*/NULL);
return L_9;
}
}
// System.Int32 System.IO.Stream_<>c::<BeginWriteInternal>b__46_0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CBeginWriteInternalU3Eb__46_0_m91FE2212E52436AAC7F76E6E1CE34A2BC249A050 (U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * __this, RuntimeObject * ___U3Cp0U3E0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CBeginWriteInternalU3Eb__46_0_m91FE2212E52436AAC7F76E6E1CE34A2BC249A050_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline(/*hidden argument*/NULL);
V_0 = ((ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)IsInstSealed((RuntimeObject*)L_0, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var));
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_1 = V_0;
NullCheck(L_1);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = L_1->get__stream_26();
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_3 = V_0;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3->get__buffer_27();
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = L_5->get__offset_28();
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = L_7->get__count_29();
NullCheck(L_2);
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_9 = V_0;
NullCheck(L_9);
ReadWriteTask_ClearBeginState_m3AF099742BF157939A0CD5DB9AE7472669850836(L_9, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.IO.Stream_<>c::<RunReadWriteTaskWhenReady>b__47_0(System.Threading.Tasks.Task,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRunReadWriteTaskWhenReadyU3Eb__47_0_mAABA4692CAA24F0FAFC71C3CB9B951F5CE4E8CF6 (U3CU3Ec_t3F24E3C1CE591026A4EA9BFF05B2897EEEFAC630 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t0, RuntimeObject * ___state1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CRunReadWriteTaskWhenReadyU3Eb__47_0_mAABA4692CAA24F0FAFC71C3CB9B951F5CE4E8CF6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state1;
V_0 = ((Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67_il2cpp_TypeInfo_var));
Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * L_1 = V_0;
NullCheck(L_1);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = Tuple_2_get_Item1_m45E38FD03787621623378924C1ABCFCD968A8A3B_inline(L_1, /*hidden argument*/Tuple_2_get_Item1_m45E38FD03787621623378924C1ABCFCD968A8A3B_RuntimeMethod_var);
Tuple_2_tF0770FE6FF7DD48A3C70AE3D55341B0DCE1BCE67 * L_3 = V_0;
NullCheck(L_3);
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_4 = Tuple_2_get_Item2_mEF37E72592F83D030DE5F895B47DAB113C382796_inline(L_3, /*hidden argument*/Tuple_2_get_Item2_mEF37E72592F83D030DE5F895B47DAB113C382796_RuntimeMethod_var);
NullCheck(L_2);
Stream_RunReadWriteTask_m05B38DEEAA7A6D5CD4A8961C67AC393EABB3BFF7(L_2, L_4, /*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.IO.Stream_NullStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream__ctor_m33B984F0C9CBADFF8D35BEAAECE7E441D0E30E95 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStream__ctor_m33B984F0C9CBADFF8D35BEAAECE7E441D0E30E95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.IO.Stream_NullStream::get_CanRead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullStream_get_CanRead_mFD9D8F1AA6A19863C2BD503EF0D06E3AF22130F7 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.IO.Stream_NullStream::get_CanWrite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullStream_get_CanWrite_m5F7DA38043130218B374C8D9876309095C188B79 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.IO.Stream_NullStream::get_CanSeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullStream_get_CanSeek_m71B1C82400CB6FA26163D10669CC6797E855F594 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Int64 System.IO.Stream_NullStream::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NullStream_get_Length_m2E8ECCA59A03E7DBA3FAC296160703A728B772E1 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
{
return (((int64_t)((int64_t)0)));
}
}
// System.Int64 System.IO.Stream_NullStream::get_Position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NullStream_get_Position_m45DDFDE482926ED825643C4F2C49DB6BEAF58C17 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
{
return (((int64_t)((int64_t)0)));
}
}
// System.Void System.IO.Stream_NullStream::set_Position(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream_set_Position_m0865B0F3DDA170E428CC2F9CE48F2656C581A90C (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, int64_t ___value0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.Stream_NullStream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream_Dispose_m749F803E9444B0B25EA124E05D3B9EF73FEC8B86 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.Stream_NullStream::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream_Flush_m544C32CFE06066C40F5FE6F3892703A85132CD9C (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.IAsyncResult System.IO.Stream_NullStream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NullStream_BeginRead_m60044A2C8EDD3964F5A05C7867FDD11B1BBCD1DA (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, __this);
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696(/*hidden argument*/NULL);
}
IL_000d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_4 = ___callback3;
RuntimeObject * L_5 = ___state4;
RuntimeObject* L_6 = Stream_BlockingBeginRead_mACB9EF43064AEBB8CF5582CC4416CCD85BBA0C3F(__this, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Int32 System.IO.Stream_NullStream::EndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullStream_EndRead_m90214556654266714A193D5BDBE53B8250A2705F (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStream_EndRead_m90214556654266714A193D5BDBE53B8250A2705F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___asyncResult0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral5B3BD2481D1A6E4A5654FB0FCDF9C6265B5A959F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NullStream_EndRead_m90214556654266714A193D5BDBE53B8250A2705F_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___asyncResult0;
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
int32_t L_3 = Stream_BlockingEndRead_mB7BC9561AA27BEED2AB5758DA29B876DD8AB99F1(L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.IAsyncResult System.IO.Stream_NullStream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NullStream_BeginWrite_m071B8E98CC2C04B6330A23C7C732865386CA59AB (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___state4, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, __this);
if (L_0)
{
goto IL_000d;
}
}
{
__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B(/*hidden argument*/NULL);
}
IL_000d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___count2;
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_4 = ___callback3;
RuntimeObject * L_5 = ___state4;
RuntimeObject* L_6 = Stream_BlockingBeginWrite_m4D04E97AFDD77BE540B297163DF825E948E3C00C(__this, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Void System.IO.Stream_NullStream::EndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream_EndWrite_m77128A88F7E63F2A225D46CC0B4FA8F8F13F335C (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStream_EndWrite_m77128A88F7E63F2A225D46CC0B4FA8F8F13F335C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___asyncResult0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral5B3BD2481D1A6E4A5654FB0FCDF9C6265B5A959F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NullStream_EndWrite_m77128A88F7E63F2A225D46CC0B4FA8F8F13F335C_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___asyncResult0;
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream_BlockingEndWrite_m95DB7F725ECAC7820975AAEF9801C834FFB92BF5(L_2, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.IO.Stream_NullStream::Read(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullStream_Read_m276B165C0C0CE7825A0468F2BCF0DC876FCC80AE (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Int32 System.IO.Stream_NullStream::ReadByte()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullStream_ReadByte_mE08EA5EF5EC26E323852934FB4D72D6FDCDD955B (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Void System.IO.Stream_NullStream::Write(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream_Write_m30C7856F7DA8057B367A82F338C11C8882987F7C (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.Stream_NullStream::WriteByte(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStream_WriteByte_m93E4EA45AF3B3A360A33442AB94706B44D8CDE56 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, uint8_t ___value0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Int64 System.IO.Stream_NullStream::Seek(System.Int64,System.IO.SeekOrigin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NullStream_Seek_m255D38D5F4433B6A5A67E4056550244A6983D422 (NullStream_t67812D01C69E0D5F30A7DE84CC8069204DB7330E * __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method)
{
{
return (((int64_t)((int64_t)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.IO.Stream_ReadWriteTask::ClearBeginState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadWriteTask_ClearBeginState_m3AF099742BF157939A0CD5DB9AE7472669850836 (ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * __this, const RuntimeMethod* method)
{
{
__this->set__stream_26((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *)NULL);
__this->set__buffer_27((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
return;
}
}
// System.Void System.IO.Stream_ReadWriteTask::.ctor(System.Boolean,System.Func`2<System.Object,System.Int32>,System.Object,System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.AsyncCallback)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ReadWriteTask__ctor_mE4914C482924D77EE547ACF41C3309E33F1DE830 (ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * __this, bool ___isRead0, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___function1, RuntimeObject * ___state2, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream3, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer4, int32_t ___offset5, int32_t ___count6, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadWriteTask__ctor_mE4914C482924D77EE547ACF41C3309E33F1DE830_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_0 = ___function1;
RuntimeObject * L_1 = ___state2;
IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_il2cpp_TypeInfo_var);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = CancellationToken_get_None_m008D4CF5E11172703A6D781A3C30E6E537004F1D(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_il2cpp_TypeInfo_var);
Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F(__this, L_0, L_1, L_2, 8, /*hidden argument*/Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_RuntimeMethod_var);
V_0 = 1;
bool L_3 = ___isRead0;
__this->set__isRead_25(L_3);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream3;
__this->set__stream_26(L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___buffer4;
__this->set__buffer_27(L_5);
int32_t L_6 = ___offset5;
__this->set__offset_28(L_6);
int32_t L_7 = ___count6;
__this->set__count_29(L_7);
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_8 = ___callback7;
if (!L_8)
{
goto IL_0058;
}
}
{
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_9 = ___callback7;
__this->set__callback_30(L_9);
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_10 = ExecutionContext_Capture_m03E9840F580CC8E82725D5969D6132B0ABADD5F2((int32_t*)(&V_0), 3, /*hidden argument*/NULL);
__this->set__context_31(L_10);
Task_AddCompletionAction_m211F80F6F259D8F8CBB408A901101B91923800C1(__this, __this, /*hidden argument*/NULL);
}
IL_0058:
{
return;
}
}
// System.Void System.IO.Stream_ReadWriteTask::InvokeAsyncCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadWriteTask_InvokeAsyncCallback_m5F994ECAC01C8C79EB01A4E1933F2DF248D16521 (RuntimeObject * ___completedTask0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadWriteTask_InvokeAsyncCallback_m5F994ECAC01C8C79EB01A4E1933F2DF248D16521_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * V_0 = NULL;
{
RuntimeObject * L_0 = ___completedTask0;
V_0 = ((ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 *)CastclassSealed((RuntimeObject*)L_0, ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var));
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_1 = V_0;
NullCheck(L_1);
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_2 = L_1->get__callback_30();
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_3 = V_0;
NullCheck(L_3);
L_3->set__callback_30((AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)NULL);
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * L_4 = V_0;
NullCheck(L_2);
AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C(L_2, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.Stream_ReadWriteTask::System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadWriteTask_System_Threading_Tasks_ITaskCompletionAction_Invoke_m1507CBD85512EC1CEF5199834058DAF1355CB786 (ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___completingTask0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadWriteTask_System_Threading_Tasks_ITaskCompletionAction_Invoke_m1507CBD85512EC1CEF5199834058DAF1355CB786_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * V_0 = NULL;
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * V_1 = NULL;
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = __this->get__context_31();
V_0 = L_0;
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_1 = V_0;
if (L_1)
{
goto IL_001e;
}
}
{
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_2 = __this->get__callback_30();
__this->set__callback_30((AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)NULL);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = ___completingTask0;
NullCheck(L_2);
AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C(L_2, L_3, /*hidden argument*/NULL);
return;
}
IL_001e:
{
__this->set__context_31((ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 *)NULL);
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_4 = ((ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_StaticFields*)il2cpp_codegen_static_fields_for(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var))->get_s_invokeAsyncCallback_32();
V_1 = L_4;
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_5 = V_1;
if (L_5)
{
goto IL_0041;
}
}
{
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_6 = (ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 *)il2cpp_codegen_object_new(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676_il2cpp_TypeInfo_var);
ContextCallback__ctor_m079F8FC3EE21C47D9FDD09FD90C14BDD34539493(L_6, NULL, (intptr_t)((intptr_t)ReadWriteTask_InvokeAsyncCallback_m5F994ECAC01C8C79EB01A4E1933F2DF248D16521_RuntimeMethod_var), /*hidden argument*/NULL);
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_7 = L_6;
V_1 = L_7;
((ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_StaticFields*)il2cpp_codegen_static_fields_for(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80_il2cpp_TypeInfo_var))->set_s_invokeAsyncCallback_32(L_7);
}
IL_0041:
{
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_8 = V_0;
V_2 = L_8;
}
IL_0043:
try
{ // begin try (depth: 1)
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_9 = V_0;
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_10 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var);
ExecutionContext_Run_mFF76DDA6501D993EB4A4B79EFDAF1F6476920945(L_9, L_10, __this, (bool)1, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x58, FINALLY_004e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004e;
}
FINALLY_004e:
{ // begin finally (depth: 1)
{
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_11 = V_2;
if (!L_11)
{
goto IL_0057;
}
}
IL_0051:
{
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_12 = V_2;
NullCheck(L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_12);
}
IL_0057:
{
IL2CPP_END_FINALLY(78)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(78)
{
IL2CPP_JUMP_TBL(0x58, IL_0058)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0058:
{
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.IO.Stream_SynchronousAsyncResult::.ctor(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult__ctor_mD70656983C10103E00C79A6738468C5211F3A31C (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, int32_t ___bytesRead0, RuntimeObject * ___asyncStateObject1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___bytesRead0;
__this->set__bytesRead_5(L_0);
RuntimeObject * L_1 = ___asyncStateObject1;
__this->set__stateObject_0(L_1);
return;
}
}
// System.Void System.IO.Stream_SynchronousAsyncResult::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult__ctor_mFE74FD77B0CE7BB1D2717CF98831E50D4ACF0A8D (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, RuntimeObject * ___asyncStateObject0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___asyncStateObject0;
__this->set__stateObject_0(L_0);
__this->set__isWrite_1((bool)1);
return;
}
}
// System.Void System.IO.Stream_SynchronousAsyncResult::.ctor(System.Exception,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult__ctor_m50A54079C49E00F187CB5AB20A28AD3609B86C0C (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, Exception_t * ___ex0, RuntimeObject * ___asyncStateObject1, bool ___isWrite2, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Exception_t * L_0 = ___ex0;
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_1 = ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23(L_0, /*hidden argument*/NULL);
__this->set__exceptionInfo_3(L_1);
RuntimeObject * L_2 = ___asyncStateObject1;
__this->set__stateObject_0(L_2);
bool L_3 = ___isWrite2;
__this->set__isWrite_1(L_3);
return;
}
}
// System.Threading.WaitHandle System.IO.Stream_SynchronousAsyncResult::get_AsyncWaitHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * SynchronousAsyncResult_get_AsyncWaitHandle_m89D6B91D0A116BBF517063540F727EF4F5045825 (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SynchronousAsyncResult_get_AsyncWaitHandle_m89D6B91D0A116BBF517063540F727EF4F5045825_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * G_B2_0 = NULL;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** G_B2_1 = NULL;
Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * G_B1_0 = NULL;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** G_B1_1 = NULL;
{
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** L_0 = __this->get_address_of__waitHandle_2();
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var);
Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * L_1 = ((U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var))->get_U3CU3E9__12_0_1();
Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * L_2 = L_1;
G_B1_0 = L_2;
G_B1_1 = L_0;
if (L_2)
{
G_B2_0 = L_2;
G_B2_1 = L_0;
goto IL_0025;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var);
U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * L_3 = ((U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * L_4 = (Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A *)il2cpp_codegen_object_new(Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A_il2cpp_TypeInfo_var);
Func_1__ctor_mE6951FF55B0AC677D1C5F9DF997ACD1C0F0F2917(L_4, L_3, (intptr_t)((intptr_t)U3CU3Ec_U3Cget_AsyncWaitHandleU3Eb__12_0_mDFCAFA8FE40FD1707536E6CD007F856B895DFE05_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mE6951FF55B0AC677D1C5F9DF997ACD1C0F0F2917_RuntimeMethod_var);
Func_1_t712A1BCBE53B735A6BBCB0733CD774E8C6041E3A * L_5 = L_4;
((U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var))->set_U3CU3E9__12_0_1(L_5);
G_B2_0 = L_5;
G_B2_1 = G_B1_1;
}
IL_0025:
{
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_6 = LazyInitializer_EnsureInitialized_TisManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_m58CEB8458EDB19860D84BC4C322F94D2124C4014((ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 **)G_B2_1, G_B2_0, /*hidden argument*/LazyInitializer_EnsureInitialized_TisManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_m58CEB8458EDB19860D84BC4C322F94D2124C4014_RuntimeMethod_var);
return L_6;
}
}
// System.Void System.IO.Stream_SynchronousAsyncResult::ThrowIfError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult_ThrowIfError_m5653FF1252A2B4D89D31B8BDBC2209EB5E2D8068 (SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * __this, const RuntimeMethod* method)
{
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_0 = __this->get__exceptionInfo_3();
if (!L_0)
{
goto IL_0013;
}
}
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_1 = __this->get__exceptionInfo_3();
NullCheck(L_1);
ExceptionDispatchInfo_Throw_m9630C06EF8D7CDF5BD5DC76144CD98C4D9E8D26F(L_1, /*hidden argument*/NULL);
}
IL_0013:
{
return;
}
}
// System.Int32 System.IO.Stream_SynchronousAsyncResult::EndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SynchronousAsyncResult_EndRead_m995E037B3AB2E9DE4D215833CA7E81B60D869924 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SynchronousAsyncResult_EndRead_m995E037B3AB2E9DE4D215833CA7E81B60D869924_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * V_0 = NULL;
{
RuntimeObject* L_0 = ___asyncResult0;
V_0 = ((SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 *)IsInstSealed((RuntimeObject*)L_0, SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541_il2cpp_TypeInfo_var));
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_2 = V_0;
NullCheck(L_2);
bool L_3 = L_2->get__isWrite_1();
if (!L_3)
{
goto IL_0017;
}
}
IL_0012:
{
__Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909(/*hidden argument*/NULL);
}
IL_0017:
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_4 = V_0;
NullCheck(L_4);
bool L_5 = L_4->get__endXxxCalled_4();
if (!L_5)
{
goto IL_0024;
}
}
{
__Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA(/*hidden argument*/NULL);
}
IL_0024:
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_6 = V_0;
NullCheck(L_6);
L_6->set__endXxxCalled_4((bool)1);
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_7 = V_0;
NullCheck(L_7);
SynchronousAsyncResult_ThrowIfError_m5653FF1252A2B4D89D31B8BDBC2209EB5E2D8068(L_7, /*hidden argument*/NULL);
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = L_8->get__bytesRead_5();
return L_9;
}
}
// System.Void System.IO.Stream_SynchronousAsyncResult::EndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SynchronousAsyncResult_EndWrite_mF1F332953F2F8651DEFCBC8EB0616A759504F2B7 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SynchronousAsyncResult_EndWrite_mF1F332953F2F8651DEFCBC8EB0616A759504F2B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * V_0 = NULL;
{
RuntimeObject* L_0 = ___asyncResult0;
V_0 = ((SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 *)IsInstSealed((RuntimeObject*)L_0, SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541_il2cpp_TypeInfo_var));
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_2 = V_0;
NullCheck(L_2);
bool L_3 = L_2->get__isWrite_1();
if (L_3)
{
goto IL_0017;
}
}
IL_0012:
{
__Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909(/*hidden argument*/NULL);
}
IL_0017:
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_4 = V_0;
NullCheck(L_4);
bool L_5 = L_4->get__endXxxCalled_4();
if (!L_5)
{
goto IL_0024;
}
}
{
__Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C(/*hidden argument*/NULL);
}
IL_0024:
{
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_6 = V_0;
NullCheck(L_6);
L_6->set__endXxxCalled_4((bool)1);
SynchronousAsyncResult_t067927EEB8F3D90A2E5AAA7FA255EF0A78F83541 * L_7 = V_0;
NullCheck(L_7);
SynchronousAsyncResult_ThrowIfError_m5653FF1252A2B4D89D31B8BDBC2209EB5E2D8068(L_7, /*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.IO.Stream_SynchronousAsyncResult_<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mF595358E3E6D1B0342A5150FA18710C194D242F1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_mF595358E3E6D1B0342A5150FA18710C194D242F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * L_0 = (U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 *)il2cpp_codegen_object_new(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_m7DEF29BD0A5C24262F91CAFDD7054A27BA6C2671(L_0, /*hidden argument*/NULL);
((U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.IO.Stream_SynchronousAsyncResult_<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m7DEF29BD0A5C24262F91CAFDD7054A27BA6C2671 (U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Threading.ManualResetEvent System.IO.Stream_SynchronousAsyncResult_<>c::<get_AsyncWaitHandle>b__12_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * U3CU3Ec_U3Cget_AsyncWaitHandleU3Eb__12_0_mDFCAFA8FE40FD1707536E6CD007F856B895DFE05 (U3CU3Ec_tE1B8877CD3CAA2DB5C70151575D46F0450A0D608 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3Cget_AsyncWaitHandleU3Eb__12_0_mDFCAFA8FE40FD1707536E6CD007F856B895DFE05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_0 = (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 *)il2cpp_codegen_object_new(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var);
ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1(L_0, (bool)1, /*hidden argument*/NULL);
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.Int32 System.IO.StreamReader::get_DefaultBufferSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_get_DefaultBufferSize_mEB8626E984849BF091BF0D2140C91E2812D7872E (const RuntimeMethod* method)
{
{
return ((int32_t)1024);
}
}
// System.Void System.IO.StreamReader::CheckAsyncTaskInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_0 = NULL;
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = __this->get__asyncReadTask_20();
il2cpp_codegen_memory_barrier();
V_0 = L_0;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = V_0;
if (!L_1)
{
goto IL_0024;
}
}
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = V_0;
NullCheck(L_2);
bool L_3 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0024;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBD8E5715A35A52835F116AEA5F84A3B21F98BBC7, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446_RuntimeMethod_var);
}
IL_0024:
{
return;
}
}
// System.Void System.IO.StreamReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mFF4CF43617782C8B2EA8CED3C45571DD6B3AF7C6 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__ctor_mFF4CF43617782C8B2EA8CED3C45571DD6B3AF7C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m6AD25C8043D76E8E4BB14554D59A69035A1908EB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
StreamReader__ctor_m7160F36EA1D6A04F27A7C4622B74AB10BCB70980(__this, L_0, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m7160F36EA1D6A04F27A7C4622B74AB10BCB70980 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, bool ___detectEncodingFromByteOrderMarks1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__ctor_m7160F36EA1D6A04F27A7C4622B74AB10BCB70980_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
bool L_2 = ___detectEncodingFromByteOrderMarks1;
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
int32_t L_3 = StreamReader_get_DefaultBufferSize_mEB8626E984849BF091BF0D2140C91E2812D7872E(/*hidden argument*/NULL);
StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10(__this, L_0, L_1, L_2, L_3, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
int32_t L_2 = StreamReader_get_DefaultBufferSize_mEB8626E984849BF091BF0D2140C91E2812D7872E(/*hidden argument*/NULL);
StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10(__this, L_0, L_1, (bool)1, L_2, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, bool ___leaveOpen4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
if (!L_0)
{
goto IL_000c;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
if (L_1)
{
goto IL_0021;
}
}
IL_000c:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = ___stream0;
if (!L_2)
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteralC82E3D7279EFA3ECA576370AF952C815D48CE41F;
}
IL_001b:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10_RuntimeMethod_var);
}
IL_0021:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream0;
NullCheck(L_4);
bool L_5 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_4);
if (L_5)
{
goto IL_0039;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6738D06D6C794327B819962FE118768444DFE966, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10_RuntimeMethod_var);
}
IL_0039:
{
int32_t L_8 = ___bufferSize3;
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_0053;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, StreamReader__ctor_mCCCC84A6F2AC6AF3E3B78E816D032C1107BBEE10_RuntimeMethod_var);
}
IL_0053:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_11 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_12 = ___encoding1;
bool L_13 = ___detectEncodingFromByteOrderMarks2;
int32_t L_14 = ___bufferSize3;
bool L_15 = ___leaveOpen4;
StreamReader_Init_m6CD01243AB3564C5E8B45E9823041C09D359FC9B(__this, L_11, L_12, L_13, L_14, L_15, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mE646A80660B17E91CEA1048DB5B6F0616C77EECD (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___path0;
StreamReader__ctor_m0B7DB61C7C0ED190FB707A317A134A83EDFE3FAC(__this, L_0, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m0B7DB61C7C0ED190FB707A317A134A83EDFE3FAC (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, bool ___detectEncodingFromByteOrderMarks1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__ctor_m0B7DB61C7C0ED190FB707A317A134A83EDFE3FAC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___path0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
bool L_2 = ___detectEncodingFromByteOrderMarks1;
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
int32_t L_3 = StreamReader_get_DefaultBufferSize_mEB8626E984849BF091BF0D2140C91E2812D7872E(/*hidden argument*/NULL);
StreamReader__ctor_m247DA0D4A2DDF5CE686C089B75F8989C4F601AFB(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.String,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m3A1F63D6B85504E4427C172BCB25456E069111BB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__ctor_m3A1F63D6B85504E4427C172BCB25456E069111BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___path0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
int32_t L_2 = StreamReader_get_DefaultBufferSize_mEB8626E984849BF091BF0D2140C91E2812D7872E(/*hidden argument*/NULL);
StreamReader__ctor_m247DA0D4A2DDF5CE686C089B75F8989C4F601AFB(__this, L_0, L_1, (bool)1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m247DA0D4A2DDF5CE686C089B75F8989C4F601AFB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___path0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
bool L_2 = ___detectEncodingFromByteOrderMarks2;
int32_t L_3 = ___bufferSize3;
StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552(__this, L_0, L_1, L_2, L_3, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::.ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, bool ___checkHost4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_0 = NULL;
String_t* G_B5_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
String_t* L_0 = ___path0;
if (!L_0)
{
goto IL_000c;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
if (L_1)
{
goto IL_0021;
}
}
IL_000c:
{
String_t* L_2 = ___path0;
if (!L_2)
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774;
}
IL_001b:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552_RuntimeMethod_var);
}
IL_0021:
{
String_t* L_4 = ___path0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0039;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5F547FBCFA545D5B8CD060929EB2311739FF8BFD, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552_RuntimeMethod_var);
}
IL_0039:
{
int32_t L_8 = ___bufferSize3;
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_0053;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, StreamReader__ctor_mF3D25D3DCB0780DDF9D1B95FFF2B7AD4E9F54552_RuntimeMethod_var);
}
IL_0053:
{
String_t* L_11 = ___path0;
String_t* L_12 = ___path0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
String_t* L_13 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_12, /*hidden argument*/NULL);
bool L_14 = ___checkHost4;
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_15 = (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 *)il2cpp_codegen_object_new(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var);
FileStream__ctor_m4818E4AD857A0B285557E2B41E582D2237F49209(L_15, L_11, 3, 1, 1, ((int32_t)4096), ((int32_t)134217728), L_13, (bool)0, (bool)0, L_14, /*hidden argument*/NULL);
V_0 = L_15;
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_16 = V_0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_17 = ___encoding1;
bool L_18 = ___detectEncodingFromByteOrderMarks2;
int32_t L_19 = ___bufferSize3;
StreamReader_Init_m6CD01243AB3564C5E8B45E9823041C09D359FC9B(__this, L_16, L_17, L_18, L_19, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader::Init(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_Init_m6CD01243AB3564C5E8B45E9823041C09D359FC9B (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___detectEncodingFromByteOrderMarks2, int32_t ___bufferSize3, bool ___leaveOpen4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader_Init_m6CD01243AB3564C5E8B45E9823041C09D359FC9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
__this->set_stream_5(L_0);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
__this->set_encoding_6(L_1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ___encoding1;
NullCheck(L_2);
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_3 = VirtFuncInvoker0< Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * >::Invoke(27 /* System.Text.Decoder System.Text.Encoding::GetDecoder() */, L_2);
__this->set_decoder_7(L_3);
int32_t L_4 = ___bufferSize3;
if ((((int32_t)L_4) >= ((int32_t)((int32_t)128))))
{
goto IL_002a;
}
}
{
___bufferSize3 = ((int32_t)128);
}
IL_002a:
{
int32_t L_5 = ___bufferSize3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_5);
__this->set_byteBuffer_8(L_6);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = ___encoding1;
int32_t L_8 = ___bufferSize3;
NullCheck(L_7);
int32_t L_9 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(30 /* System.Int32 System.Text.Encoding::GetMaxCharCount(System.Int32) */, L_7, L_8);
__this->set__maxCharsPerBuffer_15(L_9);
int32_t L_10 = __this->get__maxCharsPerBuffer_15();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_10);
__this->set_charBuffer_9(L_11);
__this->set_byteLen_13(0);
__this->set_bytePos_14(0);
bool L_12 = ___detectEncodingFromByteOrderMarks2;
__this->set__detectEncoding_16(L_12);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_13 = ___encoding1;
NullCheck(L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Byte[] System.Text.Encoding::GetPreamble() */, L_13);
__this->set__preamble_10(L_14);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get__preamble_10();
NullCheck(L_15);
__this->set__checkPreamble_17((bool)((!(((uint32_t)(((RuntimeArray*)L_15)->max_length)) <= ((uint32_t)0)))? 1 : 0));
__this->set__isBlocked_18((bool)0);
bool L_16 = ___leaveOpen4;
__this->set__closable_19((bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0));
return;
}
}
// System.Void System.IO.StreamReader::Init(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_Init_mC5734A273A032305AF7F33DDB1BC2988C44D188C (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
__this->set_stream_5(L_0);
__this->set__closable_19((bool)1);
return;
}
}
// System.Void System.IO.StreamReader::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_Dispose_m110BF8AB37AA1D2F48C958557B87A170C689EB2A (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
bool L_0 = StreamReader_get_LeaveOpen_m666D02CB6FF3AD8E1072257A272729F7F179F359(__this, /*hidden argument*/NULL);
bool L_1 = ___disposing0;
if (!((int32_t)((int32_t)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)&(int32_t)L_1)))
{
goto IL_0020;
}
}
IL_000d:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = __this->get_stream_5();
if (!L_2)
{
goto IL_0020;
}
}
IL_0015:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_3 = __this->get_stream_5();
NullCheck(L_3);
VirtActionInvoker0::Invoke(13 /* System.Void System.IO.Stream::Close() */, L_3);
}
IL_0020:
{
IL2CPP_LEAVE(0x6B, FINALLY_0022);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0022;
}
FINALLY_0022:
{ // begin finally (depth: 1)
{
bool L_4 = StreamReader_get_LeaveOpen_m666D02CB6FF3AD8E1072257A272729F7F179F359(__this, /*hidden argument*/NULL);
if (L_4)
{
goto IL_006a;
}
}
IL_002a:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = __this->get_stream_5();
if (!L_5)
{
goto IL_006a;
}
}
IL_0032:
{
__this->set_stream_5((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *)NULL);
__this->set_encoding_6((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL);
__this->set_decoder_7((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)NULL);
__this->set_byteBuffer_8((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
__this->set_charBuffer_9((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL);
__this->set_charPos_11(0);
__this->set_charLen_12(0);
bool L_6 = ___disposing0;
TextReader_Dispose_m0DF461F7F5A52AD0C5ACB65BC5DD69106975AD0A(__this, L_6, /*hidden argument*/NULL);
}
IL_006a:
{
IL2CPP_END_FINALLY(34)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(34)
{
IL2CPP_JUMP_TBL(0x6B, IL_006b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_006b:
{
return;
}
}
// System.Boolean System.IO.StreamReader::get_LeaveOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamReader_get_LeaveOpen_m666D02CB6FF3AD8E1072257A272729F7F179F359 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__closable_19();
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Int32 System.IO.StreamReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_Peek_m8C914AF78EEF625B3DD817688FF76FCA1BA62E50 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_5();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446(__this, /*hidden argument*/NULL);
int32_t L_1 = __this->get_charPos_11();
int32_t L_2 = __this->get_charLen_12();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0033;
}
}
{
bool L_3 = __this->get__isBlocked_18();
if (L_3)
{
goto IL_0031;
}
}
{
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.IO.StreamReader::ReadBuffer() */, __this);
if (L_4)
{
goto IL_0033;
}
}
IL_0031:
{
return (-1);
}
IL_0033:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = __this->get_charBuffer_9();
int32_t L_6 = __this->get_charPos_11();
NullCheck(L_5);
int32_t L_7 = L_6;
uint16_t L_8 = (uint16_t)(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
return L_8;
}
}
// System.Boolean System.IO.StreamReader::DataAvailable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamReader_DataAvailable_m1B8832D71BF98C38A5520CDFFC64684716F87863 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_charPos_11();
int32_t L_1 = __this->get_charLen_12();
return (bool)((((int32_t)L_0) < ((int32_t)L_1))? 1 : 0);
}
}
// System.Int32 System.IO.StreamReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_Read_m04DCEDFC21FBC69F0E795164739D799FEA69562E (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_5();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446(__this, /*hidden argument*/NULL);
int32_t L_1 = __this->get_charPos_11();
int32_t L_2 = __this->get_charLen_12();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_002b;
}
}
{
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.IO.StreamReader::ReadBuffer() */, __this);
if (L_3)
{
goto IL_002b;
}
}
{
return (-1);
}
IL_002b:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = __this->get_charBuffer_9();
int32_t L_5 = __this->get_charPos_11();
NullCheck(L_4);
int32_t L_6 = L_5;
uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
int32_t L_8 = __this->get_charPos_11();
__this->set_charPos_11(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)));
return L_7;
}
}
// System.Int32 System.IO.StreamReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_Read_m3AED4ADF17B883000D088F00FF87E29A0874E67C (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader_Read_m3AED4ADF17B883000D088F00FF87E29A0874E67C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
String_t* G_B7_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StreamReader_Read_m3AED4ADF17B883000D088F00FF87E29A0874E67C_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StreamReader_Read_m3AED4ADF17B883000D088F00FF87E29A0874E67C_RuntimeMethod_var);
}
IL_0040:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = ___buffer0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_0058;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, StreamReader_Read_m3AED4ADF17B883000D088F00FF87E29A0874E67C_RuntimeMethod_var);
}
IL_0058:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_13 = __this->get_stream_5();
if (L_13)
{
goto IL_0065;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_0065:
{
StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446(__this, /*hidden argument*/NULL);
V_0 = 0;
V_1 = (bool)0;
goto IL_00d8;
}
IL_0071:
{
int32_t L_14 = __this->get_charLen_12();
int32_t L_15 = __this->get_charPos_11();
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15));
int32_t L_16 = V_2;
if (L_16)
{
goto IL_0090;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = ___buffer0;
int32_t L_18 = ___index1;
int32_t L_19 = V_0;
int32_t L_20 = ___count2;
int32_t L_21 = StreamReader_ReadBuffer_m0D2875C8C884E4625AA8DE3233975661463F178D(__this, L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19)), L_20, (bool*)(&V_1), /*hidden argument*/NULL);
V_2 = L_21;
}
IL_0090:
{
int32_t L_22 = V_2;
if (!L_22)
{
goto IL_00dc;
}
}
{
int32_t L_23 = V_2;
int32_t L_24 = ___count2;
if ((((int32_t)L_23) <= ((int32_t)L_24)))
{
goto IL_0099;
}
}
{
int32_t L_25 = ___count2;
V_2 = L_25;
}
IL_0099:
{
bool L_26 = V_1;
if (L_26)
{
goto IL_00c7;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = __this->get_charBuffer_9();
int32_t L_28 = __this->get_charPos_11();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = ___buffer0;
int32_t L_30 = ___index1;
int32_t L_31 = V_0;
int32_t L_32 = V_2;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_27, ((int32_t)il2cpp_codegen_multiply((int32_t)L_28, (int32_t)2)), (RuntimeArray *)(RuntimeArray *)L_29, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)2)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_32, (int32_t)2)), /*hidden argument*/NULL);
int32_t L_33 = __this->get_charPos_11();
int32_t L_34 = V_2;
__this->set_charPos_11(((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)));
}
IL_00c7:
{
int32_t L_35 = V_0;
int32_t L_36 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_36));
int32_t L_37 = ___count2;
int32_t L_38 = V_2;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)L_38));
bool L_39 = __this->get__isBlocked_18();
if (L_39)
{
goto IL_00dc;
}
}
IL_00d8:
{
int32_t L_40 = ___count2;
if ((((int32_t)L_40) > ((int32_t)0)))
{
goto IL_0071;
}
}
IL_00dc:
{
int32_t L_41 = V_0;
return L_41;
}
}
// System.String System.IO.StreamReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StreamReader_ReadToEnd_m5AB87727EA94EEC0577189AFBC4EE9FAAA22C2FB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader_ReadToEnd_m5AB87727EA94EEC0577189AFBC4EE9FAAA22C2FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_5();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446(__this, /*hidden argument*/NULL);
int32_t L_1 = __this->get_charLen_12();
int32_t L_2 = __this->get_charPos_11();
StringBuilder_t * L_3 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_3, ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2)), /*hidden argument*/NULL);
V_0 = L_3;
}
IL_0026:
{
StringBuilder_t * L_4 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = __this->get_charBuffer_9();
int32_t L_6 = __this->get_charPos_11();
int32_t L_7 = __this->get_charLen_12();
int32_t L_8 = __this->get_charPos_11();
NullCheck(L_4);
StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8(L_4, L_5, L_6, ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8)), /*hidden argument*/NULL);
int32_t L_9 = __this->get_charLen_12();
__this->set_charPos_11(L_9);
VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.IO.StreamReader::ReadBuffer() */, __this);
int32_t L_10 = __this->get_charLen_12();
if ((((int32_t)L_10) > ((int32_t)0)))
{
goto IL_0026;
}
}
{
StringBuilder_t * L_11 = V_0;
NullCheck(L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11);
return L_12;
}
}
// System.Void System.IO.StreamReader::CompressBuffer(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, int32_t ___n0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_byteBuffer_8();
int32_t L_1 = ___n0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get_byteBuffer_8();
int32_t L_3 = __this->get_byteLen_13();
int32_t L_4 = ___n0;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_0, L_1, (RuntimeArray *)(RuntimeArray *)L_2, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)), /*hidden argument*/NULL);
int32_t L_5 = __this->get_byteLen_13();
int32_t L_6 = ___n0;
__this->set_byteLen_13(((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6)));
return;
}
}
// System.Void System.IO.StreamReader::DetectEncoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader_DetectEncoding_m5626B39F6A0FD6DC107B6A63B0E4840230FFCF14 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader_DetectEncoding_m5626B39F6A0FD6DC107B6A63B0E4840230FFCF14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = __this->get_byteLen_13();
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
__this->set__detectEncoding_16((bool)0);
V_0 = (bool)0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_byteBuffer_8();
NullCheck(L_1);
int32_t L_2 = 0;
uint8_t L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)254)))))
{
goto IL_004c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get_byteBuffer_8();
NullCheck(L_4);
int32_t L_5 = 1;
uint8_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)255)))))
{
goto IL_004c;
}
}
{
UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 * L_7 = (UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 *)il2cpp_codegen_object_new(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_il2cpp_TypeInfo_var);
UnicodeEncoding__ctor_m008B9B92D414A56B533624021525F53B2A73BD10(L_7, (bool)1, (bool)1, /*hidden argument*/NULL);
__this->set_encoding_6(L_7);
StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991(__this, 2, /*hidden argument*/NULL);
V_0 = (bool)1;
goto IL_016c;
}
IL_004c:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = __this->get_byteBuffer_8();
NullCheck(L_8);
int32_t L_9 = 0;
uint8_t L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)255)))))
{
goto IL_00bd;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = __this->get_byteBuffer_8();
NullCheck(L_11);
int32_t L_12 = 1;
uint8_t L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)254)))))
{
goto IL_00bd;
}
}
{
int32_t L_14 = __this->get_byteLen_13();
if ((((int32_t)L_14) < ((int32_t)4)))
{
goto IL_0087;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get_byteBuffer_8();
NullCheck(L_15);
int32_t L_16 = 2;
uint8_t L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
if (L_17)
{
goto IL_0087;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = __this->get_byteBuffer_8();
NullCheck(L_18);
int32_t L_19 = 3;
uint8_t L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
if (!L_20)
{
goto IL_00a2;
}
}
IL_0087:
{
UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 * L_21 = (UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 *)il2cpp_codegen_object_new(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_il2cpp_TypeInfo_var);
UnicodeEncoding__ctor_m008B9B92D414A56B533624021525F53B2A73BD10(L_21, (bool)0, (bool)1, /*hidden argument*/NULL);
__this->set_encoding_6(L_21);
StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991(__this, 2, /*hidden argument*/NULL);
V_0 = (bool)1;
goto IL_016c;
}
IL_00a2:
{
UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A * L_22 = (UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A *)il2cpp_codegen_object_new(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A_il2cpp_TypeInfo_var);
UTF32Encoding__ctor_m29D20C03874A58220973F79277050D62F8CA2475(L_22, (bool)0, (bool)1, /*hidden argument*/NULL);
__this->set_encoding_6(L_22);
StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991(__this, 4, /*hidden argument*/NULL);
V_0 = (bool)1;
goto IL_016c;
}
IL_00bd:
{
int32_t L_23 = __this->get_byteLen_13();
if ((((int32_t)L_23) < ((int32_t)3)))
{
goto IL_0109;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = __this->get_byteBuffer_8();
NullCheck(L_24);
int32_t L_25 = 0;
uint8_t L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)239)))))
{
goto IL_0109;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = __this->get_byteBuffer_8();
NullCheck(L_27);
int32_t L_28 = 1;
uint8_t L_29 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)187)))))
{
goto IL_0109;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = __this->get_byteBuffer_8();
NullCheck(L_30);
int32_t L_31 = 2;
uint8_t L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)191)))))
{
goto IL_0109;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_33 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
__this->set_encoding_6(L_33);
StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991(__this, 3, /*hidden argument*/NULL);
V_0 = (bool)1;
goto IL_016c;
}
IL_0109:
{
int32_t L_34 = __this->get_byteLen_13();
if ((((int32_t)L_34) < ((int32_t)4)))
{
goto IL_015c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = __this->get_byteBuffer_8();
NullCheck(L_35);
int32_t L_36 = 0;
uint8_t L_37 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
if (L_37)
{
goto IL_015c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = __this->get_byteBuffer_8();
NullCheck(L_38);
int32_t L_39 = 1;
uint8_t L_40 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
if (L_40)
{
goto IL_015c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = __this->get_byteBuffer_8();
NullCheck(L_41);
int32_t L_42 = 2;
uint8_t L_43 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)254)))))
{
goto IL_015c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = __this->get_byteBuffer_8();
NullCheck(L_44);
int32_t L_45 = 3;
uint8_t L_46 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
if ((!(((uint32_t)L_46) == ((uint32_t)((int32_t)255)))))
{
goto IL_015c;
}
}
{
UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A * L_47 = (UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A *)il2cpp_codegen_object_new(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A_il2cpp_TypeInfo_var);
UTF32Encoding__ctor_m29D20C03874A58220973F79277050D62F8CA2475(L_47, (bool)1, (bool)1, /*hidden argument*/NULL);
__this->set_encoding_6(L_47);
StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991(__this, 4, /*hidden argument*/NULL);
V_0 = (bool)1;
goto IL_016c;
}
IL_015c:
{
int32_t L_48 = __this->get_byteLen_13();
if ((!(((uint32_t)L_48) == ((uint32_t)2))))
{
goto IL_016c;
}
}
{
__this->set__detectEncoding_16((bool)1);
}
IL_016c:
{
bool L_49 = V_0;
if (!L_49)
{
goto IL_01aa;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_50 = __this->get_encoding_6();
NullCheck(L_50);
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_51 = VirtFuncInvoker0< Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * >::Invoke(27 /* System.Text.Decoder System.Text.Encoding::GetDecoder() */, L_50);
__this->set_decoder_7(L_51);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_52 = __this->get_encoding_6();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_53 = __this->get_byteBuffer_8();
NullCheck(L_53);
NullCheck(L_52);
int32_t L_54 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(30 /* System.Int32 System.Text.Encoding::GetMaxCharCount(System.Int32) */, L_52, (((int32_t)((int32_t)(((RuntimeArray*)L_53)->max_length)))));
__this->set__maxCharsPerBuffer_15(L_54);
int32_t L_55 = __this->get__maxCharsPerBuffer_15();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_56 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_55);
__this->set_charBuffer_9(L_56);
}
IL_01aa:
{
return;
}
}
// System.Boolean System.IO.StreamReader::IsPreamble()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamReader_IsPreamble_m8F4635F47125EC8042D1EE51A476C7E8B64855A8 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B5_0 = 0;
{
bool L_0 = __this->get__checkPreamble_17();
if (L_0)
{
goto IL_000f;
}
}
{
bool L_1 = __this->get__checkPreamble_17();
return L_1;
}
IL_000f:
{
int32_t L_2 = __this->get_byteLen_13();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get__preamble_10();
NullCheck(L_3);
if ((((int32_t)L_2) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))))
{
goto IL_002e;
}
}
{
int32_t L_4 = __this->get_byteLen_13();
int32_t L_5 = __this->get_bytePos_14();
G_B5_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5));
goto IL_003d;
}
IL_002e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get__preamble_10();
NullCheck(L_6);
int32_t L_7 = __this->get_bytePos_14();
G_B5_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7));
}
IL_003d:
{
V_0 = G_B5_0;
V_1 = 0;
goto IL_0080;
}
IL_0042:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = __this->get_byteBuffer_8();
int32_t L_9 = __this->get_bytePos_14();
NullCheck(L_8);
int32_t L_10 = L_9;
uint8_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = __this->get__preamble_10();
int32_t L_13 = __this->get_bytePos_14();
NullCheck(L_12);
int32_t L_14 = L_13;
uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
if ((((int32_t)L_11) == ((int32_t)L_15)))
{
goto IL_006e;
}
}
{
__this->set_bytePos_14(0);
__this->set__checkPreamble_17((bool)0);
goto IL_0084;
}
IL_006e:
{
int32_t L_16 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
int32_t L_17 = __this->get_bytePos_14();
__this->set_bytePos_14(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
}
IL_0080:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0042;
}
}
IL_0084:
{
bool L_20 = __this->get__checkPreamble_17();
if (!L_20)
{
goto IL_00bf;
}
}
{
int32_t L_21 = __this->get_bytePos_14();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = __this->get__preamble_10();
NullCheck(L_22);
if ((!(((uint32_t)L_21) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))))
{
goto IL_00bf;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = __this->get__preamble_10();
NullCheck(L_23);
StreamReader_CompressBuffer_m71167B01AB3FA13B12CDD87A4C5C92F75912A991(__this, (((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))), /*hidden argument*/NULL);
__this->set_bytePos_14(0);
__this->set__checkPreamble_17((bool)0);
__this->set__detectEncoding_16((bool)0);
}
IL_00bf:
{
bool L_24 = __this->get__checkPreamble_17();
return L_24;
}
}
// System.Int32 System.IO.StreamReader::ReadBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_ReadBuffer_mE1EB6A665FE1BA9A657193D2C70A9E0B5D72D70E (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
__this->set_charLen_12(0);
__this->set_charPos_11(0);
bool L_0 = __this->get__checkPreamble_17();
if (L_0)
{
goto IL_001d;
}
}
{
__this->set_byteLen_13(0);
}
IL_001d:
{
bool L_1 = __this->get__checkPreamble_17();
if (!L_1)
{
goto IL_00b3;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = __this->get_stream_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get_byteBuffer_8();
int32_t L_4 = __this->get_bytePos_14();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = __this->get_byteBuffer_8();
NullCheck(L_5);
int32_t L_6 = __this->get_bytePos_14();
NullCheck(L_2);
int32_t L_7 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_2, L_3, L_4, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (int32_t)L_6)));
V_0 = L_7;
int32_t L_8 = V_0;
if (L_8)
{
goto IL_00a3;
}
}
{
int32_t L_9 = __this->get_byteLen_13();
if ((((int32_t)L_9) <= ((int32_t)0)))
{
goto IL_009c;
}
}
{
int32_t L_10 = __this->get_charLen_12();
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_11 = __this->get_decoder_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = __this->get_byteBuffer_8();
int32_t L_13 = __this->get_byteLen_13();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = __this->get_charBuffer_9();
int32_t L_15 = __this->get_charLen_12();
NullCheck(L_11);
int32_t L_16 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_11, L_12, 0, L_13, L_14, L_15);
__this->set_charLen_12(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_16)));
int32_t L_17 = 0;
V_1 = L_17;
__this->set_byteLen_13(L_17);
int32_t L_18 = V_1;
__this->set_bytePos_14(L_18);
}
IL_009c:
{
int32_t L_19 = __this->get_charLen_12();
return L_19;
}
IL_00a3:
{
int32_t L_20 = __this->get_byteLen_13();
int32_t L_21 = V_0;
__this->set_byteLen_13(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21)));
goto IL_00e2;
}
IL_00b3:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_22 = __this->get_stream_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = __this->get_byteBuffer_8();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = __this->get_byteBuffer_8();
NullCheck(L_24);
NullCheck(L_22);
int32_t L_25 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_22, L_23, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))));
__this->set_byteLen_13(L_25);
int32_t L_26 = __this->get_byteLen_13();
if (L_26)
{
goto IL_00e2;
}
}
{
int32_t L_27 = __this->get_charLen_12();
return L_27;
}
IL_00e2:
{
int32_t L_28 = __this->get_byteLen_13();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = __this->get_byteBuffer_8();
NullCheck(L_29);
__this->set__isBlocked_18((bool)((((int32_t)L_28) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))))))? 1 : 0));
bool L_30 = StreamReader_IsPreamble_m8F4635F47125EC8042D1EE51A476C7E8B64855A8(__this, /*hidden argument*/NULL);
if (L_30)
{
goto IL_0148;
}
}
{
bool L_31 = __this->get__detectEncoding_16();
if (!L_31)
{
goto IL_0117;
}
}
{
int32_t L_32 = __this->get_byteLen_13();
if ((((int32_t)L_32) < ((int32_t)2)))
{
goto IL_0117;
}
}
{
StreamReader_DetectEncoding_m5626B39F6A0FD6DC107B6A63B0E4840230FFCF14(__this, /*hidden argument*/NULL);
}
IL_0117:
{
int32_t L_33 = __this->get_charLen_12();
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_34 = __this->get_decoder_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = __this->get_byteBuffer_8();
int32_t L_36 = __this->get_byteLen_13();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_37 = __this->get_charBuffer_9();
int32_t L_38 = __this->get_charLen_12();
NullCheck(L_34);
int32_t L_39 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_34, L_35, 0, L_36, L_37, L_38);
__this->set_charLen_12(((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_39)));
}
IL_0148:
{
int32_t L_40 = __this->get_charLen_12();
if (!L_40)
{
goto IL_001d;
}
}
{
int32_t L_41 = __this->get_charLen_12();
return L_41;
}
}
// System.Int32 System.IO.StreamReader::ReadBuffer(System.Char[],System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_ReadBuffer_m0D2875C8C884E4625AA8DE3233975661463F178D (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___userBuffer0, int32_t ___userOffset1, int32_t ___desiredChars2, bool* ___readToUserBuffer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
__this->set_charLen_12(0);
__this->set_charPos_11(0);
bool L_0 = __this->get__checkPreamble_17();
if (L_0)
{
goto IL_001d;
}
}
{
__this->set_byteLen_13(0);
}
IL_001d:
{
V_0 = 0;
bool* L_1 = ___readToUserBuffer3;
int32_t L_2 = ___desiredChars2;
int32_t L_3 = __this->get__maxCharsPerBuffer_15();
*((int8_t*)L_1) = (int8_t)((((int32_t)((((int32_t)L_2) < ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_002e:
{
bool L_4 = __this->get__checkPreamble_17();
if (!L_4)
{
goto IL_00d7;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = __this->get_stream_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get_byteBuffer_8();
int32_t L_7 = __this->get_bytePos_14();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = __this->get_byteBuffer_8();
NullCheck(L_8);
int32_t L_9 = __this->get_bytePos_14();
NullCheck(L_5);
int32_t L_10 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_5, L_6, L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)));
V_1 = L_10;
int32_t L_11 = V_1;
if (L_11)
{
goto IL_00c7;
}
}
{
int32_t L_12 = __this->get_byteLen_13();
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_00c5;
}
}
{
bool* L_13 = ___readToUserBuffer3;
int32_t L_14 = *((uint8_t*)L_13);
if (!L_14)
{
goto IL_0097;
}
}
{
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_15 = __this->get_decoder_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = __this->get_byteBuffer_8();
int32_t L_17 = __this->get_byteLen_13();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = ___userBuffer0;
int32_t L_19 = ___userOffset1;
int32_t L_20 = V_0;
NullCheck(L_15);
int32_t L_21 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_15, L_16, 0, L_17, L_18, ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_20)));
V_0 = L_21;
__this->set_charLen_12(0);
goto IL_00c5;
}
IL_0097:
{
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_22 = __this->get_decoder_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = __this->get_byteBuffer_8();
int32_t L_24 = __this->get_byteLen_13();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = __this->get_charBuffer_9();
int32_t L_26 = V_0;
NullCheck(L_22);
int32_t L_27 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_22, L_23, 0, L_24, L_25, L_26);
V_0 = L_27;
int32_t L_28 = __this->get_charLen_12();
int32_t L_29 = V_0;
__this->set_charLen_12(((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_29)));
}
IL_00c5:
{
int32_t L_30 = V_0;
return L_30;
}
IL_00c7:
{
int32_t L_31 = __this->get_byteLen_13();
int32_t L_32 = V_1;
__this->set_byteLen_13(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)L_32)));
goto IL_0102;
}
IL_00d7:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_33 = __this->get_stream_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = __this->get_byteBuffer_8();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = __this->get_byteBuffer_8();
NullCheck(L_35);
NullCheck(L_33);
int32_t L_36 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_33, L_34, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))));
__this->set_byteLen_13(L_36);
int32_t L_37 = __this->get_byteLen_13();
if (!L_37)
{
goto IL_01b1;
}
}
IL_0102:
{
int32_t L_38 = __this->get_byteLen_13();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = __this->get_byteBuffer_8();
NullCheck(L_39);
__this->set__isBlocked_18((bool)((((int32_t)L_38) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_39)->max_length))))))? 1 : 0));
bool L_40 = StreamReader_IsPreamble_m8F4635F47125EC8042D1EE51A476C7E8B64855A8(__this, /*hidden argument*/NULL);
if (L_40)
{
goto IL_01ab;
}
}
{
bool L_41 = __this->get__detectEncoding_16();
if (!L_41)
{
goto IL_0149;
}
}
{
int32_t L_42 = __this->get_byteLen_13();
if ((((int32_t)L_42) < ((int32_t)2)))
{
goto IL_0149;
}
}
{
StreamReader_DetectEncoding_m5626B39F6A0FD6DC107B6A63B0E4840230FFCF14(__this, /*hidden argument*/NULL);
bool* L_43 = ___readToUserBuffer3;
int32_t L_44 = ___desiredChars2;
int32_t L_45 = __this->get__maxCharsPerBuffer_15();
*((int8_t*)L_43) = (int8_t)((((int32_t)((((int32_t)L_44) < ((int32_t)L_45))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0149:
{
__this->set_charPos_11(0);
bool* L_46 = ___readToUserBuffer3;
int32_t L_47 = *((uint8_t*)L_46);
if (!L_47)
{
goto IL_017d;
}
}
{
int32_t L_48 = V_0;
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_49 = __this->get_decoder_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = __this->get_byteBuffer_8();
int32_t L_51 = __this->get_byteLen_13();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_52 = ___userBuffer0;
int32_t L_53 = ___userOffset1;
int32_t L_54 = V_0;
NullCheck(L_49);
int32_t L_55 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_49, L_50, 0, L_51, L_52, ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)L_54)));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)L_55));
__this->set_charLen_12(0);
goto IL_01ab;
}
IL_017d:
{
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_56 = __this->get_decoder_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_57 = __this->get_byteBuffer_8();
int32_t L_58 = __this->get_byteLen_13();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_59 = __this->get_charBuffer_9();
int32_t L_60 = V_0;
NullCheck(L_56);
int32_t L_61 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_56, L_57, 0, L_58, L_59, L_60);
V_0 = L_61;
int32_t L_62 = __this->get_charLen_12();
int32_t L_63 = V_0;
__this->set_charLen_12(((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)L_63)));
}
IL_01ab:
{
int32_t L_64 = V_0;
if (!L_64)
{
goto IL_002e;
}
}
IL_01b1:
{
bool L_65 = __this->get__isBlocked_18();
int32_t L_66 = V_0;
int32_t L_67 = ___desiredChars2;
__this->set__isBlocked_18((bool)((int32_t)((int32_t)L_65&(int32_t)((((int32_t)L_66) < ((int32_t)L_67))? 1 : 0))));
int32_t L_68 = V_0;
return L_68;
}
}
// System.String System.IO.StreamReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StreamReader_ReadLine_m6F43A4370F3F23B1882543F76DAF5AA30681E477 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader_ReadLine_m6F43A4370F3F23B1882543F76DAF5AA30681E477_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
String_t* V_3 = NULL;
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_5();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
StreamReader_CheckAsyncTaskInProgress_m26526DB4D2479414C1405B52388FB222DF49C446(__this, /*hidden argument*/NULL);
int32_t L_1 = __this->get_charPos_11();
int32_t L_2 = __this->get_charLen_12();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_002b;
}
}
{
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.IO.StreamReader::ReadBuffer() */, __this);
if (L_3)
{
goto IL_002b;
}
}
{
return (String_t*)NULL;
}
IL_002b:
{
V_0 = (StringBuilder_t *)NULL;
}
IL_002d:
{
int32_t L_4 = __this->get_charPos_11();
V_1 = L_4;
}
IL_0034:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = __this->get_charBuffer_9();
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
uint16_t L_8 = (uint16_t)(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_2 = L_8;
Il2CppChar L_9 = V_2;
if ((((int32_t)L_9) == ((int32_t)((int32_t)13))))
{
goto IL_004a;
}
}
{
Il2CppChar L_10 = V_2;
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)10)))))
{
goto IL_00d1;
}
}
IL_004a:
{
StringBuilder_t * L_11 = V_0;
if (!L_11)
{
goto IL_0071;
}
}
{
StringBuilder_t * L_12 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = __this->get_charBuffer_9();
int32_t L_14 = __this->get_charPos_11();
int32_t L_15 = V_1;
int32_t L_16 = __this->get_charPos_11();
NullCheck(L_12);
StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8(L_12, L_13, L_14, ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL);
StringBuilder_t * L_17 = V_0;
NullCheck(L_17);
String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_17);
V_3 = L_18;
goto IL_008b;
}
IL_0071:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_19 = __this->get_charBuffer_9();
int32_t L_20 = __this->get_charPos_11();
int32_t L_21 = V_1;
int32_t L_22 = __this->get_charPos_11();
String_t* L_23 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_19, L_20, ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)), /*hidden argument*/NULL);
V_3 = L_23;
}
IL_008b:
{
int32_t L_24 = V_1;
__this->set_charPos_11(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)));
Il2CppChar L_25 = V_2;
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)13)))))
{
goto IL_00cf;
}
}
{
int32_t L_26 = __this->get_charPos_11();
int32_t L_27 = __this->get_charLen_12();
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_00b0;
}
}
{
int32_t L_28 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.IO.StreamReader::ReadBuffer() */, __this);
if ((((int32_t)L_28) <= ((int32_t)0)))
{
goto IL_00cf;
}
}
IL_00b0:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = __this->get_charBuffer_9();
int32_t L_30 = __this->get_charPos_11();
NullCheck(L_29);
int32_t L_31 = L_30;
uint16_t L_32 = (uint16_t)(L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)10)))))
{
goto IL_00cf;
}
}
{
int32_t L_33 = __this->get_charPos_11();
__this->set_charPos_11(((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)));
}
IL_00cf:
{
String_t* L_34 = V_3;
return L_34;
}
IL_00d1:
{
int32_t L_35 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1));
int32_t L_36 = V_1;
int32_t L_37 = __this->get_charLen_12();
if ((((int32_t)L_36) < ((int32_t)L_37)))
{
goto IL_0034;
}
}
{
int32_t L_38 = __this->get_charLen_12();
int32_t L_39 = __this->get_charPos_11();
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_39));
StringBuilder_t * L_40 = V_0;
if (L_40)
{
goto IL_00fc;
}
}
{
int32_t L_41 = V_1;
StringBuilder_t * L_42 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_42, ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)((int32_t)80))), /*hidden argument*/NULL);
V_0 = L_42;
}
IL_00fc:
{
StringBuilder_t * L_43 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_44 = __this->get_charBuffer_9();
int32_t L_45 = __this->get_charPos_11();
int32_t L_46 = V_1;
NullCheck(L_43);
StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8(L_43, L_44, L_45, L_46, /*hidden argument*/NULL);
int32_t L_47 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.IO.StreamReader::ReadBuffer() */, __this);
if ((((int32_t)L_47) > ((int32_t)0)))
{
goto IL_002d;
}
}
{
StringBuilder_t * L_48 = V_0;
NullCheck(L_48);
String_t* L_49 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_48);
return L_49;
}
}
// System.Void System.IO.StreamReader::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__cctor_mD78F6CEA98B66DF1DF73D1D990DF0A724A5E4887 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamReader__cctor_mD78F6CEA98B66DF1DF73D1D990DF0A724A5E4887_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * L_0 = (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 *)il2cpp_codegen_object_new(NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0_il2cpp_TypeInfo_var);
NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8(L_0, /*hidden argument*/NULL);
((StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields*)il2cpp_codegen_static_fields_for(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var))->set_Null_4(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.IO.StreamReader_NullStreamReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
StreamReader__ctor_mFF4CF43617782C8B2EA8CED3C45571DD6B3AF7C6(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var))->get_Null_1();
StreamReader_Init_mC5734A273A032305AF7F33DDB1BC2988C44D188C(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamReader_NullStreamReader::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullStreamReader_Dispose_m57C394E189DB374A85C3D1A7B0546030B784B98A (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullStreamReader_Peek_m1CC2251E272E2D15B6D4D46CE4726A63A18B71E0 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullStreamReader_Read_m435F9F5BDCFB4A3F45C347146E0AC9FF47DDE76F (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullStreamReader_Read_m4A2BCE08C3531149D40224D119D6CBE2E44010A8 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.String System.IO.StreamReader_NullStreamReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NullStreamReader_ReadLine_m4445419B42D1387CDAD078AB50F062E580DCC39E (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return (String_t*)NULL;
}
}
// System.String System.IO.StreamReader_NullStreamReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NullStreamReader_ReadToEnd_mEEED7270C45A89D861A6816C2F0DD27CB7D2B8B8 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStreamReader_ReadToEnd_mEEED7270C45A89D861A6816C2F0DD27CB7D2B8B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_0;
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::ReadBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullStreamReader_ReadBuffer_m4AFCF855C7F92BFBCB96DA3003C32C26D258067C (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return 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.IO.StreamWriter::CheckAsyncTaskInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_0 = NULL;
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = __this->get__asyncWriteTask_22();
il2cpp_codegen_memory_barrier();
V_0 = L_0;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = V_0;
if (!L_1)
{
goto IL_0024;
}
}
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = V_0;
NullCheck(L_2);
bool L_3 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0024;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBD8E5715A35A52835F116AEA5F84A3B21F98BBC7, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_RuntimeMethod_var);
}
IL_0024:
{
return;
}
}
// System.Text.Encoding System.IO.StreamWriter::get_UTF8NoBOM()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->get__UTF8NoBOM_23();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_001c;
}
}
{
UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * L_1 = (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE *)il2cpp_codegen_object_new(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var);
UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E(L_1, (bool)0, (bool)1, /*hidden argument*/NULL);
Thread_MemoryBarrier_mAB9F6B8404ACCE0D17BEDBD656782FEDDBC9FB8A(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->set__UTF8NoBOM_23(L_1);
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->get__UTF8NoBOM_23();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Void System.IO.StreamWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m1795A943BBA92A3335FDC2112A2082ADD47DF9C4 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_m1795A943BBA92A3335FDC2112A2082ADD47DF9C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_mB84BC6A7038D0550163682CD317A76740620E039 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_mB84BC6A7038D0550163682CD317A76740620E039_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8(/*hidden argument*/NULL);
StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779(__this, L_0, L_1, ((int32_t)1024), (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, int32_t ___bufferSize2, bool ___leaveOpen3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
if (!L_0)
{
goto IL_000d;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
if (L_1)
{
goto IL_0022;
}
}
IL_000d:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = ___stream0;
if (!L_2)
{
goto IL_0017;
}
}
{
G_B5_0 = _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336;
goto IL_001c;
}
IL_0017:
{
G_B5_0 = _stringLiteralC82E3D7279EFA3ECA576370AF952C815D48CE41F;
}
IL_001c:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var);
}
IL_0022:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream0;
NullCheck(L_4);
bool L_5 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, L_4);
if (L_5)
{
goto IL_003a;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral43E4B01DA5BC310916BDCD59560588C54E5A08C9, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var);
}
IL_003a:
{
int32_t L_8 = ___bufferSize2;
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_0053;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var);
}
IL_0053:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_11 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_12 = ___encoding1;
int32_t L_13 = ___bufferSize2;
bool L_14 = ___leaveOpen3;
StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5(__this, L_11, L_12, L_13, L_14, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m1D1CC9AC344BA16DBFD6A99AAADF2E383B4E888C (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___path0;
bool L_1 = ___append1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ___encoding2;
StreamWriter__ctor_m15EC5B8866FB9D0124CBE8E2C56AF4E5448E7FFD(__this, L_0, L_1, L_2, ((int32_t)1024), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m15EC5B8866FB9D0124CBE8E2C56AF4E5448E7FFD (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___path0;
bool L_1 = ___append1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ___encoding2;
int32_t L_3 = ___bufferSize3;
StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85(__this, L_0, L_1, L_2, L_3, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, bool ___checkHost4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL);
String_t* L_0 = ___path0;
if (L_0)
{
goto IL_0015;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_0015:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ___encoding2;
if (L_2)
{
goto IL_0023;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_0023:
{
String_t* L_4 = ___path0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_003b;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5F547FBCFA545D5B8CD060929EB2311739FF8BFD, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_003b:
{
int32_t L_8 = ___bufferSize3;
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_0055;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_0055:
{
String_t* L_11 = ___path0;
bool L_12 = ___append1;
bool L_13 = ___checkHost4;
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_14 = StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6(L_11, L_12, L_13, /*hidden argument*/NULL);
V_0 = L_14;
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_15 = V_0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_16 = ___encoding2;
int32_t L_17 = ___bufferSize3;
StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5(__this, L_15, L_16, L_17, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::Init(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___streamArg0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encodingArg1, int32_t ___bufferSize2, bool ___shouldLeaveOpen3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___streamArg0;
__this->set_stream_12(L_0);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encodingArg1;
__this->set_encoding_13(L_1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = __this->get_encoding_13();
NullCheck(L_2);
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_3 = VirtFuncInvoker0< Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * >::Invoke(28 /* System.Text.Encoder System.Text.Encoding::GetEncoder() */, L_2);
__this->set_encoder_14(L_3);
int32_t L_4 = ___bufferSize2;
if ((((int32_t)L_4) >= ((int32_t)((int32_t)128))))
{
goto IL_002e;
}
}
{
___bufferSize2 = ((int32_t)128);
}
IL_002e:
{
int32_t L_5 = ___bufferSize2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_5);
__this->set_charBuffer_16(L_6);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = __this->get_encoding_13();
int32_t L_8 = ___bufferSize2;
NullCheck(L_7);
int32_t L_9 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(29 /* System.Int32 System.Text.Encoding::GetMaxByteCount(System.Int32) */, L_7, L_8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_9);
__this->set_byteBuffer_15(L_10);
int32_t L_11 = ___bufferSize2;
__this->set_charLen_18(L_11);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_12 = __this->get_stream_12();
NullCheck(L_12);
bool L_13 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_12);
if (!L_13)
{
goto IL_007b;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_14 = __this->get_stream_12();
NullCheck(L_14);
int64_t L_15 = VirtFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Position() */, L_14);
if ((((int64_t)L_15) <= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_007b;
}
}
{
__this->set_haveWrittenPreamble_20((bool)1);
}
IL_007b:
{
bool L_16 = ___shouldLeaveOpen3;
__this->set_closable_21((bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0));
return;
}
}
// System.IO.Stream System.IO.StreamWriter::CreateFile(System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6 (String_t* ___path0, bool ___append1, bool ___checkHost2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
bool L_0 = ___append1;
if (L_0)
{
goto IL_0006;
}
}
{
G_B3_0 = 2;
goto IL_0007;
}
IL_0006:
{
G_B3_0 = 6;
}
IL_0007:
{
V_0 = G_B3_0;
String_t* L_1 = ___path0;
int32_t L_2 = V_0;
String_t* L_3 = ___path0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
String_t* L_4 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_3, /*hidden argument*/NULL);
bool L_5 = ___checkHost2;
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_6 = (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 *)il2cpp_codegen_object_new(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var);
FileStream__ctor_m4818E4AD857A0B285557E2B41E582D2237F49209(L_6, L_1, L_2, 2, 1, ((int32_t)4096), ((int32_t)134217728), L_4, (bool)0, (bool)0, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Void System.IO.StreamWriter::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Dispose_m76151F3AC1AE52E8B720FF5193398FA9E627F025 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_12();
if (!L_0)
{
goto IL_002a;
}
}
IL_0008:
{
bool L_1 = ___disposing0;
if (L_1)
{
goto IL_001c;
}
}
IL_000b:
{
bool L_2 = StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002a;
}
}
IL_0013:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_3 = __this->get_stream_12();
goto IL_002a;
}
IL_001c:
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)1, /*hidden argument*/NULL);
}
IL_002a:
{
IL2CPP_LEAVE(0x7F, FINALLY_002c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002c;
}
FINALLY_002c:
{ // begin finally (depth: 1)
{
bool L_4 = StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527(__this, /*hidden argument*/NULL);
if (L_4)
{
goto IL_007e;
}
}
IL_0034:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = __this->get_stream_12();
if (!L_5)
{
goto IL_007e;
}
}
IL_003c:
try
{ // begin try (depth: 2)
{
bool L_6 = ___disposing0;
if (!L_6)
{
goto IL_004a;
}
}
IL_003f:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_7 = __this->get_stream_12();
NullCheck(L_7);
VirtActionInvoker0::Invoke(13 /* System.Void System.IO.Stream::Close() */, L_7);
}
IL_004a:
{
IL2CPP_LEAVE(0x7E, FINALLY_004c);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004c;
}
FINALLY_004c:
{ // begin finally (depth: 2)
__this->set_stream_12((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *)NULL);
__this->set_byteBuffer_15((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
__this->set_charBuffer_16((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL);
__this->set_encoding_13((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL);
__this->set_encoder_14((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)NULL);
__this->set_charLen_18(0);
bool L_8 = ___disposing0;
TextWriter_Dispose_m53C25DF618C5F0D730B0E3EB96D056C301B66DFD(__this, L_8, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(76)
} // end finally (depth: 2)
IL2CPP_CLEANUP(76)
{
IL2CPP_JUMP_TBL(0x7E, IL_007e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_007e:
{
IL2CPP_END_FINALLY(44)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(44)
{
IL2CPP_JUMP_TBL(0x7F, IL_007f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_007f:
{
return;
}
}
// System.Void System.IO.StreamWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Flush_m326E76BE755A73CCBCD715166925FC9C5ADF8FB5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::Flush(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, bool ___flushStream0, bool ___flushEncoder1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_12();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get_charPos_17();
if (L_1)
{
goto IL_0023;
}
}
{
bool L_2 = ___flushStream0;
if (L_2)
{
goto IL_001b;
}
}
{
bool L_3 = ___flushEncoder1;
if (!L_3)
{
goto IL_0022;
}
}
IL_001b:
{
bool L_4 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_4)
{
goto IL_0023;
}
}
IL_0022:
{
return;
}
IL_0023:
{
bool L_5 = __this->get_haveWrittenPreamble_20();
if (L_5)
{
goto IL_0052;
}
}
{
__this->set_haveWrittenPreamble_20((bool)1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = __this->get_encoding_13();
NullCheck(L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Byte[] System.Text.Encoding::GetPreamble() */, L_6);
V_1 = L_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_1;
NullCheck(L_8);
if (!(((RuntimeArray*)L_8)->max_length))
{
goto IL_0052;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_9 = __this->get_stream_12();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_1;
NullCheck(L_11);
NullCheck(L_9);
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_9, L_10, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))));
}
IL_0052:
{
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_12 = __this->get_encoder_14();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = __this->get_charBuffer_16();
int32_t L_14 = __this->get_charPos_17();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get_byteBuffer_15();
bool L_16 = ___flushEncoder1;
NullCheck(L_12);
int32_t L_17 = VirtFuncInvoker6< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, bool >::Invoke(7 /* System.Int32 System.Text.Encoder::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean) */, L_12, L_13, 0, L_14, L_15, 0, L_16);
V_0 = L_17;
__this->set_charPos_17(0);
int32_t L_18 = V_0;
if ((((int32_t)L_18) <= ((int32_t)0)))
{
goto IL_0091;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_19 = __this->get_stream_12();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = __this->get_byteBuffer_15();
int32_t L_21 = V_0;
NullCheck(L_19);
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_19, L_20, 0, L_21);
}
IL_0091:
{
bool L_22 = ___flushStream0;
if (!L_22)
{
goto IL_009f;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_23 = __this->get_stream_12();
NullCheck(L_23);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.Stream::Flush() */, L_23);
}
IL_009f:
{
return;
}
}
// System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_set_AutoFlush_mEFB9D46E4D861F65CB93F310B7BBA8AF0E10C1B6 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, bool ___value0, const RuntimeMethod* method)
{
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
bool L_0 = ___value0;
__this->set_autoFlush_19(L_0);
bool L_1 = ___value0;
if (!L_1)
{
goto IL_0018;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_0018:
{
return;
}
}
// System.Boolean System.IO.StreamWriter::get_LeaveOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_closable_21();
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.IO.StreamWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_mF8B514CF8D521D390B0F1F9950851B358560F623 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
int32_t L_0 = __this->get_charPos_17();
int32_t L_1 = __this->get_charLen_18();
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_001c;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_001c:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get_charBuffer_16();
int32_t L_3 = __this->get_charPos_17();
Il2CppChar L_4 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (Il2CppChar)L_4);
int32_t L_5 = __this->get_charPos_17();
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
bool L_6 = __this->get_autoFlush_19();
if (!L_6)
{
goto IL_0048;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_0048:
{
return;
}
}
// System.Void System.IO.StreamWriter::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_m71F168D89F89E740DF5E16D48C58624712CA808A (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
V_0 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
NullCheck(L_1);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))));
goto IL_006d;
}
IL_0012:
{
int32_t L_2 = __this->get_charPos_17();
int32_t L_3 = __this->get_charLen_18();
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_0028;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_0028:
{
int32_t L_4 = __this->get_charLen_18();
int32_t L_5 = __this->get_charPos_17();
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5));
int32_t L_6 = V_2;
int32_t L_7 = V_1;
if ((((int32_t)L_6) <= ((int32_t)L_7)))
{
goto IL_003c;
}
}
{
int32_t L_8 = V_1;
V_2 = L_8;
}
IL_003c:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
int32_t L_10 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = __this->get_charBuffer_16();
int32_t L_12 = __this->get_charPos_17();
int32_t L_13 = V_2;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_9, ((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2)), (RuntimeArray *)(RuntimeArray *)L_11, ((int32_t)il2cpp_codegen_multiply((int32_t)L_12, (int32_t)2)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)2)), /*hidden argument*/NULL);
int32_t L_14 = __this->get_charPos_17();
int32_t L_15 = V_2;
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)));
int32_t L_16 = V_0;
int32_t L_17 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17));
int32_t L_18 = V_1;
int32_t L_19 = V_2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19));
}
IL_006d:
{
int32_t L_20 = V_1;
if ((((int32_t)L_20) > ((int32_t)0)))
{
goto IL_0012;
}
}
{
bool L_21 = __this->get_autoFlush_19();
if (!L_21)
{
goto IL_0081;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_0081:
{
return;
}
}
// System.Void System.IO.StreamWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_0062:
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
goto IL_00c7;
}
IL_006a:
{
int32_t L_14 = __this->get_charPos_17();
int32_t L_15 = __this->get_charLen_18();
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
{
goto IL_0080;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_0080:
{
int32_t L_16 = __this->get_charLen_18();
int32_t L_17 = __this->get_charPos_17();
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17));
int32_t L_18 = V_0;
int32_t L_19 = ___count2;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_0094;
}
}
{
int32_t L_20 = ___count2;
V_0 = L_20;
}
IL_0094:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_21 = ___buffer0;
int32_t L_22 = ___index1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = __this->get_charBuffer_16();
int32_t L_24 = __this->get_charPos_17();
int32_t L_25 = V_0;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_21, ((int32_t)il2cpp_codegen_multiply((int32_t)L_22, (int32_t)2)), (RuntimeArray *)(RuntimeArray *)L_23, ((int32_t)il2cpp_codegen_multiply((int32_t)L_24, (int32_t)2)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)2)), /*hidden argument*/NULL);
int32_t L_26 = __this->get_charPos_17();
int32_t L_27 = V_0;
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27)));
int32_t L_28 = ___index1;
int32_t L_29 = V_0;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_29));
int32_t L_30 = ___count2;
int32_t L_31 = V_0;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31));
}
IL_00c7:
{
int32_t L_32 = ___count2;
if ((((int32_t)L_32) > ((int32_t)0)))
{
goto IL_006a;
}
}
{
bool L_33 = __this->get_autoFlush_19();
if (!L_33)
{
goto IL_00db;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_00db:
{
return;
}
}
// System.Void System.IO.StreamWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_mDBCA4E464A543DFD00B0619943BA0C7F15DB55FE (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
String_t* L_0 = ___value0;
if (!L_0)
{
goto IL_007c;
}
}
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
String_t* L_1 = ___value0;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = 0;
goto IL_0068;
}
IL_0014:
{
int32_t L_3 = __this->get_charPos_17();
int32_t L_4 = __this->get_charLen_18();
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_002a;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_002a:
{
int32_t L_5 = __this->get_charLen_18();
int32_t L_6 = __this->get_charPos_17();
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6));
int32_t L_7 = V_2;
int32_t L_8 = V_0;
if ((((int32_t)L_7) <= ((int32_t)L_8)))
{
goto IL_003e;
}
}
{
int32_t L_9 = V_0;
V_2 = L_9;
}
IL_003e:
{
String_t* L_10 = ___value0;
int32_t L_11 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = __this->get_charBuffer_16();
int32_t L_13 = __this->get_charPos_17();
int32_t L_14 = V_2;
NullCheck(L_10);
String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661(L_10, L_11, L_12, L_13, L_14, /*hidden argument*/NULL);
int32_t L_15 = __this->get_charPos_17();
int32_t L_16 = V_2;
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)));
int32_t L_17 = V_1;
int32_t L_18 = V_2;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18));
int32_t L_19 = V_0;
int32_t L_20 = V_2;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20));
}
IL_0068:
{
int32_t L_21 = V_0;
if ((((int32_t)L_21) > ((int32_t)0)))
{
goto IL_0014;
}
}
{
bool L_22 = __this->get_autoFlush_19();
if (!L_22)
{
goto IL_007c;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_007c:
{
return;
}
}
// System.Void System.IO.StreamWriter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__cctor_m201F8BD01435889E27515048CF151323BAC42345 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__cctor_m201F8BD01435889E27515048CF151323BAC42345_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var))->get_Null_1();
UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * L_1 = (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE *)il2cpp_codegen_object_new(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var);
UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E(L_1, (bool)0, (bool)1, /*hidden argument*/NULL);
StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * L_2 = (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E *)il2cpp_codegen_object_new(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779(L_2, L_0, L_1, ((int32_t)128), (bool)1, /*hidden argument*/NULL);
((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->set_Null_11(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.IO.StringReader::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17 (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * G_B4_0 = NULL;
StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * G_B3_0 = NULL;
int32_t G_B5_0 = 0;
StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * G_B5_1 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_RuntimeMethod_var);
}
IL_0014:
{
String_t* L_2 = ___s0;
__this->set__s_4(L_2);
String_t* L_3 = ___s0;
G_B3_0 = __this;
if (!L_3)
{
G_B4_0 = __this;
goto IL_0027;
}
}
{
String_t* L_4 = ___s0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
G_B5_0 = L_5;
G_B5_1 = G_B3_0;
goto IL_0028;
}
IL_0027:
{
G_B5_0 = 0;
G_B5_1 = G_B4_0;
}
IL_0028:
{
NullCheck(G_B5_1);
G_B5_1->set__length_6(G_B5_0);
return;
}
}
// System.Void System.IO.StringReader::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader_Dispose_mE20D4831BF0E8F2CAFBE5AC5CFDADA8A8C11FFBA (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
__this->set__s_4((String_t*)NULL);
__this->set__pos_5(0);
__this->set__length_6(0);
bool L_0 = ___disposing0;
TextReader_Dispose_m0DF461F7F5A52AD0C5ACB65BC5DD69106975AD0A(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.IO.StringReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringReader_Peek_m24E1F26BF93B84536D03A25D9DEA617EFB01070F (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
int32_t L_2 = __this->get__length_6();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_001d;
}
}
{
return (-1);
}
IL_001d:
{
String_t* L_3 = __this->get__s_4();
int32_t L_4 = __this->get__pos_5();
NullCheck(L_3);
Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Int32 System.IO.StringReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringReader_Read_m063E6569ED299143098989C3E91FEADF611FE43B (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
int32_t L_2 = __this->get__length_6();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_001d;
}
}
{
return (-1);
}
IL_001d:
{
String_t* L_3 = __this->get__s_4();
int32_t L_4 = __this->get__pos_5();
V_0 = L_4;
int32_t L_5 = V_0;
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
int32_t L_6 = V_0;
NullCheck(L_3);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Int32 System.IO.StringReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_0062:
{
String_t* L_14 = __this->get__s_4();
if (L_14)
{
goto IL_006f;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_006f:
{
int32_t L_15 = __this->get__length_6();
int32_t L_16 = __this->get__pos_5();
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16));
int32_t L_17 = V_0;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_00a9;
}
}
{
int32_t L_18 = V_0;
int32_t L_19 = ___count2;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_0087;
}
}
{
int32_t L_20 = ___count2;
V_0 = L_20;
}
IL_0087:
{
String_t* L_21 = __this->get__s_4();
int32_t L_22 = __this->get__pos_5();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = ___buffer0;
int32_t L_24 = ___index1;
int32_t L_25 = V_0;
NullCheck(L_21);
String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661(L_21, L_22, L_23, L_24, L_25, /*hidden argument*/NULL);
int32_t L_26 = __this->get__pos_5();
int32_t L_27 = V_0;
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27)));
}
IL_00a9:
{
int32_t L_28 = V_0;
return L_28;
}
}
// System.String System.IO.StringReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringReader_ReadToEnd_m718CA3B9418CA054C2241737F069F609C26C6828 (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
if (L_1)
{
goto IL_001e;
}
}
{
String_t* L_2 = __this->get__s_4();
V_0 = L_2;
goto IL_003d;
}
IL_001e:
{
String_t* L_3 = __this->get__s_4();
int32_t L_4 = __this->get__pos_5();
int32_t L_5 = __this->get__length_6();
int32_t L_6 = __this->get__pos_5();
NullCheck(L_3);
String_t* L_7 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_3, L_4, ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6)), /*hidden argument*/NULL);
V_0 = L_7;
}
IL_003d:
{
int32_t L_8 = __this->get__length_6();
__this->set__pos_5(L_8);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.IO.StringReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringReader_ReadLine_m2A9BF4A2A6DE1107F7FA579BD1ABFC66625596E7 (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
String_t* G_B9_0 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B7_0 = NULL;
String_t* G_B8_0 = NULL;
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
V_0 = L_1;
goto IL_008a;
}
IL_0016:
{
String_t* L_2 = __this->get__s_4();
int32_t L_3 = V_0;
NullCheck(L_2);
Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL);
V_1 = L_4;
Il2CppChar L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)13))))
{
goto IL_002d;
}
}
{
Il2CppChar L_6 = V_1;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)10)))))
{
goto IL_0086;
}
}
IL_002d:
{
String_t* L_7 = __this->get__s_4();
int32_t L_8 = __this->get__pos_5();
int32_t L_9 = V_0;
int32_t L_10 = __this->get__pos_5();
NullCheck(L_7);
String_t* L_11 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_7, L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL);
int32_t L_12 = V_0;
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
Il2CppChar L_13 = V_1;
G_B6_0 = L_11;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)13)))))
{
G_B9_0 = L_11;
goto IL_0085;
}
}
{
int32_t L_14 = __this->get__pos_5();
int32_t L_15 = __this->get__length_6();
G_B7_0 = G_B6_0;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
G_B9_0 = G_B6_0;
goto IL_0085;
}
}
{
String_t* L_16 = __this->get__s_4();
int32_t L_17 = __this->get__pos_5();
NullCheck(L_16);
Il2CppChar L_18 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_16, L_17, /*hidden argument*/NULL);
G_B8_0 = G_B7_0;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)10)))))
{
G_B9_0 = G_B7_0;
goto IL_0085;
}
}
{
int32_t L_19 = __this->get__pos_5();
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)));
G_B9_0 = G_B8_0;
}
IL_0085:
{
return G_B9_0;
}
IL_0086:
{
int32_t L_20 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_008a:
{
int32_t L_21 = V_0;
int32_t L_22 = __this->get__length_6();
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_0016;
}
}
{
int32_t L_23 = V_0;
int32_t L_24 = __this->get__pos_5();
if ((((int32_t)L_23) <= ((int32_t)L_24)))
{
goto IL_00bd;
}
}
{
String_t* L_25 = __this->get__s_4();
int32_t L_26 = __this->get__pos_5();
int32_t L_27 = V_0;
int32_t L_28 = __this->get__pos_5();
NullCheck(L_25);
String_t* L_29 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_25, L_26, ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)), /*hidden argument*/NULL);
int32_t L_30 = V_0;
__this->set__pos_5(L_30);
return L_29;
}
IL_00bd:
{
return (String_t*)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.IO.StringResultHandler::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringResultHandler__ctor_m88B61167B257C333679A5C8CD893238E5B0A56A3 (StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 * __this, bool ___includeFiles0, bool ___includeDirs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringResultHandler__ctor_m88B61167B257C333679A5C8CD893238E5B0A56A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32(__this, /*hidden argument*/SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32_RuntimeMethod_var);
bool L_0 = ___includeFiles0;
__this->set__includeFiles_0(L_0);
bool L_1 = ___includeDirs1;
__this->set__includeDirs_1(L_1);
return;
}
}
// System.Boolean System.IO.StringResultHandler::IsResultIncluded(System.IO.SearchResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringResultHandler_IsResultIncluded_mD12BEF4142CC7FD733B839980C2B8DFBD1E4E92E (StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 * __this, SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * ___result0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
int32_t G_B5_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
{
bool L_0 = __this->get__includeFiles_0();
if (!L_0)
{
goto IL_0015;
}
}
{
SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * L_1 = ___result0;
NullCheck(L_1);
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * L_2 = SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE_inline(L_1, /*hidden argument*/NULL);
bool L_3 = FileSystemEnumerableHelpers_IsFile_m31E8694B440156340BA6E5C5F9639E506990BFBD(L_2, /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 0;
}
IL_0016:
{
bool L_4 = __this->get__includeDirs_1();
G_B4_0 = G_B3_0;
if (!L_4)
{
G_B5_0 = G_B3_0;
goto IL_002b;
}
}
{
SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * L_5 = ___result0;
NullCheck(L_5);
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * L_6 = SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE_inline(L_5, /*hidden argument*/NULL);
bool L_7 = FileSystemEnumerableHelpers_IsDir_mE9E04617BCC965AA8BE4AAE0E53E8283D9BE02C0(L_6, /*hidden argument*/NULL);
G_B6_0 = ((int32_t)(L_7));
G_B6_1 = G_B4_0;
goto IL_002c;
}
IL_002b:
{
G_B6_0 = 0;
G_B6_1 = G_B5_0;
}
IL_002c:
{
V_0 = (bool)G_B6_0;
bool L_8 = V_0;
return (bool)((int32_t)((int32_t)G_B6_1|(int32_t)L_8));
}
}
// System.String System.IO.StringResultHandler::CreateObject(System.IO.SearchResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringResultHandler_CreateObject_m7B18AAB77DE4E656852F66B6047369360ECF2031 (StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 * __this, SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * ___result0, const RuntimeMethod* method)
{
{
SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * L_0 = ___result0;
NullCheck(L_0);
String_t* L_1 = SearchResult_get_UserPath_mB57A92D43162037A6A6F8AA91903F33C6D14B636_inline(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.IO.TextReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextReader::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextReader_Dispose_m9DA31CD42D5E73A1452F4EEC014C5703B5872930 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_Dispose_m9DA31CD42D5E73A1452F4EEC014C5703B5872930_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(7 /* System.Void System.IO.TextReader::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextReader::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextReader_Dispose_m0DF461F7F5A52AD0C5ACB65BC5DD69106975AD0A (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Int32 System.IO.TextReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextReader_Peek_mEC8583F2B73F3EC56D8738B6A5AE30DD27187780 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.TextReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextReader_Read_mB5298E46622EEE25100B88443E96AD6B7D98603B (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_0062:
{
V_0 = 0;
}
IL_0064:
{
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, __this);
V_1 = L_14;
int32_t L_15 = V_1;
if ((((int32_t)L_15) == ((int32_t)(-1))))
{
goto IL_007e;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = ___buffer0;
int32_t L_17 = ___index1;
int32_t L_18 = V_0;
int32_t L_19 = L_18;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
int32_t L_20 = V_1;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_19))), (Il2CppChar)(((int32_t)((uint16_t)L_20))));
int32_t L_21 = V_0;
int32_t L_22 = ___count2;
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_0064;
}
}
IL_007e:
{
int32_t L_23 = V_0;
return L_23;
}
}
// System.String System.IO.TextReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextReader_ReadToEnd_m0132D9AB2B3B376AE3BF4CD4A809D60A08E38179 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_ReadToEnd_m0132D9AB2B3B376AE3BF4CD4A809D60A08E38179_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
StringBuilder_t * V_2 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)4096));
V_0 = L_0;
StringBuilder_t * L_1 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_1, ((int32_t)4096), /*hidden argument*/NULL);
V_2 = L_1;
goto IL_0022;
}
IL_0018:
{
StringBuilder_t * L_2 = V_2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = V_0;
int32_t L_4 = V_1;
NullCheck(L_2);
StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8(L_2, L_3, 0, L_4, /*hidden argument*/NULL);
}
IL_0022:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32) */, __this, L_5, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))));
int32_t L_8 = L_7;
V_1 = L_8;
if (L_8)
{
goto IL_0018;
}
}
{
StringBuilder_t * L_9 = V_2;
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9);
return L_10;
}
}
// System.String System.IO.TextReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextReader_ReadLine_m44D609BFD3E8C6C8225A5EF91E2DF9D1D9EE2336 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_ReadLine_m44D609BFD3E8C6C8225A5EF91E2DF9D1D9EE2336_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = L_0;
}
IL_0006:
{
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, __this);
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)((int32_t)13))))
{
goto IL_001b;
}
}
{
int32_t L_4 = V_1;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)10)))))
{
goto IL_0038;
}
}
IL_001b:
{
int32_t L_5 = V_1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)13)))))
{
goto IL_0031;
}
}
{
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.IO.TextReader::Peek() */, __this);
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)10)))))
{
goto IL_0031;
}
}
{
VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, __this);
}
IL_0031:
{
StringBuilder_t * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7);
return L_8;
}
IL_0038:
{
StringBuilder_t * L_9 = V_0;
int32_t L_10 = V_1;
NullCheck(L_9);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_9, (((int32_t)((uint16_t)L_10))), /*hidden argument*/NULL);
goto IL_0006;
}
IL_0043:
{
StringBuilder_t * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_11, /*hidden argument*/NULL);
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_0053;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck(L_13);
String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13);
return L_14;
}
IL_0053:
{
return (String_t*)NULL;
}
}
// System.IO.TextReader System.IO.TextReader::Synchronized(System.IO.TextReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = ___reader0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_RuntimeMethod_var);
}
IL_000e:
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_2 = ___reader0;
if (!((SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 *)IsInstSealed((RuntimeObject*)L_2, SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_3 = ___reader0;
return L_3;
}
IL_0018:
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_4 = ___reader0;
SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * L_5 = (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 *)il2cpp_codegen_object_new(SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_il2cpp_TypeInfo_var);
SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00(L_5, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.IO.TextReader::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextReader__cctor_m4DC7D8BFF04344567D945853BF464C47AADC8663 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader__cctor_m4DC7D8BFF04344567D945853BF464C47AADC8663_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var);
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * L_0 = ((U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * L_1 = (Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF *)il2cpp_codegen_object_new(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF_il2cpp_TypeInfo_var);
Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427(L_1, L_0, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427_RuntimeMethod_var);
((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields*)il2cpp_codegen_static_fields_for(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var))->set__ReadLineDelegate_1(L_1);
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * L_2 = ((U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_3 = (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)il2cpp_codegen_object_new(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_il2cpp_TypeInfo_var);
Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917(L_3, L_2, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_RuntimeMethod_var);
((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields*)il2cpp_codegen_static_fields_for(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var))->set__ReadDelegate_2(L_3);
NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * L_4 = (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 *)il2cpp_codegen_object_new(NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1_il2cpp_TypeInfo_var);
NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6(L_4, /*hidden argument*/NULL);
((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields*)il2cpp_codegen_static_fields_for(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var))->set_Null_3(L_4);
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.IO.TextReader_<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m0A826CA81945CBA6D7FC29CCD4289C0A4265478F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m0A826CA81945CBA6D7FC29CCD4289C0A4265478F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * L_0 = (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 *)il2cpp_codegen_object_new(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_mD3FA2AB29BCF10A7A60EC4C6780195BE8F6F7C3A(L_0, /*hidden argument*/NULL);
((U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.IO.TextReader_<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mD3FA2AB29BCF10A7A60EC4C6780195BE8F6F7C3A (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.String System.IO.TextReader_<>c::<.cctor>b__22_0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27 (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
NullCheck(((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A *)CastclassClass((RuntimeObject*)L_0, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var)));
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.IO.TextReader::ReadLine() */, ((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A *)CastclassClass((RuntimeObject*)L_0, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var)));
return L_1;
}
}
// System.Int32 System.IO.TextReader_<>c::<.cctor>b__22_1(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66 (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *)CastclassClass((RuntimeObject*)L_0, Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE_il2cpp_TypeInfo_var));
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_1 = V_0;
NullCheck(L_1);
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_2 = Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87_inline(L_1, /*hidden argument*/Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87_RuntimeMethod_var);
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_3 = V_0;
NullCheck(L_3);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B_inline(L_3, /*hidden argument*/Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B_RuntimeMethod_var);
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA_inline(L_5, /*hidden argument*/Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA_RuntimeMethod_var);
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F_inline(L_7, /*hidden argument*/Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F_RuntimeMethod_var);
NullCheck(L_2);
int32_t L_9 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_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.IO.TextReader_NullTextReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6 (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.IO.TextReader_NullTextReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NullTextReader_Read_mD15B52BA04B95A1EF531D960CF26EAC93BB29A76 (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.String System.IO.TextReader_NullTextReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NullTextReader_ReadLine_m12E62212D0A17F43292E516E26180D12BF65707D (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, const RuntimeMethod* method)
{
{
return (String_t*)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.IO.TextReader_SyncTextReader::.ctor(System.IO.TextReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = ___t0;
__this->set__in_4(L_0);
return;
}
}
// System.Void System.IO.TextReader_SyncTextReader::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextReader_Dispose_mD8824E922534B09273852261FF986840CDBA0AB1 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextReader_Dispose_mD8824E922534B09273852261FF986840CDBA0AB1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_000e;
}
}
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_1 = __this->get__in_4();
NullCheck(L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_1);
}
IL_000e:
{
return;
}
}
// System.Int32 System.IO.TextReader_SyncTextReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SyncTextReader_Peek_m95DC7660AE8679CEC1B16B7C25C06F179ADD903B (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.IO.TextReader::Peek() */, L_0);
return L_1;
}
}
// System.Int32 System.IO.TextReader_SyncTextReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SyncTextReader_Read_mFCD5947DD0DBB9688A57792E4990F38998828243 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_0);
return L_1;
}
}
// System.Int32 System.IO.TextReader_SyncTextReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SyncTextReader_Read_mD06B8DE6A5367A31EF20D82B9A7084C69EDF8757 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
int32_t L_4 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
// System.String System.IO.TextReader_SyncTextReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SyncTextReader_ReadLine_mCAB4104D2A8F9978CB468FF9B25CCEE7314EA696 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.IO.TextReader::ReadLine() */, L_0);
return L_1;
}
}
// System.String System.IO.TextReader_SyncTextReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SyncTextReader_ReadToEnd_mC22466B5267CC309939F6792D6A8F62CA447D773 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.IO.TextReader::ReadToEnd() */, L_0);
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.String System.IO.TextWriter::get_InitialNewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26 (const RuntimeMethod* method)
{
{
String_t* L_0 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.IO.TextWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter__ctor_m9E003066292D16C33BCD9F462445436BCBF9AAFA (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter__ctor_m9E003066292D16C33BCD9F462445436BCBF9AAFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
String_t* L_0 = TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26(/*hidden argument*/NULL);
NullCheck(L_0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_0, /*hidden argument*/NULL);
__this->set_CoreNewLine_9(L_1);
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
__this->set_InternalFormatProvider_10((RuntimeObject*)NULL);
return;
}
}
// System.Void System.IO.TextWriter::.ctor(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
String_t* L_0 = TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26(/*hidden argument*/NULL);
NullCheck(L_0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_0, /*hidden argument*/NULL);
__this->set_CoreNewLine_9(L_1);
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
RuntimeObject* L_2 = ___formatProvider0;
__this->set_InternalFormatProvider_10(L_2);
return;
}
}
// System.IFormatProvider System.IO.TextWriter::get_FormatProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextWriter_get_FormatProvider_mD43D221A2E0A10F694755BECA02294CD6B9FEB5C (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_InternalFormatProvider_10();
if (L_0)
{
goto IL_0013;
}
}
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_1 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_1);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0013:
{
RuntimeObject* L_3 = __this->get_InternalFormatProvider_10();
return L_3;
}
}
// System.Void System.IO.TextWriter::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Dispose_m53C25DF618C5F0D730B0E3EB96D056C301B66DFD (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Dispose_m8B516B9539EB72469E3B3852BEDFB7DC5A677569 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_Dispose_m8B516B9539EB72469E3B3852BEDFB7DC5A677569_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(8 /* System.Void System.IO.TextWriter::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Flush_m62740B1AE48F937AF1FA4F8BDDE475A956E39E60 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.IO.TextWriter System.IO.TextWriter::Synchronized(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___writer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = ___writer0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralFE28F10D2C6DAB4E315F2659ADAA6A4F16B5E4B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_RuntimeMethod_var);
}
IL_000e:
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = ___writer0;
if (!((SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 *)IsInstSealed((RuntimeObject*)L_2, SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_3 = ___writer0;
return L_3;
}
IL_0018:
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_4 = ___writer0;
SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * L_5 = (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 *)il2cpp_codegen_object_new(SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_il2cpp_TypeInfo_var);
SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6(L_5, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.IO.TextWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Write_mE7F1C9D723489C987D9F01A6461CB53428D84F66 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Write_mD6F2EF241D48AB7ACB3ABED28374F215328D4628 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (!L_0)
{
goto IL_000e;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___buffer0;
NullCheck(L_2);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, __this, L_1, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))));
}
IL_000e:
{
return;
}
}
// System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_0062:
{
V_0 = 0;
goto IL_0075;
}
IL_0066:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = ___buffer0;
int32_t L_15 = ___index1;
int32_t L_16 = V_0;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
uint16_t L_18 = (uint16_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
VirtActionInvoker1< Il2CppChar >::Invoke(10 /* System.Void System.IO.TextWriter::Write(System.Char) */, __this, L_18);
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
}
IL_0075:
{
int32_t L_20 = V_0;
int32_t L_21 = ___count2;
if ((((int32_t)L_20) < ((int32_t)L_21)))
{
goto IL_0066;
}
}
{
return;
}
}
// System.Void System.IO.TextWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_Write_m1D479631E6966171EDE87988B8B1B26B5544BA21 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (!L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = ___value0;
NullCheck(L_1);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_1, /*hidden argument*/NULL);
VirtActionInvoker1< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, __this, L_2);
}
IL_000f:
{
return;
}
}
// System.Void System.IO.TextWriter::WriteLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_WriteLine_mE9E9942821C80CC1DC076B71B366F2A9B09BC7D1 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = __this->get_CoreNewLine_9();
VirtActionInvoker1< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, __this, L_0);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m4ED7948CA4FC94450D52C3BB3A0AAF6A5E716369 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
VirtActionInvoker1< Il2CppChar >::Invoke(10 /* System.Void System.IO.TextWriter::Write(System.Char) */, __this, L_0);
VirtActionInvoker0::Invoke(14 /* System.Void System.IO.TextWriter::WriteLine() */, __this);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_WriteLine_mC0ADE92539E75A48BA8E884A8FF394381C77EACB (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
VirtActionInvoker0::Invoke(14 /* System.Void System.IO.TextWriter::WriteLine() */, __this);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m8502FED0DEE6B89056D2D7D04B798D6BA8D14E38 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_WriteLine_m8502FED0DEE6B89056D2D7D04B798D6BA8D14E38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL;
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
VirtActionInvoker0::Invoke(14 /* System.Void System.IO.TextWriter::WriteLine() */, __this);
return;
}
IL_000a:
{
String_t* L_1 = ___value0;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
V_0 = L_2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = __this->get_CoreNewLine_9();
NullCheck(L_3);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))));
int32_t L_4 = V_0;
int32_t L_5 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)));
V_2 = L_6;
String_t* L_7 = ___value0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_2;
int32_t L_9 = V_0;
NullCheck(L_7);
String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661(L_7, 0, L_8, 0, L_9, /*hidden argument*/NULL);
int32_t L_10 = V_1;
if ((!(((uint32_t)L_10) == ((uint32_t)2))))
{
goto IL_004b;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = V_2;
int32_t L_12 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = __this->get_CoreNewLine_9();
NullCheck(L_13);
int32_t L_14 = 0;
uint16_t L_15 = (uint16_t)(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (Il2CppChar)L_15);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_2;
int32_t L_17 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = __this->get_CoreNewLine_9();
NullCheck(L_18);
int32_t L_19 = 1;
uint16_t L_20 = (uint16_t)(L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))), (Il2CppChar)L_20);
goto IL_0070;
}
IL_004b:
{
int32_t L_21 = V_1;
if ((!(((uint32_t)L_21) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = V_2;
int32_t L_23 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = __this->get_CoreNewLine_9();
NullCheck(L_24);
int32_t L_25 = 0;
uint16_t L_26 = (uint16_t)(L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (Il2CppChar)L_26);
goto IL_0070;
}
IL_005c:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = __this->get_CoreNewLine_9();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_28 = V_2;
int32_t L_29 = V_0;
int32_t L_30 = V_1;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_27, 0, (RuntimeArray *)(RuntimeArray *)L_28, ((int32_t)il2cpp_codegen_multiply((int32_t)L_29, (int32_t)2)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_30, (int32_t)2)), /*hidden argument*/NULL);
}
IL_0070:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = V_2;
int32_t L_32 = V_0;
int32_t L_33 = V_1;
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, __this, L_31, 0, ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)));
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m7653DB04BE93536287F2285C0C32915322ED7BB6 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, __this);
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
String_t* L_3 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_0, L_1, L_2, /*hidden argument*/NULL);
VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, __this, L_3);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m698736E0F50D6FEF49BA5DFB2D4DAF9710066FF3 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, __this);
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
RuntimeObject * L_3 = ___arg12;
String_t* L_4 = String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435(L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, __this, L_4);
return;
}
}
// System.Void System.IO.TextWriter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter__cctor_mD358433C9213A8F66FE33D65996DEBA8315C1219 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter__cctor_mD358433C9213A8F66FE33D65996DEBA8315C1219_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * L_0 = (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 *)il2cpp_codegen_object_new(NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5_il2cpp_TypeInfo_var);
NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6(L_0, /*hidden argument*/NULL);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set_Null_1(L_0);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_1 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_2 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_2, L_1, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteCharDelegate_2(L_2);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_3 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_4 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_4, L_3, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteStringDelegate_3(L_4);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_5 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_6 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_6, L_5, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteCharArrayRangeDelegate_4(L_6);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_7 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_8 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_8, L_7, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteLineCharDelegate_5(L_8);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_9 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_10 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_10, L_9, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteLineStringDelegate_6(L_10);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_11 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_12 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_12, L_11, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteLineCharArrayRangeDelegate_7(L_12);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_13 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_14 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_14, L_13, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__FlushDelegate_8(L_14);
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.IO.TextWriter_<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m8FECC4F9793F3511CB4737E4315989A627B9BA94 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m8FECC4F9793F3511CB4737E4315989A627B9BA94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_0 = (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 *)il2cpp_codegen_object_new(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_m4BFB82C1926D0A1E0F29F2793EEF2848A79883C6(L_0, /*hidden argument*/NULL);
((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.IO.TextWriter_<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4BFB82C1926D0A1E0F29F2793EEF2848A79883C6 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_il2cpp_TypeInfo_var));
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_inline(L_1, /*hidden argument*/Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_RuntimeMethod_var);
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_3 = V_0;
NullCheck(L_3);
Il2CppChar L_4 = Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_inline(L_3, /*hidden argument*/Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< Il2CppChar >::Invoke(10 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_1(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_il2cpp_TypeInfo_var));
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_inline(L_1, /*hidden argument*/Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_RuntimeMethod_var);
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_inline(L_3, /*hidden argument*/Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< String_t* >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.String) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_2(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *)CastclassClass((RuntimeObject*)L_0, Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094_il2cpp_TypeInfo_var));
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_inline(L_1, /*hidden argument*/Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_3 = V_0;
NullCheck(L_3);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_inline(L_3, /*hidden argument*/Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_inline(L_5, /*hidden argument*/Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_inline(L_7, /*hidden argument*/Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_3(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_il2cpp_TypeInfo_var));
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_inline(L_1, /*hidden argument*/Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_RuntimeMethod_var);
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_3 = V_0;
NullCheck(L_3);
Il2CppChar L_4 = Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_inline(L_3, /*hidden argument*/Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< Il2CppChar >::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine(System.Char) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_4(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_il2cpp_TypeInfo_var));
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_inline(L_1, /*hidden argument*/Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_RuntimeMethod_var);
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_inline(L_3, /*hidden argument*/Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_5(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *)CastclassClass((RuntimeObject*)L_0, Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094_il2cpp_TypeInfo_var));
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_inline(L_1, /*hidden argument*/Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_3 = V_0;
NullCheck(L_3);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_inline(L_3, /*hidden argument*/Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_inline(L_5, /*hidden argument*/Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_inline(L_7, /*hidden argument*/Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(16 /* System.Void System.IO.TextWriter::WriteLine(System.Char[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_6(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
NullCheck(((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *)CastclassClass((RuntimeObject*)L_0, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var)));
VirtActionInvoker0::Invoke(9 /* System.Void System.IO.TextWriter::Flush() */, ((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *)CastclassClass((RuntimeObject*)L_0, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var)));
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.IO.TextWriter_NullTextWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextWriter_Write_mF69A71F697DCA9CC7C94225F169ABB0FCFB01891 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextWriter_Write_m12488A34B132CA8228E0EF57536D5B7FC2861B0C (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::WriteLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextWriter_WriteLine_m8C3873CDB0215EF63E6C33843BE0BBB83579754E (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::WriteLine(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTextWriter_WriteLine_mC34013993C7E5A74E073F7A8D55E7B4C047B2C93 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
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.IO.TextWriter_SyncTextWriter::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = ___t0;
NullCheck(L_0);
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, L_0);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, L_1, /*hidden argument*/NULL);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = ___t0;
__this->set__out_11(L_2);
return;
}
}
// System.IFormatProvider System.IO.TextWriter_SyncTextWriter::get_FormatProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncTextWriter_get_FormatProvider_mBB5A7B1A93E0C77355564F9EC85D4C5F2FF41774 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
NullCheck(L_0);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, L_0);
return L_1;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_Dispose_m12B3249821E891828F58F13CBD6F154F4FE739D6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextWriter_Dispose_m12B3249821E891828F58F13CBD6F154F4FE739D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_000e;
}
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_1 = __this->get__out_11();
NullCheck(L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_1);
}
IL_000e:
{
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_Flush_m7EAECB076AD3E34C2F20C8958D04A07C6E0EEB8E (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
NullCheck(L_0);
VirtActionInvoker0::Invoke(9 /* System.Void System.IO.TextWriter::Flush() */, L_0);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_Write_m64F839E2DBBEEBB6DCF1B52A5514C16B09EE904E (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
Il2CppChar L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< Il2CppChar >::Invoke(10 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_Write_mF91F1AD887FB1A3F1F65FC78AD0DC2491FE594BC (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
NullCheck(L_0);
VirtActionInvoker1< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_Write_mC1289A4071793D109F52EEFD91F60A0E47B4301A (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_Write_m92C21C91A51100364BE09F47CA47EFC8750EFBE9 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.String) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_mD2575724C2BE602AEEA1B1CB85F17D13C1BD12BC (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
NullCheck(L_0);
VirtActionInvoker0::Invoke(14 /* System.Void System.IO.TextWriter::WriteLine() */, L_0);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m86746149A91B63666E3CE190D35B7DC90934A2BD (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
Il2CppChar L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< Il2CppChar >::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine(System.Char) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m06EC7583D518BB9C99BA602F182A0663FE903B4A (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(16 /* System.Void System.IO.TextWriter::WriteLine(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m586CCCF724615A32FCBB0FF416472DABFB1AFB4D (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m227BA2E9F86D78A62851054DFFA9F9056B634478 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
NullCheck(L_0);
VirtActionInvoker2< String_t*, RuntimeObject * >::Invoke(18 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m846B11A612E51525E7FCBB9ACA85BFA816373DE6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
RuntimeObject * L_3 = ___arg12;
NullCheck(L_0);
VirtActionInvoker3< String_t*, RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object,System.Object) */, L_0, L_1, L_2, L_3);
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.IO.UnexceptionalStreamReader::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamReader__cctor_m8030C6E3F2620159376D6BB9B035D9F4E99B3A0A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader__cctor_m8030C6E3F2620159376D6BB9B035D9F4E99B3A0A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_2 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)L_1);
((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->set_newline_21(L_2);
String_t* L_3 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
V_0 = L_3;
String_t* L_4 = V_0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_002f;
}
}
{
String_t* L_6 = V_0;
NullCheck(L_6);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, 0, /*hidden argument*/NULL);
((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->set_newlineChar_22(L_7);
}
IL_002f:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.IO.UnexceptionalStreamReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnexceptionalStreamReader_Peek_mB5A106F3ABBC672E906ECC85D2C78D2EBC5975A7 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_Peek_mB5A106F3ABBC672E906ECC85D2C78D2EBC5975A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
int32_t L_0 = StreamReader_Peek_m8C914AF78EEF625B3DD817688FF76FCA1BA62E50(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (-1);
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 System.IO.UnexceptionalStreamReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnexceptionalStreamReader_Read_m763AE2B1D9BB0572ACE16E91236FAF9C716DC359 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_Read_m763AE2B1D9BB0572ACE16E91236FAF9C716DC359_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
int32_t L_0 = StreamReader_Read_m04DCEDFC21FBC69F0E795164739D799FEA69562E(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (-1);
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 System.IO.UnexceptionalStreamReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___dest_buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
int32_t V_3 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 4);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___dest_buffer0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral2D3767ECF17FE52403E47357B1DE071CC86B255E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteralDAA58D8010113F4E181D2FE5796A123551AAA764, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0036;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, _stringLiteralDAA58D8010113F4E181D2FE5796A123551AAA764, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_0036:
{
int32_t L_6 = ___index1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = ___dest_buffer0;
NullCheck(L_7);
int32_t L_8 = ___count2;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), (int32_t)L_8)))))
{
goto IL_0049;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, _stringLiteral0253A7DA857E36DFB4AB8D7957C356E36829F5F7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_0049:
{
V_0 = 0;
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
Il2CppChar L_10 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newlineChar_22();
V_1 = L_10;
}
IL_0051:
try
{ // begin try (depth: 1)
{
goto IL_008b;
}
IL_0053:
{
int32_t L_11 = StreamReader_Read_m04DCEDFC21FBC69F0E795164739D799FEA69562E(__this, /*hidden argument*/NULL);
V_2 = L_11;
int32_t L_12 = V_2;
if ((((int32_t)L_12) < ((int32_t)0)))
{
goto IL_008f;
}
}
IL_005e:
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
int32_t L_14 = ___count2;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_15 = ___dest_buffer0;
int32_t L_16 = ___index1;
int32_t L_17 = V_2;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (Il2CppChar)(((int32_t)((uint16_t)L_17))));
Il2CppChar L_18 = V_1;
if (!L_18)
{
goto IL_0078;
}
}
IL_006f:
{
int32_t L_19 = V_2;
Il2CppChar L_20 = V_1;
if ((!(((uint32_t)(((int32_t)((uint16_t)L_19)))) == ((uint32_t)L_20))))
{
goto IL_0086;
}
}
IL_0074:
{
int32_t L_21 = V_0;
V_3 = L_21;
goto IL_0096;
}
IL_0078:
{
int32_t L_22 = V_2;
bool L_23 = UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199(__this, (((int32_t)((uint16_t)L_22))), /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0086;
}
}
IL_0082:
{
int32_t L_24 = V_0;
V_3 = L_24;
goto IL_0096;
}
IL_0086:
{
int32_t L_25 = ___index1;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_008b:
{
int32_t L_26 = ___count2;
if ((((int32_t)L_26) > ((int32_t)0)))
{
goto IL_0053;
}
}
IL_008f:
{
goto IL_0094;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0091;
throw e;
}
CATCH_0091:
{ // begin catch(System.IO.IOException)
goto IL_0094;
} // end catch (depth: 1)
IL_0094:
{
int32_t L_27 = V_0;
return L_27;
}
IL_0096:
{
int32_t L_28 = V_3;
return L_28;
}
}
// System.Boolean System.IO.UnexceptionalStreamReader::CheckEOL(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, Il2CppChar ___current0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
goto IL_0034;
}
IL_0004:
{
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (uint8_t)(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
if (L_3)
{
goto IL_0030;
}
}
{
Il2CppChar L_4 = ___current0;
String_t* L_5 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
int32_t L_6 = V_0;
NullCheck(L_5);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, L_6, /*hidden argument*/NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)L_7))))
{
goto IL_003e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_8 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
int32_t L_9 = V_0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (bool)1);
int32_t L_10 = V_0;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_11 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
NullCheck(L_11);
return (bool)((((int32_t)L_10) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))), (int32_t)1))))? 1 : 0);
}
IL_0030:
{
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0034:
{
int32_t L_13 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_14 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))))
{
goto IL_0004;
}
}
IL_003e:
{
V_1 = 0;
goto IL_004e;
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_15 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
int32_t L_16 = V_1;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (bool)0);
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_004e:
{
int32_t L_18 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_19 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))))
{
goto IL_0042;
}
}
{
return (bool)0;
}
}
// System.String System.IO.UnexceptionalStreamReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnexceptionalStreamReader_ReadLine_m6075E7BFF09EF43C2620DD57A508E8C925778533 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_ReadLine_m6075E7BFF09EF43C2620DD57A508E8C925778533_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
String_t* L_0 = StreamReader_ReadLine_m6F43A4370F3F23B1882543F76DAF5AA30681E477(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (String_t*)NULL;
}
IL_000e:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.String System.IO.UnexceptionalStreamReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnexceptionalStreamReader_ReadToEnd_mFFF67772696E14242FFE13674054746AE61B3AE2 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_ReadToEnd_mFFF67772696E14242FFE13674054746AE61B3AE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
String_t* L_0 = StreamReader_ReadToEnd_m5AB87727EA94EEC0577189AFBC4EE9FAAA22C2FB(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (String_t*)NULL;
}
IL_000e:
{
String_t* L_1 = V_0;
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.IO.UnexceptionalStreamWriter::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779(__this, L_0, L_1, ((int32_t)1024), (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Flush_mA8E33985ABE27D7AB777CD9216F928A093F13618 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Flush_mA8E33985ABE27D7AB777CD9216F928A093F13618_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
StreamWriter_Flush_m326E76BE755A73CCBCD715166925FC9C5ADF8FB5(__this, /*hidden argument*/NULL);
goto IL_000b;
} // 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_0008;
throw e;
}
CATCH_0008:
{ // begin catch(System.Exception)
goto IL_000b;
} // end catch (depth: 1)
IL_000b:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_mAC310C8D24F673608DC7F130666E572ADD388E07 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_mAC310C8D24F673608DC7F130666E572ADD388E07_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
goto IL_000e;
} // 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_000b;
throw e;
}
CATCH_000b:
{ // begin catch(System.Exception)
goto IL_000e;
} // end catch (depth: 1)
IL_000e:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_m38254FD2768CB49A68C9503918CE6FEA65F9A197 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_m38254FD2768CB49A68C9503918CE6FEA65F9A197_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
Il2CppChar L_0 = ___value0;
StreamWriter_Write_mF8B514CF8D521D390B0F1F9950851B358560F623(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // 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_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.Exception)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_m7C22DC062E894CC609C07612CE9AF17631CF5769 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_m7C22DC062E894CC609C07612CE9AF17631CF5769_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___value0;
StreamWriter_Write_m71F168D89F89E740DF5E16D48C58624712CA808A(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // 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_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.Exception)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_m662E03F82B13865872B3ADC048BEFE8E6C94B30F (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_m662E03F82B13865872B3ADC048BEFE8E6C94B30F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
String_t* L_0 = ___value0;
StreamWriter_Write_mDBCA4E464A543DFD00B0619943BA0C7F15DB55FE(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // 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_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.Exception)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
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.IO.UnmanagedMemoryStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5(__this, /*hidden argument*/NULL);
__this->set__mem_5((uint8_t*)(((uintptr_t)0)));
__this->set__isOpen_11((bool)0);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::.ctor(System.Byte*,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream__ctor_mF4040F06CEA36C1ACBA0C09319B38530D0E45632 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t* ___pointer0, int64_t ___length1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream__ctor_mF4040F06CEA36C1ACBA0C09319B38530D0E45632_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5(__this, /*hidden argument*/NULL);
uint8_t* L_0 = ___pointer0;
int64_t L_1 = ___length1;
int64_t L_2 = ___length1;
UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196(__this, (uint8_t*)(uint8_t*)L_0, L_1, L_2, 1, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::.ctor(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream__ctor_mDAB26A2823AF7D8CD45A0119BAE6B5549A9581C5 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t* ___pointer0, int64_t ___length1, int64_t ___capacity2, int32_t ___access3, bool ___skipSecurityCheck4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream__ctor_mDAB26A2823AF7D8CD45A0119BAE6B5549A9581C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5(__this, /*hidden argument*/NULL);
uint8_t* L_0 = ___pointer0;
int64_t L_1 = ___length1;
int64_t L_2 = ___capacity2;
int32_t L_3 = ___access3;
bool L_4 = ___skipSecurityCheck4;
UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196(__this, (uint8_t*)(uint8_t*)L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Initialize(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t* ___pointer0, int64_t ___length1, int64_t ___capacity2, int32_t ___access3, bool ___skipSecurityCheck4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
uint8_t* L_0 = ___pointer0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_0010;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralB35BB38DF9605E4C5858316B7853A16E42EA6997, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0010:
{
int64_t L_2 = ___length1;
if ((((int64_t)L_2) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_001a;
}
}
{
int64_t L_3 = ___capacity2;
if ((((int64_t)L_3) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003b;
}
}
IL_001a:
{
int64_t L_4 = ___length1;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0026;
}
}
{
G_B7_0 = _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860;
goto IL_002b;
}
IL_0026:
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
}
IL_002b:
{
String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, G_B7_0, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_003b:
{
int64_t L_7 = ___length1;
int64_t L_8 = ___capacity2;
if ((((int64_t)L_7) <= ((int64_t)L_8)))
{
goto IL_0054;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral223C5EC119A56013FF9761A6462704E438095BAA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0054:
{
uint8_t* L_11 = ___pointer0;
int64_t L_12 = ___capacity2;
uint8_t* L_13 = ___pointer0;
if ((!(((uintptr_t)(((uintptr_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)(intptr_t)L_11))), (int64_t)L_12))))) < ((uintptr_t)L_13))))
{
goto IL_0071;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA2DE159285074E167990DE97D55BBF9C966A2A8F, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0071:
{
int32_t L_16 = ___access3;
if ((((int32_t)L_16) < ((int32_t)1)))
{
goto IL_007b;
}
}
{
int32_t L_17 = ___access3;
if ((((int32_t)L_17) <= ((int32_t)3)))
{
goto IL_0090;
}
}
IL_007b:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral328B8E8918DCC5480BFFCEC1BCF1A68EFF1C3293, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteral0F12541AFCCE175FB34BB05A79C95B76E765488B, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0090:
{
bool L_20 = __this->get__isOpen_11();
if (!L_20)
{
goto IL_00a8;
}
}
{
String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1B1DF1408555872EE44D2433990E37F37C6057B8, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_22 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_22, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_00a8:
{
uint8_t* L_23 = ___pointer0;
__this->set__mem_5((uint8_t*)L_23);
__this->set__offset_9((((int64_t)((int64_t)0))));
int64_t L_24 = ___length1;
__this->set__length_6(L_24);
int64_t L_25 = ___capacity2;
__this->set__capacity_7(L_25);
int32_t L_26 = ___access3;
__this->set__access_10(L_26);
__this->set__isOpen_11((bool)1);
return;
}
}
// System.Boolean System.IO.UnmanagedMemoryStream::get_CanRead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnmanagedMemoryStream_get_CanRead_m78E9630BE3FE41A94E0AFC75D58FCD9C9E5EB5F2 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (!L_0)
{
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__access_10();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.IO.UnmanagedMemoryStream::get_CanSeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnmanagedMemoryStream_get_CanSeek_mF5CC7C11C9E18039402AE21A06686DDB6963D1FB (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
return L_0;
}
}
// System.Boolean System.IO.UnmanagedMemoryStream::get_CanWrite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnmanagedMemoryStream_get_CanWrite_m10C8D5BA26DE57D0142C6027452C452C2B018490 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (!L_0)
{
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__access_10();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Dispose_mA8E1A981BC7EFDFAC1B4C4E95D1CAB823EA284CA (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
__this->set__isOpen_11((bool)0);
__this->set__mem_5((uint8_t*)(((uintptr_t)0)));
bool L_0 = ___disposing0;
Stream_Dispose_mC0F23B2D31DC853B12A10F0233173A278FF21B05(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Flush_m461EFEEA2A4C1866BC68D63F596E3EB8EF5A3F60 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
return;
}
}
// System.Int64 System.IO.UnmanagedMemoryStream::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnmanagedMemoryStream_get_Length_m033BE76142FBBAF8A80055B60DB6BF5C009E9C97 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
int64_t* L_1 = __this->get_address_of__length_6();
int64_t L_2 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int64 System.IO.UnmanagedMemoryStream::get_Position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnmanagedMemoryStream_get_Position_m3D49344ACCD6823BABF2F81A3CAFCE40AED1FA97 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, __this);
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
int64_t* L_1 = __this->get_address_of__position_8();
int64_t L_2 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.IO.UnmanagedMemoryStream::set_Position(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_RuntimeMethod_var);
}
IL_001a:
{
bool L_3 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, __this);
if (L_3)
{
goto IL_0027;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_0027:
{
int64_t* L_4 = __this->get_address_of__position_8();
int64_t L_5 = ___value0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Byte* System.IO.UnmanagedMemoryStream::get_PositionPointer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
uint8_t* G_B6_0 = NULL;
uint8_t* G_B5_0 = NULL;
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_0 = __this->get__buffer_4();
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral59B2021BD6AB5F81D9C5385CB14DEBA14BCAD549, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_2 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_RuntimeMethod_var);
}
IL_0018:
{
int64_t* L_3 = __this->get_address_of__position_8();
int64_t L_4 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_3, /*hidden argument*/NULL);
V_0 = L_4;
int64_t L_5 = V_0;
int64_t L_6 = __this->get__capacity_7();
if ((((int64_t)L_5) <= ((int64_t)L_6)))
{
goto IL_003d;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2068B0AE2DE93955C64C2244FFC32581BB827B1E, /*hidden argument*/NULL);
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_RuntimeMethod_var);
}
IL_003d:
{
uint8_t* L_9 = __this->get__mem_5();
int64_t L_10 = V_0;
bool L_11 = __this->get__isOpen_11();
G_B5_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)(((intptr_t)L_10))));
if (L_11)
{
G_B6_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)(((intptr_t)L_10))));
goto IL_0053;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
G_B6_0 = G_B5_0;
}
IL_0053:
{
return (uint8_t*)(G_B6_0);
}
}
// System.Int32 System.IO.UnmanagedMemoryStream::Read(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
int32_t V_2 = 0;
uint8_t* 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___offset1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_004a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___offset1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_0062:
{
bool L_14 = __this->get__isOpen_11();
if (L_14)
{
goto IL_006f;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_006f:
{
bool L_15 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, __this);
if (L_15)
{
goto IL_007c;
}
}
{
__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696(/*hidden argument*/NULL);
}
IL_007c:
{
int64_t* L_16 = __this->get_address_of__position_8();
int64_t L_17 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_16, /*hidden argument*/NULL);
V_0 = L_17;
int64_t* L_18 = __this->get_address_of__length_6();
int64_t L_19 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_18, /*hidden argument*/NULL);
int64_t L_20 = V_0;
V_1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_19, (int64_t)L_20));
int64_t L_21 = V_1;
int32_t L_22 = ___count2;
if ((((int64_t)L_21) <= ((int64_t)(((int64_t)((int64_t)L_22))))))
{
goto IL_009e;
}
}
{
int32_t L_23 = ___count2;
V_1 = (((int64_t)((int64_t)L_23)));
}
IL_009e:
{
int64_t L_24 = V_1;
if ((((int64_t)L_24) > ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_00a5;
}
}
{
return 0;
}
IL_00a5:
{
int64_t L_25 = V_1;
V_2 = (((int32_t)((int32_t)L_25)));
int32_t L_26 = V_2;
if ((((int32_t)L_26) >= ((int32_t)0)))
{
goto IL_00ae;
}
}
{
V_2 = 0;
}
IL_00ae:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_27 = __this->get__buffer_4();
if (!L_27)
{
goto IL_00f3;
}
}
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_00be:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_28 = __this->get__buffer_4();
NullCheck(L_28);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_28, (uint8_t**)(&V_3), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___buffer0;
int32_t L_30 = ___offset1;
uint8_t* L_31 = V_3;
int64_t L_32 = V_0;
int64_t L_33 = __this->get__offset_9();
int32_t L_34 = V_2;
Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354(L_29, L_30, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)(((intptr_t)L_32)))), (intptr_t)(((intptr_t)L_33)))), 0, L_34, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x105, FINALLY_00e2);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00e2;
}
FINALLY_00e2:
{ // begin finally (depth: 1)
{
uint8_t* L_35 = V_3;
if ((((intptr_t)L_35) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_00f2;
}
}
IL_00e7:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_36 = __this->get__buffer_4();
NullCheck(L_36);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_36, /*hidden argument*/NULL);
}
IL_00f2:
{
IL2CPP_END_FINALLY(226)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(226)
{
IL2CPP_JUMP_TBL(0x105, IL_0105)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00f3:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = ___buffer0;
int32_t L_38 = ___offset1;
uint8_t* L_39 = __this->get__mem_5();
int64_t L_40 = V_0;
int32_t L_41 = V_2;
Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354(L_37, L_38, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)(((intptr_t)L_40)))), 0, L_41, /*hidden argument*/NULL);
}
IL_0105:
{
int64_t* L_42 = __this->get_address_of__position_8();
int64_t L_43 = V_0;
int64_t L_44 = V_1;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_42, ((int64_t)il2cpp_codegen_add((int64_t)L_43, (int64_t)L_44)), /*hidden argument*/NULL);
int32_t L_45 = V_2;
return L_45;
}
}
// System.Int32 System.IO.UnmanagedMemoryStream::ReadByte()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnmanagedMemoryStream_ReadByte_mD7922C57C7C508DFCBC9D6C8D9D103E0F6C5E590 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
int64_t V_0 = 0;
int64_t V_1 = 0;
int32_t V_2 = 0;
uint8_t* 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, __this);
if (L_1)
{
goto IL_001a;
}
}
{
__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696(/*hidden argument*/NULL);
}
IL_001a:
{
int64_t* L_2 = __this->get_address_of__position_8();
int64_t L_3 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_2, /*hidden argument*/NULL);
V_0 = L_3;
int64_t* L_4 = __this->get_address_of__length_6();
int64_t L_5 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_4, /*hidden argument*/NULL);
V_1 = L_5;
int64_t L_6 = V_0;
int64_t L_7 = V_1;
if ((((int64_t)L_6) < ((int64_t)L_7)))
{
goto IL_0038;
}
}
{
return (-1);
}
IL_0038:
{
int64_t* L_8 = __this->get_address_of__position_8();
int64_t L_9 = V_0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_8, ((int64_t)il2cpp_codegen_add((int64_t)L_9, (int64_t)(((int64_t)((int64_t)1))))), /*hidden argument*/NULL);
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_10 = __this->get__buffer_4();
if (!L_10)
{
goto IL_0086;
}
}
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0058:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_11 = __this->get__buffer_4();
NullCheck(L_11);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_11, (uint8_t**)(&V_3), /*hidden argument*/NULL);
uint8_t* L_12 = V_3;
int64_t L_13 = V_0;
int64_t L_14 = __this->get__offset_9();
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)(((intptr_t)L_13)))), (intptr_t)(((intptr_t)L_14)))));
V_2 = L_15;
IL2CPP_LEAVE(0x91, FINALLY_0075);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0075;
}
FINALLY_0075:
{ // begin finally (depth: 1)
{
uint8_t* L_16 = V_3;
if ((((intptr_t)L_16) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0085;
}
}
IL_007a:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_17 = __this->get__buffer_4();
NullCheck(L_17);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_17, /*hidden argument*/NULL);
}
IL_0085:
{
IL2CPP_END_FINALLY(117)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(117)
{
IL2CPP_JUMP_TBL(0x91, IL_0091)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0086:
{
uint8_t* L_18 = __this->get__mem_5();
int64_t L_19 = V_0;
int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)(((intptr_t)L_19)))));
V_2 = L_20;
}
IL_0091:
{
int32_t L_21 = V_2;
return L_21;
}
}
// System.Int64 System.IO.UnmanagedMemoryStream::Seek(System.Int64,System.IO.SeekOrigin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, int64_t ___offset0, int32_t ___loc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
int64_t L_1 = ___offset0;
if ((((int64_t)L_1) <= ((int64_t)((int64_t)(std::numeric_limits<int64_t>::max)()))))
{
goto IL_002e;
}
}
{
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9D4F4EF8DD2FA106FAD50D3C601D6CDA629B6218, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_002e:
{
int32_t L_4 = ___loc1;
switch (L_4)
{
case 0:
{
goto IL_0045;
}
case 1:
{
goto IL_0069;
}
case 2:
{
goto IL_009d;
}
}
}
{
goto IL_00d1;
}
IL_0045:
{
int64_t L_5 = ___offset0;
if ((((int64_t)L_5) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_005a;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_7 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_005a:
{
int64_t* L_8 = __this->get_address_of__position_8();
int64_t L_9 = ___offset0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_8, L_9, /*hidden argument*/NULL);
goto IL_00e1;
}
IL_0069:
{
int64_t* L_10 = __this->get_address_of__position_8();
int64_t L_11 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_10, /*hidden argument*/NULL);
V_0 = L_11;
int64_t L_12 = ___offset0;
int64_t L_13 = V_0;
if ((((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_12, (int64_t)L_13))) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_008c;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_15 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_008c:
{
int64_t* L_16 = __this->get_address_of__position_8();
int64_t L_17 = ___offset0;
int64_t L_18 = V_0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_16, ((int64_t)il2cpp_codegen_add((int64_t)L_17, (int64_t)L_18)), /*hidden argument*/NULL);
goto IL_00e1;
}
IL_009d:
{
int64_t* L_19 = __this->get_address_of__length_6();
int64_t L_20 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_19, /*hidden argument*/NULL);
V_1 = L_20;
int64_t L_21 = V_1;
int64_t L_22 = ___offset0;
if ((((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_21, (int64_t)L_22))) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_00c0;
}
}
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_24 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_00c0:
{
int64_t* L_25 = __this->get_address_of__position_8();
int64_t L_26 = V_1;
int64_t L_27 = ___offset0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_25, ((int64_t)il2cpp_codegen_add((int64_t)L_26, (int64_t)L_27)), /*hidden argument*/NULL);
goto IL_00e1;
}
IL_00d1:
{
String_t* L_28 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral44AC91F010ECDD855BA22A4FE5878DA9B04839E4, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_29 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_29, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_00e1:
{
int64_t* L_30 = __this->get_address_of__position_8();
int64_t L_31 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_30, /*hidden argument*/NULL);
return L_31;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Write(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
int64_t V_2 = 0;
uint8_t* 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___offset1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_004a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___offset1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0062:
{
bool L_14 = __this->get__isOpen_11();
if (L_14)
{
goto IL_006f;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_006f:
{
bool L_15 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, __this);
if (L_15)
{
goto IL_007c;
}
}
{
__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B(/*hidden argument*/NULL);
}
IL_007c:
{
int64_t* L_16 = __this->get_address_of__position_8();
int64_t L_17 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_16, /*hidden argument*/NULL);
V_0 = L_17;
int64_t* L_18 = __this->get_address_of__length_6();
int64_t L_19 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_18, /*hidden argument*/NULL);
V_1 = L_19;
int64_t L_20 = V_0;
int32_t L_21 = ___count2;
V_2 = ((int64_t)il2cpp_codegen_add((int64_t)L_20, (int64_t)(((int64_t)((int64_t)L_21)))));
int64_t L_22 = V_2;
if ((((int64_t)L_22) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_00ae;
}
}
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2BCB5536759D024FC4C84E0F923502D4B9E8B26E, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_24 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_00ae:
{
int64_t L_25 = V_2;
int64_t L_26 = __this->get__capacity_7();
if ((((int64_t)L_25) <= ((int64_t)L_26)))
{
goto IL_00c7;
}
}
{
String_t* L_27 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral97E3C8FAF75EBD4A5B79D9632596155B4EB5403F, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_28 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_00c7:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_29 = __this->get__buffer_4();
if (L_29)
{
goto IL_00f5;
}
}
{
int64_t L_30 = V_0;
int64_t L_31 = V_1;
if ((((int64_t)L_30) <= ((int64_t)L_31)))
{
goto IL_00e4;
}
}
{
uint8_t* L_32 = __this->get__mem_5();
int64_t L_33 = V_1;
int64_t L_34 = V_0;
int64_t L_35 = V_1;
Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, (intptr_t)(((intptr_t)L_33)))), ((int64_t)il2cpp_codegen_subtract((int64_t)L_34, (int64_t)L_35)), /*hidden argument*/NULL);
}
IL_00e4:
{
int64_t L_36 = V_2;
int64_t L_37 = V_1;
if ((((int64_t)L_36) <= ((int64_t)L_37)))
{
goto IL_00f5;
}
}
{
int64_t* L_38 = __this->get_address_of__length_6();
int64_t L_39 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_38, L_39, /*hidden argument*/NULL);
}
IL_00f5:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_40 = __this->get__buffer_4();
if (!L_40)
{
goto IL_0156;
}
}
{
int64_t L_41 = __this->get__capacity_7();
int64_t L_42 = V_0;
int32_t L_43 = ___count2;
if ((((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_41, (int64_t)L_42))) >= ((int64_t)(((int64_t)((int64_t)L_43))))))
{
goto IL_0119;
}
}
{
String_t* L_44 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE165BC316E01BC9110D90356CA81693D51C6EE78, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_45 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_45, L_44, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0119:
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0121:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_46 = __this->get__buffer_4();
NullCheck(L_46);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_46, (uint8_t**)(&V_3), /*hidden argument*/NULL);
uint8_t* L_47 = V_3;
int64_t L_48 = V_0;
int64_t L_49 = __this->get__offset_9();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = ___buffer0;
int32_t L_51 = ___offset1;
int32_t L_52 = ___count2;
Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_47, (intptr_t)(((intptr_t)L_48)))), (intptr_t)(((intptr_t)L_49)))), 0, L_50, L_51, L_52, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x168, FINALLY_0145);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0145;
}
FINALLY_0145:
{ // begin finally (depth: 1)
{
uint8_t* L_53 = V_3;
if ((((intptr_t)L_53) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0155;
}
}
IL_014a:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_54 = __this->get__buffer_4();
NullCheck(L_54);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_54, /*hidden argument*/NULL);
}
IL_0155:
{
IL2CPP_END_FINALLY(325)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(325)
{
IL2CPP_JUMP_TBL(0x168, IL_0168)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0156:
{
uint8_t* L_55 = __this->get__mem_5();
int64_t L_56 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_57 = ___buffer0;
int32_t L_58 = ___offset1;
int32_t L_59 = ___count2;
Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)(((intptr_t)L_56)))), 0, L_57, L_58, L_59, /*hidden argument*/NULL);
}
IL_0168:
{
int64_t* L_60 = __this->get_address_of__position_8();
int64_t L_61 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_60, L_61, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::WriteByte(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
int64_t V_2 = 0;
uint8_t* 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, __this);
if (L_1)
{
goto IL_001a;
}
}
{
__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B(/*hidden argument*/NULL);
}
IL_001a:
{
int64_t* L_2 = __this->get_address_of__position_8();
int64_t L_3 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_2, /*hidden argument*/NULL);
V_0 = L_3;
int64_t* L_4 = __this->get_address_of__length_6();
int64_t L_5 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_4, /*hidden argument*/NULL);
V_1 = L_5;
int64_t L_6 = V_0;
V_2 = ((int64_t)il2cpp_codegen_add((int64_t)L_6, (int64_t)(((int64_t)((int64_t)1)))));
int64_t L_7 = V_0;
int64_t L_8 = V_1;
if ((((int64_t)L_7) < ((int64_t)L_8)))
{
goto IL_0093;
}
}
{
int64_t L_9 = V_2;
if ((((int64_t)L_9) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0050;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2BCB5536759D024FC4C84E0F923502D4B9E8B26E, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_11 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_RuntimeMethod_var);
}
IL_0050:
{
int64_t L_12 = V_2;
int64_t L_13 = __this->get__capacity_7();
if ((((int64_t)L_12) <= ((int64_t)L_13)))
{
goto IL_0069;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral97E3C8FAF75EBD4A5B79D9632596155B4EB5403F, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_15 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_RuntimeMethod_var);
}
IL_0069:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_16 = __this->get__buffer_4();
if (L_16)
{
goto IL_0093;
}
}
{
int64_t L_17 = V_0;
int64_t L_18 = V_1;
if ((((int64_t)L_17) <= ((int64_t)L_18)))
{
goto IL_0086;
}
}
{
uint8_t* L_19 = __this->get__mem_5();
int64_t L_20 = V_1;
int64_t L_21 = V_0;
int64_t L_22 = V_1;
Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)(((intptr_t)L_20)))), ((int64_t)il2cpp_codegen_subtract((int64_t)L_21, (int64_t)L_22)), /*hidden argument*/NULL);
}
IL_0086:
{
int64_t* L_23 = __this->get_address_of__length_6();
int64_t L_24 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_23, L_24, /*hidden argument*/NULL);
}
IL_0093:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_25 = __this->get__buffer_4();
if (!L_25)
{
goto IL_00d1;
}
}
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_00a3:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_26 = __this->get__buffer_4();
NullCheck(L_26);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_26, (uint8_t**)(&V_3), /*hidden argument*/NULL);
uint8_t* L_27 = V_3;
int64_t L_28 = V_0;
int64_t L_29 = __this->get__offset_9();
uint8_t L_30 = ___value0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (intptr_t)(((intptr_t)L_28)))), (intptr_t)(((intptr_t)L_29))))) = (int8_t)L_30;
IL2CPP_LEAVE(0xDC, FINALLY_00c0);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00c0;
}
FINALLY_00c0:
{ // begin finally (depth: 1)
{
uint8_t* L_31 = V_3;
if ((((intptr_t)L_31) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_00d0;
}
}
IL_00c5:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_32 = __this->get__buffer_4();
NullCheck(L_32);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_32, /*hidden argument*/NULL);
}
IL_00d0:
{
IL2CPP_END_FINALLY(192)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(192)
{
IL2CPP_JUMP_TBL(0xDC, IL_00dc)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00d1:
{
uint8_t* L_33 = __this->get__mem_5();
int64_t L_34 = V_0;
uint8_t L_35 = ___value0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)(((intptr_t)L_34))))) = (int8_t)L_35;
}
IL_00dc:
{
int64_t* L_36 = __this->get_address_of__position_8();
int64_t L_37 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_36, L_37, /*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.IO.__Error::EndOfFile()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2675279F496EAF8EB26AC07B8F1A8E61C759A2A3, /*hidden argument*/NULL);
EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F * L_1 = (EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F *)il2cpp_codegen_object_new(EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F_il2cpp_TypeInfo_var);
EndOfStreamException__ctor_m6C04807A20CAA05C763225A3EC2F79B756FFBAC6(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::FileNotOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralCDC89A30ABEE9559AAC98D6CE0043622D5487F95, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::StreamIsClosed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2DE206896014770EA4546008B698FF620310313E, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::MemoryStreamNotExpandable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBC112DFA2BA868FD548B5E793DA720F4BA4B7F4A, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::ReaderClosed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral104B2949F6F6A59C62E2F1CE4F43D6B3B9B197DF, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::ReadNotSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral781C42C8B8E58290D48A10D0FDEF4A87279EF7DA, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::WrongAsyncResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral06034170A9EFD60729A8166B3398BD58485D6DEE, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::EndReadCalledTwice()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3BCB560C93B84A12D8D29EE915252365391D82AE, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::EndWriteCalledTwice()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0B99FE9B8D9E5DCC187DB9C1DCB067CE403B1FFF, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_RuntimeMethod_var);
}
}
// System.String System.IO.__Error::GetDisplayablePath(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105 (String_t* ___path0, bool ___isInvalidPath1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 4);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
String_t* L_0 = ___path0;
bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000e;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_2;
}
IL_000e:
{
String_t* L_3 = ___path0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_4) >= ((int32_t)2)))
{
goto IL_0019;
}
}
{
String_t* L_5 = ___path0;
return L_5;
}
IL_0019:
{
String_t* L_6 = ___path0;
bool L_7 = PathInternal_IsPartiallyQualified_m04BC87968B46BEDDAB66FA4773F8B146E7F70E68(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0026;
}
}
{
bool L_8 = ___isInvalidPath1;
if (L_8)
{
goto IL_0026;
}
}
{
String_t* L_9 = ___path0;
return L_9;
}
IL_0026:
{
V_0 = (bool)0;
}
IL_0028:
try
{ // begin try (depth: 1)
{
bool L_10 = ___isInvalidPath1;
if (L_10)
{
goto IL_002d;
}
}
IL_002b:
{
V_0 = (bool)1;
}
IL_002d:
{
goto IL_0038;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002f;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0032;
if(il2cpp_codegen_class_is_assignable_from (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0035;
throw e;
}
CATCH_002f:
{ // begin catch(System.Security.SecurityException)
goto IL_0038;
} // end catch (depth: 1)
CATCH_0032:
{ // begin catch(System.ArgumentException)
goto IL_0038;
} // end catch (depth: 1)
CATCH_0035:
{ // begin catch(System.NotSupportedException)
goto IL_0038;
} // end catch (depth: 1)
IL_0038:
{
bool L_11 = V_0;
if (L_11)
{
goto IL_0066;
}
}
{
String_t* L_12 = ___path0;
String_t* L_13 = ___path0;
NullCheck(L_13);
int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
Il2CppChar L_15 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_12, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
bool L_16 = Path_IsDirectorySeparator_m12C353D093EE8E9EA5C1B818004DCABB40B6F832(L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_005e;
}
}
{
String_t* L_17 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB877A8E0CC86712F39624B45B20AC74BE887E398, /*hidden argument*/NULL);
___path0 = L_17;
goto IL_0066;
}
IL_005e:
{
String_t* L_18 = ___path0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
String_t* L_19 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_18, /*hidden argument*/NULL);
___path0 = L_19;
}
IL_0066:
{
String_t* L_20 = ___path0;
return L_20;
}
}
// System.Void System.IO.__Error::WinIOError(System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B (int32_t ___errorCode0, String_t* ___maybeFullPath1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___errorCode0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)123))))
{
goto IL_000f;
}
}
{
int32_t L_1 = ___errorCode0;
G_B3_0 = ((((int32_t)L_1) == ((int32_t)((int32_t)161)))? 1 : 0);
goto IL_0010;
}
IL_000f:
{
G_B3_0 = 1;
}
IL_0010:
{
V_0 = (bool)G_B3_0;
String_t* L_2 = ___maybeFullPath1;
bool L_3 = V_0;
String_t* L_4 = __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105(L_2, L_3, /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5 = ___errorCode0;
if ((((int32_t)L_5) > ((int32_t)((int32_t)80))))
{
goto IL_005d;
}
}
{
int32_t L_6 = ___errorCode0;
if ((((int32_t)L_6) > ((int32_t)((int32_t)15))))
{
goto IL_0048;
}
}
{
int32_t L_7 = ___errorCode0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)2)))
{
case 0:
{
goto IL_0098;
}
case 1:
{
goto IL_00cb;
}
case 2:
{
goto IL_0207;
}
case 3:
{
goto IL_00fd;
}
}
}
{
int32_t L_8 = ___errorCode0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)15))))
{
goto IL_016b;
}
}
{
goto IL_0207;
}
IL_0048:
{
int32_t L_9 = ___errorCode0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)32))))
{
goto IL_0198;
}
}
{
int32_t L_10 = ___errorCode0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)80))))
{
goto IL_01d8;
}
}
{
goto IL_0207;
}
IL_005d:
{
int32_t L_11 = ___errorCode0;
if ((((int32_t)L_11) > ((int32_t)((int32_t)183))))
{
goto IL_007d;
}
}
{
int32_t L_12 = ___errorCode0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)87))))
{
goto IL_0185;
}
}
{
int32_t L_13 = ___errorCode0;
if ((((int32_t)L_13) == ((int32_t)((int32_t)183))))
{
goto IL_012f;
}
}
{
goto IL_0207;
}
IL_007d:
{
int32_t L_14 = ___errorCode0;
if ((((int32_t)L_14) == ((int32_t)((int32_t)206))))
{
goto IL_015b;
}
}
{
int32_t L_15 = ___errorCode0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)995))))
{
goto IL_0201;
}
}
{
goto IL_0207;
}
IL_0098:
{
String_t* L_16 = V_1;
NullCheck(L_16);
int32_t L_17 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_16, /*hidden argument*/NULL);
if (L_17)
{
goto IL_00b0;
}
}
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF05ED8D2787C37C90E1473E7577892374D421A43, /*hidden argument*/NULL);
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_19 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
FileNotFoundException__ctor_mA72DAA77008E903BC162A8D32FDE7F874B27E858(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00b0:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_20;
String_t* L_22 = V_1;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_22);
String_t* L_23 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralDD752B29EC066D8D7C811D0D1588EF5458A6FB0E, L_21, /*hidden argument*/NULL);
String_t* L_24 = V_1;
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_25 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_25, L_23, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00cb:
{
String_t* L_26 = V_1;
NullCheck(L_26);
int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_26, /*hidden argument*/NULL);
if (L_27)
{
goto IL_00e3;
}
}
{
String_t* L_28 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC19E61A380CA7CE4691A9B314627EC2DBF71206E, /*hidden argument*/NULL);
DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 * L_29 = (DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 *)il2cpp_codegen_object_new(DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55_il2cpp_TypeInfo_var);
DirectoryNotFoundException__ctor_mFE363B5843BABE6F4801ABC79B7643C5BED4797B(L_29, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00e3:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = L_30;
String_t* L_32 = V_1;
NullCheck(L_31);
ArrayElementTypeCheck (L_31, L_32);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_32);
String_t* L_33 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralD0189667B8E2F597BB375A5DA6046DAD5C52570A, L_31, /*hidden argument*/NULL);
DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 * L_34 = (DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 *)il2cpp_codegen_object_new(DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55_il2cpp_TypeInfo_var);
DirectoryNotFoundException__ctor_mFE363B5843BABE6F4801ABC79B7643C5BED4797B(L_34, L_33, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00fd:
{
String_t* L_35 = V_1;
NullCheck(L_35);
int32_t L_36 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_35, /*hidden argument*/NULL);
if (L_36)
{
goto IL_0115;
}
}
{
String_t* L_37 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral51B23CF776EFF138FA5B4A92E15B0F80DB0CFACA, /*hidden argument*/NULL);
UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 * L_38 = (UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 *)il2cpp_codegen_object_new(UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75_il2cpp_TypeInfo_var);
UnauthorizedAccessException__ctor_mFE97E700E2ADBC5A46A6A43642CFA2FCB8C0BA85(L_38, L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0115:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = L_39;
String_t* L_41 = V_1;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, L_41);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_41);
String_t* L_42 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral792ACC91EE5889D8CEE5B2697A416308D546BCB1, L_40, /*hidden argument*/NULL);
UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 * L_43 = (UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 *)il2cpp_codegen_object_new(UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75_il2cpp_TypeInfo_var);
UnauthorizedAccessException__ctor_mFE97E700E2ADBC5A46A6A43642CFA2FCB8C0BA85(L_43, L_42, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_012f:
{
String_t* L_44 = V_1;
NullCheck(L_44);
int32_t L_45 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_0207;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_46 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = L_46;
String_t* L_48 = V_1;
NullCheck(L_47);
ArrayElementTypeCheck (L_47, L_48);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_48);
String_t* L_49 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralB4DCD844520DA1F2BBC77A98F8B314501F8C092D, L_47, /*hidden argument*/NULL);
int32_t L_50 = ___errorCode0;
int32_t L_51 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_50, /*hidden argument*/NULL);
String_t* L_52 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_53 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_53, L_49, L_51, L_52, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_53, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_015b:
{
String_t* L_54 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBAE1EBEC7E602C6020B7B0FC2AB9BBE7B9F5F915, /*hidden argument*/NULL);
PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA * L_55 = (PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA *)il2cpp_codegen_object_new(PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA_il2cpp_TypeInfo_var);
PathTooLongException__ctor_m245E1CA7C92C2F6406440660F4AF765583E024C8(L_55, L_54, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_016b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_56 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_57 = L_56;
String_t* L_58 = V_1;
NullCheck(L_57);
ArrayElementTypeCheck (L_57, L_58);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_58);
String_t* L_59 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral2CF7D6096047D30EF507FB93AC4C208A294D0D2E, L_57, /*hidden argument*/NULL);
DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C * L_60 = (DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C *)il2cpp_codegen_object_new(DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C_il2cpp_TypeInfo_var);
DriveNotFoundException__ctor_m507AB9B313C4AF69DABD394073D0DC9A952EDF1B(L_60, L_59, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_60, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0185:
{
int32_t L_61 = ___errorCode0;
String_t* L_62 = Win32Native_GetMessage_m68D6D40DD33D7F2FF30B7CE600BADBEB4EE41B87(L_61, /*hidden argument*/NULL);
int32_t L_63 = ___errorCode0;
int32_t L_64 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_63, /*hidden argument*/NULL);
String_t* L_65 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_66 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_66, L_62, L_64, L_65, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0198:
{
String_t* L_67 = V_1;
NullCheck(L_67);
int32_t L_68 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_67, /*hidden argument*/NULL);
if (L_68)
{
goto IL_01b7;
}
}
{
String_t* L_69 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6B3F00A5708C6496295B0EDCDEC7AA844B71A6D9, /*hidden argument*/NULL);
int32_t L_70 = ___errorCode0;
int32_t L_71 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_70, /*hidden argument*/NULL);
String_t* L_72 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_73 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_73, L_69, L_71, L_72, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_01b7:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_74 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_75 = L_74;
String_t* L_76 = V_1;
NullCheck(L_75);
ArrayElementTypeCheck (L_75, L_76);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_76);
String_t* L_77 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralC29FDD9E1725BFBAC261A919AEA0F811B7D7A0A9, L_75, /*hidden argument*/NULL);
int32_t L_78 = ___errorCode0;
int32_t L_79 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_78, /*hidden argument*/NULL);
String_t* L_80 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_81 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_81, L_77, L_79, L_80, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_81, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_01d8:
{
String_t* L_82 = V_1;
NullCheck(L_82);
int32_t L_83 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_82, /*hidden argument*/NULL);
if (!L_83)
{
goto IL_0207;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_84 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_85 = L_84;
String_t* L_86 = V_1;
NullCheck(L_85);
ArrayElementTypeCheck (L_85, L_86);
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_86);
String_t* L_87 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral5D979813AACA82577D6C8D83D57DA0FAA5DE9671, L_85, /*hidden argument*/NULL);
int32_t L_88 = ___errorCode0;
int32_t L_89 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_88, /*hidden argument*/NULL);
String_t* L_90 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_91 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_91, L_87, L_89, L_90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_91, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0201:
{
OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_92 = (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)il2cpp_codegen_object_new(OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var);
OperationCanceledException__ctor_m2B04DF548109DAA7069F6108990F53588B5C5CA4(L_92, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_92, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0207:
{
int32_t L_93 = ___errorCode0;
String_t* L_94 = Win32Native_GetMessage_m68D6D40DD33D7F2FF30B7CE600BADBEB4EE41B87(L_93, /*hidden argument*/NULL);
int32_t L_95 = ___errorCode0;
int32_t L_96 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_95, /*hidden argument*/NULL);
String_t* L_97 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_98 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_98, L_94, L_96, L_97, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_98, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::WriteNotSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66D145F9BC4E163069F795822A1EA8BEF2E4E55B, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::WriterClosed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral32957566199CF3D8AAF6F91DEC9B58897A18C474, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_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.IndexOutOfRangeException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1 (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral40272C70580D7C109CB89E34D31411747867424C, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233080), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233080), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IndexOutOfRangeException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m3672AC5A2070B4F6B6C97F101A04E6952E95CA72 (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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
// Conversion methods for marshalling of: System.InputRecord
IL2CPP_EXTERN_C void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_pinvoke(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke& marshaled)
{
marshaled.___EventType_0 = unmarshaled.get_EventType_0();
marshaled.___KeyDown_1 = static_cast<int32_t>(unmarshaled.get_KeyDown_1());
marshaled.___RepeatCount_2 = unmarshaled.get_RepeatCount_2();
marshaled.___VirtualKeyCode_3 = unmarshaled.get_VirtualKeyCode_3();
marshaled.___VirtualScanCode_4 = unmarshaled.get_VirtualScanCode_4();
marshaled.___Character_5 = static_cast<uint8_t>(unmarshaled.get_Character_5());
marshaled.___ControlKeyState_6 = unmarshaled.get_ControlKeyState_6();
marshaled.___pad1_7 = unmarshaled.get_pad1_7();
marshaled.___pad2_8 = static_cast<int32_t>(unmarshaled.get_pad2_8());
}
IL2CPP_EXTERN_C void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_pinvoke_back(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke& marshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled)
{
int16_t unmarshaled_EventType_temp_0 = 0;
unmarshaled_EventType_temp_0 = marshaled.___EventType_0;
unmarshaled.set_EventType_0(unmarshaled_EventType_temp_0);
bool unmarshaled_KeyDown_temp_1 = false;
unmarshaled_KeyDown_temp_1 = static_cast<bool>(marshaled.___KeyDown_1);
unmarshaled.set_KeyDown_1(unmarshaled_KeyDown_temp_1);
int16_t unmarshaled_RepeatCount_temp_2 = 0;
unmarshaled_RepeatCount_temp_2 = marshaled.___RepeatCount_2;
unmarshaled.set_RepeatCount_2(unmarshaled_RepeatCount_temp_2);
int16_t unmarshaled_VirtualKeyCode_temp_3 = 0;
unmarshaled_VirtualKeyCode_temp_3 = marshaled.___VirtualKeyCode_3;
unmarshaled.set_VirtualKeyCode_3(unmarshaled_VirtualKeyCode_temp_3);
int16_t unmarshaled_VirtualScanCode_temp_4 = 0;
unmarshaled_VirtualScanCode_temp_4 = marshaled.___VirtualScanCode_4;
unmarshaled.set_VirtualScanCode_4(unmarshaled_VirtualScanCode_temp_4);
Il2CppChar unmarshaled_Character_temp_5 = 0x0;
unmarshaled_Character_temp_5 = static_cast<Il2CppChar>(marshaled.___Character_5);
unmarshaled.set_Character_5(unmarshaled_Character_temp_5);
int32_t unmarshaled_ControlKeyState_temp_6 = 0;
unmarshaled_ControlKeyState_temp_6 = marshaled.___ControlKeyState_6;
unmarshaled.set_ControlKeyState_6(unmarshaled_ControlKeyState_temp_6);
int32_t unmarshaled_pad1_temp_7 = 0;
unmarshaled_pad1_temp_7 = marshaled.___pad1_7;
unmarshaled.set_pad1_7(unmarshaled_pad1_temp_7);
bool unmarshaled_pad2_temp_8 = false;
unmarshaled_pad2_temp_8 = static_cast<bool>(marshaled.___pad2_8);
unmarshaled.set_pad2_8(unmarshaled_pad2_temp_8);
}
// Conversion method for clean up from marshalling of: System.InputRecord
IL2CPP_EXTERN_C void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_pinvoke_cleanup(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.InputRecord
IL2CPP_EXTERN_C void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_com(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com& marshaled)
{
marshaled.___EventType_0 = unmarshaled.get_EventType_0();
marshaled.___KeyDown_1 = static_cast<int32_t>(unmarshaled.get_KeyDown_1());
marshaled.___RepeatCount_2 = unmarshaled.get_RepeatCount_2();
marshaled.___VirtualKeyCode_3 = unmarshaled.get_VirtualKeyCode_3();
marshaled.___VirtualScanCode_4 = unmarshaled.get_VirtualScanCode_4();
marshaled.___Character_5 = static_cast<uint8_t>(unmarshaled.get_Character_5());
marshaled.___ControlKeyState_6 = unmarshaled.get_ControlKeyState_6();
marshaled.___pad1_7 = unmarshaled.get_pad1_7();
marshaled.___pad2_8 = static_cast<int32_t>(unmarshaled.get_pad2_8());
}
IL2CPP_EXTERN_C void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_com_back(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com& marshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled)
{
int16_t unmarshaled_EventType_temp_0 = 0;
unmarshaled_EventType_temp_0 = marshaled.___EventType_0;
unmarshaled.set_EventType_0(unmarshaled_EventType_temp_0);
bool unmarshaled_KeyDown_temp_1 = false;
unmarshaled_KeyDown_temp_1 = static_cast<bool>(marshaled.___KeyDown_1);
unmarshaled.set_KeyDown_1(unmarshaled_KeyDown_temp_1);
int16_t unmarshaled_RepeatCount_temp_2 = 0;
unmarshaled_RepeatCount_temp_2 = marshaled.___RepeatCount_2;
unmarshaled.set_RepeatCount_2(unmarshaled_RepeatCount_temp_2);
int16_t unmarshaled_VirtualKeyCode_temp_3 = 0;
unmarshaled_VirtualKeyCode_temp_3 = marshaled.___VirtualKeyCode_3;
unmarshaled.set_VirtualKeyCode_3(unmarshaled_VirtualKeyCode_temp_3);
int16_t unmarshaled_VirtualScanCode_temp_4 = 0;
unmarshaled_VirtualScanCode_temp_4 = marshaled.___VirtualScanCode_4;
unmarshaled.set_VirtualScanCode_4(unmarshaled_VirtualScanCode_temp_4);
Il2CppChar unmarshaled_Character_temp_5 = 0x0;
unmarshaled_Character_temp_5 = static_cast<Il2CppChar>(marshaled.___Character_5);
unmarshaled.set_Character_5(unmarshaled_Character_temp_5);
int32_t unmarshaled_ControlKeyState_temp_6 = 0;
unmarshaled_ControlKeyState_temp_6 = marshaled.___ControlKeyState_6;
unmarshaled.set_ControlKeyState_6(unmarshaled_ControlKeyState_temp_6);
int32_t unmarshaled_pad1_temp_7 = 0;
unmarshaled_pad1_temp_7 = marshaled.___pad1_7;
unmarshaled.set_pad1_7(unmarshaled_pad1_temp_7);
bool unmarshaled_pad2_temp_8 = false;
unmarshaled_pad2_temp_8 = static_cast<bool>(marshaled.___pad2_8);
unmarshaled.set_pad2_8(unmarshaled_pad2_temp_8);
}
// Conversion method for clean up from marshalling of: System.InputRecord
IL2CPP_EXTERN_C void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_com_cleanup(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com& marshaled)
{
}
#ifdef __clang__
#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.Int16::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C (int16_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
int32_t L_2 = *((int16_t*)__this);
RuntimeObject * L_3 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((*(int16_t*)((int16_t*)UnBox(L_3, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))));
}
IL_0017:
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF81DB58077C32951A07F4AF53F388BC5335C06AE, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C int32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Int16::CompareTo(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE (int16_t* __this, int16_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
int16_t L_1 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1));
}
}
IL2CPP_EXTERN_C int32_t Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE_AdjustorThunk (RuntimeObject * __this, int16_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Int16::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024 (int16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = *((int16_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int32_t)L_1) == ((int32_t)((*(int16_t*)((int16_t*)UnBox(L_2, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Int16::Equals(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B (int16_t* __this, int16_t ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
int16_t L_1 = ___obj0;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B_AdjustorThunk (RuntimeObject * __this, int16_t ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Int16::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798 (int16_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
int32_t L_1 = *((int16_t*)__this);
return ((int32_t)((int32_t)(((int32_t)((uint16_t)L_0)))|(int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16)))));
}
}
IL2CPP_EXTERN_C int32_t Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798(_thisAdjusted, method);
}
// System.String System.Int16::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5 (int16_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_2 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C String_t* Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5(_thisAdjusted, method);
}
// System.String System.Int16::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
RuntimeObject* L_1 = ___provider0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C String_t* Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45(_thisAdjusted, ___provider0, method);
}
// System.String System.Int16::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A (int16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___format0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420((int16_t*)__this, L_0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A(_thisAdjusted, ___format0, ___provider1, method);
}
// System.String System.Int16::ToString(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420 (int16_t* __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info1, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0037;
}
}
{
String_t* L_1 = ___format0;
if (!L_1)
{
goto IL_0037;
}
}
{
String_t* L_2 = ___format0;
NullCheck(L_2);
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_0037;
}
}
{
String_t* L_4 = ___format0;
NullCheck(L_4);
Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, 0, /*hidden argument*/NULL);
if ((((int32_t)L_5) == ((int32_t)((int32_t)88))))
{
goto IL_0027;
}
}
{
String_t* L_6 = ___format0;
NullCheck(L_6);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, 0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)120)))))
{
goto IL_0037;
}
}
IL_0027:
{
int32_t L_8 = *((int16_t*)__this);
String_t* L_9 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___info1;
String_t* L_11 = Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE(((int32_t)((int32_t)L_8&(int32_t)((int32_t)65535))), L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0037:
{
int32_t L_12 = *((int16_t*)__this);
String_t* L_13 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_14 = ___info1;
String_t* L_15 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_12, L_13, L_14, /*hidden argument*/NULL);
return L_15;
}
}
IL2CPP_EXTERN_C String_t* Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info1, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420(_thisAdjusted, ___format0, ___info1, method);
}
// System.Int16 System.Int16::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_m1BA1421C8060847322823397FAE590E371B0A92F (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
int16_t L_3 = Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622(L_0, 7, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_m8974BEBECCE6184E1A2CA312D637E40B731F49B2 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
int16_t L_5 = Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = 0;
}
IL_0002:
try
{ // begin try (depth: 1)
String_t* L_0 = ___s0;
int32_t L_1 = ___style1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
int32_t L_3 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_001f;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000d;
throw e;
}
CATCH_000d:
{ // begin catch(System.OverflowException)
V_1 = ((OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)__exception_local);
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_5 = V_1;
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_6 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E(L_6, L_4, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var);
} // end catch (depth: 1)
IL_001f:
{
int32_t L_7 = ___style1;
if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)512))))
{
goto IL_0047;
}
}
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_9 = V_0;
if ((((int32_t)L_9) <= ((int32_t)((int32_t)65535))))
{
goto IL_0044;
}
}
IL_0034:
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_11 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_12 = V_0;
return (((int16_t)((int16_t)L_12)));
}
IL_0047:
{
int32_t L_13 = V_0;
if ((((int32_t)L_13) < ((int32_t)((int32_t)-32768))))
{
goto IL_0057;
}
}
{
int32_t L_14 = V_0;
if ((((int32_t)L_14) <= ((int32_t)((int32_t)32767))))
{
goto IL_0067;
}
}
IL_0057:
{
String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_16 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_16, L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var);
}
IL_0067:
{
int32_t L_17 = V_0;
return (((int16_t)((int16_t)L_17)));
}
}
// System.TypeCode System.Int16::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585 (int16_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(7);
}
}
IL2CPP_EXTERN_C int32_t Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585(_thisAdjusted, method);
}
// System.Boolean System.Int16::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_1 = Convert_ToBoolean_m06007FC94CD66F1273731E389C6C7DC24B02B505((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C bool Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02(_thisAdjusted, ___provider0, method);
}
// System.Char System.Int16::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Il2CppChar Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Int16::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int8_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Int16::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint8_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Int16::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
return (int16_t)L_0;
}
}
IL2CPP_EXTERN_C int16_t Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Int16::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint16_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Int16::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int32_t L_1 = Convert_ToInt32_mB0AA47EFAB81D1DBA0C2153ECBD0E19DE230BE2C((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Int16::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Int16::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_1 = Convert_ToInt64_m2261BB84FA0B10E657E622163945B4ED9D3C2D11((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int64_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Int16::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C(_thisAdjusted, ___provider0, method);
}
// System.Single System.Int16::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_m419FC798EE52D4A39F7719FA060CC198EF94F2B0((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C float Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7(_thisAdjusted, ___provider0, method);
}
// System.Double System.Int16::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_m9FFE6DC9FE9E17546E9681806ED4613D582A2D6C((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C double Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Int16::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mD9355C906353F7E283024449544616979EF4823E((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Int16::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A(_thisAdjusted, ___provider0, method);
}
// System.Object System.Int16::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3 (int16_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
int16_t L_1 = ((int16_t)L_0);
RuntimeObject * L_2 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + _offset);
return Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3(_thisAdjusted, ___type0, ___provider1, 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
#ifdef __clang__
#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.Int32::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2 (int32_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
{
goto IL_0024;
}
}
{
RuntimeObject * L_2 = ___value0;
V_0 = ((*(int32_t*)((int32_t*)UnBox(L_2, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))));
int32_t L_3 = *((int32_t*)__this);
int32_t L_4 = V_0;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_001b;
}
}
{
return (-1);
}
IL_001b:
{
int32_t L_5 = *((int32_t*)__this);
int32_t L_6 = V_0;
if ((((int32_t)L_5) <= ((int32_t)L_6)))
{
goto IL_0022;
}
}
{
return 1;
}
IL_0022:
{
return 0;
}
IL_0024:
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral743B68D46C6B7339FD2325D2DF22FE108889647C, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C int32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
int32_t L_1 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0007;
}
}
{
return (-1);
}
IL_0007:
{
int32_t L_2 = *((int32_t*)__this);
int32_t L_3 = ___value0;
if ((((int32_t)L_2) <= ((int32_t)L_3)))
{
goto IL_000e;
}
}
{
return 1;
}
IL_000e:
{
return 0;
}
}
IL2CPP_EXTERN_C int32_t Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Int32::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = *((int32_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int32_t)L_1) == ((int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Int32::Equals(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B (int32_t* __this, int32_t ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
int32_t L_1 = ___obj0;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B_AdjustorThunk (RuntimeObject * __this, int32_t ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Int32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A (int32_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A(_thisAdjusted, method);
}
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02 (int32_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_2 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02(_thisAdjusted, method);
}
// System.String System.Int32::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
String_t* L_1 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C String_t* Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8(_thisAdjusted, ___format0, method);
}
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
RuntimeObject* L_1 = ___provider0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5(_thisAdjusted, ___provider0, method);
}
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL);
String_t* L_4 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09(_thisAdjusted, ___format0, ___provider1, method);
}
// System.Int32 System.Int32::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m5807B6243415790250FC25168F767C08FC16FDEA (String_t* ___s0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
int32_t L_2 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, 7, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 System.Int32::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m9FD0A75E9C7A9BFC26070A60A420D77CD629CC58 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
int32_t L_3 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, 7, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int32 System.Int32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m17BA45CC13A0E08712F2EE60CC1356291D0592AC (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
int32_t L_5 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Boolean System.Int32::TryParse(System.String,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m03D31CAB7050E8286A8A90711C896B181006AD00 (String_t* ___s0, int32_t* ___result1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
int32_t* L_2 = ___result1;
bool L_3 = Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D(L_0, 7, L_1, (int32_t*)L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Boolean System.Int32::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m6ADA5D03EE325554346538B991A4C3566BD2A011 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, int32_t* ___result3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
int32_t* L_5 = ___result3;
bool L_6 = Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D(L_1, L_2, L_4, (int32_t*)L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.TypeCode System.Int32::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601 (int32_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)9));
}
}
IL2CPP_EXTERN_C int32_t Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601(_thisAdjusted, method);
}
// System.Boolean System.Int32::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_1 = Convert_ToBoolean_m30441623AE02A6C619CB77CD91B6A6199B90BC94(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C bool Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D(_thisAdjusted, ___provider0, method);
}
// System.Char System.Int32::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Il2CppChar Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Int32::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int8_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Int32::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint8_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Int32::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_1 = Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int16_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Int32::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint16_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Int32::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Int32::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Int32::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_1 = Convert_ToInt64_m61697621C2BC4FDADFE1742507EBA7B3C1D76475(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int64_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Int32::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E(_thisAdjusted, ___provider0, method);
}
// System.Single System.Int32::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_m4D6202BB2F75526A5E01DA49A35D26007C76A21C(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C float Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1(_thisAdjusted, ___provider0, method);
}
// System.Double System.Int32::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_mAE52754212671CD42E2C67BD9ABCE18DAEE443CC(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C double Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Int32::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_m707FBD6E1B6D6F7F71D1D492C5F5AE981B561DEF(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Int32::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD(_thisAdjusted, ___provider0, method);
}
// System.Object System.Int32::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C (int32_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + _offset);
return Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C(_thisAdjusted, ___type0, ___provider1, 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
#ifdef __clang__
#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.Int64::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190 (int64_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))
{
goto IL_0024;
}
}
{
RuntimeObject * L_2 = ___value0;
V_0 = ((*(int64_t*)((int64_t*)UnBox(L_2, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))));
int64_t L_3 = *((int64_t*)__this);
int64_t L_4 = V_0;
if ((((int64_t)L_3) >= ((int64_t)L_4)))
{
goto IL_001b;
}
}
{
return (-1);
}
IL_001b:
{
int64_t L_5 = *((int64_t*)__this);
int64_t L_6 = V_0;
if ((((int64_t)L_5) <= ((int64_t)L_6)))
{
goto IL_0022;
}
}
{
return 1;
}
IL_0022:
{
return 0;
}
IL_0024:
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral35EFFFE2370AD1E1EBB40B27FB092EFF5D7E1D4C, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C int32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Int64::CompareTo(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2 (int64_t* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = ___value0;
if ((((int64_t)L_0) >= ((int64_t)L_1)))
{
goto IL_0007;
}
}
{
return (-1);
}
IL_0007:
{
int64_t L_2 = *((int64_t*)__this);
int64_t L_3 = ___value0;
if ((((int64_t)L_2) <= ((int64_t)L_3)))
{
goto IL_000e;
}
}
{
return 1;
}
IL_000e:
{
return 0;
}
}
IL2CPP_EXTERN_C int32_t Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2_AdjustorThunk (RuntimeObject * __this, int64_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Int64::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C (int64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int64_t L_1 = *((int64_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int64_t)L_1) == ((int64_t)((*(int64_t*)((int64_t*)UnBox(L_2, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Int64::Equals(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F (int64_t* __this, int64_t ___obj0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = ___obj0;
return (bool)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F_AdjustorThunk (RuntimeObject * __this, int64_t ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Int64::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4 (int64_t* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = *((int64_t*)__this);
return ((int32_t)((int32_t)(((int32_t)((int32_t)L_0)))^(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_1>>(int32_t)((int32_t)32))))))));
}
}
IL2CPP_EXTERN_C int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4(_thisAdjusted, method);
}
// System.String System.Int64::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C (int64_t* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_2 = Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C String_t* Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C(_thisAdjusted, method);
}
// System.String System.Int64::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
RuntimeObject* L_1 = ___provider0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A(_thisAdjusted, ___provider0, method);
}
// System.String System.Int64::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL);
String_t* L_4 = Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB(L_0, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517(_thisAdjusted, ___format0, ___provider1, method);
}
// System.Int64 System.Int64::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_mF23EAF76DFE5560832595FCAC1ACABFB717E3D4D (String_t* ___s0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
int64_t L_2 = Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62(L_0, 7, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int64 System.Int64::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_m58A1CEB948FDC6C2ECCA27CA9D19CB904BF98FD4 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
int64_t L_3 = Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62(L_0, 7, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int64 System.Int64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_m5113C0CCFB668DBC49D71D9F07CC8A96B8C7773D (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
int64_t L_5 = Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Boolean System.Int64::TryParse(System.String,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m5C60567D82BACC7D9C18F7A9A83025FC94AD0E95 (String_t* ___s0, int64_t* ___result1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
int64_t* L_2 = ___result1;
bool L_3 = Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598(L_0, 7, L_1, (int64_t*)L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.TypeCode System.Int64::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911 (int64_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)11));
}
}
IL2CPP_EXTERN_C int32_t Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911(_thisAdjusted, method);
}
// System.Boolean System.Int64::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_1 = Convert_ToBoolean_m6EB15B3E1D9AC269065DB500E880A81AA42AF5E7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C bool Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7(_thisAdjusted, ___provider0, method);
}
// System.Char System.Int64::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Il2CppChar Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Int64::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int8_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Int64::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint8_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Int64::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_1 = Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int16_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Int64::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint16_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Int64::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int32_t L_1 = Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Int64::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Int64::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
return L_0;
}
}
IL2CPP_EXTERN_C int64_t Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Int64::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38(_thisAdjusted, ___provider0, method);
}
// System.Single System.Int64::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_m3A854A75BE60D077E283A444B4EEF3ED6E984F9A(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C float Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86(_thisAdjusted, ___provider0, method);
}
// System.Double System.Int64::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_m5948DF15E5B6EAE3A3D443BB5DAB6D6BF5D4E785(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C double Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Int64::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mECE2EDC28EBA5F0B88702C15D0A3A1DABEE8D6A1(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Int64::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D(_thisAdjusted, ___provider0, method);
}
// System.Object System.Int64::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5 (int64_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = L_0;
RuntimeObject * L_2 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + _offset);
return Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5(_thisAdjusted, ___type0, ___provider1, 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
#ifdef __clang__
#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.IntPtr::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6 (intptr_t* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
*__this = ((intptr_t)(((intptr_t)L_0)));
return;
}
}
IL2CPP_EXTERN_C void IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6(_thisAdjusted, ___value0, method);
}
// System.Void System.IntPtr::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD (intptr_t* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
*__this = ((intptr_t)(((uintptr_t)L_0)));
return;
}
}
IL2CPP_EXTERN_C void IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD_AdjustorThunk (RuntimeObject * __this, int64_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD(_thisAdjusted, ___value0, method);
}
// System.Void System.IntPtr::.ctor(System.Void*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6 (intptr_t* __this, void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
*__this = ((intptr_t)L_0);
return;
}
}
IL2CPP_EXTERN_C void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_AdjustorThunk (RuntimeObject * __this, void* ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline(_thisAdjusted, ___value0, method);
}
// System.Void System.IntPtr::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
NullCheck(L_0);
int64_t L_1 = SerializationInfo_GetInt64_mD9FB62CFBEC90A544B95912AB9FA24377AC17E54(L_0, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
V_0 = L_1;
int64_t L_2 = V_0;
*__this = ((intptr_t)(((uintptr_t)L_2)));
return;
}
}
IL2CPP_EXTERN_C void IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B(_thisAdjusted, ___info0, ___context1, method);
}
// System.Int32 System.IntPtr::get_Size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929 (const RuntimeMethod* method)
{
{
uint32_t L_0 = sizeof(void*);
return L_0;
}
}
// System.Void System.IntPtr::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816 (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
int64_t L_3 = IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B((intptr_t*)__this, /*hidden argument*/NULL);
NullCheck(L_2);
SerializationInfo_AddValue_mCCC2918D05840247B2A72A834940BD36AD7F5DE4(L_2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_3, /*hidden argument*/NULL);
return;
}
}
IL2CPP_EXTERN_C void IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816(_thisAdjusted, ___info0, ___context1, method);
}
// System.Boolean System.IntPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, IntPtr_t_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
RuntimeObject * L_1 = ___obj0;
intptr_t L_2 = *((intptr_t*)UnBox(L_1, IntPtr_t_il2cpp_TypeInfo_var));
intptr_t L_3 = *__this;
return (bool)((((intptr_t)L_2) == ((intptr_t)L_3))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
return IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.IntPtr::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A (intptr_t* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = *__this;
return (((int32_t)((int32_t)L_0)));
}
}
IL2CPP_EXTERN_C int32_t IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
return IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A(_thisAdjusted, method);
}
// System.Int64 System.IntPtr::ToInt64()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B (intptr_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)4))))
{
goto IL_0011;
}
}
{
intptr_t L_1 = *__this;
return (((int64_t)((int64_t)(((int32_t)((int32_t)L_1))))));
}
IL_0011:
{
intptr_t L_2 = *__this;
return (((int64_t)((uint64_t)L_2)));
}
}
IL2CPP_EXTERN_C int64_t IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
return IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B(_thisAdjusted, method);
}
// System.Void* System.IntPtr::ToPointer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65 (intptr_t* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = *__this;
return (void*)(L_0);
}
}
IL2CPP_EXTERN_C void* IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
return IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65_inline(_thisAdjusted, method);
}
// System.String System.IntPtr::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C (intptr_t* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF((intptr_t*)__this, (String_t*)NULL, /*hidden argument*/NULL);
return L_0;
}
}
IL2CPP_EXTERN_C String_t* IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
return IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C(_thisAdjusted, method);
}
// System.String System.IntPtr::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF (intptr_t* __this, String_t* ___format0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int64_t V_1 = 0;
{
int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)4))))
{
goto IL_001a;
}
}
{
intptr_t L_1 = *__this;
V_0 = (((int32_t)((int32_t)L_1)));
String_t* L_2 = ___format0;
String_t* L_3 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&V_0), L_2, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_3;
}
IL_001a:
{
intptr_t L_4 = *__this;
V_1 = (((int64_t)((uint64_t)L_4)));
String_t* L_5 = ___format0;
String_t* L_6 = Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517((int64_t*)(&V_1), L_5, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_6;
}
}
IL2CPP_EXTERN_C String_t* IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
return IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF(_thisAdjusted, ___format0, method);
}
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value10;
intptr_t L_1 = ___value21;
return (bool)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0);
}
}
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value10;
intptr_t L_1 = ___value21;
return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.IntPtr System.IntPtr::op_Explicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91 (int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
intptr_t L_1;
memset((&L_1), 0, sizeof(L_1));
IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6((&L_1), L_0, /*hidden argument*/NULL);
return (intptr_t)L_1;
}
}
// System.IntPtr System.IntPtr::op_Explicit(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m534152049CE3084CEFA1CD8B1BA74F3C085A2ABF (int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
intptr_t L_1;
memset((&L_1), 0, sizeof(L_1));
IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD((&L_1), L_0, /*hidden argument*/NULL);
return (intptr_t)L_1;
}
}
// System.IntPtr System.IntPtr::op_Explicit(System.Void*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m7F0C4B884FFB05BD231154CBDAEBCF1917019C21 (void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
intptr_t L_1;
memset((&L_1), 0, sizeof(L_1));
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline((&L_1), (void*)(void*)L_0, /*hidden argument*/NULL);
return (intptr_t)L_1;
}
}
// System.Int32 System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_op_Explicit_mD69722A4C61D33FE70E790325C6E0DC690F9494F (intptr_t ___value0, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value0;
return (((int32_t)((int32_t)L_0)));
}
}
// System.Int64 System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IntPtr_op_Explicit_m254924E8680FCCF870F18064DC0B114445B09172 (intptr_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B((intptr_t*)(&___value0), /*hidden argument*/NULL);
return L_0;
}
}
// System.Void* System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027 (intptr_t ___value0, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value0;
return (void*)(L_0);
}
}
// System.Boolean System.IntPtr::IsNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4 (intptr_t* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = *__this;
return (bool)((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + _offset);
return IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.InvalidCastException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mB14CE363FB346D9BC0C0763CAF0B67AF90902144 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidCastException__ctor_mB14CE363FB346D9BC0C0763CAF0B67AF90902144_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralCA8EFDD5F0C04A868408904A3C252F0CA567598B, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467262), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidCastException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467262), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidCastException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mA4139C9FAE61C910B9E3F28837FBBCC653D7387C (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.InvalidOperationException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral29A6E802123FF6EA94EC6F96DDA470B3FA755A58, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233079), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233079), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233079), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidOperationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mAC8983A2DEE5DB9ECD05C17D3270634236B95FA2 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.InvalidProgramException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidProgramException__ctor_m196DA4095281E02BB54223A57497738B29958D89 (InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidProgramException__ctor_m196DA4095281E02BB54223A57497738B29958D89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC9C545814A86552A9F3ADF0A724DCF384DA46FF6, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233030), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidProgramException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidProgramException__ctor_m0A6EAC90493AED4549F5980E8110BD56A0E32C7F (InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233030), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidProgramException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidProgramException__ctor_m18BE86AE367FCF84D4ED3DC35A9472AC918D406C (InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.InvalidTimeZoneException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, String_t* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidTimeZoneException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidTimeZoneException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m5CF26CC0EAFEFD50238D8A317644BE84B8A91764 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m5CF26CC0EAFEFD50238D8A317644BE84B8A91764_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidTimeZoneException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1(__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.Byte[] System.KnownTerminals::get_linux()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1665));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____40981BAA39513E58B28DCF0103CC04DE2A0A0444_23_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Byte[] System.KnownTerminals::get_xterm()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)2100));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Byte[] System.KnownTerminals::get_ansi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1450));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____379C06C9E702D31469C29033F0DD63931EB349F5_16_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*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.LocalDataStore::.ctor(System.LocalDataStoreMgr,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___InitialCapacity1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ___mgr0;
__this->set_m_Manager_1(L_0);
int32_t L_1 = ___InitialCapacity1;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_2 = (LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0*)(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0*)SZArrayNew(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0_il2cpp_TypeInfo_var, (uint32_t)L_1);
__this->set_m_DataTable_0(L_2);
return;
}
}
// System.Void System.LocalDataStore::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore_Dispose_m2B25B7ACE605E5F0366A6063B5B9978C8656D935 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, const RuntimeMethod* method)
{
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
NullCheck(L_0);
LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3(L_0, __this, /*hidden argument*/NULL);
return;
}
}
// System.Object System.LocalDataStore::GetData(System.LocalDataStoreSlot)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * V_1 = NULL;
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_0);
LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9(L_0, L_1, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = ___slot0;
NullCheck(L_2);
int32_t L_3 = LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79_inline(L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0047;
}
}
{
int32_t L_5 = V_0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_6 = __this->get_m_DataTable_0();
NullCheck(L_6);
if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))
{
goto IL_0024;
}
}
{
return NULL;
}
IL_0024:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_7 = __this->get_m_DataTable_0();
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_1 = L_10;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_11 = V_1;
if (L_11)
{
goto IL_0032;
}
}
{
return NULL;
}
IL_0032:
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_12 = V_1;
NullCheck(L_12);
int64_t L_13 = LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88_inline(L_12, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_14 = ___slot0;
NullCheck(L_14);
int64_t L_15 = LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5_inline(L_14, /*hidden argument*/NULL);
if ((!(((uint64_t)L_13) == ((uint64_t)L_15))))
{
goto IL_0047;
}
}
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_16 = V_1;
NullCheck(L_16);
RuntimeObject * L_17 = LocalDataStoreElement_get_Value_m5822C535F5DD63A7F1BA4EFA424D82450C972A16_inline(L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0047:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF379853755CB070E42B380890B2D70F78F11E230, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_19 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_RuntimeMethod_var);
}
}
// System.Void System.LocalDataStore::SetData(System.LocalDataStoreSlot,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, RuntimeObject * ___data1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * V_1 = NULL;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * G_B4_0 = NULL;
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_0);
LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9(L_0, L_1, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = ___slot0;
NullCheck(L_2);
int32_t L_3 = LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79_inline(L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_004f;
}
}
{
int32_t L_5 = V_0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_6 = __this->get_m_DataTable_0();
NullCheck(L_6);
if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))
{
goto IL_0025;
}
}
{
G_B4_0 = ((LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)(NULL));
goto IL_002d;
}
IL_0025:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_7 = __this->get_m_DataTable_0();
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
G_B4_0 = L_10;
}
IL_002d:
{
V_1 = G_B4_0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_11 = V_1;
if (L_11)
{
goto IL_0039;
}
}
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_12 = ___slot0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_13 = LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E(__this, L_12, /*hidden argument*/NULL);
V_1 = L_13;
}
IL_0039:
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_14 = V_1;
NullCheck(L_14);
int64_t L_15 = LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88_inline(L_14, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_16 = ___slot0;
NullCheck(L_16);
int64_t L_17 = LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5_inline(L_16, /*hidden argument*/NULL);
if ((!(((uint64_t)L_15) == ((uint64_t)L_17))))
{
goto IL_004f;
}
}
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_18 = V_1;
RuntimeObject * L_19 = ___data1;
NullCheck(L_18);
LocalDataStoreElement_set_Value_mA97C37A5E8F4E76276D025D604DCBAD1400570B3_inline(L_18, L_19, /*hidden argument*/NULL);
return;
}
IL_004f:
{
String_t* L_20 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF379853755CB070E42B380890B2D70F78F11E230, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_21 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_21, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_RuntimeMethod_var);
}
}
// System.Void System.LocalDataStore::FreeData(System.Int32,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore_FreeData_m7DC3DC695D322B7F2ED47F357447D2790821B10C (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method)
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * V_0 = NULL;
{
int32_t L_0 = ___slot0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_1 = __this->get_m_DataTable_0();
NullCheck(L_1);
if ((((int32_t)L_0) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_2 = __this->get_m_DataTable_0();
int32_t L_3 = ___slot0;
NullCheck(L_2);
int32_t L_4 = L_3;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = L_5;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_6 = V_0;
if (!L_6)
{
goto IL_002a;
}
}
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_7 = V_0;
NullCheck(L_7);
int64_t L_8 = LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88_inline(L_7, /*hidden argument*/NULL);
int64_t L_9 = ___cookie1;
if ((!(((uint64_t)L_8) == ((uint64_t)L_9))))
{
goto IL_002a;
}
}
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_10 = __this->get_m_DataTable_0();
int32_t L_11 = ___slot0;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, NULL);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)NULL);
}
IL_002a:
{
return;
}
}
// System.LocalDataStoreElement System.LocalDataStore::PopulateElement(System.LocalDataStoreSlot)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* V_2 = NULL;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_0), /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_1);
int32_t L_2 = LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79_inline(L_1, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = V_1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_002f;
}
}
IL_001f:
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF379853755CB070E42B380890B2D70F78F11E230, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_RuntimeMethod_var);
}
IL_002f:
{
int32_t L_6 = V_1;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_7 = __this->get_m_DataTable_0();
NullCheck(L_7);
if ((((int32_t)L_6) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))))
{
goto IL_0066;
}
}
IL_003a:
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_8 = __this->get_m_Manager_1();
NullCheck(L_8);
int32_t L_9 = LocalDataStoreMgr_GetSlotTableLength_mE37679FF2EE2BFE95424C5494E5159275D0EE920(L_8, /*hidden argument*/NULL);
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_10 = (LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0*)(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0*)SZArrayNew(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0_il2cpp_TypeInfo_var, (uint32_t)L_9);
V_2 = L_10;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_11 = __this->get_m_DataTable_0();
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_12 = V_2;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_13 = __this->get_m_DataTable_0();
NullCheck(L_13);
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_11, (RuntimeArray *)(RuntimeArray *)L_12, (((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))), /*hidden argument*/NULL);
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_14 = V_2;
__this->set_m_DataTable_0(L_14);
}
IL_0066:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_15 = __this->get_m_DataTable_0();
int32_t L_16 = V_1;
NullCheck(L_15);
int32_t L_17 = L_16;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
if (L_18)
{
goto IL_0083;
}
}
IL_0070:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_19 = __this->get_m_DataTable_0();
int32_t L_20 = V_1;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_21 = ___slot0;
NullCheck(L_21);
int64_t L_22 = LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5_inline(L_21, /*hidden argument*/NULL);
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_23 = (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)il2cpp_codegen_object_new(LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA_il2cpp_TypeInfo_var);
LocalDataStoreElement__ctor_mA1B8C77848E6785BB0D83054DB673A85DC185034(L_23, L_22, /*hidden argument*/NULL);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_23);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)L_23);
}
IL_0083:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_24 = __this->get_m_DataTable_0();
int32_t L_25 = V_1;
NullCheck(L_24);
int32_t L_26 = L_25;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
V_3 = L_27;
IL2CPP_LEAVE(0x9D, FINALLY_008e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008e;
}
FINALLY_008e:
{ // begin finally (depth: 1)
{
bool L_28 = V_0;
if (!L_28)
{
goto IL_009c;
}
}
IL_0091:
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_29 = __this->get_m_Manager_1();
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_29, /*hidden argument*/NULL);
}
IL_009c:
{
IL2CPP_END_FINALLY(142)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(142)
{
IL2CPP_JUMP_TBL(0x9D, IL_009d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_009d:
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_30 = V_3;
return L_30;
}
}
#ifdef __clang__
#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.LocalDataStoreElement::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreElement__ctor_mA1B8C77848E6785BB0D83054DB673A85DC185034 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, int64_t ___cookie0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int64_t L_0 = ___cookie0;
__this->set_m_cookie_1(L_0);
return;
}
}
// System.Object System.LocalDataStoreElement::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStoreElement_get_Value_m5822C535F5DD63A7F1BA4EFA424D82450C972A16 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_value_0();
return L_0;
}
}
// System.Void System.LocalDataStoreElement::set_Value(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreElement_set_Value_mA97C37A5E8F4E76276D025D604DCBAD1400570B3 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_m_value_0(L_0);
return;
}
}
// System.Int64 System.LocalDataStoreElement::get_Cookie()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->get_m_cookie_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.LocalDataStoreHolder::.ctor(System.LocalDataStore)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreHolder__ctor_m87A5B4E0605928E76A804DF75AE5EFBAE417589A (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_0 = ___store0;
__this->set_m_Store_0(L_0);
return;
}
}
// System.Void System.LocalDataStoreHolder::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreHolder_Finalize_m67243D9324F739B6B00F9135A0C4BB1556B8A97F (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, const RuntimeMethod* method)
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_0 = __this->get_m_Store_0();
V_0 = L_0;
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
IL_000a:
{
IL2CPP_LEAVE(0x1B, FINALLY_0014);
}
IL_000c:
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_2 = V_0;
NullCheck(L_2);
LocalDataStore_Dispose_m2B25B7ACE605E5F0366A6063B5B9978C8656D935(L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x1B, FINALLY_0014);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0014;
}
FINALLY_0014:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(20)
} // end finally (depth: 1)
IL2CPP_CLEANUP(20)
{
IL2CPP_JUMP_TBL(0x1B, IL_001b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001b:
{
return;
}
}
// System.LocalDataStore System.LocalDataStoreHolder::get_Store()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * LocalDataStoreHolder_get_Store_m2C6F36680CF6788220C9A3F029576541763FB8B5 (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, const RuntimeMethod* method)
{
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_0 = __this->get_m_Store_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.LocalDataStoreHolder System.LocalDataStoreMgr::CreateLocalDataStore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * V_0 = NULL;
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * V_1 = NULL;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = __this->get_m_SlotInfoTable_0();
NullCheck(L_0);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE *)il2cpp_codegen_object_new(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE_il2cpp_TypeInfo_var);
LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910(L_1, __this, (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), /*hidden argument*/NULL);
V_0 = L_1;
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_2 = V_0;
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_3 = (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 *)il2cpp_codegen_object_new(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304_il2cpp_TypeInfo_var);
LocalDataStoreHolder__ctor_m87A5B4E0605928E76A804DF75AE5EFBAE417589A(L_3, L_2, /*hidden argument*/NULL);
V_1 = L_3;
V_2 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_001d:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_2), /*hidden argument*/NULL);
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_4 = __this->get_m_ManagedLocalDataStores_2();
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_5 = V_0;
NullCheck(L_4);
List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760(L_4, L_5, /*hidden argument*/List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760_RuntimeMethod_var);
IL2CPP_LEAVE(0x3D, FINALLY_0033);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0033;
}
FINALLY_0033:
{ // begin finally (depth: 1)
{
bool L_6 = V_2;
if (!L_6)
{
goto IL_003c;
}
}
IL_0036:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_003c:
{
IL2CPP_END_FINALLY(51)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(51)
{
IL2CPP_JUMP_TBL(0x3D, IL_003d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003d:
{
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_7 = V_1;
return L_7;
}
}
// System.Void System.LocalDataStoreMgr::DeleteLocalDataStore(System.LocalDataStore)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_0 = __this->get_m_ManagedLocalDataStores_2();
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = ___store0;
NullCheck(L_0);
List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94(L_0, L_1, /*hidden argument*/List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94_RuntimeMethod_var);
IL2CPP_LEAVE(0x28, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
{
bool L_2 = V_0;
if (!L_2)
{
goto IL_0027;
}
}
IL_0021:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0027:
{
IL2CPP_END_FINALLY(30)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x28, IL_0028)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0028:
{
return;
}
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateDataSlot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* V_4 = NULL;
int64_t V_5 = 0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = __this->get_m_SlotInfoTable_0();
NullCheck(L_0);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))));
int32_t L_1 = __this->get_m_FirstAvailableSlot_1();
V_2 = L_1;
goto IL_002f;
}
IL_0021:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_2 = __this->get_m_SlotInfoTable_0();
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (uint8_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if (!L_5)
{
goto IL_0033;
}
}
IL_002b:
{
int32_t L_6 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_002f:
{
int32_t L_7 = V_2;
int32_t L_8 = V_1;
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0021;
}
}
IL_0033:
{
int32_t L_9 = V_2;
int32_t L_10 = V_1;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_006b;
}
}
IL_0037:
{
int32_t L_11 = V_1;
if ((((int32_t)L_11) >= ((int32_t)((int32_t)512))))
{
goto IL_0045;
}
}
IL_003f:
{
int32_t L_12 = V_1;
V_3 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_12, (int32_t)2));
goto IL_004d;
}
IL_0045:
{
int32_t L_13 = V_1;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)((int32_t)128)));
}
IL_004d:
{
int32_t L_14 = V_3;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_15 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)L_14);
V_4 = L_15;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_16 = __this->get_m_SlotInfoTable_0();
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_17 = V_4;
int32_t L_18 = V_1;
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_16, (RuntimeArray *)(RuntimeArray *)L_17, L_18, /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_19 = V_4;
__this->set_m_SlotInfoTable_0(L_19);
}
IL_006b:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_20 = __this->get_m_SlotInfoTable_0();
int32_t L_21 = V_2;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (bool)1);
int32_t L_22 = V_2;
int64_t L_23 = __this->get_m_CookieGenerator_4();
V_5 = L_23;
int64_t L_24 = V_5;
if (il2cpp_codegen_check_add_overflow((int64_t)L_24, (int64_t)(((int64_t)((int64_t)1)))))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_RuntimeMethod_var);
__this->set_m_CookieGenerator_4(((int64_t)il2cpp_codegen_add((int64_t)L_24, (int64_t)(((int64_t)((int64_t)1))))));
int64_t L_25 = V_5;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_26 = (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E *)il2cpp_codegen_object_new(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_il2cpp_TypeInfo_var);
LocalDataStoreSlot__ctor_mB1C1592C2941720C53B2F21CBBB875667FF23D89(L_26, __this, L_22, L_25, /*hidden argument*/NULL);
int32_t L_27 = V_2;
__this->set_m_FirstAvailableSlot_1(((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)));
V_6 = L_26;
IL2CPP_LEAVE(0xA7, FINALLY_009d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009d;
}
FINALLY_009d:
{ // begin finally (depth: 1)
{
bool L_28 = V_0;
if (!L_28)
{
goto IL_00a6;
}
}
IL_00a0:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_00a6:
{
IL2CPP_END_FINALLY(157)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(157)
{
IL2CPP_JUMP_TBL(0xA7, IL_00a7)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a7:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_29 = V_6;
return L_29;
}
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_1 = NULL;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_0 = LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036(__this, /*hidden argument*/NULL);
V_1 = L_0;
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_1 = __this->get_m_KeyToSlotMap_3();
String_t* L_2 = ___name0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_3 = V_1;
NullCheck(L_1);
Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C(L_1, L_2, L_3, /*hidden argument*/Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C_RuntimeMethod_var);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_4 = V_1;
V_2 = L_4;
IL2CPP_LEAVE(0x31, FINALLY_0027);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0027;
}
FINALLY_0027:
{ // begin finally (depth: 1)
{
bool L_5 = V_0;
if (!L_5)
{
goto IL_0030;
}
}
IL_002a:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0030:
{
IL2CPP_END_FINALLY(39)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(39)
{
IL2CPP_JUMP_TBL(0x31, IL_0031)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0031:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_6 = V_2;
return L_6;
}
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::GetNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_1 = NULL;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_0 = __this->get_m_KeyToSlotMap_3();
String_t* L_1 = ___name0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE(L_0, L_1, /*hidden argument*/CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE_RuntimeMethod_var);
V_1 = L_2;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_3 = V_1;
if (L_3)
{
goto IL_0029;
}
}
IL_001f:
{
String_t* L_4 = ___name0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_5 = LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2(__this, L_4, /*hidden argument*/NULL);
V_2 = L_5;
IL2CPP_LEAVE(0x37, FINALLY_002d);
}
IL_0029:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_6 = V_1;
V_2 = L_6;
IL2CPP_LEAVE(0x37, FINALLY_002d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002d;
}
FINALLY_002d:
{ // begin finally (depth: 1)
{
bool L_7 = V_0;
if (!L_7)
{
goto IL_0036;
}
}
IL_0030:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0036:
{
IL2CPP_END_FINALLY(45)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(45)
{
IL2CPP_JUMP_TBL(0x37, IL_0037)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0037:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_8 = V_2;
return L_8;
}
}
// System.Void System.LocalDataStoreMgr::FreeNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_0 = __this->get_m_KeyToSlotMap_3();
String_t* L_1 = ___name0;
NullCheck(L_0);
Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1(L_0, L_1, /*hidden argument*/Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1_RuntimeMethod_var);
IL2CPP_LEAVE(0x28, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
{
bool L_2 = V_0;
if (!L_2)
{
goto IL_0027;
}
}
IL_0021:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0027:
{
IL2CPP_END_FINALLY(30)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x28, IL_0028)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0028:
{
return;
}
}
// System.Void System.LocalDataStoreMgr::FreeDataSlot(System.Int32,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA_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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
V_1 = 0;
goto IL_002a;
}
IL_0013:
{
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_0 = __this->get_m_ManagedLocalDataStores_2();
int32_t L_1 = V_1;
NullCheck(L_0);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_2 = List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537_RuntimeMethod_var);
int32_t L_3 = ___slot0;
int64_t L_4 = ___cookie1;
NullCheck(L_2);
LocalDataStore_FreeData_m7DC3DC695D322B7F2ED47F357447D2790821B10C(L_2, L_3, L_4, /*hidden argument*/NULL);
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_002a:
{
int32_t L_6 = V_1;
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_7 = __this->get_m_ManagedLocalDataStores_2();
NullCheck(L_7);
int32_t L_8 = List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572_inline(L_7, /*hidden argument*/List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572_RuntimeMethod_var);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0013;
}
}
IL_0038:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_9 = __this->get_m_SlotInfoTable_0();
int32_t L_10 = ___slot0;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (bool)0);
int32_t L_11 = ___slot0;
int32_t L_12 = __this->get_m_FirstAvailableSlot_1();
if ((((int32_t)L_11) >= ((int32_t)L_12)))
{
goto IL_0051;
}
}
IL_004a:
{
int32_t L_13 = ___slot0;
__this->set_m_FirstAvailableSlot_1(L_13);
}
IL_0051:
{
IL2CPP_LEAVE(0x5D, FINALLY_0053);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0053;
}
FINALLY_0053:
{ // begin finally (depth: 1)
{
bool L_14 = V_0;
if (!L_14)
{
goto IL_005c;
}
}
IL_0056:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_005c:
{
IL2CPP_END_FINALLY(83)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(83)
{
IL2CPP_JUMP_TBL(0x5D, IL_005d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005d:
{
return;
}
}
// System.Void System.LocalDataStoreMgr::ValidateSlot(System.LocalDataStoreSlot)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_0 = ___slot0;
if (!L_0)
{
goto IL_000c;
}
}
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_1);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_2 = LocalDataStoreSlot_get_Manager_m75417D224C02173EC33CFD9BF494E82A70B21EDD_inline(L_1, /*hidden argument*/NULL);
if ((((RuntimeObject*)(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 *)L_2) == ((RuntimeObject*)(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 *)__this)))
{
goto IL_001c;
}
}
IL_000c:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral83266F61D5BE5A1B8CFE1DFE7E2B83410F5A6CE2, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_RuntimeMethod_var);
}
IL_001c:
{
return;
}
}
// System.Int32 System.LocalDataStoreMgr::GetSlotTableLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocalDataStoreMgr_GetSlotTableLength_mE37679FF2EE2BFE95424C5494E5159275D0EE920 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = __this->get_m_SlotInfoTable_0();
NullCheck(L_0);
return (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))));
}
}
// System.Void System.LocalDataStoreMgr::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
__this->set_m_SlotInfoTable_0(L_0);
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_1 = (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *)il2cpp_codegen_object_new(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_il2cpp_TypeInfo_var);
List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535(L_1, /*hidden argument*/List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535_RuntimeMethod_var);
__this->set_m_ManagedLocalDataStores_2(L_1);
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_2 = (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *)il2cpp_codegen_object_new(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8(L_2, /*hidden argument*/Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8_RuntimeMethod_var);
__this->set_m_KeyToSlotMap_3(L_2);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.LocalDataStoreSlot::.ctor(System.LocalDataStoreMgr,System.Int32,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreSlot__ctor_mB1C1592C2941720C53B2F21CBBB875667FF23D89 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___slot1, int64_t ___cookie2, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ___mgr0;
__this->set_m_mgr_0(L_0);
int32_t L_1 = ___slot1;
__this->set_m_slot_1(L_1);
int64_t L_2 = ___cookie2;
__this->set_m_cookie_2(L_2);
return;
}
}
// System.LocalDataStoreMgr System.LocalDataStoreSlot::get_Manager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * LocalDataStoreSlot_get_Manager_m75417D224C02173EC33CFD9BF494E82A70B21EDD (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_mgr_0();
return L_0;
}
}
// System.Int32 System.LocalDataStoreSlot::get_Slot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_slot_1();
return L_0;
}
}
// System.Int64 System.LocalDataStoreSlot::get_Cookie()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->get_m_cookie_2();
return L_0;
}
}
// System.Void System.LocalDataStoreSlot::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreSlot_Finalize_m47EF70E9DF2C22893FBA4150F8A94F8B23590DD7 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * V_0 = NULL;
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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_mgr_0();
V_0 = L_0;
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
IL_000a:
{
IL2CPP_LEAVE(0x30, FINALLY_0029);
}
IL_000c:
{
int32_t L_2 = __this->get_m_slot_1();
V_1 = L_2;
__this->set_m_slot_1((-1));
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_3 = V_0;
int32_t L_4 = V_1;
int64_t L_5 = __this->get_m_cookie_2();
NullCheck(L_3);
LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA(L_3, L_4, L_5, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x30, FINALLY_0029);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0029;
}
FINALLY_0029:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(41)
} // end finally (depth: 1)
IL2CPP_CLEANUP(41)
{
IL2CPP_JUMP_TBL(0x30, IL_0030)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0030:
{
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
// Conversion methods for marshalling of: System.MarshalByRefObject
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled)
{
if (unmarshaled.get__identity_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0()))
{
marshaled.____identity_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0()));
(marshaled.____identity_0)->AddRef();
}
else
{
marshaled.____identity_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__identity_0());
}
}
else
{
marshaled.____identity_0 = NULL;
}
}
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke_back(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.____identity_0 != NULL)
{
unmarshaled.set__identity_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____identity_0, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0()), Il2CppIUnknown::IID, marshaled.____identity_0);
}
}
else
{
unmarshaled.set__identity_0(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MarshalByRefObject
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke_cleanup(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled)
{
if (marshaled.____identity_0 != NULL)
{
(marshaled.____identity_0)->Release();
marshaled.____identity_0 = NULL;
}
}
// Conversion methods for marshalling of: System.MarshalByRefObject
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled)
{
if (unmarshaled.get__identity_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0()))
{
marshaled.____identity_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0()));
(marshaled.____identity_0)->AddRef();
}
else
{
marshaled.____identity_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__identity_0());
}
}
else
{
marshaled.____identity_0 = NULL;
}
}
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com_back(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.____identity_0 != NULL)
{
unmarshaled.set__identity_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____identity_0, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0()), Il2CppIUnknown::IID, marshaled.____identity_0);
}
}
else
{
unmarshaled.set__identity_0(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MarshalByRefObject
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com_cleanup(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled)
{
if (marshaled.____identity_0 != NULL)
{
(marshaled.____identity_0)->Release();
marshaled.____identity_0 = NULL;
}
}
// System.Void System.MarshalByRefObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Runtime.Remoting.ServerIdentity System.MarshalByRefObject::get_ObjectIdentity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_RuntimeMethod_var);
}
}
// System.Void System.MarshalByRefObject::set_ObjectIdentity(System.Runtime.Remoting.ServerIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_RuntimeMethod_var);
}
}
// System.Runtime.Remoting.ObjRef System.MarshalByRefObject::CreateObjRef(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, Type_t * ___requestedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_RuntimeMethod_var);
}
}
// System.Object System.MarshalByRefObject::InitializeLifetimeService()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_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.Double System.Math::Acos(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Acos_mA015FB00E4C265D5FAD2D17E52C16A828472D666 (double ___d0)
{
return acos(___d0);
}
// System.Double System.Math::Atan(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Atan_m95D036588EE2D13FA24FC14AEEF873AABA7B5463 (double ___d0)
{
return atan(___d0);
}
// System.Double System.Math::Ceiling(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Ceiling_m379E37FEB7C1DC30F53CBFA8896E0DD0804C44C7 (double ___a0)
{
return ceil(___a0);
}
// System.Double System.Math::Cos(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Cos_m2A56736FA0ADF035FA2F54813C6C6E21D6C05F4C (double ___d0)
{
return cos(___d0);
}
// System.Double System.Math::Floor(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Floor_mC3101A845FDA61AA1E9D4AC3C613F2A3F54332D8 (double ___d0)
{
return floor(___d0);
}
// System.Double System.Math::Sin(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Sin_m70D30E020E871902B8610553CD000D7826B8B1DF (double ___a0)
{
return sin(___a0);
}
// System.Double System.Math::Tan(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Tan_m23A0B4BE65BEFF0ED6292CF3B033B19B99782C34 (double ___a0)
{
return tan(___a0);
}
// System.Double System.Math::Round(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Round_m92CC19B936A3FC72826AD3950A90E5D9EB7513FE (double ___a0)
{
return bankers_round(___a0);
}
// System.Double System.Math::Sqrt(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Sqrt_mB2008A97F28A0FC333E8DA31C6B1731D015BF5D2 (double ___d0)
{
return sqrt(___d0);
}
// System.Double System.Math::Log(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Log_mD51F54D254E1380E2317F19403E67DFB15008CD9 (double ___d0)
{
return log(___d0);
}
// System.Double System.Math::Pow(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Pow_m9CD842663B1A2FA4C66EEFFC6F0D705B40BE46F1 (double ___x0, double ___y1, const RuntimeMethod* method)
{
typedef double (*Math_Pow_m9CD842663B1A2FA4C66EEFFC6F0D705B40BE46F1_ftn) (double, double);
using namespace il2cpp::icalls;
return ((Math_Pow_m9CD842663B1A2FA4C66EEFFC6F0D705B40BE46F1_ftn)mscorlib::System::Math::Pow) (___x0, ___y1);
}
// System.Int32 System.Math::Abs(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Abs_m7F5374AE27F11C3FFBB648DA0EE075317C37C097 (int32_t ___value0)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math_Abs_m7F5374AE27F11C3FFBB648DA0EE075317C37C097_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0006;
}
}
{
int32_t L_1 = ___value0;
return L_1;
}
IL_0006:
{
int32_t L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_3 = Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802(L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int32 System.Math::AbsHelper(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802 (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2147483648LL)))))
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6CB021F4DE5A59C914CE2FD45BD52E5CA6A397FC, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___value0;
return ((-L_3));
}
}
// System.Single System.Math::Abs(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Math_Abs_mF0B5B265075406BE063F1D0E561DC17779EC5174 (float ___value0)
{
return fabsf(___value0);
}
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___val10;
int32_t L_1 = ___val21;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0006;
}
}
{
int32_t L_2 = ___val21;
return L_2;
}
IL_0006:
{
int32_t L_3 = ___val10;
return L_3;
}
}
// System.Single System.Math::Max(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Math_Max_m545895C37C1F738BBB653CA1F65E50FF1D197675 (float ___val10, float ___val21, const RuntimeMethod* method)
{
{
float L_0 = ___val10;
float L_1 = ___val21;
if ((!(((float)L_0) > ((float)L_1))))
{
goto IL_0006;
}
}
{
float L_2 = ___val10;
return L_2;
}
IL_0006:
{
float L_3 = ___val10;
bool L_4 = Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0010;
}
}
{
float L_5 = ___val10;
return L_5;
}
IL_0010:
{
float L_6 = ___val21;
return L_6;
}
}
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___val10;
int32_t L_1 = ___val21;
if ((((int32_t)L_0) <= ((int32_t)L_1)))
{
goto IL_0006;
}
}
{
int32_t L_2 = ___val21;
return L_2;
}
IL_0006:
{
int32_t L_3 = ___val10;
return L_3;
}
}
// System.Single System.Math::Min(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Math_Min_mB77A95F6A1FE3B8E7CD784F20AF4E1C908B5E9CD (float ___val10, float ___val21, const RuntimeMethod* method)
{
{
float L_0 = ___val10;
float L_1 = ___val21;
if ((!(((float)L_0) < ((float)L_1))))
{
goto IL_0006;
}
}
{
float L_2 = ___val10;
return L_2;
}
IL_0006:
{
float L_3 = ___val10;
bool L_4 = Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0010;
}
}
{
float L_5 = ___val10;
return L_5;
}
IL_0010:
{
float L_6 = ___val21;
return L_6;
}
}
// System.Double System.Math::Log(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Log_m5C457D6A666677B3E260C571049528D5BE93B7AF (double ___a0, double ___newBase1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math_Log_m5C457D6A666677B3E260C571049528D5BE93B7AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___a0;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
bool L_1 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
double L_2 = ___a0;
return L_2;
}
IL_000a:
{
double L_3 = ___newBase1;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
bool L_4 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0014;
}
}
{
double L_5 = ___newBase1;
return L_5;
}
IL_0014:
{
double L_6 = ___newBase1;
if ((!(((double)L_6) == ((double)(1.0)))))
{
goto IL_002a;
}
}
{
return (std::numeric_limits<double>::quiet_NaN());
}
IL_002a:
{
double L_7 = ___a0;
if ((((double)L_7) == ((double)(1.0))))
{
goto IL_0054;
}
}
{
double L_8 = ___newBase1;
if ((((double)L_8) == ((double)(0.0))))
{
goto IL_004a;
}
}
{
double L_9 = ___newBase1;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
bool L_10 = Double_IsPositiveInfinity_m45537C58204CD5AA96F39D42F4CB8DADA128C77B(L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0054;
}
}
IL_004a:
{
return (std::numeric_limits<double>::quiet_NaN());
}
IL_0054:
{
double L_11 = ___a0;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
double L_12 = log(L_11);
double L_13 = ___newBase1;
double L_14 = log(L_13);
return ((double)((double)L_12/(double)L_14));
}
}
// System.Void System.Math::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Math__cctor_m74DAC117CAF47A5126D22880C729D8B4991DC62E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math__cctor_m74DAC117CAF47A5126D22880C729D8B4991DC62E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields*)il2cpp_codegen_static_fields_for(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var))->set_doubleRoundLimit_0((1.0E+16));
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_0 = (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)SZArrayNew(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields*)il2cpp_codegen_static_fields_for(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var))->set_roundPower10Double_2(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.MemberAccessException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_mDD27777FCB5B591E3A785846CB00EC52CBDEA4D7 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MemberAccessException__ctor_mDD27777FCB5B591E3A785846CB00EC52CBDEA4D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral71071FE5B0CC6568A7A21FDD842333F6D6361758, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233062), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MemberAccessException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233062), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MemberAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.MethodAccessException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodAccessException__ctor_mA04BCF385465A563D2B65C08391624EAE14C33C8 (MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodAccessException__ctor_mA04BCF385465A563D2B65C08391624EAE14C33C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAF7D82A0090AC7ECC269B2EBAD304900F101A823, /*hidden argument*/NULL);
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233072), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MethodAccessException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodAccessException__ctor_mBC54C2BEC46E52E74AE9DF3B3D41819AEA2FA714 (MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233072), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MethodAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodAccessException__ctor_m7F24FEEE2E046704E26BC49032DFF0F0A5626C57 (MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F(__this, L_0, L_1, /*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.MissingFieldException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingFieldException__ctor_m61B031B5A45BA495D873FBFFD8481A95489A54A4 (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingFieldException__ctor_m61B031B5A45BA495D873FBFFD8481A95489A54A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral854D8C35482A3B8FFE553FACB75F29D1167E941B, /*hidden argument*/NULL);
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233071), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingFieldException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingFieldException__ctor_mC6E169055FBC76AE0C760DD5B47433E7039B5100 (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233071), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingFieldException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingFieldException__ctor_mAFD85CDF48A80CCFDA078ADA416D50DA12A0A4DA (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.String System.MissingFieldException::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MissingFieldException_get_Message_m43F026B46192C9A79B507F6D1E69C163C07B1254 (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingFieldException_get_Message_m43F026B46192C9A79B507F6D1E69C163C07B1254_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_2 = NULL;
String_t* G_B4_3 = NULL;
int32_t G_B3_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_2 = NULL;
String_t* G_B3_3 = NULL;
String_t* G_B5_0 = NULL;
int32_t G_B5_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_3 = NULL;
String_t* G_B5_4 = NULL;
{
String_t* L_0 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619(__this, /*hidden argument*/NULL);
return L_1;
}
IL_000f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_Signature_19();
G_B3_0 = 0;
G_B3_1 = L_3;
G_B3_2 = L_3;
G_B3_3 = _stringLiteralA3F4A5587A5729C3EFB8474E3AAA2722613DD4DB;
if (L_4)
{
G_B4_0 = 0;
G_B4_1 = L_3;
G_B4_2 = L_3;
G_B4_3 = _stringLiteralA3F4A5587A5729C3EFB8474E3AAA2722613DD4DB;
goto IL_002b;
}
}
{
G_B5_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
G_B5_4 = G_B3_3;
goto IL_0040;
}
IL_002b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_Signature_19();
String_t* L_6 = MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41(L_5, /*hidden argument*/NULL);
String_t* L_7 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_6, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
G_B5_0 = L_7;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
G_B5_4 = G_B4_3;
}
IL_0040:
{
String_t* L_8 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
String_t* L_9 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_MemberName_18();
String_t* L_10 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(G_B5_0, L_8, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_9, /*hidden argument*/NULL);
NullCheck(G_B5_2);
ArrayElementTypeCheck (G_B5_2, L_10);
(G_B5_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_1), (RuntimeObject *)L_10);
String_t* L_11 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(G_B5_4, G_B5_3, /*hidden argument*/NULL);
return L_11;
}
}
// System.Void System.MissingFieldException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingFieldException__ctor_mF260FD0D1BE406C65C594B5D91E62788A7AD649E (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, String_t* ___className0, String_t* ___fieldName1, const RuntimeMethod* method)
{
{
MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481(__this, /*hidden argument*/NULL);
String_t* L_0 = ___className0;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_ClassName_17(L_0);
String_t* L_1 = ___fieldName1;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_MemberName_18(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.MissingMemberException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE823D95FC8DE056EA2DD064AAB872C4F18B15938, /*hidden argument*/NULL);
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233070), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMemberException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233070), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMemberException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F(__this, L_0, L_1, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
NullCheck(L_2);
String_t* L_3 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_2, _stringLiteral0547FFE19A268F683E119C580E67B2822ECB1CA8, /*hidden argument*/NULL);
__this->set_ClassName_17(L_3);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
NullCheck(L_4);
String_t* L_5 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_4, _stringLiteralF21F90700909B9F6000A5EDC822B69CE57F0FC2B, /*hidden argument*/NULL);
__this->set_MemberName_18(L_5);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteral6EB197EFF2520A15200111CB1E6DCAAF5ADB14E4, L_8, /*hidden argument*/NULL);
__this->set_Signature_19(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_9, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
return;
}
}
// System.String System.MissingMemberException::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
String_t* G_B4_2 = NULL;
int32_t G_B4_3 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_5 = NULL;
String_t* G_B4_6 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
int32_t G_B3_3 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_5 = NULL;
String_t* G_B3_6 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
String_t* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
int32_t G_B5_4 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_5 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_6 = NULL;
String_t* G_B5_7 = NULL;
{
String_t* L_0 = __this->get_ClassName_17();
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD(__this, /*hidden argument*/NULL);
return L_1;
}
IL_000f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
String_t* L_4 = __this->get_ClassName_17();
String_t* L_5 = __this->get_MemberName_18();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get_Signature_19();
G_B3_0 = L_5;
G_B3_1 = _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
G_B3_2 = L_4;
G_B3_3 = 0;
G_B3_4 = L_3;
G_B3_5 = L_3;
G_B3_6 = _stringLiteralE1E79CC3983700F455A4D5F772D7BDA5995AB2F8;
if (L_6)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
G_B4_2 = L_4;
G_B4_3 = 0;
G_B4_4 = L_3;
G_B4_5 = L_3;
G_B4_6 = _stringLiteralE1E79CC3983700F455A4D5F772D7BDA5995AB2F8;
goto IL_003c;
}
}
{
G_B5_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
G_B5_4 = G_B3_3;
G_B5_5 = G_B3_4;
G_B5_6 = G_B3_5;
G_B5_7 = G_B3_6;
goto IL_0051;
}
IL_003c:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = __this->get_Signature_19();
String_t* L_8 = MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41(L_7, /*hidden argument*/NULL);
String_t* L_9 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, L_8, /*hidden argument*/NULL);
G_B5_0 = L_9;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
G_B5_4 = G_B4_3;
G_B5_5 = G_B4_4;
G_B5_6 = G_B4_5;
G_B5_7 = G_B4_6;
}
IL_0051:
{
String_t* L_10 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(G_B5_3, G_B5_2, G_B5_1, G_B5_0, /*hidden argument*/NULL);
NullCheck(G_B5_5);
ArrayElementTypeCheck (G_B5_5, L_10);
(G_B5_5)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_4), (RuntimeObject *)L_10);
String_t* L_11 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(G_B5_7, G_B5_6, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.MissingMemberException::FormatSignature(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___signature0, const RuntimeMethod* method)
{
typedef String_t* (*MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41_ftn) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*);
using namespace il2cpp::icalls;
return ((MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41_ftn)mscorlib::System::MissingMemberException::FormatSignature) (___signature0);
}
// System.Void System.MissingMemberException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_3 = ___context1;
Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_2, L_3, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
String_t* L_5 = __this->get_ClassName_17();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_4);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_4, _stringLiteral0547FFE19A268F683E119C580E67B2822ECB1CA8, L_5, L_7, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0;
String_t* L_9 = __this->get_MemberName_18();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_8);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_8, _stringLiteralF21F90700909B9F6000A5EDC822B69CE57F0FC2B, L_9, L_11, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = __this->get_Signature_19();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
NullCheck(L_12);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_12, _stringLiteral6EB197EFF2520A15200111CB1E6DCAAF5ADB14E4, (RuntimeObject *)(RuntimeObject *)L_13, L_15, /*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.MissingMethodException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m1DF6EAD8AE77C7C77D64E7FAE249FE024C56EB71 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMethodException__ctor_m1DF6EAD8AE77C7C77D64E7FAE249FE024C56EB71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral933E9DEDE3C0119BCED3AEE351569D160C28BC18, /*hidden argument*/NULL);
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233069), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMethodException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m44F1A1E3C426F8902FFAB4DA991DA1650FA14EE9 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233069), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMethodException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m453CCCA39C8DE671F2CD3E0ECB1378091CE777F5 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.String System.MissingMethodException::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MissingMethodException_get_Message_mD35DBB99C4AC01DB84CEABD0A4C84877C85DF7BA (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMethodException_get_Message_mD35DBB99C4AC01DB84CEABD0A4C84877C85DF7BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619(__this, /*hidden argument*/NULL);
return L_1;
}
IL_000f:
{
String_t* L_2 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
String_t* L_3 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_MemberName_18();
String_t* L_4 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_2, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_3, /*hidden argument*/NULL);
V_0 = L_4;
String_t* L_5 = __this->get_signature_20();
bool L_6 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0045;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_8 = __this->get_signature_20();
String_t* L_9 = V_0;
String_t* L_10 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_7, L_8, L_9, /*hidden argument*/NULL);
V_0 = L_10;
}
IL_0045:
{
String_t* L_11 = ((Exception_t *)__this)->get__message_2();
bool L_12 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0064;
}
}
{
String_t* L_13 = V_0;
String_t* L_14 = ((Exception_t *)__this)->get__message_2();
String_t* L_15 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_13, _stringLiteral8FF423F750EAB821AF9F4C9C956D5052DFEF62AF, L_14, /*hidden argument*/NULL);
V_0 = L_15;
}
IL_0064:
{
String_t* L_16 = V_0;
return L_16;
}
}
// System.Void System.MissingMethodException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMethodException__ctor_mEE8869A7C1042B1286DCD4D91DA67BF0D06E0452 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___className0, String_t* ___methodName1, const RuntimeMethod* method)
{
{
MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481(__this, /*hidden argument*/NULL);
String_t* L_0 = ___className0;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_ClassName_17(L_0);
String_t* L_1 = ___methodName1;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_MemberName_18(L_1);
return;
}
}
// System.Void System.MissingMethodException::.ctor(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m1A9B0ECE72376B35C4670DEB73B93ED64D46B3D5 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___className0, String_t* ___methodName1, String_t* ___signature2, String_t* ___message3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message3;
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
String_t* L_1 = ___className0;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_ClassName_17(L_1);
String_t* L_2 = ___methodName1;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_MemberName_18(L_2);
String_t* L_3 = ___signature2;
__this->set_signature_20(L_3);
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
// Conversion methods for marshalling of: System.MonoAsyncCall
IL2CPP_EXTERN_C void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_pinvoke(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke& marshaled)
{
if (unmarshaled.get_msg_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_msg_0()))
{
marshaled.___msg_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_msg_0()));
(marshaled.___msg_0)->AddRef();
}
else
{
marshaled.___msg_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_msg_0());
}
}
else
{
marshaled.___msg_0 = NULL;
}
marshaled.___cb_method_1 = unmarshaled.get_cb_method_1();
if (unmarshaled.get_cb_target_2() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_cb_target_2()))
{
marshaled.___cb_target_2 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_cb_target_2()));
(marshaled.___cb_target_2)->AddRef();
}
else
{
marshaled.___cb_target_2 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_cb_target_2());
}
}
else
{
marshaled.___cb_target_2 = NULL;
}
if (unmarshaled.get_state_3() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_state_3()))
{
marshaled.___state_3 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_state_3()));
(marshaled.___state_3)->AddRef();
}
else
{
marshaled.___state_3 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_state_3());
}
}
else
{
marshaled.___state_3 = NULL;
}
if (unmarshaled.get_res_4() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_res_4()))
{
marshaled.___res_4 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_res_4()));
(marshaled.___res_4)->AddRef();
}
else
{
marshaled.___res_4 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_res_4());
}
}
else
{
marshaled.___res_4 = NULL;
}
if (unmarshaled.get_out_args_5() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_out_args_5()))
{
marshaled.___out_args_5 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_out_args_5()));
(marshaled.___out_args_5)->AddRef();
}
else
{
marshaled.___out_args_5 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_out_args_5());
}
}
else
{
marshaled.___out_args_5 = NULL;
}
}
IL2CPP_EXTERN_C void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_pinvoke_back(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke& marshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___msg_0 != NULL)
{
unmarshaled.set_msg_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___msg_0, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_msg_0()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_msg_0()), Il2CppIUnknown::IID, marshaled.___msg_0);
}
}
else
{
unmarshaled.set_msg_0(NULL);
}
intptr_t unmarshaled_cb_method_temp_1;
memset((&unmarshaled_cb_method_temp_1), 0, sizeof(unmarshaled_cb_method_temp_1));
unmarshaled_cb_method_temp_1 = marshaled.___cb_method_1;
unmarshaled.set_cb_method_1(unmarshaled_cb_method_temp_1);
if (marshaled.___cb_target_2 != NULL)
{
unmarshaled.set_cb_target_2(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___cb_target_2, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_cb_target_2()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_cb_target_2()), Il2CppIUnknown::IID, marshaled.___cb_target_2);
}
}
else
{
unmarshaled.set_cb_target_2(NULL);
}
if (marshaled.___state_3 != NULL)
{
unmarshaled.set_state_3(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___state_3, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_state_3()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_state_3()), Il2CppIUnknown::IID, marshaled.___state_3);
}
}
else
{
unmarshaled.set_state_3(NULL);
}
if (marshaled.___res_4 != NULL)
{
unmarshaled.set_res_4(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___res_4, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_res_4()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_res_4()), Il2CppIUnknown::IID, marshaled.___res_4);
}
}
else
{
unmarshaled.set_res_4(NULL);
}
if (marshaled.___out_args_5 != NULL)
{
unmarshaled.set_out_args_5(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___out_args_5, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_out_args_5()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_out_args_5()), Il2CppIUnknown::IID, marshaled.___out_args_5);
}
}
else
{
unmarshaled.set_out_args_5(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MonoAsyncCall
IL2CPP_EXTERN_C void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_pinvoke_cleanup(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke& marshaled)
{
if (marshaled.___msg_0 != NULL)
{
(marshaled.___msg_0)->Release();
marshaled.___msg_0 = NULL;
}
if (marshaled.___cb_target_2 != NULL)
{
(marshaled.___cb_target_2)->Release();
marshaled.___cb_target_2 = NULL;
}
if (marshaled.___state_3 != NULL)
{
(marshaled.___state_3)->Release();
marshaled.___state_3 = NULL;
}
if (marshaled.___res_4 != NULL)
{
(marshaled.___res_4)->Release();
marshaled.___res_4 = NULL;
}
if (marshaled.___out_args_5 != NULL)
{
(marshaled.___out_args_5)->Release();
marshaled.___out_args_5 = NULL;
}
}
// Conversion methods for marshalling of: System.MonoAsyncCall
IL2CPP_EXTERN_C void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_com(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com& marshaled)
{
if (unmarshaled.get_msg_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_msg_0()))
{
marshaled.___msg_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_msg_0()));
(marshaled.___msg_0)->AddRef();
}
else
{
marshaled.___msg_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_msg_0());
}
}
else
{
marshaled.___msg_0 = NULL;
}
marshaled.___cb_method_1 = unmarshaled.get_cb_method_1();
if (unmarshaled.get_cb_target_2() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_cb_target_2()))
{
marshaled.___cb_target_2 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_cb_target_2()));
(marshaled.___cb_target_2)->AddRef();
}
else
{
marshaled.___cb_target_2 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_cb_target_2());
}
}
else
{
marshaled.___cb_target_2 = NULL;
}
if (unmarshaled.get_state_3() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_state_3()))
{
marshaled.___state_3 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_state_3()));
(marshaled.___state_3)->AddRef();
}
else
{
marshaled.___state_3 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_state_3());
}
}
else
{
marshaled.___state_3 = NULL;
}
if (unmarshaled.get_res_4() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_res_4()))
{
marshaled.___res_4 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_res_4()));
(marshaled.___res_4)->AddRef();
}
else
{
marshaled.___res_4 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_res_4());
}
}
else
{
marshaled.___res_4 = NULL;
}
if (unmarshaled.get_out_args_5() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_out_args_5()))
{
marshaled.___out_args_5 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_out_args_5()));
(marshaled.___out_args_5)->AddRef();
}
else
{
marshaled.___out_args_5 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_out_args_5());
}
}
else
{
marshaled.___out_args_5 = NULL;
}
}
IL2CPP_EXTERN_C void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_com_back(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com& marshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___msg_0 != NULL)
{
unmarshaled.set_msg_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___msg_0, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_msg_0()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_msg_0()), Il2CppIUnknown::IID, marshaled.___msg_0);
}
}
else
{
unmarshaled.set_msg_0(NULL);
}
intptr_t unmarshaled_cb_method_temp_1;
memset((&unmarshaled_cb_method_temp_1), 0, sizeof(unmarshaled_cb_method_temp_1));
unmarshaled_cb_method_temp_1 = marshaled.___cb_method_1;
unmarshaled.set_cb_method_1(unmarshaled_cb_method_temp_1);
if (marshaled.___cb_target_2 != NULL)
{
unmarshaled.set_cb_target_2(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___cb_target_2, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_cb_target_2()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_cb_target_2()), Il2CppIUnknown::IID, marshaled.___cb_target_2);
}
}
else
{
unmarshaled.set_cb_target_2(NULL);
}
if (marshaled.___state_3 != NULL)
{
unmarshaled.set_state_3(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___state_3, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_state_3()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_state_3()), Il2CppIUnknown::IID, marshaled.___state_3);
}
}
else
{
unmarshaled.set_state_3(NULL);
}
if (marshaled.___res_4 != NULL)
{
unmarshaled.set_res_4(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___res_4, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_res_4()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_res_4()), Il2CppIUnknown::IID, marshaled.___res_4);
}
}
else
{
unmarshaled.set_res_4(NULL);
}
if (marshaled.___out_args_5 != NULL)
{
unmarshaled.set_out_args_5(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___out_args_5, Il2CppComObject_il2cpp_TypeInfo_var));
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_out_args_5()))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_out_args_5()), Il2CppIUnknown::IID, marshaled.___out_args_5);
}
}
else
{
unmarshaled.set_out_args_5(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MonoAsyncCall
IL2CPP_EXTERN_C void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_com_cleanup(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com& marshaled)
{
if (marshaled.___msg_0 != NULL)
{
(marshaled.___msg_0)->Release();
marshaled.___msg_0 = NULL;
}
if (marshaled.___cb_target_2 != NULL)
{
(marshaled.___cb_target_2)->Release();
marshaled.___cb_target_2 = NULL;
}
if (marshaled.___state_3 != NULL)
{
(marshaled.___state_3)->Release();
marshaled.___state_3 = NULL;
}
if (marshaled.___res_4 != NULL)
{
(marshaled.___res_4)->Release();
marshaled.___res_4 = NULL;
}
if (marshaled.___out_args_5 != NULL)
{
(marshaled.___out_args_5)->Release();
marshaled.___out_args_5 = NULL;
}
}
// System.Void System.MonoAsyncCall::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoAsyncCall__ctor_m1FB07E7294A663C855884FEDB344A5F70F414F12 (MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Boolean System.MonoCustomAttrs::IsUserCattrProvider(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)((Type_t *)IsInstClass((RuntimeObject*)L_0, Type_t_il2cpp_TypeInfo_var)), RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)))
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
RuntimeObject * L_1 = ___obj0;
if (!((Type_t *)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var)))
{
goto IL_0019;
}
}
{
return (bool)1;
}
IL_0019:
{
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Assembly_t * L_2 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_corlib_0();
bool L_3 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_2, (Assembly_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_003a;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
Assembly_t * L_6 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->set_corlib_0(L_6);
}
IL_003a:
{
RuntimeObject * L_7 = ___obj0;
NullCheck(L_7);
Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
Assembly_t * L_9 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_8);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Assembly_t * L_10 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_corlib_0();
bool L_11 = Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B(L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesInternal(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___pseudoAttrs2, const RuntimeMethod* method)
{
typedef ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772_ftn) (RuntimeObject*, Type_t *, bool);
using namespace il2cpp::icalls;
return ((MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772_ftn)mscorlib::System::MonoCustomAttrs::GetCustomAttributesInternal) (___obj0, ___attributeType1, ___pseudoAttrs2);
}
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9 (RuntimeObject* ___obj0, Type_t * ___attributeType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
RuntimeObject* L_0 = ___obj0;
if (!((MonoMethod_t *)IsInstClass((RuntimeObject*)L_0, MonoMethod_t_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
RuntimeObject* L_1 = ___obj0;
NullCheck(((MonoMethod_t *)CastclassClass((RuntimeObject*)L_1, MonoMethod_t_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = MonoMethod_GetPseudoCustomAttributes_mE46E69D39791BDF9B87A893B6EEB17B75754DE31(((MonoMethod_t *)CastclassClass((RuntimeObject*)L_1, MonoMethod_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0058;
}
IL_0018:
{
RuntimeObject* L_3 = ___obj0;
if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_3, FieldInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_002e;
}
}
{
RuntimeObject* L_4 = ___obj0;
NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_4, FieldInfo_t_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = FieldInfo_GetPseudoCustomAttributes_m54546ADF590198164EE361638CFBDA4CFC733994(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_4, FieldInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0058;
}
IL_002e:
{
RuntimeObject* L_6 = ___obj0;
if (!((ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB *)IsInstClass((RuntimeObject*)L_6, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var)))
{
goto IL_0044;
}
}
{
RuntimeObject* L_7 = ___obj0;
NullCheck(((ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB *)CastclassClass((RuntimeObject*)L_7, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ParameterInfo_GetPseudoCustomAttributes_m6A16386472EB8A4B1448EB11CC4B987F06281E22(((ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB *)CastclassClass((RuntimeObject*)L_7, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0058;
}
IL_0044:
{
RuntimeObject* L_9 = ___obj0;
if (!((Type_t *)IsInstClass((RuntimeObject*)L_9, Type_t_il2cpp_TypeInfo_var)))
{
goto IL_0058;
}
}
{
RuntimeObject* L_10 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988(((Type_t *)CastclassClass((RuntimeObject*)L_10, Type_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_11;
}
IL_0058:
{
Type_t * L_12 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_12, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_009d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0;
if (!L_14)
{
goto IL_009d;
}
}
{
V_1 = 0;
goto IL_0091;
}
IL_0068:
{
Type_t * L_15 = ___attributeType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = V_0;
int32_t L_17 = V_1;
NullCheck(L_16);
int32_t L_18 = L_17;
RuntimeObject * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
NullCheck(L_19);
Type_t * L_20 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_19, /*hidden argument*/NULL);
NullCheck(L_15);
bool L_21 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_15, L_20);
if (!L_21)
{
goto IL_008d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = V_0;
NullCheck(L_22);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))) == ((uint32_t)1))))
{
goto IL_0080;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0;
return L_23;
}
IL_0080:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = L_24;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = V_0;
int32_t L_27 = V_1;
NullCheck(L_26);
int32_t L_28 = L_27;
RuntimeObject * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_29);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_29);
return L_25;
}
IL_008d:
{
int32_t L_30 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1));
}
IL_0091:
{
int32_t L_31 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = V_0;
NullCheck(L_32);
if ((((int32_t)L_31) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))))
{
goto IL_0068;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var))->get_Value_0();
return L_33;
}
IL_009d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = V_0;
return L_34;
}
}
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
{
V_0 = 0;
Type_t * L_0 = ___type0;
NullCheck(L_0);
int32_t L_1 = Type_get_Attributes_m8B229CC7A4DDE25E0EEB1A9F09FC61C499A72163(L_0, /*hidden argument*/NULL);
V_1 = L_1;
int32_t L_2 = V_1;
if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)8192))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0016:
{
int32_t L_4 = V_1;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)4096))))
{
goto IL_0023;
}
}
{
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0023:
{
int32_t L_6 = V_0;
if (L_6)
{
goto IL_0028;
}
}
{
return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
}
IL_0028:
{
int32_t L_7 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_7);
V_2 = L_8;
V_0 = 0;
int32_t L_9 = V_1;
if (!((int32_t)((int32_t)L_9&(int32_t)((int32_t)8192))))
{
goto IL_0046;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = V_2;
int32_t L_11 = V_0;
int32_t L_12 = L_11;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F * L_13 = (SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F *)il2cpp_codegen_object_new(SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_il2cpp_TypeInfo_var);
SerializableAttribute__ctor_m2EEE0A59C8AE32A075D806DDBB0D41EB85F049E8(L_13, /*hidden argument*/NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_13);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (RuntimeObject *)L_13);
}
IL_0046:
{
int32_t L_14 = V_1;
if (!((int32_t)((int32_t)L_14&(int32_t)((int32_t)4096))))
{
goto IL_005b;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = V_2;
int32_t L_16 = V_0;
int32_t L_17 = L_16;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 * L_18 = (ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 *)il2cpp_codegen_object_new(ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40_il2cpp_TypeInfo_var);
ComImportAttribute__ctor_m372EC8A68CB0323D4453D465DD612CDE9B595678(L_18, /*hidden argument*/NULL);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_18);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (RuntimeObject *)L_18);
}
IL_005b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_2;
return L_19;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesBase(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inheritedOnly2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
{
RuntimeObject* L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
bool L_1 = MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
RuntimeObject* L_2 = ___obj0;
Type_t * L_3 = ___attributeType1;
NullCheck(L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = InterfaceFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(0 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Type,System.Boolean) */, ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var, L_2, L_3, (bool)1);
V_0 = L_4;
goto IL_001c;
}
IL_0013:
{
RuntimeObject* L_5 = ___obj0;
Type_t * L_6 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772(L_5, L_6, (bool)0, /*hidden argument*/NULL);
V_0 = L_7;
}
IL_001c:
{
bool L_8 = ___inheritedOnly2;
if (L_8)
{
goto IL_0051;
}
}
{
RuntimeObject* L_9 = ___obj0;
Type_t * L_10 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9(L_9, L_10, /*hidden argument*/NULL);
V_1 = L_11;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
if (!L_12)
{
goto IL_0051;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_0;
NullCheck(L_13);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_1;
NullCheck(L_14);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))));
V_2 = L_15;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = V_0;
NullCheck(L_18);
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_16, (RuntimeArray *)(RuntimeArray *)L_17, (((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = V_0;
NullCheck(L_21);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = V_1;
NullCheck(L_22);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_19, 0, (RuntimeArray *)(RuntimeArray *)L_20, (((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_2;
return L_23;
}
IL_0051:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_0;
return L_24;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * V_3 = NULL;
RuntimeObject* V_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_5 = NULL;
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * V_6 = NULL;
int32_t V_7 = 0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_8 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_9 = NULL;
int32_t V_10 = 0;
RuntimeObject * V_11 = NULL;
Type_t * V_12 = NULL;
RuntimeObject * V_13 = NULL;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_14 = NULL;
Type_t * V_15 = NULL;
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * V_16 = NULL;
int32_t G_B22_0 = 0;
{
RuntimeObject* L_0 = ___obj0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_000e:
{
Type_t * L_2 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_0022:
{
Type_t * L_5 = ___attributeType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0037;
}
}
{
___attributeType1 = (Type_t *)NULL;
}
IL_0037:
{
RuntimeObject* L_9 = ___obj0;
Type_t * L_10 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673(L_9, L_10, (bool)0, /*hidden argument*/NULL);
V_1 = L_11;
bool L_12 = ___inherit2;
if (L_12)
{
goto IL_00b2;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_1;
NullCheck(L_13);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))))) == ((uint32_t)1))))
{
goto IL_00b2;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_1;
NullCheck(L_14);
int32_t L_15 = 0;
RuntimeObject * L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
if (L_16)
{
goto IL_0059;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_17 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_17, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_0059:
{
Type_t * L_18 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_19 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_18, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0096;
}
}
{
Type_t * L_20 = ___attributeType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = V_1;
NullCheck(L_21);
int32_t L_22 = 0;
RuntimeObject * L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_23);
Type_t * L_24 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_23, /*hidden argument*/NULL);
NullCheck(L_20);
bool L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_20, L_24);
if (!L_25)
{
goto IL_0087;
}
}
{
Type_t * L_26 = ___attributeType1;
RuntimeArray * L_27 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_26, 1, /*hidden argument*/NULL);
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_27, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = V_1;
NullCheck(L_29);
int32_t L_30 = 0;
RuntimeObject * L_31 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_31);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_31);
goto IL_00b0;
}
IL_0087:
{
Type_t * L_32 = ___attributeType1;
RuntimeArray * L_33 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_32, 0, /*hidden argument*/NULL);
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_33, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
goto IL_00b0;
}
IL_0096:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = V_1;
NullCheck(L_34);
int32_t L_35 = 0;
RuntimeObject * L_36 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_36);
Type_t * L_37 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_36, /*hidden argument*/NULL);
RuntimeArray * L_38 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_37, 1, /*hidden argument*/NULL);
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_38, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = V_1;
NullCheck(L_40);
int32_t L_41 = 0;
RuntimeObject * L_42 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_42);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_42);
}
IL_00b0:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = V_0;
return L_43;
}
IL_00b2:
{
bool L_44 = ___inherit2;
if (!L_44)
{
goto IL_00c0;
}
}
{
RuntimeObject* L_45 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
RuntimeObject* L_46 = MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F(L_45, /*hidden argument*/NULL);
if (L_46)
{
goto IL_00c0;
}
}
{
___inherit2 = (bool)0;
}
IL_00c0:
{
Type_t * L_47 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_48 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_47, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_48)
{
goto IL_00d1;
}
}
{
Type_t * L_49 = ___attributeType1;
NullCheck(L_49);
bool L_50 = Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A(L_49, /*hidden argument*/NULL);
G_B22_0 = ((int32_t)(L_50));
goto IL_00d2;
}
IL_00d1:
{
G_B22_0 = 0;
}
IL_00d2:
{
bool L_51 = ___inherit2;
if (!((int32_t)((int32_t)G_B22_0&(int32_t)L_51)))
{
goto IL_00e6;
}
}
{
Type_t * L_52 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_53 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_52, /*hidden argument*/NULL);
NullCheck(L_53);
bool L_54 = AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F_inline(L_53, /*hidden argument*/NULL);
if (L_54)
{
goto IL_00e6;
}
}
{
___inherit2 = (bool)0;
}
IL_00e6:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = V_1;
NullCheck(L_55);
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_56 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2((((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length)))), ((int32_t)16), /*hidden argument*/NULL);
V_2 = L_56;
V_3 = (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)NULL;
RuntimeObject* L_57 = ___obj0;
V_4 = L_57;
bool L_58 = ___inherit2;
if (L_58)
{
goto IL_01d9;
}
}
{
Type_t * L_59 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_60 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_59, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0143;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_61 = V_1;
V_9 = L_61;
V_10 = 0;
goto IL_0125;
}
IL_010d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_62 = V_9;
int32_t L_63 = V_10;
NullCheck(L_62);
int32_t L_64 = L_63;
RuntimeObject * L_65 = (L_62)->GetAt(static_cast<il2cpp_array_size_t>(L_64));
if (L_65)
{
goto IL_011f;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_66 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_66, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_011f:
{
int32_t L_67 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1));
}
IL_0125:
{
int32_t L_68 = V_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_69 = V_9;
NullCheck(L_69);
if ((((int32_t)L_68) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_69)->max_length)))))))
{
goto IL_010d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_70 = V_1;
NullCheck(L_70);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_71 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))));
V_8 = L_71;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_72 = V_1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_73 = V_8;
NullCheck((RuntimeArray *)(RuntimeArray *)L_72);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_72, (RuntimeArray *)(RuntimeArray *)L_73, 0, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_74 = V_8;
return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_74;
}
IL_0143:
{
int32_t L_75 = V_2;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_76 = (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)il2cpp_codegen_object_new(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_il2cpp_TypeInfo_var);
List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57(L_76, L_75, /*hidden argument*/List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_RuntimeMethod_var);
V_3 = L_76;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_77 = V_1;
V_9 = L_77;
V_10 = 0;
goto IL_0192;
}
IL_0152:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_78 = V_9;
int32_t L_79 = V_10;
NullCheck(L_78);
int32_t L_80 = L_79;
RuntimeObject * L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80));
V_11 = L_81;
RuntimeObject * L_82 = V_11;
if (L_82)
{
goto IL_0168;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_83 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_83, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_83, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_0168:
{
RuntimeObject * L_84 = V_11;
NullCheck(L_84);
Type_t * L_85 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_84, /*hidden argument*/NULL);
V_12 = L_85;
Type_t * L_86 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_87 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_86, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_87)
{
goto IL_0184;
}
}
{
Type_t * L_88 = ___attributeType1;
Type_t * L_89 = V_12;
NullCheck(L_88);
bool L_90 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_88, L_89);
if (!L_90)
{
goto IL_018c;
}
}
IL_0184:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_91 = V_3;
RuntimeObject * L_92 = V_11;
NullCheck(L_91);
List_1_Add_m6930161974C7504C80F52EC379EF012387D43138(L_91, L_92, /*hidden argument*/List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_RuntimeMethod_var);
}
IL_018c:
{
int32_t L_93 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_93, (int32_t)1));
}
IL_0192:
{
int32_t L_94 = V_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_95 = V_9;
NullCheck(L_95);
if ((((int32_t)L_94) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_95)->max_length)))))))
{
goto IL_0152;
}
}
{
Type_t * L_96 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_97 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_96, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_97)
{
goto IL_01ab;
}
}
{
Type_t * L_98 = ___attributeType1;
NullCheck(L_98);
bool L_99 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_98, /*hidden argument*/NULL);
if (!L_99)
{
goto IL_01ba;
}
}
IL_01ab:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_100 = V_3;
NullCheck(L_100);
int32_t L_101 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_inline(L_100, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_102 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_101);
V_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_102;
goto IL_01cd;
}
IL_01ba:
{
Type_t * L_103 = ___attributeType1;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_104 = V_3;
NullCheck(L_104);
int32_t L_105 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_inline(L_104, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
RuntimeArray * L_106 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_103, L_105, /*hidden argument*/NULL);
V_5 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_106, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
}
IL_01cd:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_107 = V_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_108 = V_5;
NullCheck(L_107);
List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB(L_107, L_108, 0, /*hidden argument*/List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_RuntimeMethod_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_109 = V_5;
return L_109;
}
IL_01d9:
{
int32_t L_110 = V_2;
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * L_111 = (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *)il2cpp_codegen_object_new(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533(L_111, L_110, /*hidden argument*/Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533_RuntimeMethod_var);
V_6 = L_111;
V_7 = 0;
int32_t L_112 = V_2;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_113 = (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)il2cpp_codegen_object_new(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_il2cpp_TypeInfo_var);
List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57(L_113, L_112, /*hidden argument*/List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_RuntimeMethod_var);
V_3 = L_113;
}
IL_01eb:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_114 = V_1;
V_9 = L_114;
V_10 = 0;
goto IL_0296;
}
IL_01f6:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_115 = V_9;
int32_t L_116 = V_10;
NullCheck(L_115);
int32_t L_117 = L_116;
RuntimeObject * L_118 = (L_115)->GetAt(static_cast<il2cpp_array_size_t>(L_117));
V_13 = L_118;
RuntimeObject * L_119 = V_13;
if (L_119)
{
goto IL_020c;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_120 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_120, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_120, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_020c:
{
RuntimeObject * L_121 = V_13;
NullCheck(L_121);
Type_t * L_122 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_121, /*hidden argument*/NULL);
V_15 = L_122;
Type_t * L_123 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_124 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_123, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_124)
{
goto IL_0228;
}
}
{
Type_t * L_125 = ___attributeType1;
Type_t * L_126 = V_15;
NullCheck(L_125);
bool L_127 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_125, L_126);
if (!L_127)
{
goto IL_0290;
}
}
IL_0228:
{
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * L_128 = V_6;
Type_t * L_129 = V_15;
NullCheck(L_128);
bool L_130 = Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73(L_128, L_129, (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A **)(&V_16), /*hidden argument*/Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73_RuntimeMethod_var);
if (!L_130)
{
goto IL_0240;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_131 = V_16;
NullCheck(L_131);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_132 = AttributeInfo_get_Usage_mC0CA19AEB050A11C3E89E5A015E204AB9D51F4A0_inline(L_131, /*hidden argument*/NULL);
V_14 = L_132;
goto IL_0249;
}
IL_0240:
{
Type_t * L_133 = V_15;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_134 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_133, /*hidden argument*/NULL);
V_14 = L_134;
}
IL_0249:
{
int32_t L_135 = V_7;
if (!L_135)
{
goto IL_0256;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_136 = V_14;
NullCheck(L_136);
bool L_137 = AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F_inline(L_136, /*hidden argument*/NULL);
if (!L_137)
{
goto IL_027a;
}
}
IL_0256:
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_138 = V_14;
NullCheck(L_138);
bool L_139 = AttributeUsageAttribute_get_AllowMultiple_mF910B0B16B485A8F02C54854FC9A9604B8810FF7_inline(L_138, /*hidden argument*/NULL);
if (L_139)
{
goto IL_0272;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_140 = V_16;
if (!L_140)
{
goto IL_0272;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_141 = V_16;
if (!L_141)
{
goto IL_027a;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_142 = V_16;
NullCheck(L_142);
int32_t L_143 = AttributeInfo_get_InheritanceLevel_mDC293DDDC43F613FBBA304C3A5FDC63AB3961AAD_inline(L_142, /*hidden argument*/NULL);
int32_t L_144 = V_7;
if ((!(((uint32_t)L_143) == ((uint32_t)L_144))))
{
goto IL_027a;
}
}
IL_0272:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_145 = V_3;
RuntimeObject * L_146 = V_13;
NullCheck(L_145);
List_1_Add_m6930161974C7504C80F52EC379EF012387D43138(L_145, L_146, /*hidden argument*/List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_RuntimeMethod_var);
}
IL_027a:
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_147 = V_16;
if (L_147)
{
goto IL_0290;
}
}
{
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * L_148 = V_6;
Type_t * L_149 = V_15;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_150 = V_14;
int32_t L_151 = V_7;
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_152 = (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A *)il2cpp_codegen_object_new(AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A_il2cpp_TypeInfo_var);
AttributeInfo__ctor_mB43DF2481E1EE03052137FEB5EADDDF71F935BFF(L_152, L_150, L_151, /*hidden argument*/NULL);
NullCheck(L_148);
Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A(L_148, L_149, L_152, /*hidden argument*/Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A_RuntimeMethod_var);
}
IL_0290:
{
int32_t L_153 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_153, (int32_t)1));
}
IL_0296:
{
int32_t L_154 = V_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_155 = V_9;
NullCheck(L_155);
if ((((int32_t)L_154) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_155)->max_length)))))))
{
goto IL_01f6;
}
}
{
RuntimeObject* L_156 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
RuntimeObject* L_157 = MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F(L_156, /*hidden argument*/NULL);
RuntimeObject* L_158 = L_157;
V_4 = L_158;
if (!L_158)
{
goto IL_02bd;
}
}
{
int32_t L_159 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_159, (int32_t)1));
RuntimeObject* L_160 = V_4;
Type_t * L_161 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_162 = MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673(L_160, L_161, (bool)1, /*hidden argument*/NULL);
V_1 = L_162;
}
IL_02bd:
{
bool L_163 = ___inherit2;
if (!L_163)
{
goto IL_02c7;
}
}
{
RuntimeObject* L_164 = V_4;
if (L_164)
{
goto IL_01eb;
}
}
IL_02c7:
{
Type_t * L_165 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_166 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_165, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_166)
{
goto IL_02d8;
}
}
{
Type_t * L_167 = ___attributeType1;
NullCheck(L_167);
bool L_168 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_167, /*hidden argument*/NULL);
if (!L_168)
{
goto IL_02e7;
}
}
IL_02d8:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_169 = V_3;
NullCheck(L_169);
int32_t L_170 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_inline(L_169, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_171 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_170);
V_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_171;
goto IL_02fa;
}
IL_02e7:
{
Type_t * L_172 = ___attributeType1;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_173 = V_3;
NullCheck(L_173);
int32_t L_174 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_inline(L_173, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
RuntimeArray * L_175 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_172, L_174, /*hidden argument*/NULL);
V_5 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_175, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
}
IL_02fa:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_176 = V_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_177 = V_5;
NullCheck(L_176);
List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB(L_176, L_177, 0, /*hidden argument*/List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_RuntimeMethod_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_178 = V_5;
return L_178;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03 (RuntimeObject* ___obj0, bool ___inherit1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___obj0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_RuntimeMethod_var);
}
IL_000e:
{
bool L_2 = ___inherit1;
if (L_2)
{
goto IL_0024;
}
}
{
RuntimeObject* L_3 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673(L_3, (Type_t *)NULL, (bool)0, /*hidden argument*/NULL);
NullCheck((RuntimeArray *)(RuntimeArray *)L_4);
RuntimeObject * L_5 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
return ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_5, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
}
IL_0024:
{
RuntimeObject* L_6 = ___obj0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
bool L_9 = ___inherit1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_6, L_8, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Reflection.CustomAttributeData[] System.MonoCustomAttrs::GetCustomAttributesDataInternal(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500 (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
typedef CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* (*MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500_ftn) (RuntimeObject*);
using namespace il2cpp::icalls;
return ((MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500_ftn)mscorlib::System::MonoCustomAttrs::GetCustomAttributesDataInternal) (___obj0);
}
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData> System.MonoCustomAttrs::GetCustomAttributesData(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632 (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___obj0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* L_3 = MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500(L_2, /*hidden argument*/NULL);
ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F * L_4 = Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E(L_3, /*hidden argument*/Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E_RuntimeMethod_var);
return L_4;
}
}
// System.Boolean System.MonoCustomAttrs::IsDefined(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
{
Type_t * L_0 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)NULL;
}
IL_0016:
{
RuntimeObject* L_3 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
bool L_4 = MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0027;
}
}
{
RuntimeObject* L_5 = ___obj0;
Type_t * L_6 = ___attributeType1;
bool L_7 = ___inherit2;
NullCheck(L_5);
bool L_8 = InterfaceFuncInvoker2< bool, Type_t *, bool >::Invoke(1 /* System.Boolean System.Reflection.ICustomAttributeProvider::IsDefined(System.Type,System.Boolean) */, ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var, L_5, L_6, L_7);
return L_8;
}
IL_0027:
{
RuntimeObject* L_9 = ___obj0;
Type_t * L_10 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
bool L_11 = MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700(L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0032;
}
}
{
return (bool)1;
}
IL_0032:
{
RuntimeObject* L_12 = ___obj0;
Type_t * L_13 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9(L_12, L_13, /*hidden argument*/NULL);
V_1 = L_14;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = V_1;
if (!L_15)
{
goto IL_005d;
}
}
{
V_2 = 0;
goto IL_0057;
}
IL_0041:
{
Type_t * L_16 = ___attributeType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_1;
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = L_18;
RuntimeObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_20);
Type_t * L_21 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_20, /*hidden argument*/NULL);
NullCheck(L_16);
bool L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_21);
if (!L_22)
{
goto IL_0053;
}
}
{
return (bool)1;
}
IL_0053:
{
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0057:
{
int32_t L_24 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_1;
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))))
{
goto IL_0041;
}
}
IL_005d:
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_26 = V_0;
if (L_26)
{
goto IL_0076;
}
}
{
bool L_27 = ___inherit2;
if (L_27)
{
goto IL_0065;
}
}
{
return (bool)0;
}
IL_0065:
{
Type_t * L_28 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_29 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_28, /*hidden argument*/NULL);
V_0 = L_29;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_30 = V_0;
NullCheck(L_30);
bool L_31 = AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F_inline(L_30, /*hidden argument*/NULL);
if (L_31)
{
goto IL_0076;
}
}
{
return (bool)0;
}
IL_0076:
{
RuntimeObject* L_32 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
RuntimeObject* L_33 = MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F(L_32, /*hidden argument*/NULL);
___obj0 = L_33;
RuntimeObject* L_34 = ___obj0;
if (L_34)
{
goto IL_0016;
}
}
{
return (bool)0;
}
}
// System.Boolean System.MonoCustomAttrs::IsDefinedInternal(System.Reflection.ICustomAttributeProvider,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700 (RuntimeObject* ___obj0, Type_t * ___AttributeType1, const RuntimeMethod* method)
{
typedef bool (*MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700_ftn) (RuntimeObject*, Type_t *);
using namespace il2cpp::icalls;
return ((MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700_ftn)mscorlib::System::MonoCustomAttrs::IsDefinedInternal) (___obj0, ___AttributeType1);
}
// System.Reflection.PropertyInfo System.MonoCustomAttrs::GetBasePropertyDefinition(System.Reflection.MonoProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8 (MonoProperty_t * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_2 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL;
int32_t V_4 = 0;
{
MonoProperty_t * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_0, (bool)1);
V_0 = L_1;
MethodInfo_t * L_2 = V_0;
bool L_3 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_2, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0019;
}
}
{
MethodInfo_t * L_4 = V_0;
NullCheck(L_4);
bool L_5 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0021;
}
}
IL_0019:
{
MonoProperty_t * L_6 = ___property0;
NullCheck(L_6);
MethodInfo_t * L_7 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(24 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_6, (bool)1);
V_0 = L_7;
}
IL_0021:
{
MethodInfo_t * L_8 = V_0;
bool L_9 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_8, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0032;
}
}
{
MethodInfo_t * L_10 = V_0;
NullCheck(L_10);
bool L_11 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_0034;
}
}
IL_0032:
{
return (PropertyInfo_t *)NULL;
}
IL_0034:
{
MethodInfo_t * L_12 = V_0;
NullCheck(L_12);
MethodInfo_t * L_13 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(42 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseMethod() */, L_12);
V_1 = L_13;
MethodInfo_t * L_14 = V_1;
bool L_15 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_14, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00b4;
}
}
{
MethodInfo_t * L_16 = V_1;
MethodInfo_t * L_17 = V_0;
bool L_18 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_16, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_00b4;
}
}
{
MonoProperty_t * L_19 = ___property0;
NullCheck(L_19);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_20 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(23 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_19);
V_2 = L_20;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_21 = V_2;
if (!L_21)
{
goto IL_009c;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_22 = V_2;
NullCheck(L_22);
if (!(((RuntimeArray*)L_22)->max_length))
{
goto IL_009c;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_23 = V_2;
NullCheck(L_23);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))));
V_3 = L_24;
V_4 = 0;
goto IL_007c;
}
IL_0069:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = V_3;
int32_t L_26 = V_4;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_27 = V_2;
int32_t L_28 = V_4;
NullCheck(L_27);
int32_t L_29 = L_28;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
NullCheck(L_30);
Type_t * L_31 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_30);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_31);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (Type_t *)L_31);
int32_t L_32 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
}
IL_007c:
{
int32_t L_33 = V_4;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = V_3;
NullCheck(L_34);
if ((((int32_t)L_33) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))))))
{
goto IL_0069;
}
}
{
MethodInfo_t * L_35 = V_1;
NullCheck(L_35);
Type_t * L_36 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_35);
MonoProperty_t * L_37 = ___property0;
NullCheck(L_37);
String_t* L_38 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_37);
MonoProperty_t * L_39 = ___property0;
NullCheck(L_39);
Type_t * L_40 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_39);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_41 = V_3;
NullCheck(L_36);
PropertyInfo_t * L_42 = Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0(L_36, L_38, L_40, L_41, /*hidden argument*/NULL);
return L_42;
}
IL_009c:
{
MethodInfo_t * L_43 = V_1;
NullCheck(L_43);
Type_t * L_44 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_43);
MonoProperty_t * L_45 = ___property0;
NullCheck(L_45);
String_t* L_46 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_45);
MonoProperty_t * L_47 = ___property0;
NullCheck(L_47);
Type_t * L_48 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_47);
NullCheck(L_44);
PropertyInfo_t * L_49 = Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3(L_44, L_46, L_48, /*hidden argument*/NULL);
return L_49;
}
IL_00b4:
{
return (PropertyInfo_t *)NULL;
}
}
// System.Reflection.EventInfo System.MonoCustomAttrs::GetBaseEventDefinition(System.Reflection.MonoEvent)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventInfo_t * MonoCustomAttrs_GetBaseEventDefinition_mB663428AC56D3B5530449230B5060FC157F25F2D (MonoEvent_t * ___evt0, const RuntimeMethod* method)
{
MethodInfo_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
int32_t V_2 = 0;
int32_t G_B14_0 = 0;
int32_t G_B16_0 = 0;
int32_t G_B15_0 = 0;
int32_t G_B17_0 = 0;
int32_t G_B17_1 = 0;
{
MonoEvent_t * L_0 = ___evt0;
NullCheck(L_0);
MethodInfo_t * L_1 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(17 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetAddMethod(System.Boolean) */, L_0, (bool)1);
V_0 = L_1;
MethodInfo_t * L_2 = V_0;
bool L_3 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_2, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0019;
}
}
{
MethodInfo_t * L_4 = V_0;
NullCheck(L_4);
bool L_5 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0021;
}
}
IL_0019:
{
MonoEvent_t * L_6 = ___evt0;
NullCheck(L_6);
MethodInfo_t * L_7 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(18 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetRaiseMethod(System.Boolean) */, L_6, (bool)1);
V_0 = L_7;
}
IL_0021:
{
MethodInfo_t * L_8 = V_0;
bool L_9 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_8, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0032;
}
}
{
MethodInfo_t * L_10 = V_0;
NullCheck(L_10);
bool L_11 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_003a;
}
}
IL_0032:
{
MonoEvent_t * L_12 = ___evt0;
NullCheck(L_12);
MethodInfo_t * L_13 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(19 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetRemoveMethod(System.Boolean) */, L_12, (bool)1);
V_0 = L_13;
}
IL_003a:
{
MethodInfo_t * L_14 = V_0;
bool L_15 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_14, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_15)
{
goto IL_004b;
}
}
{
MethodInfo_t * L_16 = V_0;
NullCheck(L_16);
bool L_17 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_16, /*hidden argument*/NULL);
if (L_17)
{
goto IL_004d;
}
}
IL_004b:
{
return (EventInfo_t *)NULL;
}
IL_004d:
{
MethodInfo_t * L_18 = V_0;
NullCheck(L_18);
MethodInfo_t * L_19 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(42 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseMethod() */, L_18);
V_1 = L_19;
MethodInfo_t * L_20 = V_1;
bool L_21 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_20, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0097;
}
}
{
MethodInfo_t * L_22 = V_1;
MethodInfo_t * L_23 = V_0;
bool L_24 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_22, L_23, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_0097;
}
}
{
MethodInfo_t * L_25 = V_0;
NullCheck(L_25);
bool L_26 = MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B(L_25, /*hidden argument*/NULL);
if (L_26)
{
goto IL_0072;
}
}
{
G_B14_0 = ((int32_t)32);
goto IL_0074;
}
IL_0072:
{
G_B14_0 = ((int32_t)16);
}
IL_0074:
{
V_2 = G_B14_0;
int32_t L_27 = V_2;
MethodInfo_t * L_28 = V_0;
NullCheck(L_28);
bool L_29 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_28, /*hidden argument*/NULL);
G_B15_0 = L_27;
if (L_29)
{
G_B16_0 = L_27;
goto IL_0081;
}
}
{
G_B17_0 = 4;
G_B17_1 = G_B15_0;
goto IL_0082;
}
IL_0081:
{
G_B17_0 = 8;
G_B17_1 = G_B16_0;
}
IL_0082:
{
V_2 = ((int32_t)((int32_t)G_B17_1|(int32_t)G_B17_0));
MethodInfo_t * L_30 = V_1;
NullCheck(L_30);
Type_t * L_31 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_30);
MonoEvent_t * L_32 = ___evt0;
NullCheck(L_32);
String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32);
int32_t L_34 = V_2;
NullCheck(L_31);
EventInfo_t * L_35 = VirtFuncInvoker2< EventInfo_t *, String_t*, int32_t >::Invoke(46 /* System.Reflection.EventInfo System.Type::GetEvent(System.String,System.Reflection.BindingFlags) */, L_31, L_33, L_34);
return L_35;
}
IL_0097:
{
return (EventInfo_t *)NULL;
}
}
// System.Reflection.ICustomAttributeProvider System.MonoCustomAttrs::GetBase(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
{
RuntimeObject* L_0 = ___obj0;
if (L_0)
{
goto IL_0005;
}
}
{
return (RuntimeObject*)NULL;
}
IL_0005:
{
RuntimeObject* L_1 = ___obj0;
if (!((Type_t *)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var)))
{
goto IL_0019;
}
}
{
RuntimeObject* L_2 = ___obj0;
NullCheck(((Type_t *)CastclassClass((RuntimeObject*)L_2, Type_t_il2cpp_TypeInfo_var)));
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, ((Type_t *)CastclassClass((RuntimeObject*)L_2, Type_t_il2cpp_TypeInfo_var)));
return L_3;
}
IL_0019:
{
V_0 = (MethodInfo_t *)NULL;
RuntimeObject* L_4 = ___obj0;
if (!((MonoProperty_t *)IsInstClass((RuntimeObject*)L_4, MonoProperty_t_il2cpp_TypeInfo_var)))
{
goto IL_002f;
}
}
{
RuntimeObject* L_5 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
PropertyInfo_t * L_6 = MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8(((MonoProperty_t *)CastclassClass((RuntimeObject*)L_5, MonoProperty_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_6;
}
IL_002f:
{
RuntimeObject* L_7 = ___obj0;
if (!((MonoEvent_t *)IsInstSealed((RuntimeObject*)L_7, MonoEvent_t_il2cpp_TypeInfo_var)))
{
goto IL_0043;
}
}
{
RuntimeObject* L_8 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
EventInfo_t * L_9 = MonoCustomAttrs_GetBaseEventDefinition_mB663428AC56D3B5530449230B5060FC157F25F2D(((MonoEvent_t *)CastclassSealed((RuntimeObject*)L_8, MonoEvent_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_9;
}
IL_0043:
{
RuntimeObject* L_10 = ___obj0;
if (!((MonoMethod_t *)IsInstClass((RuntimeObject*)L_10, MonoMethod_t_il2cpp_TypeInfo_var)))
{
goto IL_0052;
}
}
{
RuntimeObject* L_11 = ___obj0;
V_0 = ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_11, MethodInfo_t_il2cpp_TypeInfo_var));
}
IL_0052:
{
MethodInfo_t * L_12 = V_0;
bool L_13 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_12, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_13)
{
goto IL_0063;
}
}
{
MethodInfo_t * L_14 = V_0;
NullCheck(L_14);
bool L_15 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_0065;
}
}
IL_0063:
{
return (RuntimeObject*)NULL;
}
IL_0065:
{
MethodInfo_t * L_16 = V_0;
NullCheck(L_16);
MethodInfo_t * L_17 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(42 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseMethod() */, L_16);
V_1 = L_17;
MethodInfo_t * L_18 = V_1;
MethodInfo_t * L_19 = V_0;
bool L_20 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_18, L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0077;
}
}
{
return (RuntimeObject*)NULL;
}
IL_0077:
{
MethodInfo_t * L_21 = V_1;
return L_21;
}
}
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsageNoCache(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949 (Type_t * ___attributeType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
{
Type_t * L_0 = ___attributeType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0019;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_4 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)il2cpp_codegen_object_new(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var);
AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051(L_4, 4, /*hidden argument*/NULL);
return L_4;
}
IL_0019:
{
V_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)NULL;
Type_t * L_5 = ___attributeType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_5, L_7, (bool)0, /*hidden argument*/NULL);
V_1 = L_8;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_1;
NullCheck(L_9);
if ((((RuntimeArray*)L_9)->max_length))
{
goto IL_0056;
}
}
{
Type_t * L_10 = ___attributeType0;
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_10);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_12 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_11, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_004b;
}
}
{
Type_t * L_13 = ___attributeType0;
NullCheck(L_13);
Type_t * L_14 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_13);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_15 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_14, /*hidden argument*/NULL);
V_0 = L_15;
}
IL_004b:
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_16 = V_0;
if (!L_16)
{
goto IL_0050;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_17 = V_0;
return L_17;
}
IL_0050:
{
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_18 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_DefaultAttributeUsage_2();
return L_18;
}
IL_0056:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_1;
NullCheck(L_19);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))) <= ((int32_t)1)))
{
goto IL_0067;
}
}
{
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_20 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_20, _stringLiteral106347FA01CECDD3F27627F13CD2F8689DDAEB49, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_RuntimeMethod_var);
}
IL_0067:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = V_1;
NullCheck(L_21);
int32_t L_22 = 0;
RuntimeObject * L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
return ((AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)CastclassSealed((RuntimeObject*)L_23, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var));
}
}
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsage(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F (Type_t * ___attributeType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_0 = NULL;
{
V_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)NULL;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_0 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_usage_cache_1();
if (L_0)
{
goto IL_0013;
}
}
{
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_1 = (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *)il2cpp_codegen_object_new(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E(L_1, /*hidden argument*/Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->set_usage_cache_1(L_1);
}
IL_0013:
{
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_2 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_usage_cache_1();
Type_t * L_3 = ___attributeType0;
NullCheck(L_2);
bool L_4 = Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56(L_2, L_3, (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56_RuntimeMethod_var);
if (!L_4)
{
goto IL_0024;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_5 = V_0;
return L_5;
}
IL_0024:
{
Type_t * L_6 = ___attributeType0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_7 = MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949(L_6, /*hidden argument*/NULL);
V_0 = L_7;
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_8 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_usage_cache_1();
Type_t * L_9 = ___attributeType0;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_10 = V_0;
NullCheck(L_8);
Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F(L_8, L_9, L_10, /*hidden argument*/Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F_RuntimeMethod_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_11 = V_0;
return L_11;
}
}
// System.Void System.MonoCustomAttrs::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoCustomAttrs__cctor_m095035BF9D3044644C6BB85C3FE34E186A7A779C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs__cctor_m095035BF9D3044644C6BB85C3FE34E186A7A779C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)il2cpp_codegen_object_new(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var);
AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051(L_0, ((int32_t)32767), /*hidden argument*/NULL);
((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->set_DefaultAttributeUsage_2(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.MonoCustomAttrs_AttributeInfo::.ctor(System.AttributeUsageAttribute,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeInfo__ctor_mB43DF2481E1EE03052137FEB5EADDDF71F935BFF (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___usage0, int32_t ___inheritanceLevel1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = ___usage0;
__this->set__usage_0(L_0);
int32_t L_1 = ___inheritanceLevel1;
__this->set__inheritanceLevel_1(L_1);
return;
}
}
// System.AttributeUsageAttribute System.MonoCustomAttrs_AttributeInfo::get_Usage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * AttributeInfo_get_Usage_mC0CA19AEB050A11C3E89E5A015E204AB9D51F4A0 (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method)
{
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = __this->get__usage_0();
return L_0;
}
}
// System.Int32 System.MonoCustomAttrs_AttributeInfo::get_InheritanceLevel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AttributeInfo_get_InheritanceLevel_mDC293DDDC43F613FBBA304C3A5FDC63AB3961AAD (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__inheritanceLevel_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.MonoListItem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoListItem__ctor_m269FC03FE6C705954DAB1C38A6F8CD774D0CA38B (MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.MonoTODOAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTODOAttribute__ctor_mFA81611291B4A07FF5D55700C914A81D674B881D (MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666 * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.MonoTODOAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTODOAttribute__ctor_mC199F774DE64B70BD4A1611D55857310A3D7E9E9 (MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666 * __this, String_t* ___comment0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___comment0;
__this->set_comment_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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.MonoTypeInfo
IL2CPP_EXTERN_C void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_pinvoke(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke& marshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL);
}
IL2CPP_EXTERN_C void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_pinvoke_back(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke& marshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.MonoTypeInfo
IL2CPP_EXTERN_C void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_pinvoke_cleanup(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.MonoTypeInfo
IL2CPP_EXTERN_C void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_com(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com& marshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL);
}
IL2CPP_EXTERN_C void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_com_back(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com& marshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.MonoTypeInfo
IL2CPP_EXTERN_C void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_com_cleanup(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com& marshaled)
{
}
// System.Void System.MonoTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTypeInfo__ctor_mB3C8C989BCE5AA95EFF2C6ED45C8ACB28ABF3A46 (MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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
// Conversion methods for marshalling of: System.MulticastDelegate
IL2CPP_EXTERN_C void MulticastDelegate_t_marshal_pinvoke(const MulticastDelegate_t& unmarshaled, MulticastDelegate_t_marshaled_pinvoke& marshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL);
}
IL2CPP_EXTERN_C void MulticastDelegate_t_marshal_pinvoke_back(const MulticastDelegate_t_marshaled_pinvoke& marshaled, MulticastDelegate_t& unmarshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.MulticastDelegate
IL2CPP_EXTERN_C void MulticastDelegate_t_marshal_pinvoke_cleanup(MulticastDelegate_t_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.MulticastDelegate
IL2CPP_EXTERN_C void MulticastDelegate_t_marshal_com(const MulticastDelegate_t& unmarshaled, MulticastDelegate_t_marshaled_com& marshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL);
}
IL2CPP_EXTERN_C void MulticastDelegate_t_marshal_com_back(const MulticastDelegate_t_marshaled_com& marshaled, MulticastDelegate_t& unmarshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.MulticastDelegate
IL2CPP_EXTERN_C void MulticastDelegate_t_marshal_com_cleanup(MulticastDelegate_t_marshaled_com& marshaled)
{
}
// System.Void System.MulticastDelegate::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MulticastDelegate_GetObjectData_m37D67A6B6D200EFF1019834A247B31FEB3E1F2ED (MulticastDelegate_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
Delegate_GetObjectData_m4471B2DAE39E8F41977BAD88E2CDCA01217B2D71(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.MulticastDelegate::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MulticastDelegate_Equals_mCC476453B26687950C1623E6944CA786A2DC9C49 (MulticastDelegate_t * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_Equals_mCC476453B26687950C1623E6944CA786A2DC9C49_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MulticastDelegate_t * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___obj0;
bool L_1 = Delegate_Equals_m3256FBF115534E4E8D5B83350AA95EC60D84899D(__this, L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_000b;
}
}
{
return (bool)0;
}
IL_000b:
{
RuntimeObject * L_2 = ___obj0;
V_0 = ((MulticastDelegate_t *)IsInstClass((RuntimeObject*)L_2, MulticastDelegate_t_il2cpp_TypeInfo_var));
MulticastDelegate_t * L_3 = V_0;
if (L_3)
{
goto IL_0017;
}
}
{
return (bool)0;
}
IL_0017:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = __this->get_delegates_11();
if (L_4)
{
goto IL_0029;
}
}
{
MulticastDelegate_t * L_5 = V_0;
NullCheck(L_5);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_6 = L_5->get_delegates_11();
if (L_6)
{
goto IL_0029;
}
}
{
return (bool)1;
}
IL_0029:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_7 = __this->get_delegates_11();
MulticastDelegate_t * L_8 = V_0;
NullCheck(L_8);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_9 = L_8->get_delegates_11();
if (!((int32_t)((int32_t)((((RuntimeObject*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)L_7) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)^(int32_t)((((RuntimeObject*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)L_9) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0))))
{
goto IL_0040;
}
}
{
return (bool)0;
}
IL_0040:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_10 = __this->get_delegates_11();
NullCheck(L_10);
MulticastDelegate_t * L_11 = V_0;
NullCheck(L_11);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_12 = L_11->get_delegates_11();
NullCheck(L_12);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0054;
}
}
{
return (bool)0;
}
IL_0054:
{
V_1 = 0;
goto IL_0075;
}
IL_0058:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_13 = __this->get_delegates_11();
int32_t L_14 = V_1;
NullCheck(L_13);
int32_t L_15 = L_14;
Delegate_t * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
MulticastDelegate_t * L_17 = V_0;
NullCheck(L_17);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_18 = L_17->get_delegates_11();
int32_t L_19 = V_1;
NullCheck(L_18);
int32_t L_20 = L_19;
Delegate_t * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
bool L_22 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_16, L_21);
if (L_22)
{
goto IL_0071;
}
}
{
return (bool)0;
}
IL_0071:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0075:
{
int32_t L_24 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_25 = __this->get_delegates_11();
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))))
{
goto IL_0058;
}
}
{
return (bool)1;
}
}
// System.Int32 System.MulticastDelegate::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MulticastDelegate_GetHashCode_m400B35977D895EA5CF640084595336635797FDCB (MulticastDelegate_t * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Delegate_GetHashCode_m8FBCC6E42228A161DA710A330981B8E19BC6FABC(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Reflection.MethodInfo System.MulticastDelegate::GetMethodImpl()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MulticastDelegate_GetMethodImpl_m378AA9BDED60861F70D5CCFDF464046246008F53 (MulticastDelegate_t * __this, const RuntimeMethod* method)
{
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_0 = __this->get_delegates_11();
if (!L_0)
{
goto IL_001f;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_1 = __this->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_2 = __this->get_delegates_11();
NullCheck(L_2);
NullCheck(L_1);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), (int32_t)1));
Delegate_t * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
NullCheck(L_4);
MethodInfo_t * L_5 = Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048(L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001f:
{
MethodInfo_t * L_6 = Delegate_GetMethodImpl_m804444FE22E0481DDB8A41E0E25114E744D76921(__this, /*hidden argument*/NULL);
return L_6;
}
}
// System.Delegate[] System.MulticastDelegate::GetInvocationList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* MulticastDelegate_GetInvocationList_m3B9C8F9FA6E7721D588ED947018372A96871EB97 (MulticastDelegate_t * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_GetInvocationList_m3B9C8F9FA6E7721D588ED947018372A96871EB97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_0 = __this->get_delegates_11();
if (!L_0)
{
goto IL_0019;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_1 = __this->get_delegates_11();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)Castclass((RuntimeObject*)L_2, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var));
}
IL_0019:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)1);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, __this);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (Delegate_t *)__this);
return L_4;
}
}
// System.Delegate System.MulticastDelegate::CombineImpl(System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * MulticastDelegate_CombineImpl_m722E5D3AD0B2C04F4EDAD82FAFB0733CACAF28B9 (MulticastDelegate_t * __this, Delegate_t * ___follow0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_CombineImpl_m722E5D3AD0B2C04F4EDAD82FAFB0733CACAF28B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MulticastDelegate_t * V_0 = NULL;
MulticastDelegate_t * V_1 = NULL;
{
Delegate_t * L_0 = ___follow0;
if (L_0)
{
goto IL_0005;
}
}
{
return __this;
}
IL_0005:
{
Delegate_t * L_1 = ___follow0;
V_0 = ((MulticastDelegate_t *)CastclassClass((RuntimeObject*)L_1, MulticastDelegate_t_il2cpp_TypeInfo_var));
MulticastDelegate_t * L_2 = Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F(__this, /*hidden argument*/NULL);
V_1 = L_2;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = __this->get_delegates_11();
if (L_3)
{
goto IL_003c;
}
}
{
MulticastDelegate_t * L_4 = V_0;
NullCheck(L_4);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_5 = L_4->get_delegates_11();
if (L_5)
{
goto IL_003c;
}
}
{
MulticastDelegate_t * L_6 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_7 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)2);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, __this);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (Delegate_t *)__this);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_9 = L_8;
MulticastDelegate_t * L_10 = V_0;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (Delegate_t *)L_10);
NullCheck(L_6);
L_6->set_delegates_11(L_9);
goto IL_0127;
}
IL_003c:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_11 = __this->get_delegates_11();
if (L_11)
{
goto IL_0082;
}
}
{
MulticastDelegate_t * L_12 = V_1;
MulticastDelegate_t * L_13 = V_0;
NullCheck(L_13);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_14 = L_13->get_delegates_11();
NullCheck(L_14);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_15 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)1, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))));
NullCheck(L_12);
L_12->set_delegates_11(L_15);
MulticastDelegate_t * L_16 = V_1;
NullCheck(L_16);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_17 = L_16->get_delegates_11();
NullCheck(L_17);
ArrayElementTypeCheck (L_17, __this);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (Delegate_t *)__this);
MulticastDelegate_t * L_18 = V_0;
NullCheck(L_18);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_19 = L_18->get_delegates_11();
MulticastDelegate_t * L_20 = V_1;
NullCheck(L_20);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_21 = L_20->get_delegates_11();
MulticastDelegate_t * L_22 = V_0;
NullCheck(L_22);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_23 = L_22->get_delegates_11();
NullCheck(L_23);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_19, 0, (RuntimeArray *)(RuntimeArray *)L_21, 1, (((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))), /*hidden argument*/NULL);
goto IL_0127;
}
IL_0082:
{
MulticastDelegate_t * L_24 = V_0;
NullCheck(L_24);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_25 = L_24->get_delegates_11();
if (L_25)
{
goto IL_00ce;
}
}
{
MulticastDelegate_t * L_26 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_27 = __this->get_delegates_11();
NullCheck(L_27);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_28 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))), (int32_t)1)));
NullCheck(L_26);
L_26->set_delegates_11(L_28);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_29 = __this->get_delegates_11();
MulticastDelegate_t * L_30 = V_1;
NullCheck(L_30);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_31 = L_30->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_32 = __this->get_delegates_11();
NullCheck(L_32);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_29, 0, (RuntimeArray *)(RuntimeArray *)L_31, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))), /*hidden argument*/NULL);
MulticastDelegate_t * L_33 = V_1;
NullCheck(L_33);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_34 = L_33->get_delegates_11();
MulticastDelegate_t * L_35 = V_1;
NullCheck(L_35);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_36 = L_35->get_delegates_11();
NullCheck(L_36);
MulticastDelegate_t * L_37 = V_0;
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_37);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))), (int32_t)1))), (Delegate_t *)L_37);
goto IL_0127;
}
IL_00ce:
{
MulticastDelegate_t * L_38 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_39 = __this->get_delegates_11();
NullCheck(L_39);
MulticastDelegate_t * L_40 = V_0;
NullCheck(L_40);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_41 = L_40->get_delegates_11();
NullCheck(L_41);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_42 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_39)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))))));
NullCheck(L_38);
L_38->set_delegates_11(L_42);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_43 = __this->get_delegates_11();
MulticastDelegate_t * L_44 = V_1;
NullCheck(L_44);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_45 = L_44->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_46 = __this->get_delegates_11();
NullCheck(L_46);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_43, 0, (RuntimeArray *)(RuntimeArray *)L_45, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length)))), /*hidden argument*/NULL);
MulticastDelegate_t * L_47 = V_0;
NullCheck(L_47);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_48 = L_47->get_delegates_11();
MulticastDelegate_t * L_49 = V_1;
NullCheck(L_49);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_50 = L_49->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_51 = __this->get_delegates_11();
NullCheck(L_51);
MulticastDelegate_t * L_52 = V_0;
NullCheck(L_52);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_53 = L_52->get_delegates_11();
NullCheck(L_53);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_48, 0, (RuntimeArray *)(RuntimeArray *)L_50, (((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray*)L_53)->max_length)))), /*hidden argument*/NULL);
}
IL_0127:
{
MulticastDelegate_t * L_54 = V_1;
return L_54;
}
}
// System.Int32 System.MulticastDelegate::LastIndexOf(System.Delegate[],System.Delegate[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MulticastDelegate_LastIndexOf_mC8608A9B5AD9B47651893C1F9FD4EE93E883230D (MulticastDelegate_t * __this, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___haystack0, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___needle1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_0 = ___haystack0;
NullCheck(L_0);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_1 = ___needle1;
NullCheck(L_1);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
{
goto IL_000a;
}
}
{
return (-1);
}
IL_000a:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_2 = ___haystack0;
NullCheck(L_2);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = ___needle1;
NullCheck(L_3);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))))
{
goto IL_0031;
}
}
{
V_0 = 0;
goto IL_0029;
}
IL_0016:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = ___haystack0;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
Delegate_t * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_8 = ___needle1;
int32_t L_9 = V_0;
NullCheck(L_8);
int32_t L_10 = L_9;
Delegate_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_7);
bool L_12 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_7, L_11);
if (L_12)
{
goto IL_0025;
}
}
{
return (-1);
}
IL_0025:
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0029:
{
int32_t L_14 = V_0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_15 = ___haystack0;
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))))
{
goto IL_0016;
}
}
{
return 0;
}
IL_0031:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_16 = ___haystack0;
NullCheck(L_16);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_17 = ___needle1;
NullCheck(L_17);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))));
goto IL_0066;
}
IL_003b:
{
V_2 = 0;
goto IL_0053;
}
IL_003f:
{
int32_t L_18 = V_2;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_19 = ___needle1;
NullCheck(L_19);
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))), (int32_t)1))))))
{
goto IL_004b;
}
}
{
int32_t L_20 = V_1;
int32_t L_21 = V_2;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21));
}
IL_004b:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0053:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_24 = ___needle1;
int32_t L_25 = V_2;
NullCheck(L_24);
int32_t L_26 = L_25;
Delegate_t * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_28 = ___haystack0;
int32_t L_29 = V_1;
NullCheck(L_28);
int32_t L_30 = L_29;
Delegate_t * L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_27);
bool L_32 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_27, L_31);
if (L_32)
{
goto IL_003f;
}
}
{
int32_t L_33 = V_1;
int32_t L_34 = V_2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_33, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1))));
}
IL_0066:
{
int32_t L_35 = V_1;
if ((((int32_t)L_35) >= ((int32_t)0)))
{
goto IL_003b;
}
}
{
return (-1);
}
}
// System.Delegate System.MulticastDelegate::RemoveImpl(System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547 (MulticastDelegate_t * __this, Delegate_t * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MulticastDelegate_t * V_0 = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* V_1 = NULL;
int32_t V_2 = 0;
Delegate_t * V_3 = NULL;
int32_t V_4 = 0;
MulticastDelegate_t * V_5 = NULL;
int32_t V_6 = 0;
MulticastDelegate_t * V_7 = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* G_B22_0 = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* G_B21_0 = NULL;
int32_t G_B23_0 = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* G_B23_1 = NULL;
{
Delegate_t * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return __this;
}
IL_0005:
{
Delegate_t * L_1 = ___value0;
V_0 = ((MulticastDelegate_t *)CastclassClass((RuntimeObject*)L_1, MulticastDelegate_t_il2cpp_TypeInfo_var));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_2 = __this->get_delegates_11();
if (L_2)
{
goto IL_0029;
}
}
{
MulticastDelegate_t * L_3 = V_0;
NullCheck(L_3);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = L_3->get_delegates_11();
if (L_4)
{
goto IL_0029;
}
}
{
MulticastDelegate_t * L_5 = V_0;
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_5);
if (L_6)
{
goto IL_0027;
}
}
{
return __this;
}
IL_0027:
{
return (Delegate_t *)NULL;
}
IL_0029:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_7 = __this->get_delegates_11();
if (L_7)
{
goto IL_0057;
}
}
{
MulticastDelegate_t * L_8 = V_0;
NullCheck(L_8);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_9 = L_8->get_delegates_11();
V_1 = L_9;
V_2 = 0;
goto IL_004f;
}
IL_003c:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_10 = V_1;
int32_t L_11 = V_2;
NullCheck(L_10);
int32_t L_12 = L_11;
Delegate_t * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_3 = L_13;
Delegate_t * L_14 = V_3;
bool L_15 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_14);
if (!L_15)
{
goto IL_004b;
}
}
{
return (Delegate_t *)NULL;
}
IL_004b:
{
int32_t L_16 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_004f:
{
int32_t L_17 = V_2;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_18 = V_1;
NullCheck(L_18);
if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))))
{
goto IL_003c;
}
}
{
return __this;
}
IL_0057:
{
MulticastDelegate_t * L_19 = V_0;
NullCheck(L_19);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_20 = L_19->get_delegates_11();
if (L_20)
{
goto IL_00fd;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_21 = __this->get_delegates_11();
MulticastDelegate_t * L_22 = V_0;
int32_t L_23 = Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45(L_21, L_22, /*hidden argument*/Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45_RuntimeMethod_var);
V_4 = L_23;
int32_t L_24 = V_4;
if ((!(((uint32_t)L_24) == ((uint32_t)(-1)))))
{
goto IL_0077;
}
}
{
return __this;
}
IL_0077:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_25 = __this->get_delegates_11();
NullCheck(L_25);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))) > ((int32_t)1)))
{
goto IL_0088;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_26 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_RuntimeMethod_var);
}
IL_0088:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_27 = __this->get_delegates_11();
NullCheck(L_27);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length))))) == ((uint32_t)2))))
{
goto IL_00a3;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_28 = __this->get_delegates_11();
int32_t L_29 = V_4;
G_B21_0 = L_28;
if (!L_29)
{
G_B22_0 = L_28;
goto IL_00a0;
}
}
{
G_B23_0 = 0;
G_B23_1 = G_B21_0;
goto IL_00a1;
}
IL_00a0:
{
G_B23_0 = 1;
G_B23_1 = G_B22_0;
}
IL_00a1:
{
NullCheck(G_B23_1);
int32_t L_30 = G_B23_0;
Delegate_t * L_31 = (G_B23_1)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
return L_31;
}
IL_00a3:
{
MulticastDelegate_t * L_32 = Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F(__this, /*hidden argument*/NULL);
V_5 = L_32;
MulticastDelegate_t * L_33 = V_5;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_34 = __this->get_delegates_11();
NullCheck(L_34);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_35 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))), (int32_t)1)));
NullCheck(L_33);
L_33->set_delegates_11(L_35);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_36 = __this->get_delegates_11();
MulticastDelegate_t * L_37 = V_5;
NullCheck(L_37);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_38 = L_37->get_delegates_11();
int32_t L_39 = V_4;
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_36, (RuntimeArray *)(RuntimeArray *)L_38, L_39, /*hidden argument*/NULL);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_40 = __this->get_delegates_11();
int32_t L_41 = V_4;
MulticastDelegate_t * L_42 = V_5;
NullCheck(L_42);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_43 = L_42->get_delegates_11();
int32_t L_44 = V_4;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_45 = __this->get_delegates_11();
NullCheck(L_45);
int32_t L_46 = V_4;
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_40, ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_43, L_44, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))), (int32_t)L_46)), (int32_t)1)), /*hidden argument*/NULL);
MulticastDelegate_t * L_47 = V_5;
return L_47;
}
IL_00fd:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_48 = __this->get_delegates_11();
MulticastDelegate_t * L_49 = V_0;
NullCheck(L_49);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_50 = L_49->get_delegates_11();
NullCheck((RuntimeObject *)(RuntimeObject *)L_48);
bool L_51 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(RuntimeObject *)L_48, (RuntimeObject *)(RuntimeObject *)L_50);
if (!L_51)
{
goto IL_0112;
}
}
{
return (Delegate_t *)NULL;
}
IL_0112:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_52 = __this->get_delegates_11();
MulticastDelegate_t * L_53 = V_0;
NullCheck(L_53);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_54 = L_53->get_delegates_11();
int32_t L_55 = MulticastDelegate_LastIndexOf_mC8608A9B5AD9B47651893C1F9FD4EE93E883230D(__this, L_52, L_54, /*hidden argument*/NULL);
V_6 = L_55;
int32_t L_56 = V_6;
if ((!(((uint32_t)L_56) == ((uint32_t)(-1)))))
{
goto IL_012d;
}
}
{
return __this;
}
IL_012d:
{
MulticastDelegate_t * L_57 = Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F(__this, /*hidden argument*/NULL);
V_7 = L_57;
MulticastDelegate_t * L_58 = V_7;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_59 = __this->get_delegates_11();
NullCheck(L_59);
MulticastDelegate_t * L_60 = V_0;
NullCheck(L_60);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_61 = L_60->get_delegates_11();
NullCheck(L_61);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_62 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_61)->max_length)))))));
NullCheck(L_58);
L_58->set_delegates_11(L_62);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_63 = __this->get_delegates_11();
MulticastDelegate_t * L_64 = V_7;
NullCheck(L_64);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_65 = L_64->get_delegates_11();
int32_t L_66 = V_6;
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_63, (RuntimeArray *)(RuntimeArray *)L_65, L_66, /*hidden argument*/NULL);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_67 = __this->get_delegates_11();
int32_t L_68 = V_6;
MulticastDelegate_t * L_69 = V_0;
NullCheck(L_69);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_70 = L_69->get_delegates_11();
NullCheck(L_70);
MulticastDelegate_t * L_71 = V_7;
NullCheck(L_71);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_72 = L_71->get_delegates_11();
int32_t L_73 = V_6;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_74 = __this->get_delegates_11();
NullCheck(L_74);
int32_t L_75 = V_6;
MulticastDelegate_t * L_76 = V_0;
NullCheck(L_76);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_77 = L_76->get_delegates_11();
NullCheck(L_77);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_67, ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))))), (RuntimeArray *)(RuntimeArray *)L_72, L_73, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_74)->max_length)))), (int32_t)L_75)), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_77)->max_length)))))), /*hidden argument*/NULL);
MulticastDelegate_t * L_78 = V_7;
return L_78;
}
}
#ifdef __clang__
#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.MulticastNotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MulticastNotSupportedException__ctor_m4E7EEFC6E42FEAB6FA8D775E2CC71A0C3B970CD2 (MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastNotSupportedException__ctor_m4E7EEFC6E42FEAB6FA8D775E2CC71A0C3B970CD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAE2D86CD2BE6BF988588077152DC43D7030A504A, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233068), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MulticastNotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MulticastNotSupportedException__ctor_m9B26D80EE301004DB6AD6753C997AA2723092B65 (MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233068), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MulticastNotSupportedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MulticastNotSupportedException__ctor_mB91B7A630F7A2067A58D34B2180ED59249CB2221 (MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.NonSerializedAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NonSerializedAttribute__ctor_mE1558BDEF20C2A2D08703549040E56970CC767B0 (NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__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.NotImplementedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral376A1C1EC35E50EC842B660B9E346C386ABA78C1, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467263), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotImplementedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467263), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotImplementedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mFF1238AF9C34A2EA800C8AA62ABACBC395BCAB44 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBEE42D2FC435CCAA88B02E953C7318706D195EE9, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233067), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233067), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotSupportedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1F2AAA51372307FB5B4ED59C9F89A0BBFC94C768 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.ConsoleKeyInfo System.NullConsoleDriver::ReadKey(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 NullConsoleDriver_ReadKey_mD8783671CC38E7E2BA8949C9C2631BB90D5A0317 (NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D * __this, bool ___intercept0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullConsoleDriver_ReadKey_mD8783671CC38E7E2BA8949C9C2631BB90D5A0317_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0 = ((NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields*)il2cpp_codegen_static_fields_for(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var))->get_EmptyConsoleKeyInfo_0();
return L_0;
}
}
// System.Void System.NullConsoleDriver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullConsoleDriver__ctor_mEF6695F8B8CEE021CD5EC693237034A53D484CB2 (NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NullConsoleDriver::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullConsoleDriver__cctor_m0B892457EA9435B6B2E8483E8F7588290E9573D0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullConsoleDriver__cctor_m0B892457EA9435B6B2E8483E8F7588290E9573D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0;
memset((&L_0), 0, sizeof(L_0));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_0), 0, 0, (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
((NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields*)il2cpp_codegen_static_fields_for(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var))->set_EmptyConsoleKeyInfo_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.NullReferenceException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDFEFBEE8FA51C19A77377FDC99C6D1E91AC2EBB8, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NullReferenceException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_mAD32CA6CD05808ED531D14BA18B7AA1E99B8D349 (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NullReferenceException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_m30DB93B2976C4F659BDFEE6B4A801C79DC898E00 (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*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.Type System.Nullable::GetUnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04 (Type_t * ___nullableType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___nullableType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralAAD19283FC942FFC547E9D76151FC155278475DF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_RuntimeMethod_var);
}
IL_0014:
{
Type_t * L_3 = ___nullableType0;
NullCheck(L_3);
bool L_4 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_IsGenericType() */, L_3);
if (!L_4)
{
goto IL_003b;
}
}
{
Type_t * L_5 = ___nullableType0;
NullCheck(L_5);
bool L_6 = VirtFuncInvoker0< bool >::Invoke(75 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_5);
if (L_6)
{
goto IL_003b;
}
}
{
Type_t * L_7 = ___nullableType0;
NullCheck(L_7);
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(99 /* System.Type System.Type::GetGenericTypeDefinition() */, L_7);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
bool L_11 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_8, L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_003d;
}
}
IL_003b:
{
return (Type_t *)NULL;
}
IL_003d:
{
Type_t * L_12 = ___nullableType0;
NullCheck(L_12);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(98 /* System.Type[] System.Type::GetGenericArguments() */, L_12);
NullCheck(L_13);
int32_t L_14 = 0;
Type_t * L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
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.Boolean System.Number::NumberBufferToDecimal(System.Byte*,System.Decimal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7 (uint8_t* ___number0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * ___value1, const RuntimeMethod* method)
{
typedef bool (*Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7_ftn) (uint8_t*, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *);
using namespace il2cpp::icalls;
return ((Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7_ftn)mscorlib::System::Number::NumberBufferToDecimal) (___number0, ___value1);
}
// System.Boolean System.Number::NumberBufferToDouble(System.Byte*,System.Double&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D (uint8_t* ___number0, double* ___value1, const RuntimeMethod* method)
{
typedef bool (*Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D_ftn) (uint8_t*, double*);
using namespace il2cpp::icalls;
return ((Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D_ftn)mscorlib::System::Number::NumberBufferToDouble) (___number0, ___value1);
}
// System.String System.Number::FormatDecimal(System.Decimal,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatDecimal_mD9017BCCC840DA365FF4BE687382AB95D22CF562 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatDecimal_mD9017BCCC840DA365FF4BE687382AB95D22CF562_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatDouble(System.Double,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2 (double ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
double L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatInt32(System.Int32,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984 (int32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
int32_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatUInt32(System.UInt32,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE (uint32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
uint32_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatInt64(System.Int64,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB (int64_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
int64_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatUInt64(System.UInt64,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatUInt64_m04004F09D1913C13C59635153D0F45AF37F8248A (uint64_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatUInt64_m04004F09D1913C13C59635153D0F45AF37F8248A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
uint64_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatSingle(System.Single,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatSingle_m323E2B56236A6DAA51251B75618122C0A58F5256 (float ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatSingle_m323E2B56236A6DAA51251B75618122C0A58F5256_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
float L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Boolean System.Number::HexNumberToInt32(System.Number_NumberBuffer&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToInt32_m9229BEC2774D0AC4211B2D01CDD18EB1FB5DDDD7 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
V_0 = 0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
bool L_1 = Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_0, (uint32_t*)(&V_0), /*hidden argument*/NULL);
int32_t* L_2 = ___value1;
uint32_t L_3 = V_0;
*((int32_t*)L_2) = (int32_t)L_3;
return L_1;
}
}
// System.Boolean System.Number::HexNumberToInt64(System.Number_NumberBuffer&,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
V_0 = (((int64_t)((int64_t)0)));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
bool L_1 = Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_0, (uint64_t*)(&V_0), /*hidden argument*/NULL);
int64_t* L_2 = ___value1;
uint64_t L_3 = V_0;
*((int64_t*)L_2) = (int64_t)L_3;
return L_1;
}
}
// System.Boolean System.Number::HexNumberToUInt32(System.Number_NumberBuffer&,System.UInt32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)10))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = 0;
goto IL_0081;
}
IL_0022:
{
uint32_t L_8 = V_2;
if ((!(((uint32_t)L_8) > ((uint32_t)((int32_t)268435455)))))
{
goto IL_002c;
}
}
{
return (bool)0;
}
IL_002c:
{
uint32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)((int32_t)16)));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_0081;
}
}
{
uint32_t L_12 = V_2;
V_3 = L_12;
Il2CppChar* L_13 = V_1;
int32_t L_14 = *((uint16_t*)L_13);
if (!L_14)
{
goto IL_0079;
}
}
{
Il2CppChar* L_15 = V_1;
int32_t L_16 = *((uint16_t*)L_15);
if ((((int32_t)L_16) < ((int32_t)((int32_t)48))))
{
goto IL_0051;
}
}
{
Il2CppChar* L_17 = V_1;
int32_t L_18 = *((uint16_t*)L_17);
if ((((int32_t)L_18) > ((int32_t)((int32_t)57))))
{
goto IL_0051;
}
}
{
uint32_t L_19 = V_3;
Il2CppChar* L_20 = V_1;
int32_t L_21 = *((uint16_t*)L_20);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)48)))));
goto IL_0075;
}
IL_0051:
{
Il2CppChar* L_22 = V_1;
int32_t L_23 = *((uint16_t*)L_22);
if ((((int32_t)L_23) < ((int32_t)((int32_t)65))))
{
goto IL_006a;
}
}
{
Il2CppChar* L_24 = V_1;
int32_t L_25 = *((uint16_t*)L_24);
if ((((int32_t)L_25) > ((int32_t)((int32_t)70))))
{
goto IL_006a;
}
}
{
uint32_t L_26 = V_3;
Il2CppChar* L_27 = V_1;
int32_t L_28 = *((uint16_t*)L_27);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)((int32_t)65))), (int32_t)((int32_t)10)))));
goto IL_0075;
}
IL_006a:
{
uint32_t L_29 = V_3;
Il2CppChar* L_30 = V_1;
int32_t L_31 = *((uint16_t*)L_30);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)((int32_t)97))), (int32_t)((int32_t)10)))));
}
IL_0075:
{
Il2CppChar* L_32 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)2));
}
IL_0079:
{
uint32_t L_33 = V_3;
uint32_t L_34 = V_2;
if ((!(((uint32_t)L_33) < ((uint32_t)L_34))))
{
goto IL_007f;
}
}
{
return (bool)0;
}
IL_007f:
{
uint32_t L_35 = V_3;
V_2 = L_35;
}
IL_0081:
{
int32_t L_36 = V_0;
int32_t L_37 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1));
V_0 = L_37;
if ((((int32_t)L_37) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
uint32_t* L_38 = ___value1;
uint32_t L_39 = V_2;
*((int32_t*)L_38) = (int32_t)L_39;
return (bool)1;
}
}
// System.Boolean System.Number::HexNumberToUInt64(System.Number_NumberBuffer&,System.UInt64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint64_t V_2 = 0;
uint64_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)20))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = (((int64_t)((int64_t)0)));
goto IL_008a;
}
IL_0023:
{
uint64_t L_8 = V_2;
if ((!(((uint64_t)L_8) > ((uint64_t)((int64_t)1152921504606846975LL)))))
{
goto IL_0031;
}
}
{
return (bool)0;
}
IL_0031:
{
uint64_t L_9 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)(((int64_t)((int64_t)((int32_t)16))))));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_008a;
}
}
{
uint64_t L_12 = V_2;
V_3 = L_12;
Il2CppChar* L_13 = V_1;
int32_t L_14 = *((uint16_t*)L_13);
if (!L_14)
{
goto IL_0082;
}
}
{
Il2CppChar* L_15 = V_1;
int32_t L_16 = *((uint16_t*)L_15);
if ((((int32_t)L_16) < ((int32_t)((int32_t)48))))
{
goto IL_0058;
}
}
{
Il2CppChar* L_17 = V_1;
int32_t L_18 = *((uint16_t*)L_17);
if ((((int32_t)L_18) > ((int32_t)((int32_t)57))))
{
goto IL_0058;
}
}
{
uint64_t L_19 = V_3;
Il2CppChar* L_20 = V_1;
int32_t L_21 = *((uint16_t*)L_20);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_19, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)48))))))));
goto IL_007e;
}
IL_0058:
{
Il2CppChar* L_22 = V_1;
int32_t L_23 = *((uint16_t*)L_22);
if ((((int32_t)L_23) < ((int32_t)((int32_t)65))))
{
goto IL_0072;
}
}
{
Il2CppChar* L_24 = V_1;
int32_t L_25 = *((uint16_t*)L_24);
if ((((int32_t)L_25) > ((int32_t)((int32_t)70))))
{
goto IL_0072;
}
}
{
uint64_t L_26 = V_3;
Il2CppChar* L_27 = V_1;
int32_t L_28 = *((uint16_t*)L_27);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_26, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)((int32_t)65))), (int32_t)((int32_t)10))))))));
goto IL_007e;
}
IL_0072:
{
uint64_t L_29 = V_3;
Il2CppChar* L_30 = V_1;
int32_t L_31 = *((uint16_t*)L_30);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_29, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)((int32_t)97))), (int32_t)((int32_t)10))))))));
}
IL_007e:
{
Il2CppChar* L_32 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)2));
}
IL_0082:
{
uint64_t L_33 = V_3;
uint64_t L_34 = V_2;
if ((!(((uint64_t)L_33) < ((uint64_t)L_34))))
{
goto IL_0088;
}
}
{
return (bool)0;
}
IL_0088:
{
uint64_t L_35 = V_3;
V_2 = L_35;
}
IL_008a:
{
int32_t L_36 = V_0;
int32_t L_37 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1));
V_0 = L_37;
if ((((int32_t)L_37) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
uint64_t* L_38 = ___value1;
uint64_t L_39 = V_2;
*((int64_t*)L_38) = (int64_t)L_39;
return (bool)1;
}
}
// System.Boolean System.Number::IsWhite(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700 (Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)32))))
{
goto IL_0015;
}
}
{
Il2CppChar L_1 = ___ch0;
if ((((int32_t)L_1) < ((int32_t)((int32_t)9))))
{
goto IL_0013;
}
}
{
Il2CppChar L_2 = ___ch0;
return (bool)((((int32_t)((((int32_t)L_2) > ((int32_t)((int32_t)13)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0013:
{
return (bool)0;
}
IL_0015:
{
return (bool)1;
}
}
// System.Boolean System.Number::NumberToInt32(System.Number_NumberBuffer&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToInt32_m21C6C8AB448D962C7658840F3C511835089D26E6 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
int32_t V_2 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)10))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = 0;
goto IL_0041;
}
IL_0022:
{
int32_t L_8 = V_2;
if ((!(((uint32_t)L_8) > ((uint32_t)((int32_t)214748364)))))
{
goto IL_002c;
}
}
{
return (bool)0;
}
IL_002c:
{
int32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)((int32_t)10)));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_0041;
}
}
{
int32_t L_12 = V_2;
Il2CppChar* L_13 = V_1;
Il2CppChar* L_14 = (Il2CppChar*)L_13;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)2));
int32_t L_15 = *((uint16_t*)L_14);
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)48)))));
}
IL_0041:
{
int32_t L_16 = V_0;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
V_0 = L_17;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_18 = ___number0;
bool L_19 = L_18->get_sign_5();
if (!L_19)
{
goto IL_005a;
}
}
{
int32_t L_20 = V_2;
V_2 = ((-L_20));
int32_t L_21 = V_2;
if ((((int32_t)L_21) <= ((int32_t)0)))
{
goto IL_0060;
}
}
{
return (bool)0;
}
IL_005a:
{
int32_t L_22 = V_2;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_0060;
}
}
{
return (bool)0;
}
IL_0060:
{
int32_t* L_23 = ___value1;
int32_t L_24 = V_2;
*((int32_t*)L_23) = (int32_t)L_24;
return (bool)1;
}
}
// System.Boolean System.Number::NumberToInt64(System.Number_NumberBuffer&,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
int64_t V_2 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)19))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = (((int64_t)((int64_t)0)));
goto IL_0048;
}
IL_0023:
{
int64_t L_8 = V_2;
if ((!(((uint64_t)L_8) > ((uint64_t)((int64_t)922337203685477580LL)))))
{
goto IL_0031;
}
}
{
return (bool)0;
}
IL_0031:
{
int64_t L_9 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_0048;
}
}
{
int64_t L_12 = V_2;
Il2CppChar* L_13 = V_1;
Il2CppChar* L_14 = (Il2CppChar*)L_13;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)2));
int32_t L_15 = *((uint16_t*)L_14);
V_2 = ((int64_t)il2cpp_codegen_add((int64_t)L_12, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)48))))))));
}
IL_0048:
{
int32_t L_16 = V_0;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
V_0 = L_17;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_18 = ___number0;
bool L_19 = L_18->get_sign_5();
if (!L_19)
{
goto IL_0062;
}
}
{
int64_t L_20 = V_2;
V_2 = ((-L_20));
int64_t L_21 = V_2;
if ((((int64_t)L_21) <= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0069;
}
}
{
return (bool)0;
}
IL_0062:
{
int64_t L_22 = V_2;
if ((((int64_t)L_22) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0069;
}
}
{
return (bool)0;
}
IL_0069:
{
int64_t* L_23 = ___value1;
int64_t L_24 = V_2;
*((int64_t*)L_23) = (int64_t)L_24;
return (bool)1;
}
}
// System.Boolean System.Number::NumberToUInt32(System.Number_NumberBuffer&,System.UInt32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToUInt32_m60BDF4513A1673F8F993CAA12CA865FD4294308F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)10))))
{
goto IL_001d;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_001d;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
bool L_7 = L_6->get_sign_5();
if (!L_7)
{
goto IL_001f;
}
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_8 = ___number0;
Il2CppChar* L_9 = L_8->get_digits_2();
V_1 = (Il2CppChar*)L_9;
V_2 = 0;
goto IL_0051;
}
IL_002a:
{
uint32_t L_10 = V_2;
if ((!(((uint32_t)L_10) > ((uint32_t)((int32_t)429496729)))))
{
goto IL_0034;
}
}
{
return (bool)0;
}
IL_0034:
{
uint32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_11, (int32_t)((int32_t)10)));
Il2CppChar* L_12 = V_1;
int32_t L_13 = *((uint16_t*)L_12);
if (!L_13)
{
goto IL_0051;
}
}
{
uint32_t L_14 = V_2;
Il2CppChar* L_15 = V_1;
Il2CppChar* L_16 = (Il2CppChar*)L_15;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2));
int32_t L_17 = *((uint16_t*)L_16);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)48)))));
uint32_t L_18 = V_3;
uint32_t L_19 = V_2;
if ((!(((uint32_t)L_18) < ((uint32_t)L_19))))
{
goto IL_004f;
}
}
{
return (bool)0;
}
IL_004f:
{
uint32_t L_20 = V_3;
V_2 = L_20;
}
IL_0051:
{
int32_t L_21 = V_0;
int32_t L_22 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1));
V_0 = L_22;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_002a;
}
}
{
uint32_t* L_23 = ___value1;
uint32_t L_24 = V_2;
*((int32_t*)L_23) = (int32_t)L_24;
return (bool)1;
}
}
// System.Boolean System.Number::NumberToUInt64(System.Number_NumberBuffer&,System.UInt64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_NumberToUInt64_m4F1E853E52800DA97846B99A6989596F310501C0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint64_t V_2 = 0;
uint64_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)20))))
{
goto IL_001d;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_001d;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
bool L_7 = L_6->get_sign_5();
if (!L_7)
{
goto IL_001f;
}
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_8 = ___number0;
Il2CppChar* L_9 = L_8->get_digits_2();
V_1 = (Il2CppChar*)L_9;
V_2 = (((int64_t)((int64_t)0)));
goto IL_0058;
}
IL_002b:
{
uint64_t L_10 = V_2;
if ((!(((uint64_t)L_10) > ((uint64_t)((int64_t)1844674407370955161LL)))))
{
goto IL_0039;
}
}
{
return (bool)0;
}
IL_0039:
{
uint64_t L_11 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_11, (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
Il2CppChar* L_12 = V_1;
int32_t L_13 = *((uint16_t*)L_12);
if (!L_13)
{
goto IL_0058;
}
}
{
uint64_t L_14 = V_2;
Il2CppChar* L_15 = V_1;
Il2CppChar* L_16 = (Il2CppChar*)L_15;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2));
int32_t L_17 = *((uint16_t*)L_16);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_14, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)48))))))));
uint64_t L_18 = V_3;
uint64_t L_19 = V_2;
if ((!(((uint64_t)L_18) < ((uint64_t)L_19))))
{
goto IL_0056;
}
}
{
return (bool)0;
}
IL_0056:
{
uint64_t L_20 = V_3;
V_2 = L_20;
}
IL_0058:
{
int32_t L_21 = V_0;
int32_t L_22 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1));
V_0 = L_22;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_002b;
}
}
{
uint64_t* L_23 = ___value1;
uint64_t L_24 = V_2;
*((int64_t*)L_23) = (int64_t)L_24;
return (bool)1;
}
}
// System.Char* System.Number::MatchChars(System.Char*,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA (Il2CppChar* ___p0, String_t* ___str1, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___str1;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_1));
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4));
}
IL_0010:
{
Il2CppChar* L_5 = ___p0;
Il2CppChar* L_6 = V_0;
Il2CppChar* L_7 = Number_MatchChars_m7EE86D2BE9EC4117EE64EF821DB270C0A717ACAC((Il2CppChar*)(Il2CppChar*)L_5, (Il2CppChar*)(Il2CppChar*)L_6, /*hidden argument*/NULL);
return (Il2CppChar*)(L_7);
}
}
// System.Char* System.Number::MatchChars(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_m7EE86D2BE9EC4117EE64EF821DB270C0A717ACAC (Il2CppChar* ___p0, Il2CppChar* ___str1, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___str1;
int32_t L_1 = *((uint16_t*)L_0);
if (L_1)
{
goto IL_0029;
}
}
{
return (Il2CppChar*)((((uintptr_t)0)));
}
IL_0007:
{
Il2CppChar* L_2 = ___p0;
int32_t L_3 = *((uint16_t*)L_2);
Il2CppChar* L_4 = ___str1;
int32_t L_5 = *((uint16_t*)L_4);
if ((((int32_t)L_3) == ((int32_t)L_5)))
{
goto IL_001f;
}
}
{
Il2CppChar* L_6 = ___str1;
int32_t L_7 = *((uint16_t*)L_6);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)160)))))
{
goto IL_001c;
}
}
{
Il2CppChar* L_8 = ___p0;
int32_t L_9 = *((uint16_t*)L_8);
if ((((int32_t)L_9) == ((int32_t)((int32_t)32))))
{
goto IL_001f;
}
}
IL_001c:
{
return (Il2CppChar*)((((uintptr_t)0)));
}
IL_001f:
{
Il2CppChar* L_10 = ___p0;
___p0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)2));
Il2CppChar* L_11 = ___str1;
___str1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)2));
}
IL_0029:
{
Il2CppChar* L_12 = ___str1;
int32_t L_13 = *((uint16_t*)L_12);
if (L_13)
{
goto IL_0007;
}
}
{
Il2CppChar* L_14 = ___p0;
return (Il2CppChar*)(L_14);
}
}
// System.Decimal System.Number::ParseDecimal(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_2;
memset((&V_2), 0, sizeof(V_2));
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1, 0, (((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
il2cpp_codegen_initobj((&V_2), sizeof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ));
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)1, /*hidden argument*/NULL);
uint8_t* L_6 = NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), /*hidden argument*/NULL);
bool L_7 = Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7((uint8_t*)(uint8_t*)L_6, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_0044;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6976E9D2306260A73687B281AF880C13AB05F910, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_RuntimeMethod_var);
}
IL_0044:
{
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_10 = V_2;
return L_10;
}
}
// System.Double System.Number::ParseDouble(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
double V_2 = 0.0;
String_t* V_3 = NULL;
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var);
}
IL_000e:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_2 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_3 = (int8_t*) alloca((((uintptr_t)L_2)));
memset(L_3, 0, (((uintptr_t)L_2)));
V_0 = (uint8_t*)(L_3);
uint8_t* L_4 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_4, /*hidden argument*/NULL);
V_2 = (0.0);
String_t* L_5 = ___value0;
int32_t L_6 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___numfmt2;
bool L_8 = Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7(L_5, L_6, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_7, (bool)0, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0095;
}
}
{
String_t* L_9 = ___value0;
NullCheck(L_9);
String_t* L_10 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_9, /*hidden argument*/NULL);
V_3 = L_10;
String_t* L_11 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___numfmt2;
NullCheck(L_12);
String_t* L_13 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A_inline(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_14 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_11, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0055;
}
}
{
return (std::numeric_limits<double>::infinity());
}
IL_0055:
{
String_t* L_15 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___numfmt2;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8_inline(L_16, /*hidden argument*/NULL);
NullCheck(L_15);
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_006d;
}
}
{
return (-std::numeric_limits<double>::infinity());
}
IL_006d:
{
String_t* L_19 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_20 = ___numfmt2;
NullCheck(L_20);
String_t* L_21 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E_inline(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
bool L_22 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_19, L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0085;
}
}
{
return (std::numeric_limits<double>::quiet_NaN());
}
IL_0085:
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_24 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var);
}
IL_0095:
{
uint8_t* L_25 = NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), /*hidden argument*/NULL);
bool L_26 = Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D((uint8_t*)(uint8_t*)L_25, (double*)(&V_2), /*hidden argument*/NULL);
if (L_26)
{
goto IL_00b5;
}
}
{
String_t* L_27 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral00C75FBF9FDF37741287FE5138D60B6AEC257FF6, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_28 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var);
}
IL_00b5:
{
double L_29 = V_2;
return L_29;
}
}
// System.Int32 System.Number::ParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1, 0, (((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = 0;
String_t* L_3 = ___s0;
int32_t L_4 = ___style1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___info2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___style1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0042;
}
}
{
bool L_7 = Number_HexNumberToInt32_m9229BEC2774D0AC4211B2D01CDD18EB1FB5DDDD7((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int32_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005d;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_RuntimeMethod_var);
}
IL_0042:
{
bool L_10 = Number_NumberToInt32_m21C6C8AB448D962C7658840F3C511835089D26E6((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int32_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_RuntimeMethod_var);
}
IL_005d:
{
int32_t L_13 = V_2;
return L_13;
}
}
// System.Int64 System.Number::ParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
int64_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1, 0, (((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = (((int64_t)((int64_t)0)));
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___options1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0043;
}
}
{
bool L_7 = Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005e;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral952604412082661142BB4448D6792E048E0317FC, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_RuntimeMethod_var);
}
IL_0043:
{
bool L_10 = Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005e;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral952604412082661142BB4448D6792E048E0317FC, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_RuntimeMethod_var);
}
IL_005e:
{
int64_t L_13 = V_2;
return L_13;
}
}
// System.Boolean System.Number::ParseNumber(System.Char*&,System.Globalization.NumberStyles,System.Number_NumberBuffer&,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241 (Il2CppChar** ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
int32_t V_11 = 0;
Il2CppChar* V_12 = NULL;
Il2CppChar V_13 = 0x0;
Il2CppChar* V_14 = NULL;
int32_t V_15 = 0;
int32_t V_16 = 0;
bool V_17 = false;
Il2CppChar* V_18 = NULL;
int32_t V_19 = 0;
int32_t G_B8_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B21_0 = 0;
int32_t G_B48_0 = 0;
int32_t G_B106_0 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number2;
L_0->set_scale_4(0);
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_1 = ___number2;
L_1->set_sign_5((bool)0);
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
V_4 = (String_t*)NULL;
V_5 = (String_t*)NULL;
V_6 = (bool)0;
int32_t L_2 = ___options1;
if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)256))))
{
goto IL_0064;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___numfmt4;
NullCheck(L_3);
String_t* L_4 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_3, /*hidden argument*/NULL);
V_2 = L_4;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt4;
NullCheck(L_5);
String_t* L_6 = L_5->get_ansiCurrencySymbol_11();
if (!L_6)
{
goto IL_003d;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___numfmt4;
NullCheck(L_7);
String_t* L_8 = L_7->get_ansiCurrencySymbol_11();
V_3 = L_8;
}
IL_003d:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_9 = ___numfmt4;
NullCheck(L_9);
String_t* L_10 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline(L_9, /*hidden argument*/NULL);
V_4 = L_10;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___numfmt4;
NullCheck(L_11);
String_t* L_12 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline(L_11, /*hidden argument*/NULL);
V_5 = L_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___numfmt4;
NullCheck(L_13);
String_t* L_14 = NumberFormatInfo_get_CurrencyDecimalSeparator_mB1EE2B6EA5D9F58355F26F071B9A08435378214D_inline(L_13, /*hidden argument*/NULL);
V_0 = L_14;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___numfmt4;
NullCheck(L_15);
String_t* L_16 = NumberFormatInfo_get_CurrencyGroupSeparator_m5AC1CA2A478284D1D059459951C8208168A20130_inline(L_15, /*hidden argument*/NULL);
V_1 = L_16;
V_6 = (bool)1;
goto IL_0074;
}
IL_0064:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_17 = ___numfmt4;
NullCheck(L_17);
String_t* L_18 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline(L_17, /*hidden argument*/NULL);
V_0 = L_18;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___numfmt4;
NullCheck(L_19);
String_t* L_20 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline(L_19, /*hidden argument*/NULL);
V_1 = L_20;
}
IL_0074:
{
V_7 = 0;
V_8 = (bool)0;
StringBuilder_t * L_21 = ___sb3;
V_9 = (bool)((!(((RuntimeObject*)(StringBuilder_t *)L_21) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_22 = V_9;
if (!L_22)
{
goto IL_0090;
}
}
{
int32_t L_23 = ___options1;
G_B8_0 = ((!(((uint32_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)512)))) <= ((uint32_t)0)))? 1 : 0);
goto IL_0091;
}
IL_0090:
{
G_B8_0 = 0;
}
IL_0091:
{
V_10 = (bool)G_B8_0;
bool L_24 = V_9;
if (L_24)
{
goto IL_009b;
}
}
{
G_B11_0 = ((int32_t)50);
goto IL_00a0;
}
IL_009b:
{
G_B11_0 = ((int32_t)2147483647LL);
}
IL_00a0:
{
V_11 = G_B11_0;
Il2CppChar** L_25 = ___str0;
V_12 = (Il2CppChar*)(*((intptr_t*)L_25));
Il2CppChar* L_26 = V_12;
int32_t L_27 = *((uint16_t*)L_26);
V_13 = L_27;
}
IL_00ab:
{
Il2CppChar L_28 = V_13;
bool L_29 = Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700(L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00df;
}
}
{
int32_t L_30 = ___options1;
if (!((int32_t)((int32_t)L_30&(int32_t)1)))
{
goto IL_00df;
}
}
{
int32_t L_31 = V_7;
if (!((int32_t)((int32_t)L_31&(int32_t)1)))
{
goto IL_019d;
}
}
{
int32_t L_32 = V_7;
if (!((int32_t)((int32_t)L_32&(int32_t)1)))
{
goto IL_00df;
}
}
{
int32_t L_33 = V_7;
if (((int32_t)((int32_t)L_33&(int32_t)((int32_t)32))))
{
goto IL_019d;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_34 = ___numfmt4;
NullCheck(L_34);
int32_t L_35 = NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017_inline(L_34, /*hidden argument*/NULL);
if ((((int32_t)L_35) == ((int32_t)2)))
{
goto IL_019d;
}
}
IL_00df:
{
int32_t L_36 = ___options1;
if (!((int32_t)((int32_t)L_36&(int32_t)4)))
{
goto IL_00ed;
}
}
{
int32_t L_37 = V_7;
G_B21_0 = ((((int32_t)((int32_t)((int32_t)L_37&(int32_t)1))) == ((int32_t)0))? 1 : 0);
goto IL_00ee;
}
IL_00ed:
{
G_B21_0 = 0;
}
IL_00ee:
{
int32_t L_38 = G_B21_0;
V_8 = (bool)L_38;
if (!L_38)
{
goto IL_0119;
}
}
{
Il2CppChar* L_39 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_40 = ___numfmt4;
NullCheck(L_40);
String_t* L_41 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747_inline(L_40, /*hidden argument*/NULL);
Il2CppChar* L_42 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_39, L_41, /*hidden argument*/NULL);
Il2CppChar* L_43 = (Il2CppChar*)L_42;
V_14 = (Il2CppChar*)L_43;
if ((((intptr_t)L_43) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0119;
}
}
{
int32_t L_44 = V_7;
V_7 = ((int32_t)((int32_t)L_44|(int32_t)1));
Il2CppChar* L_45 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_45, (int32_t)2));
goto IL_019d;
}
IL_0119:
{
bool L_46 = V_8;
if (!L_46)
{
goto IL_0147;
}
}
{
Il2CppChar* L_47 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_48 = ___numfmt4;
NullCheck(L_48);
String_t* L_49 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_48, /*hidden argument*/NULL);
Il2CppChar* L_50 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_47, L_49, /*hidden argument*/NULL);
Il2CppChar* L_51 = (Il2CppChar*)L_50;
V_14 = (Il2CppChar*)L_51;
if ((((intptr_t)L_51) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0147;
}
}
{
int32_t L_52 = V_7;
V_7 = ((int32_t)((int32_t)L_52|(int32_t)1));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_53 = ___number2;
L_53->set_sign_5((bool)1);
Il2CppChar* L_54 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_54, (int32_t)2));
goto IL_019d;
}
IL_0147:
{
Il2CppChar L_55 = V_13;
if ((!(((uint32_t)L_55) == ((uint32_t)((int32_t)40)))))
{
goto IL_0168;
}
}
{
int32_t L_56 = ___options1;
if (!((int32_t)((int32_t)L_56&(int32_t)((int32_t)16))))
{
goto IL_0168;
}
}
{
int32_t L_57 = V_7;
if (((int32_t)((int32_t)L_57&(int32_t)1)))
{
goto IL_0168;
}
}
{
int32_t L_58 = V_7;
V_7 = ((int32_t)((int32_t)L_58|(int32_t)3));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_59 = ___number2;
L_59->set_sign_5((bool)1);
goto IL_019d;
}
IL_0168:
{
String_t* L_60 = V_2;
if (!L_60)
{
goto IL_017a;
}
}
{
Il2CppChar* L_61 = V_12;
String_t* L_62 = V_2;
Il2CppChar* L_63 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_61, L_62, /*hidden argument*/NULL);
Il2CppChar* L_64 = (Il2CppChar*)L_63;
V_14 = (Il2CppChar*)L_64;
if ((!(((uintptr_t)L_64) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_018c;
}
}
IL_017a:
{
String_t* L_65 = V_3;
if (!L_65)
{
goto IL_01ac;
}
}
{
Il2CppChar* L_66 = V_12;
String_t* L_67 = V_3;
Il2CppChar* L_68 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_66, L_67, /*hidden argument*/NULL);
Il2CppChar* L_69 = (Il2CppChar*)L_68;
V_14 = (Il2CppChar*)L_69;
if ((((intptr_t)L_69) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_01ac;
}
}
IL_018c:
{
int32_t L_70 = V_7;
V_7 = ((int32_t)((int32_t)L_70|(int32_t)((int32_t)32)));
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
Il2CppChar* L_71 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_71, (int32_t)2));
}
IL_019d:
{
Il2CppChar* L_72 = V_12;
Il2CppChar* L_73 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, (int32_t)2));
V_12 = (Il2CppChar*)L_73;
int32_t L_74 = *((uint16_t*)L_73);
V_13 = L_74;
goto IL_00ab;
}
IL_01ac:
{
V_15 = 0;
V_16 = 0;
}
IL_01b2:
{
Il2CppChar L_75 = V_13;
if ((((int32_t)L_75) < ((int32_t)((int32_t)48))))
{
goto IL_01be;
}
}
{
Il2CppChar L_76 = V_13;
if ((((int32_t)L_76) <= ((int32_t)((int32_t)57))))
{
goto IL_01e8;
}
}
IL_01be:
{
int32_t L_77 = ___options1;
if (!((int32_t)((int32_t)L_77&(int32_t)((int32_t)512))))
{
goto IL_0275;
}
}
{
Il2CppChar L_78 = V_13;
if ((((int32_t)L_78) < ((int32_t)((int32_t)97))))
{
goto IL_01d6;
}
}
{
Il2CppChar L_79 = V_13;
if ((((int32_t)L_79) <= ((int32_t)((int32_t)102))))
{
goto IL_01e8;
}
}
IL_01d6:
{
Il2CppChar L_80 = V_13;
if ((((int32_t)L_80) < ((int32_t)((int32_t)65))))
{
goto IL_0275;
}
}
{
Il2CppChar L_81 = V_13;
if ((((int32_t)L_81) > ((int32_t)((int32_t)70))))
{
goto IL_0275;
}
}
IL_01e8:
{
int32_t L_82 = V_7;
V_7 = ((int32_t)((int32_t)L_82|(int32_t)4));
Il2CppChar L_83 = V_13;
if ((!(((uint32_t)L_83) == ((uint32_t)((int32_t)48)))))
{
goto IL_01fd;
}
}
{
int32_t L_84 = V_7;
G_B48_0 = ((!(((uint32_t)((int32_t)((int32_t)L_84&(int32_t)8))) <= ((uint32_t)0)))? 1 : 0);
goto IL_01fe;
}
IL_01fd:
{
G_B48_0 = 1;
}
IL_01fe:
{
bool L_85 = V_10;
if (!((int32_t)((int32_t)G_B48_0|(int32_t)L_85)))
{
goto IL_025b;
}
}
{
int32_t L_86 = V_15;
int32_t L_87 = V_11;
if ((((int32_t)L_86) >= ((int32_t)L_87)))
{
goto IL_023e;
}
}
{
bool L_88 = V_9;
if (!L_88)
{
goto IL_0218;
}
}
{
StringBuilder_t * L_89 = ___sb3;
Il2CppChar L_90 = V_13;
NullCheck(L_89);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_89, L_90, /*hidden argument*/NULL);
goto IL_022c;
}
IL_0218:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_91 = ___number2;
Il2CppChar* L_92 = L_91->get_digits_2();
int32_t L_93 = V_15;
int32_t L_94 = L_93;
V_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_94, (int32_t)1));
Il2CppChar L_95 = V_13;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_94)), (int32_t)2))))) = (int16_t)L_95;
}
IL_022c:
{
Il2CppChar L_96 = V_13;
bool L_97 = ___parseDecimal5;
if (!((int32_t)((int32_t)((((int32_t)((((int32_t)L_96) == ((int32_t)((int32_t)48)))? 1 : 0)) == ((int32_t)0))? 1 : 0)|(int32_t)L_97)))
{
goto IL_023e;
}
}
{
int32_t L_98 = V_15;
V_16 = L_98;
}
IL_023e:
{
int32_t L_99 = V_7;
if (((int32_t)((int32_t)L_99&(int32_t)((int32_t)16))))
{
goto IL_0250;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_100 = ___number2;
int32_t* L_101 = L_100->get_address_of_scale_4();
int32_t* L_102 = L_101;
int32_t L_103 = *((int32_t*)L_102);
*((int32_t*)L_102) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_103, (int32_t)1));
}
IL_0250:
{
int32_t L_104 = V_7;
V_7 = ((int32_t)((int32_t)L_104|(int32_t)8));
goto IL_02fe;
}
IL_025b:
{
int32_t L_105 = V_7;
if (!((int32_t)((int32_t)L_105&(int32_t)((int32_t)16))))
{
goto IL_02fe;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_106 = ___number2;
int32_t* L_107 = L_106->get_address_of_scale_4();
int32_t* L_108 = L_107;
int32_t L_109 = *((int32_t*)L_108);
*((int32_t*)L_108) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_109, (int32_t)1));
goto IL_02fe;
}
IL_0275:
{
int32_t L_110 = ___options1;
if (!((int32_t)((int32_t)L_110&(int32_t)((int32_t)32))))
{
goto IL_02bb;
}
}
{
int32_t L_111 = V_7;
if (((int32_t)((int32_t)L_111&(int32_t)((int32_t)16))))
{
goto IL_02bb;
}
}
{
Il2CppChar* L_112 = V_12;
String_t* L_113 = V_0;
Il2CppChar* L_114 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_112, L_113, /*hidden argument*/NULL);
Il2CppChar* L_115 = (Il2CppChar*)L_114;
V_14 = (Il2CppChar*)L_115;
if ((!(((uintptr_t)L_115) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_02ac;
}
}
{
bool L_116 = V_6;
if (!L_116)
{
goto IL_02bb;
}
}
{
int32_t L_117 = V_7;
if (((int32_t)((int32_t)L_117&(int32_t)((int32_t)32))))
{
goto IL_02bb;
}
}
{
Il2CppChar* L_118 = V_12;
String_t* L_119 = V_4;
Il2CppChar* L_120 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_118, L_119, /*hidden argument*/NULL);
Il2CppChar* L_121 = (Il2CppChar*)L_120;
V_14 = (Il2CppChar*)L_121;
if ((((intptr_t)L_121) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_02bb;
}
}
IL_02ac:
{
int32_t L_122 = V_7;
V_7 = ((int32_t)((int32_t)L_122|(int32_t)((int32_t)16)));
Il2CppChar* L_123 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_123, (int32_t)2));
goto IL_02fe;
}
IL_02bb:
{
int32_t L_124 = ___options1;
if (!((int32_t)((int32_t)L_124&(int32_t)((int32_t)64))))
{
goto IL_030d;
}
}
{
int32_t L_125 = V_7;
if (!((int32_t)((int32_t)L_125&(int32_t)4)))
{
goto IL_030d;
}
}
{
int32_t L_126 = V_7;
if (((int32_t)((int32_t)L_126&(int32_t)((int32_t)16))))
{
goto IL_030d;
}
}
{
Il2CppChar* L_127 = V_12;
String_t* L_128 = V_1;
Il2CppChar* L_129 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_127, L_128, /*hidden argument*/NULL);
Il2CppChar* L_130 = (Il2CppChar*)L_129;
V_14 = (Il2CppChar*)L_130;
if ((!(((uintptr_t)L_130) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_02f8;
}
}
{
bool L_131 = V_6;
if (!L_131)
{
goto IL_030d;
}
}
{
int32_t L_132 = V_7;
if (((int32_t)((int32_t)L_132&(int32_t)((int32_t)32))))
{
goto IL_030d;
}
}
{
Il2CppChar* L_133 = V_12;
String_t* L_134 = V_5;
Il2CppChar* L_135 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_133, L_134, /*hidden argument*/NULL);
Il2CppChar* L_136 = (Il2CppChar*)L_135;
V_14 = (Il2CppChar*)L_136;
if ((((intptr_t)L_136) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_030d;
}
}
IL_02f8:
{
Il2CppChar* L_137 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_137, (int32_t)2));
}
IL_02fe:
{
Il2CppChar* L_138 = V_12;
Il2CppChar* L_139 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_138, (int32_t)2));
V_12 = (Il2CppChar*)L_139;
int32_t L_140 = *((uint16_t*)L_139);
V_13 = L_140;
goto IL_01b2;
}
IL_030d:
{
V_17 = (bool)0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_141 = ___number2;
int32_t L_142 = V_16;
L_141->set_precision_3(L_142);
bool L_143 = V_9;
if (!L_143)
{
goto IL_0326;
}
}
{
StringBuilder_t * L_144 = ___sb3;
NullCheck(L_144);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_144, 0, /*hidden argument*/NULL);
goto IL_0334;
}
IL_0326:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_145 = ___number2;
Il2CppChar* L_146 = L_145->get_digits_2();
int32_t L_147 = V_16;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_146, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_147)), (int32_t)2))))) = (int16_t)0;
}
IL_0334:
{
int32_t L_148 = V_7;
if (!((int32_t)((int32_t)L_148&(int32_t)4)))
{
goto IL_0512;
}
}
{
Il2CppChar L_149 = V_13;
if ((((int32_t)L_149) == ((int32_t)((int32_t)69))))
{
goto IL_034c;
}
}
{
Il2CppChar L_150 = V_13;
if ((!(((uint32_t)L_150) == ((uint32_t)((int32_t)101)))))
{
goto IL_041f;
}
}
IL_034c:
{
int32_t L_151 = ___options1;
if (!((int32_t)((int32_t)L_151&(int32_t)((int32_t)128))))
{
goto IL_041f;
}
}
{
Il2CppChar* L_152 = V_12;
V_18 = (Il2CppChar*)L_152;
Il2CppChar* L_153 = V_12;
Il2CppChar* L_154 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_153, (int32_t)2));
V_12 = (Il2CppChar*)L_154;
int32_t L_155 = *((uint16_t*)L_154);
V_13 = L_155;
Il2CppChar* L_156 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_157 = ___numfmt4;
NullCheck(L_157);
String_t* L_158 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747_inline(L_157, /*hidden argument*/NULL);
Il2CppChar* L_159 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_156, L_158, /*hidden argument*/NULL);
Il2CppChar* L_160 = (Il2CppChar*)L_159;
V_14 = (Il2CppChar*)L_160;
if ((((intptr_t)L_160) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0385;
}
}
{
Il2CppChar* L_161 = V_14;
Il2CppChar* L_162 = (Il2CppChar*)L_161;
V_12 = (Il2CppChar*)L_162;
int32_t L_163 = *((uint16_t*)L_162);
V_13 = L_163;
goto IL_03a5;
}
IL_0385:
{
Il2CppChar* L_164 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_165 = ___numfmt4;
NullCheck(L_165);
String_t* L_166 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_165, /*hidden argument*/NULL);
Il2CppChar* L_167 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_164, L_166, /*hidden argument*/NULL);
Il2CppChar* L_168 = (Il2CppChar*)L_167;
V_14 = (Il2CppChar*)L_168;
if ((((intptr_t)L_168) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_03a5;
}
}
{
Il2CppChar* L_169 = V_14;
Il2CppChar* L_170 = (Il2CppChar*)L_169;
V_12 = (Il2CppChar*)L_170;
int32_t L_171 = *((uint16_t*)L_170);
V_13 = L_171;
V_17 = (bool)1;
}
IL_03a5:
{
Il2CppChar L_172 = V_13;
if ((((int32_t)L_172) < ((int32_t)((int32_t)48))))
{
goto IL_0416;
}
}
{
Il2CppChar L_173 = V_13;
if ((((int32_t)L_173) > ((int32_t)((int32_t)57))))
{
goto IL_0416;
}
}
{
V_19 = 0;
}
IL_03b4:
{
int32_t L_174 = V_19;
Il2CppChar L_175 = V_13;
V_19 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_174, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_175, (int32_t)((int32_t)48)))));
Il2CppChar* L_176 = V_12;
Il2CppChar* L_177 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_176, (int32_t)2));
V_12 = (Il2CppChar*)L_177;
int32_t L_178 = *((uint16_t*)L_177);
V_13 = L_178;
int32_t L_179 = V_19;
if ((((int32_t)L_179) <= ((int32_t)((int32_t)1000))))
{
goto IL_03f3;
}
}
{
V_19 = ((int32_t)9999);
goto IL_03e7;
}
IL_03dd:
{
Il2CppChar* L_180 = V_12;
Il2CppChar* L_181 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_180, (int32_t)2));
V_12 = (Il2CppChar*)L_181;
int32_t L_182 = *((uint16_t*)L_181);
V_13 = L_182;
}
IL_03e7:
{
Il2CppChar L_183 = V_13;
if ((((int32_t)L_183) < ((int32_t)((int32_t)48))))
{
goto IL_03f3;
}
}
{
Il2CppChar L_184 = V_13;
if ((((int32_t)L_184) <= ((int32_t)((int32_t)57))))
{
goto IL_03dd;
}
}
IL_03f3:
{
Il2CppChar L_185 = V_13;
if ((((int32_t)L_185) < ((int32_t)((int32_t)48))))
{
goto IL_03ff;
}
}
{
Il2CppChar L_186 = V_13;
if ((((int32_t)L_186) <= ((int32_t)((int32_t)57))))
{
goto IL_03b4;
}
}
IL_03ff:
{
bool L_187 = V_17;
if (!L_187)
{
goto IL_0408;
}
}
{
int32_t L_188 = V_19;
V_19 = ((-L_188));
}
IL_0408:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_189 = ___number2;
int32_t* L_190 = L_189->get_address_of_scale_4();
int32_t* L_191 = L_190;
int32_t L_192 = *((int32_t*)L_191);
int32_t L_193 = V_19;
*((int32_t*)L_191) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_192, (int32_t)L_193));
goto IL_041f;
}
IL_0416:
{
Il2CppChar* L_194 = V_18;
V_12 = (Il2CppChar*)L_194;
Il2CppChar* L_195 = V_12;
int32_t L_196 = *((uint16_t*)L_195);
V_13 = L_196;
}
IL_041f:
{
Il2CppChar L_197 = V_13;
bool L_198 = Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700(L_197, /*hidden argument*/NULL);
if (!L_198)
{
goto IL_0430;
}
}
{
int32_t L_199 = ___options1;
if (((int32_t)((int32_t)L_199&(int32_t)2)))
{
goto IL_04d8;
}
}
IL_0430:
{
int32_t L_200 = ___options1;
if (!((int32_t)((int32_t)L_200&(int32_t)8)))
{
goto IL_043e;
}
}
{
int32_t L_201 = V_7;
G_B106_0 = ((((int32_t)((int32_t)((int32_t)L_201&(int32_t)1))) == ((int32_t)0))? 1 : 0);
goto IL_043f;
}
IL_043e:
{
G_B106_0 = 0;
}
IL_043f:
{
int32_t L_202 = G_B106_0;
V_8 = (bool)L_202;
if (!L_202)
{
goto IL_0467;
}
}
{
Il2CppChar* L_203 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_204 = ___numfmt4;
NullCheck(L_204);
String_t* L_205 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747_inline(L_204, /*hidden argument*/NULL);
Il2CppChar* L_206 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_203, L_205, /*hidden argument*/NULL);
Il2CppChar* L_207 = (Il2CppChar*)L_206;
V_14 = (Il2CppChar*)L_207;
if ((((intptr_t)L_207) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0467;
}
}
{
int32_t L_208 = V_7;
V_7 = ((int32_t)((int32_t)L_208|(int32_t)1));
Il2CppChar* L_209 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_209, (int32_t)2));
goto IL_04d8;
}
IL_0467:
{
bool L_210 = V_8;
if (!L_210)
{
goto IL_0495;
}
}
{
Il2CppChar* L_211 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_212 = ___numfmt4;
NullCheck(L_212);
String_t* L_213 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_212, /*hidden argument*/NULL);
Il2CppChar* L_214 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_211, L_213, /*hidden argument*/NULL);
Il2CppChar* L_215 = (Il2CppChar*)L_214;
V_14 = (Il2CppChar*)L_215;
if ((((intptr_t)L_215) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0495;
}
}
{
int32_t L_216 = V_7;
V_7 = ((int32_t)((int32_t)L_216|(int32_t)1));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_217 = ___number2;
L_217->set_sign_5((bool)1);
Il2CppChar* L_218 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_218, (int32_t)2));
goto IL_04d8;
}
IL_0495:
{
Il2CppChar L_219 = V_13;
if ((!(((uint32_t)L_219) == ((uint32_t)((int32_t)41)))))
{
goto IL_04aa;
}
}
{
int32_t L_220 = V_7;
if (!((int32_t)((int32_t)L_220&(int32_t)2)))
{
goto IL_04aa;
}
}
{
int32_t L_221 = V_7;
V_7 = ((int32_t)((int32_t)L_221&(int32_t)((int32_t)-3)));
goto IL_04d8;
}
IL_04aa:
{
String_t* L_222 = V_2;
if (!L_222)
{
goto IL_04bc;
}
}
{
Il2CppChar* L_223 = V_12;
String_t* L_224 = V_2;
Il2CppChar* L_225 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_223, L_224, /*hidden argument*/NULL);
Il2CppChar* L_226 = (Il2CppChar*)L_225;
V_14 = (Il2CppChar*)L_226;
if ((!(((uintptr_t)L_226) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_04ce;
}
}
IL_04bc:
{
String_t* L_227 = V_3;
if (!L_227)
{
goto IL_04e7;
}
}
{
Il2CppChar* L_228 = V_12;
String_t* L_229 = V_3;
Il2CppChar* L_230 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_228, L_229, /*hidden argument*/NULL);
Il2CppChar* L_231 = (Il2CppChar*)L_230;
V_14 = (Il2CppChar*)L_231;
if ((((intptr_t)L_231) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_04e7;
}
}
IL_04ce:
{
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
Il2CppChar* L_232 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_232, (int32_t)2));
}
IL_04d8:
{
Il2CppChar* L_233 = V_12;
Il2CppChar* L_234 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_233, (int32_t)2));
V_12 = (Il2CppChar*)L_234;
int32_t L_235 = *((uint16_t*)L_234);
V_13 = L_235;
goto IL_041f;
}
IL_04e7:
{
int32_t L_236 = V_7;
if (((int32_t)((int32_t)L_236&(int32_t)2)))
{
goto IL_0512;
}
}
{
int32_t L_237 = V_7;
if (((int32_t)((int32_t)L_237&(int32_t)8)))
{
goto IL_050c;
}
}
{
bool L_238 = ___parseDecimal5;
if (L_238)
{
goto IL_04fe;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_239 = ___number2;
L_239->set_scale_4(0);
}
IL_04fe:
{
int32_t L_240 = V_7;
if (((int32_t)((int32_t)L_240&(int32_t)((int32_t)16))))
{
goto IL_050c;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_241 = ___number2;
L_241->set_sign_5((bool)0);
}
IL_050c:
{
Il2CppChar** L_242 = ___str0;
Il2CppChar* L_243 = V_12;
*((intptr_t*)L_242) = (intptr_t)L_243;
return (bool)1;
}
IL_0512:
{
Il2CppChar** L_244 = ___str0;
Il2CppChar* L_245 = V_12;
*((intptr_t*)L_244) = (intptr_t)L_245;
return (bool)0;
}
}
// System.Single System.Number::ParseSingle(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
double V_2 = 0.0;
String_t* V_3 = NULL;
float G_B14_0 = 0.0f;
float G_B13_0 = 0.0f;
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_000e:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_2 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_3 = (int8_t*) alloca((((uintptr_t)L_2)));
memset(L_3, 0, (((uintptr_t)L_2)));
V_0 = (uint8_t*)(L_3);
uint8_t* L_4 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_4, /*hidden argument*/NULL);
V_2 = (0.0);
String_t* L_5 = ___value0;
int32_t L_6 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___numfmt2;
bool L_8 = Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7(L_5, L_6, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_7, (bool)0, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0089;
}
}
{
String_t* L_9 = ___value0;
NullCheck(L_9);
String_t* L_10 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_9, /*hidden argument*/NULL);
V_3 = L_10;
String_t* L_11 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___numfmt2;
NullCheck(L_12);
String_t* L_13 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A_inline(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_14 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_11, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0051;
}
}
{
return (std::numeric_limits<float>::infinity());
}
IL_0051:
{
String_t* L_15 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___numfmt2;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8_inline(L_16, /*hidden argument*/NULL);
NullCheck(L_15);
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0065;
}
}
{
return (-std::numeric_limits<float>::infinity());
}
IL_0065:
{
String_t* L_19 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_20 = ___numfmt2;
NullCheck(L_20);
String_t* L_21 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E_inline(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
bool L_22 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_19, L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0079;
}
}
{
return (std::numeric_limits<float>::quiet_NaN());
}
IL_0079:
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_24 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_0089:
{
uint8_t* L_25 = NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), /*hidden argument*/NULL);
bool L_26 = Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D((uint8_t*)(uint8_t*)L_25, (double*)(&V_2), /*hidden argument*/NULL);
if (L_26)
{
goto IL_00a9;
}
}
{
String_t* L_27 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAC231C16BB6DC0735FDE11475AE90E9439B40BC1, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_28 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_00a9:
{
double L_29 = V_2;
float L_30 = (((float)((float)(float)L_29)));
bool L_31 = Single_IsInfinity_m811B198540AB538C4FE145F7C0303C4AD772988B(L_30, /*hidden argument*/NULL);
G_B13_0 = L_30;
if (!L_31)
{
G_B14_0 = L_30;
goto IL_00c3;
}
}
{
String_t* L_32 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAC231C16BB6DC0735FDE11475AE90E9439B40BC1, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_33 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_33, L_32, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_00c3:
{
return G_B14_0;
}
}
// System.UInt32 System.Number::ParseUInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
uint32_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1, 0, (((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = 0;
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___options1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0042;
}
}
{
bool L_7 = Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint32_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005d;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_RuntimeMethod_var);
}
IL_0042:
{
bool L_10 = Number_NumberToUInt32_m60BDF4513A1673F8F993CAA12CA865FD4294308F((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint32_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_RuntimeMethod_var);
}
IL_005d:
{
uint32_t L_13 = V_2;
return L_13;
}
}
// System.UInt64 System.Number::ParseUInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
uint64_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1, 0, (((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = (((int64_t)((int64_t)0)));
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___options1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0043;
}
}
{
bool L_7 = Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint64_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005e;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_RuntimeMethod_var);
}
IL_0043:
{
bool L_10 = Number_NumberToUInt64_m4F1E853E52800DA97846B99A6989596F310501C0((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint64_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005e;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_RuntimeMethod_var);
}
IL_005e:
{
uint64_t L_13 = V_2;
return L_13;
}
}
// System.Void System.Number::StringToNumber(System.String,System.Globalization.NumberStyles,System.Number_NumberBuffer&,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info3, bool ___parseDecimal4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___str0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral3DF63B7ACB0522DA685DAD5FE84B81FDD7B25264, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___str0;
V_1 = L_2;
String_t* L_3 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_3));
Il2CppChar* L_4 = V_0;
if (!L_4)
{
goto IL_001e;
}
}
{
Il2CppChar* L_5 = V_0;
int32_t L_6 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6));
}
IL_001e:
{
Il2CppChar* L_7 = V_0;
V_2 = (Il2CppChar*)L_7;
int32_t L_8 = ___options1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_9 = ___number2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___info3;
bool L_11 = ___parseDecimal4;
bool L_12 = Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241((Il2CppChar**)(&V_2), L_8, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_9, (StringBuilder_t *)NULL, L_10, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_004d;
}
}
{
Il2CppChar* L_13 = V_2;
Il2CppChar* L_14 = V_0;
String_t* L_15 = ___str0;
NullCheck(L_15);
int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_15, /*hidden argument*/NULL);
if ((((int64_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_13, (intptr_t)L_14))/(int32_t)2)))))) >= ((int64_t)(((int64_t)((int64_t)L_16))))))
{
goto IL_005d;
}
}
{
String_t* L_17 = ___str0;
Il2CppChar* L_18 = V_2;
Il2CppChar* L_19 = V_0;
bool L_20 = Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F(L_17, (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_18, (intptr_t)L_19))/(int32_t)2)))))))), /*hidden argument*/NULL);
if (L_20)
{
goto IL_005d;
}
}
IL_004d:
{
String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_22 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_22, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_RuntimeMethod_var);
}
IL_005d:
{
V_1 = (String_t*)NULL;
return;
}
}
// System.Boolean System.Number::TrailingZeros(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___index1;
V_0 = L_0;
goto IL_0013;
}
IL_0004:
{
String_t* L_1 = ___s0;
int32_t L_2 = V_0;
NullCheck(L_1);
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
}
IL_0013:
{
int32_t L_5 = V_0;
String_t* L_6 = ___s0;
NullCheck(L_6);
int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_5) < ((int32_t)L_7)))
{
goto IL_0004;
}
}
{
return (bool)1;
}
}
// System.Boolean System.Number::TryParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, int32_t* ___result3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1, 0, (((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
int32_t* L_3 = ___result3;
*((int32_t*)L_3) = (int32_t)0;
String_t* L_4 = ___s0;
int32_t L_5 = ___style1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_6 = ___info2;
bool L_7 = Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7(L_4, L_5, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_6, (bool)0, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0023;
}
}
{
return (bool)0;
}
IL_0023:
{
int32_t L_8 = ___style1;
if (!((int32_t)((int32_t)L_8&(int32_t)((int32_t)512))))
{
goto IL_0038;
}
}
{
int32_t* L_9 = ___result3;
bool L_10 = Number_HexNumberToInt32_m9229BEC2774D0AC4211B2D01CDD18EB1FB5DDDD7((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int32_t*)L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0044;
}
}
{
return (bool)0;
}
IL_0038:
{
int32_t* L_11 = ___result3;
bool L_12 = Number_NumberToInt32_m21C6C8AB448D962C7658840F3C511835089D26E6((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int32_t*)L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0044;
}
}
{
return (bool)0;
}
IL_0044:
{
return (bool)1;
}
}
// System.Boolean System.Number::TryParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, int64_t* ___result3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset((&V_1), 0, sizeof(V_1));
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1, 0, (((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
int64_t* L_3 = ___result3;
*((int64_t*)L_3) = (int64_t)(((int64_t)((int64_t)0)));
String_t* L_4 = ___s0;
int32_t L_5 = ___style1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_6 = ___info2;
bool L_7 = Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7(L_4, L_5, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_6, (bool)0, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0024;
}
}
{
return (bool)0;
}
IL_0024:
{
int32_t L_8 = ___style1;
if (!((int32_t)((int32_t)L_8&(int32_t)((int32_t)512))))
{
goto IL_0039;
}
}
{
int64_t* L_9 = ___result3;
bool L_10 = Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0045;
}
}
{
return (bool)0;
}
IL_0039:
{
int64_t* L_11 = ___result3;
bool L_12 = Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0045;
}
}
{
return (bool)0;
}
IL_0045:
{
return (bool)1;
}
}
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number_NumberBuffer&,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7 (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt3, bool ___parseDecimal4, const RuntimeMethod* method)
{
{
String_t* L_0 = ___str0;
int32_t L_1 = ___options1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_2 = ___number2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___numfmt3;
bool L_4 = ___parseDecimal4;
bool L_5 = Number_TryStringToNumber_m515B5B64EE9D50013D45179933663F00752A2DEC(L_0, L_1, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_2, (StringBuilder_t *)NULL, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number_NumberBuffer&,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_m515B5B64EE9D50013D45179933663F00752A2DEC (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___str0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
String_t* L_1 = ___str0;
V_1 = L_1;
String_t* L_2 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_2));
Il2CppChar* L_3 = V_0;
if (!L_3)
{
goto IL_0015;
}
}
{
Il2CppChar* L_4 = V_0;
int32_t L_5 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)L_5));
}
IL_0015:
{
Il2CppChar* L_6 = V_0;
V_2 = (Il2CppChar*)L_6;
int32_t L_7 = ___options1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_8 = ___number2;
StringBuilder_t * L_9 = ___sb3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___numfmt4;
bool L_11 = ___parseDecimal5;
bool L_12 = Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241((Il2CppChar**)(&V_2), L_7, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_8, L_9, L_10, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0045;
}
}
{
Il2CppChar* L_13 = V_2;
Il2CppChar* L_14 = V_0;
String_t* L_15 = ___str0;
NullCheck(L_15);
int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_15, /*hidden argument*/NULL);
if ((((int64_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_13, (intptr_t)L_14))/(int32_t)2)))))) >= ((int64_t)(((int64_t)((int64_t)L_16))))))
{
goto IL_0047;
}
}
{
String_t* L_17 = ___str0;
Il2CppChar* L_18 = V_2;
Il2CppChar* L_19 = V_0;
bool L_20 = Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F(L_17, (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_18, (intptr_t)L_19))/(int32_t)2)))))))), /*hidden argument*/NULL);
if (L_20)
{
goto IL_0047;
}
}
IL_0045:
{
return (bool)0;
}
IL_0047:
{
V_1 = (String_t*)NULL;
return (bool)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
// Conversion methods for marshalling of: System.Number/NumberBuffer
IL2CPP_EXTERN_C void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_pinvoke(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke& marshaled)
{
marshaled.___baseAddress_1 = unmarshaled.get_baseAddress_1();
marshaled.___digits_2 = unmarshaled.get_digits_2();
marshaled.___precision_3 = unmarshaled.get_precision_3();
marshaled.___scale_4 = unmarshaled.get_scale_4();
marshaled.___sign_5 = static_cast<int32_t>(unmarshaled.get_sign_5());
}
IL2CPP_EXTERN_C void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_pinvoke_back(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke& marshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled)
{
unmarshaled.set_baseAddress_1(marshaled.___baseAddress_1);
unmarshaled.set_digits_2(marshaled.___digits_2);
int32_t unmarshaled_precision_temp_2 = 0;
unmarshaled_precision_temp_2 = marshaled.___precision_3;
unmarshaled.set_precision_3(unmarshaled_precision_temp_2);
int32_t unmarshaled_scale_temp_3 = 0;
unmarshaled_scale_temp_3 = marshaled.___scale_4;
unmarshaled.set_scale_4(unmarshaled_scale_temp_3);
bool unmarshaled_sign_temp_4 = false;
unmarshaled_sign_temp_4 = static_cast<bool>(marshaled.___sign_5);
unmarshaled.set_sign_5(unmarshaled_sign_temp_4);
}
// Conversion method for clean up from marshalling of: System.Number/NumberBuffer
IL2CPP_EXTERN_C void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_pinvoke_cleanup(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Number/NumberBuffer
IL2CPP_EXTERN_C void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_com(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com& marshaled)
{
marshaled.___baseAddress_1 = unmarshaled.get_baseAddress_1();
marshaled.___digits_2 = unmarshaled.get_digits_2();
marshaled.___precision_3 = unmarshaled.get_precision_3();
marshaled.___scale_4 = unmarshaled.get_scale_4();
marshaled.___sign_5 = static_cast<int32_t>(unmarshaled.get_sign_5());
}
IL2CPP_EXTERN_C void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_com_back(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com& marshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled)
{
unmarshaled.set_baseAddress_1(marshaled.___baseAddress_1);
unmarshaled.set_digits_2(marshaled.___digits_2);
int32_t unmarshaled_precision_temp_2 = 0;
unmarshaled_precision_temp_2 = marshaled.___precision_3;
unmarshaled.set_precision_3(unmarshaled_precision_temp_2);
int32_t unmarshaled_scale_temp_3 = 0;
unmarshaled_scale_temp_3 = marshaled.___scale_4;
unmarshaled.set_scale_4(unmarshaled_scale_temp_3);
bool unmarshaled_sign_temp_4 = false;
unmarshaled_sign_temp_4 = static_cast<bool>(marshaled.___sign_5);
unmarshaled.set_sign_5(unmarshaled_sign_temp_4);
}
// Conversion method for clean up from marshalling of: System.Number/NumberBuffer
IL2CPP_EXTERN_C void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_com_cleanup(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com& marshaled)
{
}
// System.Void System.Number_NumberBuffer::.ctor(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, uint8_t* ___stackBuffer0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___stackBuffer0;
__this->set_baseAddress_1((uint8_t*)L_0);
uint8_t* L_1 = ___stackBuffer0;
__this->set_digits_2((Il2CppChar*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)6)), (int32_t)2)))));
__this->set_precision_3(0);
__this->set_scale_4(0);
__this->set_sign_5((bool)0);
return;
}
}
IL2CPP_EXTERN_C void NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E_AdjustorThunk (RuntimeObject * __this, uint8_t* ___stackBuffer0, const RuntimeMethod* method)
{
int32_t _offset = 1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * _thisAdjusted = reinterpret_cast<NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *>(__this + _offset);
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E(_thisAdjusted, ___stackBuffer0, method);
}
// System.Byte* System.Number_NumberBuffer::PackForNative()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, const RuntimeMethod* method)
{
int32_t* V_0 = NULL;
int32_t* G_B2_0 = NULL;
int32_t* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
int32_t* G_B3_1 = NULL;
{
uint8_t* L_0 = __this->get_baseAddress_1();
V_0 = (int32_t*)L_0;
int32_t* L_1 = V_0;
int32_t L_2 = __this->get_precision_3();
*((int32_t*)L_1) = (int32_t)L_2;
int32_t* L_3 = V_0;
int32_t L_4 = __this->get_scale_4();
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)4))) = (int32_t)L_4;
int32_t* L_5 = V_0;
bool L_6 = __this->get_sign_5();
G_B1_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))));
if (L_6)
{
G_B2_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))));
goto IL_002a;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_002b;
}
IL_002a:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_002b:
{
*((int32_t*)G_B3_1) = (int32_t)G_B3_0;
uint8_t* L_7 = __this->get_baseAddress_1();
return (uint8_t*)(L_7);
}
}
IL2CPP_EXTERN_C uint8_t* NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * _thisAdjusted = reinterpret_cast<NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *>(__this + _offset);
return NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640(_thisAdjusted, method);
}
// System.Void System.Number_NumberBuffer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberBuffer__cctor_mB263774D1C650BD48E32AC15403F941154721DCE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberBuffer__cctor_mB263774D1C650BD48E32AC15403F941154721DCE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL);
((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->set_NumberBufferBytes_0(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)114), (int32_t)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.NumberFormatter::GetFormatterTables(System.UInt64*&,System.Int32*&,System.Char*&,System.Char*&,System.Int64*&,System.Int32*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE (uint64_t** ___MantissaBitsTable0, int32_t** ___TensExponentTable1, Il2CppChar** ___DigitLowerTable2, Il2CppChar** ___DigitUpperTable3, int64_t** ___TenPowersList4, int32_t** ___DecHexDigits5, const RuntimeMethod* method)
{
typedef void (*NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE_ftn) (uint64_t**, int32_t**, Il2CppChar**, Il2CppChar**, int64_t**, int32_t**);
using namespace il2cpp::icalls;
((NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE_ftn)mscorlib::System::NumberFormatter::GetFormatterTables) (___MantissaBitsTable0, ___TensExponentTable1, ___DigitLowerTable2, ___DigitUpperTable3, ___TenPowersList4, ___DecHexDigits5);
}
// System.Void System.NumberFormatter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter__cctor_m4742B866AF2C274FEE807160C61B979ADB071A2C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter__cctor_m4742B866AF2C274FEE807160C61B979ADB071A2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE((uint64_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_MantissaBitsTable_0()), (int32_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_TensExponentTable_1()), (Il2CppChar**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_DigitLowerTable_2()), (Il2CppChar**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_DigitUpperTable_3()), (int64_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_TenPowersList_4()), (int32_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_DecHexDigits_5()), /*hidden argument*/NULL);
return;
}
}
// System.Int64 System.NumberFormatter::GetTenPowerOf(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C (int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t* L_0 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_TenPowersList_4();
int32_t L_1 = ___i0;
int64_t L_2 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)8)))));
return L_2;
}
}
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
uint32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) >= ((uint32_t)((int32_t)100000000)))))
{
goto IL_0027;
}
}
{
uint32_t L_1 = ___value0;
V_0 = ((int32_t)((uint32_t)(int32_t)L_1/(uint32_t)(int32_t)((int32_t)100000000)));
uint32_t L_2 = ___value0;
int32_t L_3 = V_0;
___value0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)100000000), (int32_t)L_3))));
int32_t L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_5 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_4, /*hidden argument*/NULL);
__this->set__val2_20(L_5);
}
IL_0027:
{
uint32_t L_6 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_7 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D(L_6, /*hidden argument*/NULL);
__this->set__val1_19(L_7);
return;
}
}
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) >= ((uint64_t)(((int64_t)((int64_t)((int32_t)100000000))))))))
{
goto IL_0059;
}
}
{
uint64_t L_1 = ___value0;
V_0 = ((int64_t)((uint64_t)(int64_t)L_1/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_2 = ___value0;
int64_t L_3 = V_0;
___value0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_2, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)((int32_t)100000000)))), (int64_t)L_3))));
int64_t L_4 = V_0;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)((int32_t)100000000)))))))
{
goto IL_0049;
}
}
{
int64_t L_5 = V_0;
V_1 = (((int32_t)((int32_t)((int64_t)((int64_t)L_5/(int64_t)(((int64_t)((int64_t)((int32_t)100000000)))))))));
int64_t L_6 = V_0;
int32_t L_7 = V_1;
V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_6, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_7))), (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
int32_t L_8 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_9 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D(L_8, /*hidden argument*/NULL);
__this->set__val3_21(L_9);
}
IL_0049:
{
int64_t L_10 = V_0;
if (!L_10)
{
goto IL_0059;
}
}
{
int64_t L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_12 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_11))), /*hidden argument*/NULL);
__this->set__val2_20(L_12);
}
IL_0059:
{
uint64_t L_13 = ___value0;
if (!L_13)
{
goto IL_0069;
}
}
{
uint64_t L_14 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_15 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_14))), /*hidden argument*/NULL);
__this->set__val1_19(L_15);
}
IL_0069:
{
return;
}
}
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___hi0, uint64_t ___lo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint64_t V_1 = 0;
uint64_t V_2 = 0;
uint64_t V_3 = 0;
{
uint32_t L_0 = ___hi0;
if (L_0)
{
goto IL_000b;
}
}
{
uint64_t L_1 = ___lo1;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_1, /*hidden argument*/NULL);
return;
}
IL_000b:
{
uint32_t L_2 = ___hi0;
V_0 = ((int32_t)((uint32_t)(int32_t)L_2/(uint32_t)(int32_t)((int32_t)100000000)));
uint32_t L_3 = ___hi0;
uint32_t L_4 = V_0;
V_1 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)((int32_t)100000000)))))))))));
uint64_t L_5 = ___lo1;
V_2 = ((int64_t)((uint64_t)(int64_t)L_5/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_6 = ___lo1;
uint64_t L_7 = V_2;
uint64_t L_8 = V_1;
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_6, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_7, (int64_t)(((int64_t)((int64_t)((int32_t)100000000)))))))), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_8, (int64_t)(((int64_t)((int64_t)((int32_t)9551616))))))));
uint32_t L_9 = V_0;
___hi0 = L_9;
uint64_t L_10 = V_2;
uint64_t L_11 = V_1;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_10, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_11, (int64_t)((int64_t)184467440737LL)))));
uint64_t L_12 = V_3;
V_2 = ((int64_t)((uint64_t)(int64_t)L_12/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_13 = V_3;
uint64_t L_14 = V_2;
V_3 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_13, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_14, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
uint64_t L_15 = ___lo1;
uint64_t L_16 = V_2;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_15, (int64_t)L_16));
uint64_t L_17 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_18 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_17))), /*hidden argument*/NULL);
__this->set__val1_19(L_18);
uint64_t L_19 = ___lo1;
V_2 = ((int64_t)((uint64_t)(int64_t)L_19/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_20 = ___lo1;
uint64_t L_21 = V_2;
V_3 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_20, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_21, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
uint64_t L_22 = V_2;
___lo1 = L_22;
uint32_t L_23 = ___hi0;
if (!L_23)
{
goto IL_00c2;
}
}
{
uint64_t L_24 = ___lo1;
uint32_t L_25 = ___hi0;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_24, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_25))), (int64_t)((int64_t)184467440737LL)))));
uint64_t L_26 = V_3;
uint32_t L_27 = ___hi0;
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_26, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_27))), (int64_t)(((int64_t)((int64_t)((int32_t)9551616))))))));
uint64_t L_28 = V_3;
V_2 = ((int64_t)((uint64_t)(int64_t)L_28/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_29 = ___lo1;
uint64_t L_30 = V_2;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_29, (int64_t)L_30));
uint64_t L_31 = V_3;
uint64_t L_32 = V_2;
V_3 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_31, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_32, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
}
IL_00c2:
{
uint64_t L_33 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_34 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_33))), /*hidden argument*/NULL);
__this->set__val2_20(L_34);
uint64_t L_35 = ___lo1;
if ((!(((uint64_t)L_35) >= ((uint64_t)(((int64_t)((int64_t)((int32_t)100000000))))))))
{
goto IL_00fa;
}
}
{
uint64_t L_36 = ___lo1;
V_2 = ((int64_t)((uint64_t)(int64_t)L_36/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_37 = ___lo1;
uint64_t L_38 = V_2;
___lo1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_37, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_38, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
uint64_t L_39 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_40 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_39))), /*hidden argument*/NULL);
__this->set__val4_22(L_40);
}
IL_00fa:
{
uint64_t L_41 = ___lo1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_42 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_41))), /*hidden argument*/NULL);
__this->set__val3_21(L_42);
return;
}
}
// System.UInt32 System.NumberFormatter::FastToDecHex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F (int32_t ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___val0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)100))))
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t* L_1 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DecHexDigits_5();
int32_t L_2 = ___val0;
int32_t L_3 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_1, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_2)), (int32_t)4)))));
return L_3;
}
IL_0011:
{
int32_t L_4 = ___val0;
V_0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)((int32_t)5243)))>>(int32_t)((int32_t)19)));
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t* L_5 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DecHexDigits_5();
int32_t L_6 = V_0;
int32_t L_7 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_6)), (int32_t)4)))));
int32_t* L_8 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DecHexDigits_5();
int32_t L_9 = ___val0;
int32_t L_10 = V_0;
int32_t L_11 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)((int32_t)100))))))), (int32_t)4)))));
return ((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)8))|(int32_t)L_11));
}
}
// System.UInt32 System.NumberFormatter::ToDecHex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D (int32_t ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
int32_t L_0 = ___val0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)10000))))
{
goto IL_0027;
}
}
{
int32_t L_1 = ___val0;
V_1 = ((int32_t)((int32_t)L_1/(int32_t)((int32_t)10000)));
int32_t L_2 = ___val0;
int32_t L_3 = V_1;
___val0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)((int32_t)10000)))));
int32_t L_4 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_5 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_4, /*hidden argument*/NULL);
V_0 = ((int32_t)((int32_t)L_5<<(int32_t)((int32_t)16)));
}
IL_0027:
{
uint32_t L_6 = V_0;
int32_t L_7 = ___val0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_8 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_7, /*hidden argument*/NULL);
return ((int32_t)((int32_t)L_6|(int32_t)L_8));
}
}
// System.Int32 System.NumberFormatter::FastDecHexLen(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4 (int32_t ___val0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___val0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)256))))
{
goto IL_0011;
}
}
{
int32_t L_1 = ___val0;
if ((((int32_t)L_1) >= ((int32_t)((int32_t)16))))
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
return 2;
}
IL_0011:
{
int32_t L_2 = ___val0;
if ((((int32_t)L_2) >= ((int32_t)((int32_t)4096))))
{
goto IL_001b;
}
}
{
return 3;
}
IL_001b:
{
return 4;
}
}
// System.Int32 System.NumberFormatter::DecHexLen(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579 (uint32_t ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___val0;
if ((!(((uint32_t)L_0) < ((uint32_t)((int32_t)65536)))))
{
goto IL_000f;
}
}
{
uint32_t L_1 = ___val0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_2 = NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_000f:
{
uint32_t L_3 = ___val0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_4 = NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4(((int32_t)((uint32_t)L_3>>((int32_t)16))), /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_4));
}
}
// System.Int32 System.NumberFormatter::DecHexLen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = __this->get__val4_22();
if (!L_0)
{
goto IL_0017;
}
}
{
uint32_t L_1 = __this->get__val4_22();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_2 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_1, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)24)));
}
IL_0017:
{
uint32_t L_3 = __this->get__val3_21();
if (!L_3)
{
goto IL_002e;
}
}
{
uint32_t L_4 = __this->get__val3_21();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_5 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_4, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)((int32_t)16)));
}
IL_002e:
{
uint32_t L_6 = __this->get__val2_20();
if (!L_6)
{
goto IL_0044;
}
}
{
uint32_t L_7 = __this->get__val2_20();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_8 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_7, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)8));
}
IL_0044:
{
uint32_t L_9 = __this->get__val1_19();
if (!L_9)
{
goto IL_0058;
}
}
{
uint32_t L_10 = __this->get__val1_19();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_11 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0058:
{
return 0;
}
}
// System.Int32 System.NumberFormatter::ScaleOrder(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2 (int64_t ___hi0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = ((int32_t)18);
goto IL_0016;
}
IL_0005:
{
int64_t L_0 = ___hi0;
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_2 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_1, /*hidden argument*/NULL);
if ((((int64_t)L_0) < ((int64_t)L_2)))
{
goto IL_0012;
}
}
{
int32_t L_3 = V_0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0012:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
}
IL_0016:
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0005;
}
}
{
return 1;
}
}
// System.Int32 System.NumberFormatter::InitialFloatingPrecision()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = __this->get__specifier_13();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)82)))))
{
goto IL_0013;
}
}
{
int32_t L_1 = __this->get__defPrecision_15();
return ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)2));
}
IL_0013:
{
int32_t L_2 = __this->get__precision_14();
int32_t L_3 = __this->get__defPrecision_15();
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_0028;
}
}
{
int32_t L_4 = __this->get__defPrecision_15();
return L_4;
}
IL_0028:
{
Il2CppChar L_5 = __this->get__specifier_13();
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)71)))))
{
goto IL_0046;
}
}
{
int32_t L_6 = __this->get__defPrecision_15();
int32_t L_7 = __this->get__precision_14();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_8 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)2)), L_7, /*hidden argument*/NULL);
return L_8;
}
IL_0046:
{
Il2CppChar L_9 = __this->get__specifier_13();
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)69)))))
{
goto IL_0066;
}
}
{
int32_t L_10 = __this->get__defPrecision_15();
int32_t L_11 = __this->get__precision_14();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_12 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)2)), ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL);
return L_12;
}
IL_0066:
{
int32_t L_13 = __this->get__defPrecision_15();
return L_13;
}
}
// System.Int32 System.NumberFormatter::ParsePrecision(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_ParsePrecision_m333DE08D2CE6C38EBCEF7D7B94D18CDC3224154C (String_t* ___format0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
V_0 = 0;
V_1 = 1;
goto IL_002d;
}
IL_0006:
{
String_t* L_0 = ___format0;
int32_t L_1 = V_1;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)48)));
int32_t L_3 = V_0;
int32_t L_4 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)((int32_t)10))), (int32_t)L_4));
int32_t L_5 = V_2;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0026;
}
}
{
int32_t L_6 = V_2;
if ((((int32_t)L_6) > ((int32_t)((int32_t)9))))
{
goto IL_0026;
}
}
{
int32_t L_7 = V_0;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)99))))
{
goto IL_0029;
}
}
IL_0026:
{
return ((int32_t)-2);
}
IL_0029:
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002d:
{
int32_t L_9 = V_1;
String_t* L_10 = ___format0;
NullCheck(L_10);
int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0006;
}
}
{
int32_t L_12 = V_0;
return L_12;
}
}
// System.Void System.NumberFormatter::.ctor(System.Threading.Thread)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ((EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var))->get_Value_0();
__this->set__cbuf_7(L_0);
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_1 = ___current0;
if (L_1)
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_2 = ___current0;
NullCheck(L_2);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66(L_2, /*hidden argument*/NULL);
NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964(__this, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
uint32_t V_1 = 0;
bool V_2 = false;
{
int32_t L_0 = 0;
V_1 = L_0;
__this->set__val4_22(L_0);
uint32_t L_1 = V_1;
uint32_t L_2 = L_1;
V_1 = L_2;
__this->set__val3_21(L_2);
uint32_t L_3 = V_1;
uint32_t L_4 = L_3;
V_1 = L_4;
__this->set__val2_20(L_4);
uint32_t L_5 = V_1;
__this->set__val1_19(L_5);
__this->set__offset_17(0);
int32_t L_6 = 0;
V_2 = (bool)L_6;
__this->set__infinity_9((bool)L_6);
bool L_7 = V_2;
__this->set__NaN_8(L_7);
__this->set__isCustomFormat_10((bool)0);
__this->set__specifierIsUpper_11((bool)1);
__this->set__precision_14((-1));
String_t* L_8 = ___format0;
if (!L_8)
{
goto IL_0059;
}
}
{
String_t* L_9 = ___format0;
NullCheck(L_9);
int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0062;
}
}
IL_0059:
{
__this->set__specifier_13(((int32_t)71));
return;
}
IL_0062:
{
String_t* L_11 = ___format0;
NullCheck(L_11);
Il2CppChar L_12 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_11, 0, /*hidden argument*/NULL);
V_0 = L_12;
Il2CppChar L_13 = V_0;
if ((((int32_t)L_13) < ((int32_t)((int32_t)97))))
{
goto IL_0086;
}
}
{
Il2CppChar L_14 = V_0;
if ((((int32_t)L_14) > ((int32_t)((int32_t)122))))
{
goto IL_0086;
}
}
{
Il2CppChar L_15 = V_0;
V_0 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)97))), (int32_t)((int32_t)65))))));
__this->set__specifierIsUpper_11((bool)0);
goto IL_00a0;
}
IL_0086:
{
Il2CppChar L_16 = V_0;
if ((((int32_t)L_16) < ((int32_t)((int32_t)65))))
{
goto IL_0090;
}
}
{
Il2CppChar L_17 = V_0;
if ((((int32_t)L_17) <= ((int32_t)((int32_t)90))))
{
goto IL_00a0;
}
}
IL_0090:
{
__this->set__isCustomFormat_10((bool)1);
__this->set__specifier_13(((int32_t)48));
return;
}
IL_00a0:
{
Il2CppChar L_18 = V_0;
__this->set__specifier_13(L_18);
String_t* L_19 = ___format0;
NullCheck(L_19);
int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_19, /*hidden argument*/NULL);
if ((((int32_t)L_20) <= ((int32_t)1)))
{
goto IL_00dc;
}
}
{
String_t* L_21 = ___format0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_22 = NumberFormatter_ParsePrecision_m333DE08D2CE6C38EBCEF7D7B94D18CDC3224154C(L_21, /*hidden argument*/NULL);
__this->set__precision_14(L_22);
int32_t L_23 = __this->get__precision_14();
if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)-2)))))
{
goto IL_00dc;
}
}
{
__this->set__isCustomFormat_10((bool)1);
__this->set__specifier_13(((int32_t)48));
__this->set__precision_14((-1));
}
IL_00dc:
{
return;
}
}
// System.Void System.NumberFormatter::InitHex(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get__defPrecision_15();
V_0 = L_0;
int32_t L_1 = V_0;
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)10)))))
{
goto IL_0011;
}
}
{
uint64_t L_2 = ___value0;
___value0 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint32_t)L_2)))))))));
}
IL_0011:
{
uint64_t L_3 = ___value0;
__this->set__val1_19((((int32_t)((uint32_t)L_3))));
uint64_t L_4 = ___value0;
__this->set__val2_20((((int32_t)((uint32_t)((int64_t)((uint64_t)L_4>>((int32_t)32)))))));
int32_t L_5 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_6 = L_5;
V_0 = L_6;
__this->set__digitsLen_16(L_6);
int32_t L_7 = V_0;
__this->set__decPointPos_18(L_7);
uint64_t L_8 = ___value0;
if (L_8)
{
goto IL_0043;
}
}
{
__this->set__decPointPos_18(1);
}
IL_0043:
{
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_m7D7CC10DDA255BB0023BD72A0C91F09AD729BE2E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___defPrecision2;
__this->set__defPrecision_15(L_1);
int32_t L_2 = ___value1;
__this->set__positive_12((bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0));
int32_t L_3 = ___value1;
if (!L_3)
{
goto IL_0028;
}
}
{
Il2CppChar L_4 = __this->get__specifier_13();
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)88)))))
{
goto IL_0031;
}
}
IL_0028:
{
int32_t L_5 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, (((int64_t)((int64_t)L_5))), /*hidden argument*/NULL);
return;
}
IL_0031:
{
int32_t L_6 = ___value1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0039;
}
}
{
int32_t L_7 = ___value1;
___value1 = ((-L_7));
}
IL_0039:
{
int32_t L_8 = ___value1;
NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B(__this, L_8, /*hidden argument*/NULL);
int32_t L_9 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_10 = L_9;
V_0 = L_10;
__this->set__digitsLen_16(L_10);
int32_t L_11 = V_0;
__this->set__decPointPos_18(L_11);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.UInt32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_m90911E05952A76710E710724EB8F62C3DCD8D34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___defPrecision2;
__this->set__defPrecision_15(L_1);
__this->set__positive_12((bool)1);
uint32_t L_2 = ___value1;
if (!L_2)
{
goto IL_0022;
}
}
{
Il2CppChar L_3 = __this->get__specifier_13();
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)88)))))
{
goto IL_002b;
}
}
IL_0022:
{
uint32_t L_4 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, (((int64_t)((uint64_t)L_4))), /*hidden argument*/NULL);
return;
}
IL_002b:
{
uint32_t L_5 = ___value1;
NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B(__this, L_5, /*hidden argument*/NULL);
int32_t L_6 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_7 = L_6;
V_0 = L_7;
__this->set__digitsLen_16(L_7);
int32_t L_8 = V_0;
__this->set__decPointPos_18(L_8);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mC48E49CCC89DD59718AC2D00A477CA8F397FBA8C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int64_t ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
__this->set__defPrecision_15(((int32_t)19));
int64_t L_1 = ___value1;
__this->set__positive_12((bool)((((int32_t)((((int64_t)L_1) < ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0)) == ((int32_t)0))? 1 : 0));
int64_t L_2 = ___value1;
if (!L_2)
{
goto IL_002a;
}
}
{
Il2CppChar L_3 = __this->get__specifier_13();
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)88)))))
{
goto IL_0032;
}
}
IL_002a:
{
int64_t L_4 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, L_4, /*hidden argument*/NULL);
return;
}
IL_0032:
{
int64_t L_5 = ___value1;
if ((((int64_t)L_5) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003b;
}
}
{
int64_t L_6 = ___value1;
___value1 = ((-L_6));
}
IL_003b:
{
int64_t L_7 = ___value1;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_7, /*hidden argument*/NULL);
int32_t L_8 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_9 = L_8;
V_0 = L_9;
__this->set__digitsLen_16(L_9);
int32_t L_10 = V_0;
__this->set__decPointPos_18(L_10);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_m6C605647C5BD888F8F085190C2F56EBB905598E1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint64_t ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
__this->set__defPrecision_15(((int32_t)20));
__this->set__positive_12((bool)1);
uint64_t L_1 = ___value1;
if (!L_1)
{
goto IL_0023;
}
}
{
Il2CppChar L_2 = __this->get__specifier_13();
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)88)))))
{
goto IL_002b;
}
}
IL_0023:
{
uint64_t L_3 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, L_3, /*hidden argument*/NULL);
return;
}
IL_002b:
{
uint64_t L_4 = ___value1;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_4, /*hidden argument*/NULL);
int32_t L_5 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_6 = L_5;
V_0 = L_6;
__this->set__digitsLen_16(L_6);
int32_t L_7 = V_0;
__this->set__decPointPos_18(L_7);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Double,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, double ___value1, int32_t ___defPrecision2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
int64_t V_2 = 0;
int32_t V_3 = 0;
uint64_t V_4 = 0;
uint64_t V_5 = 0;
uint64_t V_6 = 0;
uint64_t V_7 = 0;
int64_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
int32_t V_11 = 0;
int64_t V_12 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___defPrecision2;
__this->set__defPrecision_15(L_1);
double L_2 = ___value1;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
int64_t L_3 = BitConverter_DoubleToInt64Bits_mE511B45BE25B2E1D22059420D16055CBA7E1EAA4(L_2, /*hidden argument*/NULL);
V_0 = L_3;
int64_t L_4 = V_0;
__this->set__positive_12((bool)((((int32_t)((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0)) == ((int32_t)0))? 1 : 0));
int64_t L_5 = V_0;
V_0 = ((int64_t)((int64_t)L_5&(int64_t)((int64_t)(std::numeric_limits<int64_t>::max)())));
int64_t L_6 = V_0;
if (L_6)
{
goto IL_0048;
}
}
{
__this->set__decPointPos_18(1);
__this->set__digitsLen_16(0);
__this->set__positive_12((bool)1);
return;
}
IL_0048:
{
int64_t L_7 = V_0;
V_1 = (((int32_t)((int32_t)((int64_t)((int64_t)L_7>>(int32_t)((int32_t)52))))));
int64_t L_8 = V_0;
V_2 = ((int64_t)((int64_t)L_8&(int64_t)((int64_t)4503599627370495LL)));
int32_t L_9 = V_1;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)2047)))))
{
goto IL_0079;
}
}
{
int64_t L_10 = V_2;
__this->set__NaN_8((bool)((!(((uint64_t)L_10) <= ((uint64_t)(((int64_t)((int64_t)0))))))? 1 : 0));
int64_t L_11 = V_2;
__this->set__infinity_9((bool)((((int64_t)L_11) == ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0));
return;
}
IL_0079:
{
V_3 = 0;
int32_t L_12 = V_1;
if (L_12)
{
goto IL_00a0;
}
}
{
V_1 = 1;
int64_t L_13 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_14 = NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2(L_13, /*hidden argument*/NULL);
V_11 = L_14;
int32_t L_15 = V_11;
if ((((int32_t)L_15) >= ((int32_t)((int32_t)15))))
{
goto IL_00b5;
}
}
{
int32_t L_16 = V_11;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)((int32_t)15)));
int64_t L_17 = V_2;
int32_t L_18 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_19 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(((-L_18)), /*hidden argument*/NULL);
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_17, (int64_t)L_19));
goto IL_00b5;
}
IL_00a0:
{
int64_t L_20 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_20, (int64_t)((int64_t)4503599627370495LL))), (int64_t)(((int64_t)((int64_t)1))))), (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
V_3 = (-1);
}
IL_00b5:
{
int64_t L_21 = V_2;
V_4 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint32_t)L_21)))))))));
int64_t L_22 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint64_t* L_23 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_MantissaBitsTable_0();
int32_t L_24 = V_1;
int64_t L_25 = *((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_23, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_24)), (int32_t)8)))));
V_5 = L_25;
uint64_t L_26 = V_5;
V_6 = ((int64_t)((uint64_t)L_26>>((int32_t)32)));
uint64_t L_27 = V_5;
V_5 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint32_t)L_27)))))))));
int64_t L_28 = ((int64_t)((uint64_t)L_22>>((int32_t)32)));
uint64_t L_29 = V_5;
uint64_t L_30 = V_4;
uint64_t L_31 = V_6;
uint64_t L_32 = V_4;
uint64_t L_33 = V_5;
V_7 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_28, (int64_t)L_29)), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_30, (int64_t)L_31)))), (int64_t)((int64_t)((uint64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_32, (int64_t)L_33))>>((int32_t)32)))));
uint64_t L_34 = V_6;
uint64_t L_35 = V_7;
V_8 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_28, (int64_t)L_34)), (int64_t)((int64_t)((uint64_t)L_35>>((int32_t)32)))));
goto IL_0117;
}
IL_00fa:
{
uint64_t L_36 = V_7;
V_7 = ((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((int64_t)L_36&(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))), (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
int64_t L_37 = V_8;
uint64_t L_38 = V_7;
V_8 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_37, (int64_t)(((int64_t)((int64_t)((int32_t)10)))))), (int64_t)((int64_t)((uint64_t)L_38>>((int32_t)32)))));
int32_t L_39 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)1));
}
IL_0117:
{
int64_t L_40 = V_8;
if ((((int64_t)L_40) < ((int64_t)((int64_t)10000000000000000LL))))
{
goto IL_00fa;
}
}
{
uint64_t L_41 = V_7;
if (!((int64_t)((int64_t)L_41&(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)-2147483648LL))))))))))
{
goto IL_0136;
}
}
{
int64_t L_42 = V_8;
V_8 = ((int64_t)il2cpp_codegen_add((int64_t)L_42, (int64_t)(((int64_t)((int64_t)1)))));
}
IL_0136:
{
V_9 = ((int32_t)17);
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t* L_43 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_TensExponentTable_1();
int32_t L_44 = V_1;
int32_t L_45 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_43, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_44)), (int32_t)4)))));
int32_t L_46 = V_3;
int32_t L_47 = V_9;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_46)), (int32_t)L_47)));
int32_t L_48 = NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184(__this, /*hidden argument*/NULL);
V_10 = L_48;
int32_t L_49 = V_9;
int32_t L_50 = V_10;
if ((((int32_t)L_49) <= ((int32_t)L_50)))
{
goto IL_017a;
}
}
{
int32_t L_51 = V_9;
int32_t L_52 = V_10;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_53 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)L_52)), /*hidden argument*/NULL);
V_12 = L_53;
int64_t L_54 = V_8;
int64_t L_55 = V_12;
int64_t L_56 = V_12;
V_8 = ((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_54, (int64_t)((int64_t)((int64_t)L_55>>(int32_t)1))))/(int64_t)L_56));
int32_t L_57 = V_10;
V_9 = L_57;
}
IL_017a:
{
int64_t L_58 = V_8;
int32_t L_59 = V_9;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_60 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_59, /*hidden argument*/NULL);
if ((((int64_t)L_58) < ((int64_t)L_60)))
{
goto IL_0199;
}
}
{
int32_t L_61 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1));
int32_t L_62 = __this->get__decPointPos_18();
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)));
}
IL_0199:
{
int64_t L_63 = V_8;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_63, /*hidden argument*/NULL);
int32_t L_64 = NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3(__this, /*hidden argument*/NULL);
__this->set__offset_17(L_64);
int32_t L_65 = V_9;
int32_t L_66 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)L_66)));
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
int32_t V_1 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
__this->set__defPrecision_15(((int32_t)100));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value1;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = Decimal_GetBits_m581C2DB9823AC9CD84817738A740E8A7D39609BF(L_1, /*hidden argument*/NULL);
V_0 = L_2;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = 3;
int32_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2031616)))>>(int32_t)((int32_t)16)));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = 3;
int32_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
__this->set__positive_12((bool)((((int32_t)((((int32_t)L_8) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = 0;
int32_t L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
if (L_11)
{
goto IL_0058;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = V_0;
NullCheck(L_12);
int32_t L_13 = 1;
int32_t L_14 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
if (L_14)
{
goto IL_0058;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_15 = V_0;
NullCheck(L_15);
int32_t L_16 = 2;
int32_t L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
if (L_17)
{
goto IL_0058;
}
}
{
int32_t L_18 = V_1;
__this->set__decPointPos_18(((-L_18)));
__this->set__positive_12((bool)1);
__this->set__digitsLen_16(0);
return;
}
IL_0058:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_19 = V_0;
NullCheck(L_19);
int32_t L_20 = 2;
int32_t L_21 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = 1;
int32_t L_24 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_25 = V_0;
NullCheck(L_25);
int32_t L_26 = 0;
int32_t L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0(__this, L_21, ((int64_t)((int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_24)))<<(int32_t)((int32_t)32)))|(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_27)))))))), /*hidden argument*/NULL);
int32_t L_28 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
__this->set__digitsLen_16(L_28);
int32_t L_29 = __this->get__digitsLen_16();
int32_t L_30 = V_1;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30)));
int32_t L_31 = __this->get__precision_14();
if ((!(((uint32_t)L_31) == ((uint32_t)(-1)))))
{
goto IL_009a;
}
}
{
Il2CppChar L_32 = __this->get__specifier_13();
if ((((int32_t)L_32) == ((int32_t)((int32_t)71))))
{
goto IL_00b9;
}
}
IL_009a:
{
int32_t L_33 = NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3(__this, /*hidden argument*/NULL);
__this->set__offset_17(L_33);
int32_t L_34 = __this->get__digitsLen_16();
int32_t L_35 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35)));
}
IL_00b9:
{
return;
}
}
// System.Void System.NumberFormatter::ResetCharBuf(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set__ind_23(0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = __this->get__cbuf_7();
NullCheck(L_0);
int32_t L_1 = ___size0;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) >= ((int32_t)L_1)))
{
goto IL_001e;
}
}
{
int32_t L_2 = ___size0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_2);
__this->set__cbuf_7(L_3);
}
IL_001e:
{
return;
}
}
// System.Void System.NumberFormatter::Resize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___len0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_0 = __this->get_address_of__cbuf_7();
int32_t L_1 = ___len0;
Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2**)L_0, L_1, /*hidden argument*/Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var);
return;
}
}
// System.Void System.NumberFormatter::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get__ind_23();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = __this->get__cbuf_7();
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))))
{
goto IL_001f;
}
}
{
int32_t L_2 = __this->get__ind_23();
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_001f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = __this->get__cbuf_7();
int32_t L_4 = __this->get__ind_23();
V_0 = L_4;
int32_t L_5 = V_0;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
int32_t L_6 = V_0;
Il2CppChar L_7 = ___c0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (Il2CppChar)L_7);
return;
}
}
// System.Void System.NumberFormatter::Append(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, int32_t ___cnt1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get__ind_23();
int32_t L_1 = ___cnt1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get__cbuf_7();
NullCheck(L_2);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))))
{
goto IL_003e;
}
}
{
int32_t L_3 = __this->get__ind_23();
int32_t L_4 = ___cnt1;
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)((int32_t)10))), /*hidden argument*/NULL);
goto IL_003e;
}
IL_0025:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = __this->get__cbuf_7();
int32_t L_6 = __this->get__ind_23();
V_0 = L_6;
int32_t L_7 = V_0;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
int32_t L_8 = V_0;
Il2CppChar L_9 = ___c0;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Il2CppChar)L_9);
}
IL_003e:
{
int32_t L_10 = ___cnt1;
int32_t L_11 = L_10;
___cnt1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
if ((((int32_t)L_11) > ((int32_t)0)))
{
goto IL_0025;
}
}
{
return;
}
}
// System.Void System.NumberFormatter::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___s0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
String_t* L_0 = ___s0;
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = __this->get__ind_23();
int32_t L_3 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = __this->get__cbuf_7();
NullCheck(L_4);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_002a;
}
}
{
int32_t L_5 = __this->get__ind_23();
int32_t L_6 = V_0;
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6)), (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_002a:
{
V_1 = 0;
goto IL_0051;
}
IL_002e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = __this->get__cbuf_7();
int32_t L_8 = __this->get__ind_23();
V_2 = L_8;
int32_t L_9 = V_2;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)));
int32_t L_10 = V_2;
String_t* L_11 = ___s0;
int32_t L_12 = V_1;
NullCheck(L_11);
Il2CppChar L_13 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_11, L_12, /*hidden argument*/NULL);
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (Il2CppChar)L_13);
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0051:
{
int32_t L_15 = V_1;
int32_t L_16 = V_0;
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_002e;
}
}
{
return;
}
}
// System.Globalization.NumberFormatInfo System.NumberFormatter::GetNumberFormatInstance(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, RuntimeObject* ___fp0, const RuntimeMethod* method)
{
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_0 = __this->get__nfi_6();
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeObject* L_1 = ___fp0;
if (L_1)
{
goto IL_0012;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = __this->get__nfi_6();
return L_2;
}
IL_0012:
{
RuntimeObject* L_3 = ___fp0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Void System.NumberFormatter::set_CurrentCulture(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___value0, const RuntimeMethod* method)
{
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___value0;
if (!L_0)
{
goto IL_0018;
}
}
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___value0;
NullCheck(L_1);
bool L_2 = CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849_inline(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0018;
}
}
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = ___value0;
NullCheck(L_3);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = VirtFuncInvoker0< NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * >::Invoke(14 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, L_3);
__this->set__nfi_6(L_4);
return;
}
IL_0018:
{
__this->set__nfi_6((NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 *)NULL);
return;
}
}
// System.Int32 System.NumberFormatter::get_IntegerDigits()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_000b;
}
}
{
return 1;
}
IL_000b:
{
int32_t L_1 = __this->get__decPointPos_18();
return L_1;
}
}
// System.Int32 System.NumberFormatter::get_DecimalDigits()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_DecimalDigits_m7D1E99D450C28EEB92D1C28F23393F18A2AB202E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)L_1)))
{
goto IL_0010;
}
}
{
return 0;
}
IL_0010:
{
int32_t L_2 = __this->get__digitsLen_16();
int32_t L_3 = __this->get__decPointPos_18();
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3));
}
}
// System.Boolean System.NumberFormatter::get_IsFloatingSource()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsFloatingSource_m6CFAC659F6A85391D719FE8364828EDA57232B1A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__defPrecision_15();
if ((((int32_t)L_0) == ((int32_t)((int32_t)15))))
{
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__defPrecision_15();
return (bool)((((int32_t)L_1) == ((int32_t)7))? 1 : 0);
}
IL_0014:
{
return (bool)1;
}
}
// System.Boolean System.NumberFormatter::get_IsZero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.NumberFormatter::get_IsZeroInteger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
if (!L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = __this->get__decPointPos_18();
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0015:
{
return (bool)1;
}
}
// System.Void System.NumberFormatter::RoundPos(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___pos0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = ___pos0;
NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.NumberFormatter::RoundDecimal(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___decimals0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = __this->get__decPointPos_18();
int32_t L_2 = ___decimals0;
bool L_3 = NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)L_2)), /*hidden argument*/NULL);
return L_3;
}
}
// System.Boolean System.NumberFormatter::RoundBits(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___shift0, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
bool V_2 = false;
uint32_t V_3 = 0;
int32_t V_4 = 0;
{
int32_t L_0 = ___shift0;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0006;
}
}
{
return (bool)0;
}
IL_0006:
{
int32_t L_1 = ___shift0;
int32_t L_2 = __this->get__digitsLen_16();
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0048;
}
}
{
__this->set__digitsLen_16(0);
__this->set__decPointPos_18(1);
int32_t L_3 = 0;
V_3 = L_3;
__this->set__val4_22(L_3);
uint32_t L_4 = V_3;
uint32_t L_5 = L_4;
V_3 = L_5;
__this->set__val3_21(L_5);
uint32_t L_6 = V_3;
uint32_t L_7 = L_6;
V_3 = L_7;
__this->set__val2_20(L_7);
uint32_t L_8 = V_3;
__this->set__val1_19(L_8);
__this->set__positive_12((bool)1);
return (bool)0;
}
IL_0048:
{
int32_t L_9 = ___shift0;
int32_t L_10 = __this->get__offset_17();
___shift0 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_10));
int32_t L_11 = __this->get__digitsLen_16();
int32_t L_12 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)));
goto IL_00a5;
}
IL_0067:
{
uint32_t L_13 = __this->get__val2_20();
__this->set__val1_19(L_13);
uint32_t L_14 = __this->get__val3_21();
__this->set__val2_20(L_14);
uint32_t L_15 = __this->get__val4_22();
__this->set__val3_21(L_15);
__this->set__val4_22(0);
int32_t L_16 = __this->get__digitsLen_16();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)8)));
int32_t L_17 = ___shift0;
___shift0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)8));
}
IL_00a5:
{
int32_t L_18 = ___shift0;
if ((((int32_t)L_18) > ((int32_t)8)))
{
goto IL_0067;
}
}
{
int32_t L_19 = ___shift0;
___shift0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1))<<(int32_t)2));
uint32_t L_20 = __this->get__val1_19();
int32_t L_21 = ___shift0;
V_0 = ((int32_t)((uint32_t)L_20>>((int32_t)((int32_t)L_21&(int32_t)((int32_t)31)))));
uint32_t L_22 = V_0;
V_1 = ((int32_t)((int32_t)L_22&(int32_t)((int32_t)15)));
uint32_t L_23 = V_0;
uint32_t L_24 = V_1;
int32_t L_25 = ___shift0;
__this->set__val1_19(((int32_t)((int32_t)((int32_t)((int32_t)L_23^(int32_t)L_24))<<(int32_t)((int32_t)((int32_t)L_25&(int32_t)((int32_t)31))))));
V_2 = (bool)0;
uint32_t L_26 = V_1;
if ((!(((uint32_t)L_26) >= ((uint32_t)5))))
{
goto IL_0129;
}
}
{
uint32_t L_27 = __this->get__val1_19();
int32_t L_28 = ___shift0;
__this->set__val1_19(((int32_t)((int32_t)L_27|(int32_t)((int32_t)((uint32_t)((int32_t)-1717986919)>>((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)28), (int32_t)L_28))&(int32_t)((int32_t)31))))))));
NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878(__this, /*hidden argument*/NULL);
int32_t L_29 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
V_4 = L_29;
int32_t L_30 = V_4;
int32_t L_31 = __this->get__digitsLen_16();
V_2 = (bool)((((int32_t)((((int32_t)L_30) == ((int32_t)L_31))? 1 : 0)) == ((int32_t)0))? 1 : 0);
int32_t L_32 = __this->get__decPointPos_18();
int32_t L_33 = V_4;
int32_t L_34 = __this->get__digitsLen_16();
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)), (int32_t)L_34)));
int32_t L_35 = V_4;
__this->set__digitsLen_16(L_35);
}
IL_0129:
{
NumberFormatter_RemoveTrailingZeros_mFE3D46E49E75DEAF1406B777009FF6A21F3BC6CF(__this, /*hidden argument*/NULL);
bool L_36 = V_2;
return L_36;
}
}
// System.Void System.NumberFormatter::RemoveTrailingZeros()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_RemoveTrailingZeros_mFE3D46E49E75DEAF1406B777009FF6A21F3BC6CF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3(__this, /*hidden argument*/NULL);
__this->set__offset_17(L_0);
int32_t L_1 = __this->get__digitsLen_16();
int32_t L_2 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2)));
int32_t L_3 = __this->get__digitsLen_16();
if (L_3)
{
goto IL_003c;
}
}
{
__this->set__offset_17(0);
__this->set__decPointPos_18(1);
__this->set__positive_12((bool)1);
}
IL_003c:
{
return;
}
}
// System.Void System.NumberFormatter::AddOneToDecHex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = __this->get__val1_19();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-1717986919)))))
{
goto IL_0072;
}
}
{
__this->set__val1_19(0);
uint32_t L_1 = __this->get__val2_20();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)-1717986919)))))
{
goto IL_0060;
}
}
{
__this->set__val2_20(0);
uint32_t L_2 = __this->get__val3_21();
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)-1717986919)))))
{
goto IL_004e;
}
}
{
__this->set__val3_21(0);
uint32_t L_3 = __this->get__val4_22();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_4 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_3, /*hidden argument*/NULL);
__this->set__val4_22(L_4);
return;
}
IL_004e:
{
uint32_t L_5 = __this->get__val3_21();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_6 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_5, /*hidden argument*/NULL);
__this->set__val3_21(L_6);
return;
}
IL_0060:
{
uint32_t L_7 = __this->get__val2_20();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_8 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_7, /*hidden argument*/NULL);
__this->set__val2_20(L_8);
return;
}
IL_0072:
{
uint32_t L_9 = __this->get__val1_19();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_10 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_9, /*hidden argument*/NULL);
__this->set__val1_19(L_10);
return;
}
}
// System.UInt32 System.NumberFormatter::AddOneToDecHex(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7 (uint32_t ___val0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)65535)))) == ((uint32_t)((int32_t)39321)))))
{
goto IL_0058;
}
}
{
uint32_t L_1 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)16777215)))) == ((uint32_t)((int32_t)10066329)))))
{
goto IL_003a;
}
}
{
uint32_t L_2 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)268435455)))) == ((uint32_t)((int32_t)161061273)))))
{
goto IL_0032;
}
}
{
uint32_t L_3 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)107374183)));
}
IL_0032:
{
uint32_t L_4 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)6710887)));
}
IL_003a:
{
uint32_t L_5 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)1048575)))) == ((uint32_t)((int32_t)629145)))))
{
goto IL_0050;
}
}
{
uint32_t L_6 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)419431)));
}
IL_0050:
{
uint32_t L_7 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)26215)));
}
IL_0058:
{
uint32_t L_8 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)255)))) == ((uint32_t)((int32_t)153)))))
{
goto IL_0081;
}
}
{
uint32_t L_9 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_9&(int32_t)((int32_t)4095)))) == ((uint32_t)((int32_t)2457)))))
{
goto IL_007c;
}
}
{
uint32_t L_10 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)((int32_t)1639)));
}
IL_007c:
{
uint32_t L_11 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)((int32_t)103)));
}
IL_0081:
{
uint32_t L_12 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)15)))) == ((uint32_t)((int32_t)9)))))
{
goto IL_008d;
}
}
{
uint32_t L_13 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)7));
}
IL_008d:
{
uint32_t L_14 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
}
// System.Int32 System.NumberFormatter::CountTrailingZeros()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = __this->get__val1_19();
if (!L_0)
{
goto IL_0014;
}
}
{
uint32_t L_1 = __this->get__val1_19();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_2 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
uint32_t L_3 = __this->get__val2_20();
if (!L_3)
{
goto IL_002a;
}
}
{
uint32_t L_4 = __this->get__val2_20();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_5 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_4, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)8));
}
IL_002a:
{
uint32_t L_6 = __this->get__val3_21();
if (!L_6)
{
goto IL_0041;
}
}
{
uint32_t L_7 = __this->get__val3_21();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_8 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_7, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)((int32_t)16)));
}
IL_0041:
{
uint32_t L_9 = __this->get__val4_22();
if (!L_9)
{
goto IL_0058;
}
}
{
uint32_t L_10 = __this->get__val4_22();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_11 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_10, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)((int32_t)24)));
}
IL_0058:
{
int32_t L_12 = __this->get__digitsLen_16();
return L_12;
}
}
// System.Int32 System.NumberFormatter::CountTrailingZeros(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B (uint32_t ___val0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___val0;
if (((int32_t)((int32_t)L_0&(int32_t)((int32_t)65535))))
{
goto IL_002c;
}
}
{
uint32_t L_1 = ___val0;
if (((int32_t)((int32_t)L_1&(int32_t)((int32_t)16777215))))
{
goto IL_001f;
}
}
{
uint32_t L_2 = ___val0;
if (((int32_t)((int32_t)L_2&(int32_t)((int32_t)268435455))))
{
goto IL_001d;
}
}
{
return 7;
}
IL_001d:
{
return 6;
}
IL_001f:
{
uint32_t L_3 = ___val0;
if (((int32_t)((int32_t)L_3&(int32_t)((int32_t)1048575))))
{
goto IL_002a;
}
}
{
return 5;
}
IL_002a:
{
return 4;
}
IL_002c:
{
uint32_t L_4 = ___val0;
if (((int32_t)((int32_t)L_4&(int32_t)((int32_t)255))))
{
goto IL_0042;
}
}
{
uint32_t L_5 = ___val0;
if (((int32_t)((int32_t)L_5&(int32_t)((int32_t)4095))))
{
goto IL_0040;
}
}
{
return 3;
}
IL_0040:
{
return 2;
}
IL_0042:
{
uint32_t L_6 = ___val0;
if (((int32_t)((int32_t)L_6&(int32_t)((int32_t)15))))
{
goto IL_004a;
}
}
{
return 1;
}
IL_004a:
{
return 0;
}
}
// System.NumberFormatter System.NumberFormatter::GetInstance(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99 (RuntimeObject* ___fp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
{
RuntimeObject* L_0 = ___fp0;
if (!L_0)
{
goto IL_0022;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_userFormatProvider_25();
if (L_1)
{
goto IL_001c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)il2cpp_codegen_object_new(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280(L_2, (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 *)NULL, /*hidden argument*/NULL);
InterlockedCompareExchangeImpl<NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *>((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC **)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_userFormatProvider_25()), L_2, (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)NULL);
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_3 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_userFormatProvider_25();
return L_3;
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_4 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_threadNumberFormatter_24();
V_0 = L_4;
((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->set_threadNumberFormatter_24((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
if (L_5)
{
goto IL_003c;
}
}
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_6 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_7 = (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)il2cpp_codegen_object_new(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280(L_7, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_003c:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_8 = V_0;
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_9 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_9);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66(L_9, /*hidden argument*/NULL);
NullCheck(L_8);
NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964(L_8, L_10, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_11 = V_0;
return L_11;
}
}
// System.Void System.NumberFormatter::Release()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_0 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_userFormatProvider_25();
if ((((RuntimeObject*)(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)__this) == ((RuntimeObject*)(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)L_0)))
{
goto IL_000e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->set_threadNumberFormatter_24(__this);
}
IL_000e:
{
return;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt32,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C (String_t* ___format0, uint32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
uint32_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_m90911E05952A76710E710724EB8F62C3DCD8D34E(L_2, L_3, L_4, ((int32_t)10), /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Int32,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950 (String_t* ___format0, int32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
int32_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_m7D7CC10DDA255BB0023BD72A0C91F09AD729BE2E(L_2, L_3, L_4, ((int32_t)10), /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt64,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201 (String_t* ___format0, uint64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
uint64_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_m6C605647C5BD888F8F085190C2F56EBB905598E1(L_2, L_3, L_4, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Int64,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05 (String_t* ___format0, int64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
int64_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mC48E49CCC89DD59718AC2D00A477CA8F397FBA8C(L_2, L_3, L_4, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Single,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657 (String_t* ___format0, float ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * V_1 = NULL;
String_t* V_2 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
V_0 = L_1;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = V_0;
String_t* L_3 = ___format0;
float L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2(L_2, L_3, (((double)((double)(double)L_4))), 7, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
RuntimeObject* L_6 = ___fp2;
NullCheck(L_5);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_8 = V_0;
NullCheck(L_8);
bool L_9 = L_8->get__NaN_8();
if (!L_9)
{
goto IL_002a;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = V_1;
NullCheck(L_10);
String_t* L_11 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E_inline(L_10, /*hidden argument*/NULL);
V_2 = L_11;
goto IL_006a;
}
IL_002a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_12 = V_0;
NullCheck(L_12);
bool L_13 = L_12->get__infinity_9();
if (!L_13)
{
goto IL_004c;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_14 = V_0;
NullCheck(L_14);
bool L_15 = L_14->get__positive_12();
if (!L_15)
{
goto IL_0043;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = V_1;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A_inline(L_16, /*hidden argument*/NULL);
V_2 = L_17;
goto IL_006a;
}
IL_0043:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8_inline(L_18, /*hidden argument*/NULL);
V_2 = L_19;
goto IL_006a;
}
IL_004c:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_20 = V_0;
NullCheck(L_20);
Il2CppChar L_21 = L_20->get__specifier_13();
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)82)))))
{
goto IL_0061;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_22 = V_0;
float L_23 = ___value1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = V_1;
NullCheck(L_22);
String_t* L_25 = NumberFormatter_FormatRoundtrip_mBE6EBC5BD83D8DB4BAE38032B659B9E3BB291439(L_22, L_23, L_24, /*hidden argument*/NULL);
V_2 = L_25;
goto IL_006a;
}
IL_0061:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_26 = V_0;
String_t* L_27 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_28 = V_1;
NullCheck(L_26);
String_t* L_29 = NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3(L_26, L_27, L_28, /*hidden argument*/NULL);
V_2 = L_29;
}
IL_006a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_30 = V_0;
NullCheck(L_30);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_30, /*hidden argument*/NULL);
String_t* L_31 = V_2;
return L_31;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Double,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717 (String_t* ___format0, double ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * V_1 = NULL;
String_t* V_2 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
V_0 = L_1;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = V_0;
String_t* L_3 = ___format0;
double L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2(L_2, L_3, L_4, ((int32_t)15), /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
RuntimeObject* L_6 = ___fp2;
NullCheck(L_5);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_8 = V_0;
NullCheck(L_8);
bool L_9 = L_8->get__NaN_8();
if (!L_9)
{
goto IL_002a;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = V_1;
NullCheck(L_10);
String_t* L_11 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E_inline(L_10, /*hidden argument*/NULL);
V_2 = L_11;
goto IL_006a;
}
IL_002a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_12 = V_0;
NullCheck(L_12);
bool L_13 = L_12->get__infinity_9();
if (!L_13)
{
goto IL_004c;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_14 = V_0;
NullCheck(L_14);
bool L_15 = L_14->get__positive_12();
if (!L_15)
{
goto IL_0043;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = V_1;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A_inline(L_16, /*hidden argument*/NULL);
V_2 = L_17;
goto IL_006a;
}
IL_0043:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8_inline(L_18, /*hidden argument*/NULL);
V_2 = L_19;
goto IL_006a;
}
IL_004c:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_20 = V_0;
NullCheck(L_20);
Il2CppChar L_21 = L_20->get__specifier_13();
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)82)))))
{
goto IL_0061;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_22 = V_0;
double L_23 = ___value1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = V_1;
NullCheck(L_22);
String_t* L_25 = NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816(L_22, L_23, L_24, /*hidden argument*/NULL);
V_2 = L_25;
goto IL_006a;
}
IL_0061:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_26 = V_0;
String_t* L_27 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_28 = V_1;
NullCheck(L_26);
String_t* L_29 = NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3(L_26, L_27, L_28, /*hidden argument*/NULL);
V_2 = L_29;
}
IL_006a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_30 = V_0;
NullCheck(L_30);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_30, /*hidden argument*/NULL);
String_t* L_31 = V_2;
return L_31;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Decimal,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9 (String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
V_0 = L_1;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = V_0;
String_t* L_3 = ___format0;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB(L_2, L_3, L_4, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
String_t* L_6 = ___format0;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_7 = V_0;
RuntimeObject* L_8 = ___fp2;
NullCheck(L_7);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_9 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(L_7, L_8, /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_10 = NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3(L_5, L_6, L_9, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_11 = V_0;
NullCheck(L_11);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_11, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.NumberFormatter::IntegerToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, RuntimeObject* ___fp1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * V_0 = NULL;
Il2CppChar V_1 = 0x0;
{
RuntimeObject* L_0 = ___fp1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
Il2CppChar L_2 = __this->get__specifier_13();
V_1 = L_2;
Il2CppChar L_3 = V_1;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)78)))))
{
goto IL_003b;
}
}
{
Il2CppChar L_4 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)67))))
{
case 0:
{
goto IL_004a;
}
case 1:
{
goto IL_0058;
}
case 2:
{
goto IL_0066;
}
case 3:
{
goto IL_0074;
}
case 4:
{
goto IL_0082;
}
}
}
{
Il2CppChar L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)78))))
{
goto IL_00a2;
}
}
{
goto IL_00cb;
}
IL_003b:
{
Il2CppChar L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)((int32_t)80))))
{
goto IL_00b0;
}
}
{
Il2CppChar L_7 = V_1;
if ((((int32_t)L_7) == ((int32_t)((int32_t)88))))
{
goto IL_00be;
}
}
{
goto IL_00cb;
}
IL_004a:
{
int32_t L_8 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_9 = V_0;
String_t* L_10 = NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E(__this, L_8, L_9, /*hidden argument*/NULL);
return L_10;
}
IL_0058:
{
int32_t L_11 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = V_0;
String_t* L_13 = NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168(__this, L_11, L_12, /*hidden argument*/NULL);
return L_13;
}
IL_0066:
{
int32_t L_14 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = V_0;
String_t* L_16 = NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226(__this, L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
IL_0074:
{
int32_t L_17 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_18 = V_0;
String_t* L_19 = NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929(__this, L_17, L_18, /*hidden argument*/NULL);
return L_19;
}
IL_0082:
{
int32_t L_20 = __this->get__precision_14();
if ((((int32_t)L_20) > ((int32_t)0)))
{
goto IL_0094;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_21 = V_0;
String_t* L_22 = NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168(__this, (-1), L_21, /*hidden argument*/NULL);
return L_22;
}
IL_0094:
{
int32_t L_23 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = V_0;
String_t* L_25 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_23, L_24, /*hidden argument*/NULL);
return L_25;
}
IL_00a2:
{
int32_t L_26 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_27 = V_0;
String_t* L_28 = NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F(__this, L_26, L_27, /*hidden argument*/NULL);
return L_28;
}
IL_00b0:
{
int32_t L_29 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_30 = V_0;
String_t* L_31 = NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742(__this, L_29, L_30, /*hidden argument*/NULL);
return L_31;
}
IL_00be:
{
int32_t L_32 = __this->get__precision_14();
String_t* L_33 = NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC(__this, L_32, /*hidden argument*/NULL);
return L_33;
}
IL_00cb:
{
bool L_34 = __this->get__isCustomFormat_10();
if (!L_34)
{
goto IL_00dc;
}
}
{
String_t* L_35 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_36 = V_0;
String_t* L_37 = NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F(__this, L_35, L_36, /*hidden argument*/NULL);
return L_37;
}
IL_00dc:
{
String_t* L_38 = ___format0;
String_t* L_39 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral3DEE701517E5DC4B50EFF674034A0B7F7C69237A, L_38, _stringLiteralF4B203C13607C6CE36A755A30A248EF452047C4F, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_40 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_40, L_39, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_RuntimeMethod_var);
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
Il2CppChar L_0 = __this->get__specifier_13();
V_0 = L_0;
Il2CppChar L_1 = V_0;
if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)78)))))
{
goto IL_0030;
}
}
{
Il2CppChar L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)67))))
{
case 0:
{
goto IL_003c;
}
case 1:
{
goto IL_0090;
}
case 2:
{
goto IL_004a;
}
case 3:
{
goto IL_0058;
}
case 4:
{
goto IL_0066;
}
}
}
{
Il2CppChar L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)78))))
{
goto IL_0074;
}
}
{
goto IL_0090;
}
IL_0030:
{
Il2CppChar L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)80))))
{
goto IL_0082;
}
}
{
Il2CppChar L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)88))))
{
goto IL_0090;
}
}
{
goto IL_0090;
}
IL_003c:
{
int32_t L_6 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___nfi1;
String_t* L_8 = NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E(__this, L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
IL_004a:
{
int32_t L_9 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___nfi1;
String_t* L_11 = NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226(__this, L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0058:
{
int32_t L_12 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___nfi1;
String_t* L_14 = NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929(__this, L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
IL_0066:
{
int32_t L_15 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___nfi1;
String_t* L_17 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_15, L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0074:
{
int32_t L_18 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___nfi1;
String_t* L_20 = NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F(__this, L_18, L_19, /*hidden argument*/NULL);
return L_20;
}
IL_0082:
{
int32_t L_21 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_22 = ___nfi1;
String_t* L_23 = NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742(__this, L_21, L_22, /*hidden argument*/NULL);
return L_23;
}
IL_0090:
{
bool L_24 = __this->get__isCustomFormat_10();
if (!L_24)
{
goto IL_00a1;
}
}
{
String_t* L_25 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_26 = ___nfi1;
String_t* L_27 = NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F(__this, L_25, L_26, /*hidden argument*/NULL);
return L_27;
}
IL_00a1:
{
String_t* L_28 = ___format0;
String_t* L_29 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral3DEE701517E5DC4B50EFF674034A0B7F7C69237A, L_28, _stringLiteralF4B203C13607C6CE36A755A30A248EF452047C4F, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_30 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_30, L_29, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_RuntimeMethod_var);
}
}
// System.String System.NumberFormatter::FormatCurrency(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___precision0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_CurrencyDecimalDigits_mB08BE40DFC57B589B74916CF3D63CEBBC7432C25_inline(L_1, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_000d;
}
IL_000c:
{
int32_t L_3 = ___precision0;
G_B3_0 = L_3;
}
IL_000d:
{
___precision0 = G_B3_0;
int32_t L_4 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_4, /*hidden argument*/NULL);
int32_t L_5 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_6 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)2)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_6, (int32_t)2)))), (int32_t)((int32_t)16))), /*hidden argument*/NULL);
bool L_7 = __this->get__positive_12();
if (!L_7)
{
goto IL_0071;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
int32_t L_9 = NumberFormatInfo_get_CurrencyPositivePattern_mA9F592EAAA7F5BD929C60D65936892A45A101D7B_inline(L_8, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10 = V_0;
if (!L_10)
{
goto IL_0047;
}
}
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)2)))
{
goto IL_0058;
}
}
{
goto IL_01d6;
}
IL_0047:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___nfi1;
NullCheck(L_12);
String_t* L_13 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_12, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_13, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0058:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_14 = ___nfi1;
NullCheck(L_14);
String_t* L_15 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_14, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_15, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0071:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___nfi1;
NullCheck(L_16);
int32_t L_17 = NumberFormatInfo_get_CurrencyNegativePattern_mFC6B6D99EB695BFB5ED94F3F7F4DD40F5D02A58A_inline(L_16, /*hidden argument*/NULL);
V_0 = L_17;
int32_t L_18 = V_0;
switch (L_18)
{
case 0:
{
goto IL_00c3;
}
case 1:
{
goto IL_00dc;
}
case 2:
{
goto IL_00f9;
}
case 3:
{
goto IL_0116;
}
case 4:
{
goto IL_0127;
}
case 5:
{
goto IL_0134;
}
case 6:
{
goto IL_01d6;
}
case 7:
{
goto IL_01d6;
}
case 8:
{
goto IL_0145;
}
case 9:
{
goto IL_0156;
}
case 10:
{
goto IL_01d6;
}
case 11:
{
goto IL_0178;
}
case 12:
{
goto IL_018e;
}
case 13:
{
goto IL_01d6;
}
case 14:
{
goto IL_01b0;
}
case 15:
{
goto IL_01ce;
}
}
}
{
goto IL_01d6;
}
IL_00c3:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___nfi1;
NullCheck(L_19);
String_t* L_20 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_19, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_20, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_00dc:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_21 = ___nfi1;
NullCheck(L_21);
String_t* L_22 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_21, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_22, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_23 = ___nfi1;
NullCheck(L_23);
String_t* L_24 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_23, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_24, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_00f9:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_25 = ___nfi1;
NullCheck(L_25);
String_t* L_26 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_25, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_26, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_27 = ___nfi1;
NullCheck(L_27);
String_t* L_28 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_27, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_28, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0116:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_29 = ___nfi1;
NullCheck(L_29);
String_t* L_30 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_29, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_30, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0127:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0134:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_31 = ___nfi1;
NullCheck(L_31);
String_t* L_32 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_31, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_32, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0145:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_33 = ___nfi1;
NullCheck(L_33);
String_t* L_34 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_33, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_34, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0156:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_35 = ___nfi1;
NullCheck(L_35);
String_t* L_36 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_35, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_36, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_37 = ___nfi1;
NullCheck(L_37);
String_t* L_38 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_37, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_38, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0178:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_39 = ___nfi1;
NullCheck(L_39);
String_t* L_40 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_39, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_40, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_018e:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_41 = ___nfi1;
NullCheck(L_41);
String_t* L_42 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_41, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_42, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_43 = ___nfi1;
NullCheck(L_43);
String_t* L_44 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_43, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_44, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_01b0:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_45 = ___nfi1;
NullCheck(L_45);
String_t* L_46 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_45, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_46, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_01ce:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
}
IL_01d6:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_47 = ___nfi1;
NullCheck(L_47);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_48 = NumberFormatInfo_get_CurrencyGroupSizes_m422B13575ABEF5EC163FE50A6CF26AADFCAB9324(L_47, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_49 = ___nfi1;
NullCheck(L_49);
String_t* L_50 = NumberFormatInfo_get_CurrencyGroupSeparator_m5AC1CA2A478284D1D059459951C8208168A20130_inline(L_49, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403(__this, L_48, L_50, /*hidden argument*/NULL);
int32_t L_51 = ___precision0;
if ((((int32_t)L_51) <= ((int32_t)0)))
{
goto IL_01ff;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_52 = ___nfi1;
NullCheck(L_52);
String_t* L_53 = NumberFormatInfo_get_CurrencyDecimalSeparator_mB1EE2B6EA5D9F58355F26F071B9A08435378214D_inline(L_52, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_53, /*hidden argument*/NULL);
int32_t L_54 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_54, /*hidden argument*/NULL);
}
IL_01ff:
{
bool L_55 = __this->get__positive_12();
if (!L_55)
{
goto IL_0245;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_56 = ___nfi1;
NullCheck(L_56);
int32_t L_57 = NumberFormatInfo_get_CurrencyPositivePattern_mA9F592EAAA7F5BD929C60D65936892A45A101D7B_inline(L_56, /*hidden argument*/NULL);
V_0 = L_57;
int32_t L_58 = V_0;
if ((((int32_t)L_58) == ((int32_t)1)))
{
goto IL_021b;
}
}
{
int32_t L_59 = V_0;
if ((((int32_t)L_59) == ((int32_t)3)))
{
goto IL_022c;
}
}
{
goto IL_03a7;
}
IL_021b:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_60 = ___nfi1;
NullCheck(L_60);
String_t* L_61 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_60, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_61, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_022c:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_62 = ___nfi1;
NullCheck(L_62);
String_t* L_63 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_62, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_63, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0245:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_64 = ___nfi1;
NullCheck(L_64);
int32_t L_65 = NumberFormatInfo_get_CurrencyNegativePattern_mFC6B6D99EB695BFB5ED94F3F7F4DD40F5D02A58A_inline(L_64, /*hidden argument*/NULL);
V_0 = L_65;
int32_t L_66 = V_0;
switch (L_66)
{
case 0:
{
goto IL_0297;
}
case 1:
{
goto IL_03a7;
}
case 2:
{
goto IL_03a7;
}
case 3:
{
goto IL_02a4;
}
case 4:
{
goto IL_02b5;
}
case 5:
{
goto IL_02ce;
}
case 6:
{
goto IL_02df;
}
case 7:
{
goto IL_02fc;
}
case 8:
{
goto IL_0319;
}
case 9:
{
goto IL_03a7;
}
case 10:
{
goto IL_032f;
}
case 11:
{
goto IL_0351;
}
case 12:
{
goto IL_03a7;
}
case 13:
{
goto IL_035f;
}
case 14:
{
goto IL_0381;
}
case 15:
{
goto IL_038b;
}
}
}
{
goto IL_03a7;
}
IL_0297:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02a4:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_67 = ___nfi1;
NullCheck(L_67);
String_t* L_68 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_67, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_68, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02b5:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_69 = ___nfi1;
NullCheck(L_69);
String_t* L_70 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_69, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_70, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02ce:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_71 = ___nfi1;
NullCheck(L_71);
String_t* L_72 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_71, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_72, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02df:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_73 = ___nfi1;
NullCheck(L_73);
String_t* L_74 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_73, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_74, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_75 = ___nfi1;
NullCheck(L_75);
String_t* L_76 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_75, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_76, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02fc:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_77 = ___nfi1;
NullCheck(L_77);
String_t* L_78 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_77, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_78, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_79 = ___nfi1;
NullCheck(L_79);
String_t* L_80 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_79, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_80, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0319:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_81 = ___nfi1;
NullCheck(L_81);
String_t* L_82 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_81, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_82, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_032f:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_83 = ___nfi1;
NullCheck(L_83);
String_t* L_84 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_83, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_84, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_85 = ___nfi1;
NullCheck(L_85);
String_t* L_86 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_85, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_86, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0351:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_87 = ___nfi1;
NullCheck(L_87);
String_t* L_88 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_87, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_88, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_035f:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_89 = ___nfi1;
NullCheck(L_89);
String_t* L_90 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_89, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_90, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_91 = ___nfi1;
NullCheck(L_91);
String_t* L_92 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_91, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_92, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0381:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_03a7;
}
IL_038b:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_93 = ___nfi1;
NullCheck(L_93);
String_t* L_94 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_93, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_94, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
}
IL_03a7:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_95 = __this->get__cbuf_7();
int32_t L_96 = __this->get__ind_23();
String_t* L_97 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_95, 0, L_96, /*hidden argument*/NULL);
return L_97;
}
}
// System.String System.NumberFormatter::FormatDecimal(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___precision0;
int32_t L_1 = __this->get__digitsLen_16();
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = __this->get__digitsLen_16();
___precision0 = L_2;
}
IL_0011:
{
int32_t L_3 = ___precision0;
if (L_3)
{
goto IL_001a;
}
}
{
return _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C;
}
IL_001a:
{
int32_t L_4 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/NULL);
bool L_5 = __this->get__positive_12();
if (L_5)
{
goto IL_0037;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_6 = ___nfi1;
NullCheck(L_6);
String_t* L_7 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_6, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_7, /*hidden argument*/NULL);
}
IL_0037:
{
int32_t L_8 = ___precision0;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, 0, L_8, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = __this->get__cbuf_7();
int32_t L_10 = __this->get__ind_23();
String_t* L_11 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_9, 0, L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.NumberFormatter::FormatHexadecimal(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint64_t V_2 = 0;
Il2CppChar* G_B3_0 = NULL;
{
int32_t L_0 = ___precision0;
int32_t L_1 = __this->get__decPointPos_18();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_2 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
bool L_3 = __this->get__specifierIsUpper_11();
if (L_3)
{
goto IL_001c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
Il2CppChar* L_4 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DigitLowerTable_2();
G_B3_0 = L_4;
goto IL_0021;
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
Il2CppChar* L_5 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DigitUpperTable_3();
G_B3_0 = L_5;
}
IL_0021:
{
V_1 = (Il2CppChar*)G_B3_0;
int32_t L_6 = V_0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, L_6, /*hidden argument*/NULL);
int32_t L_7 = V_0;
__this->set__ind_23(L_7);
uint32_t L_8 = __this->get__val1_19();
uint32_t L_9 = __this->get__val2_20();
V_2 = ((int64_t)((int64_t)(((int64_t)((uint64_t)L_8)))|(int64_t)((int64_t)((int64_t)(((int64_t)((uint64_t)L_9)))<<(int32_t)((int32_t)32)))));
goto IL_0061;
}
IL_0045:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = __this->get__cbuf_7();
int32_t L_11 = V_0;
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
V_0 = L_12;
Il2CppChar* L_13 = V_1;
uint64_t L_14 = V_2;
int32_t L_15 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, (intptr_t)(((uintptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((int64_t)L_14&(int64_t)(((int64_t)((int64_t)((int32_t)15)))))), (int64_t)(((int64_t)((int64_t)2))))))))));
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (Il2CppChar)L_15);
uint64_t L_16 = V_2;
V_2 = ((int64_t)((uint64_t)L_16>>4));
}
IL_0061:
{
int32_t L_17 = V_0;
if ((((int32_t)L_17) > ((int32_t)0)))
{
goto IL_0045;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = __this->get__cbuf_7();
int32_t L_19 = __this->get__ind_23();
String_t* L_20 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_18, 0, L_19, /*hidden argument*/NULL);
return L_20;
}
}
// System.String System.NumberFormatter::FormatFixedPoint(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___precision0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_NumberDecimalDigits_m52C856E2079DAA1657069DB00506DCF77EA62DC2_inline(L_1, /*hidden argument*/NULL);
___precision0 = L_2;
}
IL_000c:
{
int32_t L_3 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_3, /*hidden argument*/NULL);
int32_t L_4 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_5 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), (int32_t)2)), /*hidden argument*/NULL);
bool L_6 = __this->get__positive_12();
if (L_6)
{
goto IL_0038;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___nfi1;
NullCheck(L_7);
String_t* L_8 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_7, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_8, /*hidden argument*/NULL);
}
IL_0038:
{
int32_t L_9 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerString_mD6FB81A7D8109CDAED213804F4D91E2FA476BD88(__this, L_9, /*hidden argument*/NULL);
int32_t L_10 = ___precision0;
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_005b;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___nfi1;
NullCheck(L_11);
String_t* L_12 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline(L_11, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_12, /*hidden argument*/NULL);
int32_t L_13 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_13, /*hidden argument*/NULL);
}
IL_005b:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = __this->get__cbuf_7();
int32_t L_15 = __this->get__ind_23();
String_t* L_16 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_14, 0, L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.String System.NumberFormatter::FormatRoundtrip(System.Double,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, double ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
String_t* V_1 = NULL;
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_0 = NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A(__this, /*hidden argument*/NULL);
V_0 = L_0;
double L_1 = ___origval0;
if ((!(((double)L_1) >= ((double)(-1.79769313486231E+308)))))
{
goto IL_0039;
}
}
{
double L_2 = ___origval0;
if ((!(((double)L_2) <= ((double)(1.79769313486231E+308)))))
{
goto IL_0039;
}
}
{
int32_t L_3 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = ___nfi1;
String_t* L_5 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
double L_6 = ___origval0;
String_t* L_7 = V_1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
double L_9 = Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67(L_7, L_8, /*hidden argument*/NULL);
if ((!(((double)L_6) == ((double)L_9))))
{
goto IL_0039;
}
}
{
String_t* L_10 = V_1;
return L_10;
}
IL_0039:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_11 = V_0;
int32_t L_12 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___nfi1;
NullCheck(L_11);
String_t* L_14 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(L_11, ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)2)), L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.String System.NumberFormatter::FormatRoundtrip(System.Single,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_mBE6EBC5BD83D8DB4BAE38032B659B9E3BB291439 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, float ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
String_t* V_1 = NULL;
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_0 = NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___nfi1;
String_t* L_3 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_1, L_2, /*hidden argument*/NULL);
V_1 = L_3;
float L_4 = ___origval0;
String_t* L_5 = V_1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_6 = ___nfi1;
float L_7 = Single_Parse_m341EA42F7782B136FA7335771DA3C6C96AF6BD86(L_5, L_6, /*hidden argument*/NULL);
if ((!(((float)L_4) == ((float)L_7))))
{
goto IL_0021;
}
}
{
String_t* L_8 = V_1;
return L_8;
}
IL_0021:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_9 = V_0;
int32_t L_10 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___nfi1;
NullCheck(L_9);
String_t* L_12 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(L_9, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)2)), L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.String System.NumberFormatter::FormatGeneral(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t G_B8_0 = 0;
{
int32_t L_0 = ___precision0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0015;
}
}
{
bool L_1 = NumberFormatter_get_IsFloatingSource_m6CFAC659F6A85391D719FE8364828EDA57232B1A(__this, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = __this->get__defPrecision_15();
___precision0 = L_2;
goto IL_0029;
}
IL_0015:
{
V_0 = (bool)1;
int32_t L_3 = ___precision0;
if (L_3)
{
goto IL_0022;
}
}
{
int32_t L_4 = __this->get__defPrecision_15();
___precision0 = L_4;
}
IL_0022:
{
int32_t L_5 = ___precision0;
NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961(__this, L_5, /*hidden argument*/NULL);
}
IL_0029:
{
int32_t L_6 = __this->get__decPointPos_18();
V_1 = L_6;
int32_t L_7 = __this->get__digitsLen_16();
V_2 = L_7;
int32_t L_8 = V_2;
int32_t L_9 = V_1;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9));
int32_t L_10 = V_1;
int32_t L_11 = ___precision0;
if ((((int32_t)L_10) > ((int32_t)L_11)))
{
goto IL_0049;
}
}
{
int32_t L_12 = V_1;
G_B8_0 = ((((int32_t)((((int32_t)L_12) > ((int32_t)((int32_t)-4)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_004a;
}
IL_0049:
{
G_B8_0 = 1;
}
IL_004a:
{
bool L_13 = V_0;
if (!((int32_t)((int32_t)G_B8_0&(int32_t)L_13)))
{
goto IL_005a;
}
}
{
int32_t L_14 = V_2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___nfi1;
String_t* L_16 = NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)), L_15, 2, /*hidden argument*/NULL);
return L_16;
}
IL_005a:
{
int32_t L_17 = V_3;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_0060;
}
}
{
V_3 = 0;
}
IL_0060:
{
int32_t L_18 = V_1;
if ((((int32_t)L_18) >= ((int32_t)0)))
{
goto IL_0066;
}
}
{
V_1 = 0;
}
IL_0066:
{
int32_t L_19 = V_3;
int32_t L_20 = V_1;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_20)), (int32_t)3)), /*hidden argument*/NULL);
bool L_21 = __this->get__positive_12();
if (L_21)
{
goto IL_0085;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_22 = ___nfi1;
NullCheck(L_22);
String_t* L_23 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_22, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_23, /*hidden argument*/NULL);
}
IL_0085:
{
int32_t L_24 = V_1;
if (L_24)
{
goto IL_0092;
}
}
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)48), /*hidden argument*/NULL);
goto IL_009c;
}
IL_0092:
{
int32_t L_25 = V_2;
int32_t L_26 = V_1;
int32_t L_27 = V_2;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)L_26)), L_27, /*hidden argument*/NULL);
}
IL_009c:
{
int32_t L_28 = V_3;
if ((((int32_t)L_28) <= ((int32_t)0)))
{
goto IL_00b4;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_29 = ___nfi1;
NullCheck(L_29);
String_t* L_30 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline(L_29, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_30, /*hidden argument*/NULL);
int32_t L_31 = V_3;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, 0, L_31, /*hidden argument*/NULL);
}
IL_00b4:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_32 = __this->get__cbuf_7();
int32_t L_33 = __this->get__ind_23();
String_t* L_34 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_32, 0, L_33, /*hidden argument*/NULL);
return L_34;
}
}
// System.String System.NumberFormatter::FormatNumber(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___precision0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_NumberDecimalDigits_m52C856E2079DAA1657069DB00506DCF77EA62DC2_inline(L_1, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_000d;
}
IL_000c:
{
int32_t L_3 = ___precision0;
G_B3_0 = L_3;
}
IL_000d:
{
___precision0 = G_B3_0;
int32_t L_4 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_5 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)3)), (int32_t)L_5)), /*hidden argument*/NULL);
int32_t L_6 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_6, /*hidden argument*/NULL);
bool L_7 = __this->get__positive_12();
if (L_7)
{
goto IL_0076;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
int32_t L_9 = NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017_inline(L_8, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10 = V_0;
switch (L_10)
{
case 0:
{
goto IL_004a;
}
case 1:
{
goto IL_0054;
}
case 2:
{
goto IL_0062;
}
}
}
{
goto IL_0076;
}
IL_004a:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
goto IL_0076;
}
IL_0054:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___nfi1;
NullCheck(L_11);
String_t* L_12 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_11, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_12, /*hidden argument*/NULL);
goto IL_0076;
}
IL_0062:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___nfi1;
NullCheck(L_13);
String_t* L_14 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_13, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_14, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
}
IL_0076:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___nfi1;
NullCheck(L_15);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_16 = NumberFormatInfo_get_NumberGroupSizes_m565821165B43AA202D8F644E4403A3181188965A(L_15, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_17 = ___nfi1;
NullCheck(L_17);
String_t* L_18 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline(L_17, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403(__this, L_16, L_18, /*hidden argument*/NULL);
int32_t L_19 = ___precision0;
if ((((int32_t)L_19) <= ((int32_t)0)))
{
goto IL_009f;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_20 = ___nfi1;
NullCheck(L_20);
String_t* L_21 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline(L_20, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_21, /*hidden argument*/NULL);
int32_t L_22 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_22, /*hidden argument*/NULL);
}
IL_009f:
{
bool L_23 = __this->get__positive_12();
if (L_23)
{
goto IL_00f6;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = ___nfi1;
NullCheck(L_24);
int32_t L_25 = NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017_inline(L_24, /*hidden argument*/NULL);
V_0 = L_25;
int32_t L_26 = V_0;
switch (L_26)
{
case 0:
{
goto IL_00ca;
}
case 1:
{
goto IL_00f6;
}
case 2:
{
goto IL_00f6;
}
case 3:
{
goto IL_00d4;
}
case 4:
{
goto IL_00e2;
}
}
}
{
goto IL_00f6;
}
IL_00ca:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_00f6;
}
IL_00d4:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_27 = ___nfi1;
NullCheck(L_27);
String_t* L_28 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_27, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_28, /*hidden argument*/NULL);
goto IL_00f6;
}
IL_00e2:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_29 = ___nfi1;
NullCheck(L_29);
String_t* L_30 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_29, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_30, /*hidden argument*/NULL);
}
IL_00f6:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = __this->get__cbuf_7();
int32_t L_32 = __this->get__ind_23();
String_t* L_33 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_31, 0, L_32, /*hidden argument*/NULL);
return L_33;
}
}
// System.String System.NumberFormatter::FormatPercent(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___precision0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_PercentDecimalDigits_mC976C226BAA510C75E13D526FF7407B2A2E2A164_inline(L_1, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_000d;
}
IL_000c:
{
int32_t L_3 = ___precision0;
G_B3_0 = L_3;
}
IL_000d:
{
___precision0 = G_B3_0;
NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227(__this, 2, /*hidden argument*/NULL);
int32_t L_4 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_4, /*hidden argument*/NULL);
int32_t L_5 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_6 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)2)), (int32_t)L_6)), (int32_t)((int32_t)16))), /*hidden argument*/NULL);
bool L_7 = __this->get__positive_12();
if (!L_7)
{
goto IL_0050;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
int32_t L_9 = NumberFormatInfo_get_PercentPositivePattern_mD23B2B53488F48B707952CCFADD216A7E7BAA430_inline(L_8, /*hidden argument*/NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)2))))
{
goto IL_009f;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___nfi1;
NullCheck(L_10);
String_t* L_11 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline(L_10, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_11, /*hidden argument*/NULL);
goto IL_009f;
}
IL_0050:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___nfi1;
NullCheck(L_12);
int32_t L_13 = NumberFormatInfo_get_PercentNegativePattern_m9563E73E22236A41D695465A1B2E76F3AA7DD463_inline(L_12, /*hidden argument*/NULL);
V_0 = L_13;
int32_t L_14 = V_0;
switch (L_14)
{
case 0:
{
goto IL_006b;
}
case 1:
{
goto IL_0079;
}
case 2:
{
goto IL_0087;
}
}
}
{
goto IL_009f;
}
IL_006b:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___nfi1;
NullCheck(L_15);
String_t* L_16 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_15, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_16, /*hidden argument*/NULL);
goto IL_009f;
}
IL_0079:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_17 = ___nfi1;
NullCheck(L_17);
String_t* L_18 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_17, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_18, /*hidden argument*/NULL);
goto IL_009f;
}
IL_0087:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___nfi1;
NullCheck(L_19);
String_t* L_20 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_19, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_20, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_21 = ___nfi1;
NullCheck(L_21);
String_t* L_22 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline(L_21, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_22, /*hidden argument*/NULL);
}
IL_009f:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_23 = ___nfi1;
NullCheck(L_23);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_24 = NumberFormatInfo_get_PercentGroupSizes_m4E8851281AB5160EC0EE06F633B08235440DF4C8(L_23, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_25 = ___nfi1;
NullCheck(L_25);
String_t* L_26 = NumberFormatInfo_get_PercentGroupSeparator_mBCCC5E617B3BEFED528AB99571AC593CEA45B4EC_inline(L_25, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403(__this, L_24, L_26, /*hidden argument*/NULL);
int32_t L_27 = ___precision0;
if ((((int32_t)L_27) <= ((int32_t)0)))
{
goto IL_00c8;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_28 = ___nfi1;
NullCheck(L_28);
String_t* L_29 = NumberFormatInfo_get_PercentDecimalSeparator_m8E0E23E04199DCA6D6E7E494D11522465180CCD2_inline(L_28, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_29, /*hidden argument*/NULL);
int32_t L_30 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_30, /*hidden argument*/NULL);
}
IL_00c8:
{
bool L_31 = __this->get__positive_12();
if (!L_31)
{
goto IL_0104;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_32 = ___nfi1;
NullCheck(L_32);
int32_t L_33 = NumberFormatInfo_get_PercentPositivePattern_mD23B2B53488F48B707952CCFADD216A7E7BAA430_inline(L_32, /*hidden argument*/NULL);
V_0 = L_33;
int32_t L_34 = V_0;
if (!L_34)
{
goto IL_00e0;
}
}
{
int32_t L_35 = V_0;
if ((((int32_t)L_35) == ((int32_t)1)))
{
goto IL_00f6;
}
}
{
goto IL_0136;
}
IL_00e0:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_36 = ___nfi1;
NullCheck(L_36);
String_t* L_37 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline(L_36, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_37, /*hidden argument*/NULL);
goto IL_0136;
}
IL_00f6:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_38 = ___nfi1;
NullCheck(L_38);
String_t* L_39 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline(L_38, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_39, /*hidden argument*/NULL);
goto IL_0136;
}
IL_0104:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_40 = ___nfi1;
NullCheck(L_40);
int32_t L_41 = NumberFormatInfo_get_PercentNegativePattern_m9563E73E22236A41D695465A1B2E76F3AA7DD463_inline(L_40, /*hidden argument*/NULL);
V_0 = L_41;
int32_t L_42 = V_0;
if (!L_42)
{
goto IL_0114;
}
}
{
int32_t L_43 = V_0;
if ((((int32_t)L_43) == ((int32_t)1)))
{
goto IL_012a;
}
}
{
goto IL_0136;
}
IL_0114:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_44 = ___nfi1;
NullCheck(L_44);
String_t* L_45 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline(L_44, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_45, /*hidden argument*/NULL);
goto IL_0136;
}
IL_012a:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_46 = ___nfi1;
NullCheck(L_46);
String_t* L_47 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline(L_46, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_47, /*hidden argument*/NULL);
}
IL_0136:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_48 = __this->get__cbuf_7();
int32_t L_49 = __this->get__ind_23();
String_t* L_50 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_48, 0, L_49, /*hidden argument*/NULL);
return L_50;
}
}
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___precision0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0007;
}
}
{
___precision0 = 6;
}
IL_0007:
{
int32_t L_1 = ___precision0;
NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)), /*hidden argument*/NULL);
int32_t L_2 = ___precision0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___nfi1;
String_t* L_4 = NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F(__this, L_2, L_3, 3, /*hidden argument*/NULL);
return L_4;
}
}
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, int32_t ___expDigits2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = __this->get__decPointPos_18();
int32_t L_1 = __this->get__digitsLen_16();
V_0 = L_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1));
__this->set__decPointPos_18(1);
int32_t L_2 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)8)), /*hidden argument*/NULL);
bool L_3 = __this->get__positive_12();
if (L_3)
{
goto IL_0034;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = ___nfi1;
NullCheck(L_4);
String_t* L_5 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_4, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_5, /*hidden argument*/NULL);
}
IL_0034:
{
int32_t L_6 = V_0;
NumberFormatter_AppendOneDigit_m00E78B4DAFD47E5393BF1B3664B4453A646061A5(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/NULL);
int32_t L_7 = ___precision0;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0060;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
String_t* L_9 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline(L_8, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_9, /*hidden argument*/NULL);
int32_t L_10 = V_0;
int32_t L_11 = ___precision0;
int32_t L_12 = V_0;
int32_t L_13 = __this->get__decPointPos_18();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11)), (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)), /*hidden argument*/NULL);
}
IL_0060:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_14 = ___nfi1;
int32_t L_15 = V_1;
int32_t L_16 = ___expDigits2;
NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C(__this, L_14, L_15, L_16, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = __this->get__cbuf_7();
int32_t L_18 = __this->get__ind_23();
String_t* L_19 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_17, 0, L_18, /*hidden argument*/NULL);
return L_19;
}
}
// System.String System.NumberFormatter::FormatCustom(System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * V_3 = NULL;
StringBuilder_t * V_4 = NULL;
StringBuilder_t * V_5 = NULL;
StringBuilder_t * V_6 = NULL;
int32_t V_7 = 0;
bool V_8 = false;
StringBuilder_t * G_B7_0 = NULL;
StringBuilder_t * G_B20_0 = NULL;
StringBuilder_t * G_B19_0 = NULL;
int32_t G_B21_0 = 0;
StringBuilder_t * G_B21_1 = NULL;
{
bool L_0 = __this->get__positive_12();
V_0 = L_0;
V_1 = 0;
V_2 = 0;
String_t* L_1 = ___format0;
bool L_2 = NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E(__this, /*hidden argument*/NULL);
CustomInfo_GetActiveSection_m3C48CF37C771F5434981309EEBDB47383654E25A(L_1, (bool*)(&V_0), L_2, (int32_t*)(&V_1), (int32_t*)(&V_2), /*hidden argument*/NULL);
int32_t L_3 = V_2;
if (L_3)
{
goto IL_0035;
}
}
{
bool L_4 = __this->get__positive_12();
if (L_4)
{
goto IL_002f;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___nfi1;
NullCheck(L_5);
String_t* L_6 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_5, /*hidden argument*/NULL);
return L_6;
}
IL_002f:
{
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_7;
}
IL_0035:
{
bool L_8 = V_0;
__this->set__positive_12(L_8);
String_t* L_9 = ___format0;
int32_t L_10 = V_1;
int32_t L_11 = V_2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___nfi1;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_13 = CustomInfo_Parse_m221FEE3DBA88FC585E7EC4F51CE590B9BE0E334A(L_9, L_10, L_11, L_12, /*hidden argument*/NULL);
V_3 = L_13;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_14 = V_3;
NullCheck(L_14);
int32_t L_15 = L_14->get_IntegerDigits_4();
StringBuilder_t * L_16 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_16, ((int32_t)il2cpp_codegen_multiply((int32_t)L_15, (int32_t)2)), /*hidden argument*/NULL);
V_4 = L_16;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_17 = V_3;
NullCheck(L_17);
int32_t L_18 = L_17->get_DecimalDigits_1();
StringBuilder_t * L_19 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_19, ((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)2)), /*hidden argument*/NULL);
V_5 = L_19;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_20 = V_3;
NullCheck(L_20);
bool L_21 = L_20->get_UseExponent_7();
if (L_21)
{
goto IL_006f;
}
}
{
G_B7_0 = ((StringBuilder_t *)(NULL));
goto IL_007c;
}
IL_006f:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_22 = V_3;
NullCheck(L_22);
int32_t L_23 = L_22->get_ExponentDigits_8();
StringBuilder_t * L_24 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_24, ((int32_t)il2cpp_codegen_multiply((int32_t)L_23, (int32_t)2)), /*hidden argument*/NULL);
G_B7_0 = L_24;
}
IL_007c:
{
V_6 = G_B7_0;
V_7 = 0;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_25 = V_3;
NullCheck(L_25);
int32_t L_26 = L_25->get_Percents_12();
if ((((int32_t)L_26) <= ((int32_t)0)))
{
goto IL_0098;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_27 = V_3;
NullCheck(L_27);
int32_t L_28 = L_27->get_Percents_12();
NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227(__this, ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_28)), /*hidden argument*/NULL);
}
IL_0098:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_29 = V_3;
NullCheck(L_29);
int32_t L_30 = L_29->get_Permilles_13();
if ((((int32_t)L_30) <= ((int32_t)0)))
{
goto IL_00af;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_31 = V_3;
NullCheck(L_31);
int32_t L_32 = L_31->get_Permilles_13();
NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227(__this, ((int32_t)il2cpp_codegen_multiply((int32_t)3, (int32_t)L_32)), /*hidden argument*/NULL);
}
IL_00af:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_33 = V_3;
NullCheck(L_33);
int32_t L_34 = L_33->get_DividePlaces_11();
if ((((int32_t)L_34) <= ((int32_t)0)))
{
goto IL_00c4;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_35 = V_3;
NullCheck(L_35);
int32_t L_36 = L_35->get_DividePlaces_11();
NumberFormatter_Divide10_m19182F6184716E02E9DBA42FCF89EFEBA7AC19B7(__this, L_36, /*hidden argument*/NULL);
}
IL_00c4:
{
V_8 = (bool)1;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_37 = V_3;
NullCheck(L_37);
bool L_38 = L_37->get_UseExponent_7();
if (!L_38)
{
goto IL_0139;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_39 = V_3;
NullCheck(L_39);
int32_t L_40 = L_39->get_DecimalDigits_1();
if ((((int32_t)L_40) > ((int32_t)0)))
{
goto IL_00e1;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_41 = V_3;
NullCheck(L_41);
int32_t L_42 = L_41->get_IntegerDigits_4();
if ((((int32_t)L_42) <= ((int32_t)0)))
{
goto IL_0139;
}
}
IL_00e1:
{
bool L_43 = NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E(__this, /*hidden argument*/NULL);
if (L_43)
{
goto IL_011a;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_44 = V_3;
NullCheck(L_44);
int32_t L_45 = L_44->get_DecimalDigits_1();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_46 = V_3;
NullCheck(L_46);
int32_t L_47 = L_46->get_IntegerDigits_4();
NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_47)), /*hidden argument*/NULL);
int32_t L_48 = V_7;
int32_t L_49 = __this->get__decPointPos_18();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_50 = V_3;
NullCheck(L_50);
int32_t L_51 = L_50->get_IntegerDigits_4();
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)L_51))));
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_52 = V_3;
NullCheck(L_52);
int32_t L_53 = L_52->get_IntegerDigits_4();
__this->set__decPointPos_18(L_53);
}
IL_011a:
{
int32_t L_54 = V_7;
V_8 = (bool)((((int32_t)((((int32_t)L_54) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
StringBuilder_t * L_55 = V_6;
int32_t L_56 = V_7;
G_B19_0 = L_55;
if ((((int32_t)L_56) < ((int32_t)0)))
{
G_B20_0 = L_55;
goto IL_012f;
}
}
{
int32_t L_57 = V_7;
G_B21_0 = L_57;
G_B21_1 = G_B19_0;
goto IL_0132;
}
IL_012f:
{
int32_t L_58 = V_7;
G_B21_0 = ((-L_58));
G_B21_1 = G_B20_0;
}
IL_0132:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1(G_B21_1, G_B21_0, /*hidden argument*/NULL);
goto IL_0146;
}
IL_0139:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_59 = V_3;
NullCheck(L_59);
int32_t L_60 = L_59->get_DecimalDigits_1();
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_60, /*hidden argument*/NULL);
}
IL_0146:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_61 = V_3;
NullCheck(L_61);
int32_t L_62 = L_61->get_IntegerDigits_4();
if (L_62)
{
goto IL_0156;
}
}
{
bool L_63 = NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307(__this, /*hidden argument*/NULL);
if (L_63)
{
goto IL_0164;
}
}
IL_0156:
{
int32_t L_64 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
StringBuilder_t * L_65 = V_4;
NumberFormatter_AppendIntegerString_m37A5A133D337FE0E7378D3F5C9B5C42ABC4F500C(__this, L_64, L_65, /*hidden argument*/NULL);
}
IL_0164:
{
int32_t L_66 = NumberFormatter_get_DecimalDigits_m7D1E99D450C28EEB92D1C28F23393F18A2AB202E(__this, /*hidden argument*/NULL);
StringBuilder_t * L_67 = V_5;
NumberFormatter_AppendDecimalString_mE1BE0D20CD069420690F5E5C06A394C7369C90BF(__this, L_66, L_67, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_68 = V_3;
NullCheck(L_68);
bool L_69 = L_68->get_UseExponent_7();
if (!L_69)
{
goto IL_0216;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_70 = V_3;
NullCheck(L_70);
int32_t L_71 = L_70->get_DecimalDigits_1();
if ((((int32_t)L_71) > ((int32_t)0)))
{
goto IL_0196;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_72 = V_3;
NullCheck(L_72);
int32_t L_73 = L_72->get_IntegerDigits_4();
if ((((int32_t)L_73) > ((int32_t)0)))
{
goto IL_0196;
}
}
{
__this->set__positive_12((bool)1);
}
IL_0196:
{
StringBuilder_t * L_74 = V_4;
NullCheck(L_74);
int32_t L_75 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_74, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_76 = V_3;
NullCheck(L_76);
int32_t L_77 = L_76->get_IntegerDigits_4();
if ((((int32_t)L_75) >= ((int32_t)L_77)))
{
goto IL_01ce;
}
}
{
StringBuilder_t * L_78 = V_4;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_79 = V_3;
NullCheck(L_79);
int32_t L_80 = L_79->get_IntegerDigits_4();
StringBuilder_t * L_81 = V_4;
NullCheck(L_81);
int32_t L_82 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_81, /*hidden argument*/NULL);
NullCheck(L_78);
StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05(L_78, 0, _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C, ((int32_t)il2cpp_codegen_subtract((int32_t)L_80, (int32_t)L_82)), /*hidden argument*/NULL);
goto IL_01ce;
}
IL_01c3:
{
StringBuilder_t * L_83 = V_6;
NullCheck(L_83);
StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1(L_83, 0, ((int32_t)48), /*hidden argument*/NULL);
}
IL_01ce:
{
StringBuilder_t * L_84 = V_6;
NullCheck(L_84);
int32_t L_85 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_84, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_86 = V_3;
NullCheck(L_86);
int32_t L_87 = L_86->get_ExponentDigits_8();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_88 = V_3;
NullCheck(L_88);
int32_t L_89 = L_88->get_ExponentTailSharpDigits_9();
if ((((int32_t)L_85) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_87, (int32_t)L_89)))))
{
goto IL_01c3;
}
}
{
bool L_90 = V_8;
if (!L_90)
{
goto IL_0201;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_91 = V_3;
NullCheck(L_91);
bool L_92 = L_91->get_ExponentNegativeSignOnly_10();
if (L_92)
{
goto IL_0201;
}
}
{
StringBuilder_t * L_93 = V_6;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_94 = ___nfi1;
NullCheck(L_94);
String_t* L_95 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747_inline(L_94, /*hidden argument*/NULL);
NullCheck(L_93);
StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_93, 0, L_95, /*hidden argument*/NULL);
goto IL_0276;
}
IL_0201:
{
bool L_96 = V_8;
if (L_96)
{
goto IL_0276;
}
}
{
StringBuilder_t * L_97 = V_6;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_98 = ___nfi1;
NullCheck(L_98);
String_t* L_99 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_98, /*hidden argument*/NULL);
NullCheck(L_97);
StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_97, 0, L_99, /*hidden argument*/NULL);
goto IL_0276;
}
IL_0216:
{
StringBuilder_t * L_100 = V_4;
NullCheck(L_100);
int32_t L_101 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_100, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_102 = V_3;
NullCheck(L_102);
int32_t L_103 = L_102->get_IntegerDigits_4();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_104 = V_3;
NullCheck(L_104);
int32_t L_105 = L_104->get_IntegerHeadSharpDigits_5();
if ((((int32_t)L_101) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_103, (int32_t)L_105)))))
{
goto IL_024f;
}
}
{
StringBuilder_t * L_106 = V_4;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_107 = V_3;
NullCheck(L_107);
int32_t L_108 = L_107->get_IntegerDigits_4();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_109 = V_3;
NullCheck(L_109);
int32_t L_110 = L_109->get_IntegerHeadSharpDigits_5();
StringBuilder_t * L_111 = V_4;
NullCheck(L_111);
int32_t L_112 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_111, /*hidden argument*/NULL);
NullCheck(L_106);
StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05(L_106, 0, _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_108, (int32_t)L_110)), (int32_t)L_112)), /*hidden argument*/NULL);
}
IL_024f:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_113 = V_3;
NullCheck(L_113);
int32_t L_114 = L_113->get_IntegerDigits_4();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_115 = V_3;
NullCheck(L_115);
int32_t L_116 = L_115->get_IntegerHeadSharpDigits_5();
if ((!(((uint32_t)L_114) == ((uint32_t)L_116))))
{
goto IL_0276;
}
}
{
StringBuilder_t * L_117 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
bool L_118 = NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716(L_117, /*hidden argument*/NULL);
if (!L_118)
{
goto IL_0276;
}
}
{
StringBuilder_t * L_119 = V_4;
StringBuilder_t * L_120 = V_4;
NullCheck(L_120);
int32_t L_121 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_120, /*hidden argument*/NULL);
NullCheck(L_119);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_119, 0, L_121, /*hidden argument*/NULL);
}
IL_0276:
{
StringBuilder_t * L_122 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_ZeroTrimEnd_mCFA43BC122387E7BB042BCD81DE7DE4870FB5D99(L_122, (bool)1, /*hidden argument*/NULL);
goto IL_028a;
}
IL_0280:
{
StringBuilder_t * L_123 = V_5;
NullCheck(L_123);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_123, ((int32_t)48), /*hidden argument*/NULL);
}
IL_028a:
{
StringBuilder_t * L_124 = V_5;
NullCheck(L_124);
int32_t L_125 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_124, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_126 = V_3;
NullCheck(L_126);
int32_t L_127 = L_126->get_DecimalDigits_1();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_128 = V_3;
NullCheck(L_128);
int32_t L_129 = L_128->get_DecimalTailSharpDigits_3();
if ((((int32_t)L_125) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_127, (int32_t)L_129)))))
{
goto IL_0280;
}
}
{
StringBuilder_t * L_130 = V_5;
NullCheck(L_130);
int32_t L_131 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_130, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_132 = V_3;
NullCheck(L_132);
int32_t L_133 = L_132->get_DecimalDigits_1();
if ((((int32_t)L_131) <= ((int32_t)L_133)))
{
goto IL_02cb;
}
}
{
StringBuilder_t * L_134 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_135 = V_3;
NullCheck(L_135);
int32_t L_136 = L_135->get_DecimalDigits_1();
StringBuilder_t * L_137 = V_5;
NullCheck(L_137);
int32_t L_138 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_137, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_139 = V_3;
NullCheck(L_139);
int32_t L_140 = L_139->get_DecimalDigits_1();
NullCheck(L_134);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_134, L_136, ((int32_t)il2cpp_codegen_subtract((int32_t)L_138, (int32_t)L_140)), /*hidden argument*/NULL);
}
IL_02cb:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_141 = V_3;
String_t* L_142 = ___format0;
int32_t L_143 = V_1;
int32_t L_144 = V_2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_145 = ___nfi1;
bool L_146 = __this->get__positive_12();
StringBuilder_t * L_147 = V_4;
StringBuilder_t * L_148 = V_5;
StringBuilder_t * L_149 = V_6;
NullCheck(L_141);
String_t* L_150 = CustomInfo_Format_m1A29FF4C0EF0861E7E2564D8548EEA6916D91252(L_141, L_142, L_143, L_144, L_145, L_146, L_147, L_148, L_149, /*hidden argument*/NULL);
return L_150;
}
}
// System.Void System.NumberFormatter::ZeroTrimEnd(System.Text.StringBuilder,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_ZeroTrimEnd_mCFA43BC122387E7BB042BCD81DE7DE4870FB5D99 (StringBuilder_t * ___sb0, bool ___canEmpty1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B6_0 = 0;
{
V_0 = 0;
StringBuilder_t * L_0 = ___sb0;
NullCheck(L_0);
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_0, /*hidden argument*/NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1));
goto IL_0020;
}
IL_000d:
{
StringBuilder_t * L_2 = ___sb0;
int32_t L_3 = V_1;
NullCheck(L_2);
Il2CppChar L_4 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_2, L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)48)))))
{
goto IL_0032;
}
}
{
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
int32_t L_6 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1));
}
IL_0020:
{
bool L_7 = ___canEmpty1;
if (L_7)
{
goto IL_0029;
}
}
{
int32_t L_8 = V_1;
G_B6_0 = ((((int32_t)L_8) > ((int32_t)0))? 1 : 0);
goto IL_0030;
}
IL_0029:
{
int32_t L_9 = V_1;
G_B6_0 = ((((int32_t)((((int32_t)L_9) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0030:
{
if (G_B6_0)
{
goto IL_000d;
}
}
IL_0032:
{
int32_t L_10 = V_0;
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0046;
}
}
{
StringBuilder_t * L_11 = ___sb0;
StringBuilder_t * L_12 = ___sb0;
NullCheck(L_12);
int32_t L_13 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_12, /*hidden argument*/NULL);
int32_t L_14 = V_0;
int32_t L_15 = V_0;
NullCheck(L_11);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_11, ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), L_15, /*hidden argument*/NULL);
}
IL_0046:
{
return;
}
}
// System.Boolean System.NumberFormatter::IsZeroOnly(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716 (StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0023;
}
IL_0004:
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = V_0;
NullCheck(L_0);
Il2CppChar L_2 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_0, L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_3 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001f;
}
}
{
StringBuilder_t * L_4 = ___sb0;
int32_t L_5 = V_0;
NullCheck(L_4);
Il2CppChar L_6 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_4, L_5, /*hidden argument*/NULL);
if ((((int32_t)L_6) == ((int32_t)((int32_t)48))))
{
goto IL_001f;
}
}
{
return (bool)0;
}
IL_001f:
{
int32_t L_7 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_0023:
{
int32_t L_8 = V_0;
StringBuilder_t * L_9 = ___sb0;
NullCheck(L_9);
int32_t L_10 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_9, /*hidden argument*/NULL);
if ((((int32_t)L_8) < ((int32_t)L_10)))
{
goto IL_0004;
}
}
{
return (bool)1;
}
}
// System.Void System.NumberFormatter::AppendNonNegativeNumber(System.Text.StringBuilder,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1 (StringBuilder_t * ___sb0, int32_t ___v1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___v1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000a;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m77591C20EDA3ADEE2FAF1987321D686E249326C5(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_RuntimeMethod_var);
}
IL_000a:
{
int32_t L_2 = ___v1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_3 = NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2((((int64_t)((int64_t)L_2))), /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
}
IL_0014:
{
int32_t L_4 = ___v1;
int32_t L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_6 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_5, /*hidden argument*/NULL);
V_1 = ((int32_t)((int32_t)L_4/(int32_t)(((int32_t)((int32_t)L_6)))));
StringBuilder_t * L_7 = ___sb0;
int32_t L_8 = V_1;
NullCheck(L_7);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_7, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)L_8))))), /*hidden argument*/NULL);
int32_t L_9 = ___v1;
int32_t L_10 = V_0;
int32_t L_11 = L_10;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
int64_t L_12 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_11, /*hidden argument*/NULL);
int32_t L_13 = V_1;
___v1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)L_12))), (int32_t)L_13))));
int32_t L_14 = V_0;
if ((((int32_t)L_14) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
return;
}
}
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_m37A5A133D337FE0E7378D3F5C9B5C42ABC4F500C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, StringBuilder_t * ___sb1, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0014;
}
}
{
StringBuilder_t * L_1 = ___sb1;
int32_t L_2 = ___minLength0;
NullCheck(L_1);
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(L_1, ((int32_t)48), L_2, /*hidden argument*/NULL);
return;
}
IL_0014:
{
int32_t L_3 = __this->get__decPointPos_18();
int32_t L_4 = ___minLength0;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_002e;
}
}
{
StringBuilder_t * L_5 = ___sb1;
int32_t L_6 = ___minLength0;
int32_t L_7 = __this->get__decPointPos_18();
NullCheck(L_5);
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(L_5, ((int32_t)48), ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), /*hidden argument*/NULL);
}
IL_002e:
{
int32_t L_8 = __this->get__digitsLen_16();
int32_t L_9 = __this->get__decPointPos_18();
int32_t L_10 = __this->get__digitsLen_16();
StringBuilder_t * L_11 = ___sb1;
NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)), L_10, L_11, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_mD6FB81A7D8109CDAED213804F4D91E2FA476BD88 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___minLength0;
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), L_1, /*hidden argument*/NULL);
return;
}
IL_0013:
{
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = ___minLength0;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002c;
}
}
{
int32_t L_4 = ___minLength0;
int32_t L_5 = __this->get__decPointPos_18();
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5)), /*hidden argument*/NULL);
}
IL_002c:
{
int32_t L_6 = __this->get__digitsLen_16();
int32_t L_7 = __this->get__decPointPos_18();
int32_t L_8 = __this->get__digitsLen_16();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), L_8, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE1BE0D20CD069420690F5E5C06A394C7369C90BF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, StringBuilder_t * ___sb1, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = ___precision0;
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = __this->get__digitsLen_16();
int32_t L_4 = __this->get__decPointPos_18();
StringBuilder_t * L_5 = ___sb1;
NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)L_2)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)), L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = ___precision0;
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = __this->get__digitsLen_16();
int32_t L_4 = __this->get__decPointPos_18();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)L_2)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendIntegerStringWithGroupSeparator(System.Int32[],System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___groups0, String_t* ___groupSeparator1, 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;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t G_B11_0 = 0;
int32_t G_B19_0 = 0;
{
bool L_0 = NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0011;
}
}
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)48), /*hidden argument*/NULL);
return;
}
IL_0011:
{
V_0 = 0;
V_1 = 0;
V_2 = 0;
goto IL_002e;
}
IL_0019:
{
int32_t L_1 = V_0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = ___groups0;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_5));
int32_t L_6 = V_0;
int32_t L_7 = __this->get__decPointPos_18();
if ((((int32_t)L_6) > ((int32_t)L_7)))
{
goto IL_0034;
}
}
{
int32_t L_8 = V_2;
V_1 = L_8;
int32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_002e:
{
int32_t L_10 = V_2;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = ___groups0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_0019;
}
}
IL_0034:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = ___groups0;
NullCheck(L_12);
if (!(((RuntimeArray*)L_12)->max_length))
{
goto IL_0150;
}
}
{
int32_t L_13 = V_0;
if ((((int32_t)L_13) <= ((int32_t)0)))
{
goto IL_0150;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = ___groups0;
int32_t L_15 = V_1;
NullCheck(L_14);
int32_t L_16 = L_15;
int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_4 = L_17;
int32_t L_18 = __this->get__decPointPos_18();
int32_t L_19 = V_0;
if ((((int32_t)L_18) > ((int32_t)L_19)))
{
goto IL_0053;
}
}
{
G_B11_0 = 0;
goto IL_005b;
}
IL_0053:
{
int32_t L_20 = __this->get__decPointPos_18();
int32_t L_21 = V_0;
G_B11_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21));
}
IL_005b:
{
V_5 = G_B11_0;
int32_t L_22 = V_4;
if (L_22)
{
goto IL_007e;
}
}
{
goto IL_0067;
}
IL_0063:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
}
IL_0067:
{
int32_t L_24 = V_1;
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_0070;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_25 = ___groups0;
int32_t L_26 = V_1;
NullCheck(L_25);
int32_t L_27 = L_26;
int32_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
if (!L_28)
{
goto IL_0063;
}
}
IL_0070:
{
int32_t L_29 = V_5;
if ((((int32_t)L_29) > ((int32_t)0)))
{
goto IL_007a;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_30 = ___groups0;
int32_t L_31 = V_1;
NullCheck(L_30);
int32_t L_32 = L_31;
int32_t L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
G_B19_0 = L_33;
goto IL_007c;
}
IL_007a:
{
int32_t L_34 = V_5;
G_B19_0 = L_34;
}
IL_007c:
{
V_4 = G_B19_0;
}
IL_007e:
{
int32_t L_35 = V_5;
if (L_35)
{
goto IL_0087;
}
}
{
int32_t L_36 = V_4;
V_3 = L_36;
goto IL_00a1;
}
IL_0087:
{
int32_t L_37 = V_1;
int32_t L_38 = V_5;
int32_t L_39 = V_4;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)((int32_t)((int32_t)L_38/(int32_t)L_39))));
int32_t L_40 = V_5;
int32_t L_41 = V_4;
V_3 = ((int32_t)((int32_t)L_40%(int32_t)L_41));
int32_t L_42 = V_3;
if (L_42)
{
goto IL_009d;
}
}
{
int32_t L_43 = V_4;
V_3 = L_43;
goto IL_00a1;
}
IL_009d:
{
int32_t L_44 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
}
IL_00a1:
{
int32_t L_45 = V_0;
int32_t L_46 = __this->get__decPointPos_18();
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_00e2;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_47 = ___groups0;
NullCheck(L_47);
int32_t L_48 = 0;
int32_t L_49 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
V_6 = L_49;
int32_t L_50 = V_0;
int32_t L_51 = V_6;
if ((((int32_t)L_50) <= ((int32_t)L_51)))
{
goto IL_00e2;
}
}
{
int32_t L_52 = V_6;
int32_t L_53 = __this->get__decPointPos_18();
V_7 = ((-((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53))));
int32_t L_54 = V_7;
int32_t L_55 = V_6;
if ((((int32_t)L_54) >= ((int32_t)L_55)))
{
goto IL_00cb;
}
}
{
int32_t L_56 = V_7;
V_3 = L_56;
goto IL_00e2;
}
IL_00cb:
{
int32_t L_57 = V_6;
if ((((int32_t)L_57) <= ((int32_t)0)))
{
goto IL_00e2;
}
}
{
int32_t L_58 = __this->get__decPointPos_18();
int32_t L_59 = V_6;
int32_t L_60 = ((int32_t)((int32_t)L_58%(int32_t)L_59));
V_8 = L_60;
if ((((int32_t)L_60) <= ((int32_t)0)))
{
goto IL_00e2;
}
}
{
int32_t L_61 = V_8;
V_3 = L_61;
}
IL_00e2:
{
V_9 = 0;
}
IL_00e5:
{
int32_t L_62 = __this->get__decPointPos_18();
int32_t L_63 = V_9;
int32_t L_64 = V_3;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_62, (int32_t)L_63))) <= ((int32_t)L_64)))
{
goto IL_00f4;
}
}
{
int32_t L_65 = V_3;
if (L_65)
{
goto IL_0111;
}
}
IL_00f4:
{
int32_t L_66 = __this->get__digitsLen_16();
int32_t L_67 = __this->get__decPointPos_18();
int32_t L_68 = __this->get__digitsLen_16();
int32_t L_69 = V_9;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_66, (int32_t)L_67)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_68, (int32_t)L_69)), /*hidden argument*/NULL);
return;
}
IL_0111:
{
int32_t L_70 = __this->get__digitsLen_16();
int32_t L_71 = V_9;
int32_t L_72 = V_3;
int32_t L_73 = __this->get__digitsLen_16();
int32_t L_74 = V_9;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)L_71)), (int32_t)L_72)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_73, (int32_t)L_74)), /*hidden argument*/NULL);
int32_t L_75 = V_9;
int32_t L_76 = V_3;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)L_76));
String_t* L_77 = ___groupSeparator1;
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_77, /*hidden argument*/NULL);
int32_t L_78 = V_1;
int32_t L_79 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_78, (int32_t)1));
V_1 = L_79;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_80 = ___groups0;
NullCheck(L_80);
if ((((int32_t)L_79) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_80)->max_length)))))))
{
goto IL_014b;
}
}
{
int32_t L_81 = V_1;
if ((((int32_t)L_81) < ((int32_t)0)))
{
goto IL_014b;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_82 = ___groups0;
int32_t L_83 = V_1;
NullCheck(L_82);
int32_t L_84 = L_83;
int32_t L_85 = (L_82)->GetAt(static_cast<il2cpp_array_size_t>(L_84));
V_4 = L_85;
}
IL_014b:
{
int32_t L_86 = V_4;
V_3 = L_86;
goto IL_00e5;
}
IL_0150:
{
int32_t L_87 = __this->get__digitsLen_16();
int32_t L_88 = __this->get__decPointPos_18();
int32_t L_89 = __this->get__digitsLen_16();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_87, (int32_t)L_88)), L_89, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendExponent(System.Globalization.NumberFormatInfo,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi0, int32_t ___exponent1, int32_t ___minDigits2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
bool L_0 = __this->get__specifierIsUpper_11();
if (L_0)
{
goto IL_0012;
}
}
{
Il2CppChar L_1 = __this->get__specifier_13();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)82)))))
{
goto IL_001c;
}
}
IL_0012:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)69), /*hidden argument*/NULL);
goto IL_0024;
}
IL_001c:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)101), /*hidden argument*/NULL);
}
IL_0024:
{
int32_t L_2 = ___exponent1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0036;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___nfi0;
NullCheck(L_3);
String_t* L_4 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747_inline(L_3, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_4, /*hidden argument*/NULL);
goto IL_0046;
}
IL_0036:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___nfi0;
NullCheck(L_5);
String_t* L_6 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline(L_5, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_6, /*hidden argument*/NULL);
int32_t L_7 = ___exponent1;
___exponent1 = ((-L_7));
}
IL_0046:
{
int32_t L_8 = ___exponent1;
if (L_8)
{
goto IL_0053;
}
}
{
int32_t L_9 = ___minDigits2;
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), L_9, /*hidden argument*/NULL);
return;
}
IL_0053:
{
int32_t L_10 = ___exponent1;
if ((((int32_t)L_10) >= ((int32_t)((int32_t)10))))
{
goto IL_006f;
}
}
{
int32_t L_11 = ___minDigits2;
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL);
int32_t L_12 = ___exponent1;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)L_12))))), /*hidden argument*/NULL);
return;
}
IL_006f:
{
int32_t L_13 = ___exponent1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_14 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_13, /*hidden argument*/NULL);
V_0 = L_14;
int32_t L_15 = ___exponent1;
if ((((int32_t)L_15) >= ((int32_t)((int32_t)100))))
{
goto IL_007f;
}
}
{
int32_t L_16 = ___minDigits2;
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_008c;
}
}
IL_007f:
{
uint32_t L_17 = V_0;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((uint32_t)L_17>>8))))))), /*hidden argument*/NULL);
}
IL_008c:
{
uint32_t L_18 = V_0;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)((int32_t)((uint32_t)L_18>>4))&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
uint32_t L_19 = V_0;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendOneDigit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendOneDigit_m00E78B4DAFD47E5393BF1B3664B4453A646061A5 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = __this->get__ind_23();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = __this->get__cbuf_7();
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))))
{
goto IL_001f;
}
}
{
int32_t L_2 = __this->get__ind_23();
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_001f:
{
int32_t L_3 = ___start0;
int32_t L_4 = __this->get__offset_17();
___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4));
int32_t L_5 = ___start0;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
V_0 = 0;
goto IL_006a;
}
IL_0031:
{
int32_t L_6 = ___start0;
if ((((int32_t)L_6) >= ((int32_t)8)))
{
goto IL_003e;
}
}
{
uint32_t L_7 = __this->get__val1_19();
V_0 = L_7;
goto IL_006a;
}
IL_003e:
{
int32_t L_8 = ___start0;
if ((((int32_t)L_8) >= ((int32_t)((int32_t)16))))
{
goto IL_004c;
}
}
{
uint32_t L_9 = __this->get__val2_20();
V_0 = L_9;
goto IL_006a;
}
IL_004c:
{
int32_t L_10 = ___start0;
if ((((int32_t)L_10) >= ((int32_t)((int32_t)24))))
{
goto IL_005a;
}
}
{
uint32_t L_11 = __this->get__val3_21();
V_0 = L_11;
goto IL_006a;
}
IL_005a:
{
int32_t L_12 = ___start0;
if ((((int32_t)L_12) >= ((int32_t)((int32_t)32))))
{
goto IL_0068;
}
}
{
uint32_t L_13 = __this->get__val4_22();
V_0 = L_13;
goto IL_006a;
}
IL_0068:
{
V_0 = 0;
}
IL_006a:
{
uint32_t L_14 = V_0;
int32_t L_15 = ___start0;
V_0 = ((int32_t)((uint32_t)L_14>>((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_15&(int32_t)7))<<(int32_t)2))&(int32_t)((int32_t)31)))));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = __this->get__cbuf_7();
int32_t L_17 = __this->get__ind_23();
V_1 = L_17;
int32_t L_18 = V_1;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
int32_t L_19 = V_1;
uint32_t L_20 = V_0;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_20&(int32_t)((int32_t)15)))))))));
return;
}
}
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___start0;
int32_t L_1 = ___end1;
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
int32_t L_2 = __this->get__ind_23();
int32_t L_3 = ___end1;
int32_t L_4 = ___start0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4))));
int32_t L_5 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = __this->get__cbuf_7();
NullCheck(L_6);
if ((((int32_t)L_5) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))
{
goto IL_0025;
}
}
{
int32_t L_7 = V_0;
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_0025:
{
int32_t L_8 = V_0;
__this->set__ind_23(L_8);
int32_t L_9 = ___end1;
int32_t L_10 = __this->get__offset_17();
___end1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_10));
int32_t L_11 = ___start0;
int32_t L_12 = __this->get__offset_17();
___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12));
int32_t L_13 = ___start0;
int32_t L_14 = ___start0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)8)), (int32_t)((int32_t)((int32_t)L_14&(int32_t)7))));
}
IL_0048:
{
int32_t L_15 = V_1;
if ((!(((uint32_t)L_15) == ((uint32_t)8))))
{
goto IL_0055;
}
}
{
uint32_t L_16 = __this->get__val1_19();
V_2 = L_16;
goto IL_0081;
}
IL_0055:
{
int32_t L_17 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)16)))))
{
goto IL_0063;
}
}
{
uint32_t L_18 = __this->get__val2_20();
V_2 = L_18;
goto IL_0081;
}
IL_0063:
{
int32_t L_19 = V_1;
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)24)))))
{
goto IL_0071;
}
}
{
uint32_t L_20 = __this->get__val3_21();
V_2 = L_20;
goto IL_0081;
}
IL_0071:
{
int32_t L_21 = V_1;
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)32)))))
{
goto IL_007f;
}
}
{
uint32_t L_22 = __this->get__val4_22();
V_2 = L_22;
goto IL_0081;
}
IL_007f:
{
V_2 = 0;
}
IL_0081:
{
uint32_t L_23 = V_2;
int32_t L_24 = ___start0;
V_2 = ((int32_t)((uint32_t)L_23>>((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_24&(int32_t)7))<<(int32_t)2))&(int32_t)((int32_t)31)))));
int32_t L_25 = V_1;
int32_t L_26 = ___end1;
if ((((int32_t)L_25) <= ((int32_t)L_26)))
{
goto IL_0092;
}
}
{
int32_t L_27 = ___end1;
V_1 = L_27;
}
IL_0092:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_28 = __this->get__cbuf_7();
int32_t L_29 = V_0;
int32_t L_30 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1));
V_0 = L_30;
uint32_t L_31 = V_2;
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_30), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_31&(int32_t)((int32_t)15)))))))));
int32_t L_32 = V_1;
int32_t L_33 = ___start0;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)L_33));
int32_t L_34 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1)))
{
case 0:
{
goto IL_017f;
}
case 1:
{
goto IL_0167;
}
case 2:
{
goto IL_014f;
}
case 3:
{
goto IL_0137;
}
case 4:
{
goto IL_011f;
}
case 5:
{
goto IL_0107;
}
case 6:
{
goto IL_00ef;
}
case 7:
{
goto IL_00d7;
}
}
}
{
goto IL_0184;
}
IL_00d7:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_35 = __this->get__cbuf_7();
int32_t L_36 = V_0;
int32_t L_37 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1));
V_0 = L_37;
uint32_t L_38 = V_2;
int32_t L_39 = ((int32_t)((uint32_t)L_38>>4));
V_2 = L_39;
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_39&(int32_t)((int32_t)15)))))))));
}
IL_00ef:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_40 = __this->get__cbuf_7();
int32_t L_41 = V_0;
int32_t L_42 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1));
V_0 = L_42;
uint32_t L_43 = V_2;
int32_t L_44 = ((int32_t)((uint32_t)L_43>>4));
V_2 = L_44;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(L_42), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_44&(int32_t)((int32_t)15)))))))));
}
IL_0107:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_45 = __this->get__cbuf_7();
int32_t L_46 = V_0;
int32_t L_47 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)1));
V_0 = L_47;
uint32_t L_48 = V_2;
int32_t L_49 = ((int32_t)((uint32_t)L_48>>4));
V_2 = L_49;
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(L_47), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_49&(int32_t)((int32_t)15)))))))));
}
IL_011f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_50 = __this->get__cbuf_7();
int32_t L_51 = V_0;
int32_t L_52 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1));
V_0 = L_52;
uint32_t L_53 = V_2;
int32_t L_54 = ((int32_t)((uint32_t)L_53>>4));
V_2 = L_54;
NullCheck(L_50);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(L_52), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_54&(int32_t)((int32_t)15)))))))));
}
IL_0137:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_55 = __this->get__cbuf_7();
int32_t L_56 = V_0;
int32_t L_57 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_56, (int32_t)1));
V_0 = L_57;
uint32_t L_58 = V_2;
int32_t L_59 = ((int32_t)((uint32_t)L_58>>4));
V_2 = L_59;
NullCheck(L_55);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(L_57), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_59&(int32_t)((int32_t)15)))))))));
}
IL_014f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_60 = __this->get__cbuf_7();
int32_t L_61 = V_0;
int32_t L_62 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_61, (int32_t)1));
V_0 = L_62;
uint32_t L_63 = V_2;
int32_t L_64 = ((int32_t)((uint32_t)L_63>>4));
V_2 = L_64;
NullCheck(L_60);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(L_62), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_64&(int32_t)((int32_t)15)))))))));
}
IL_0167:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_65 = __this->get__cbuf_7();
int32_t L_66 = V_0;
int32_t L_67 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_66, (int32_t)1));
V_0 = L_67;
uint32_t L_68 = V_2;
int32_t L_69 = ((int32_t)((uint32_t)L_68>>4));
V_2 = L_69;
NullCheck(L_65);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_67), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_69&(int32_t)((int32_t)15)))))))));
}
IL_017f:
{
int32_t L_70 = V_1;
int32_t L_71 = ___end1;
if ((!(((uint32_t)L_70) == ((uint32_t)L_71))))
{
goto IL_0184;
}
}
{
return;
}
IL_0184:
{
int32_t L_72 = V_1;
___start0 = L_72;
int32_t L_73 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_73, (int32_t)8));
goto IL_0048;
}
}
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, StringBuilder_t * ___sb2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___start0;
int32_t L_1 = ___end1;
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
StringBuilder_t * L_2 = ___sb2;
NullCheck(L_2);
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
int32_t L_4 = ___end1;
int32_t L_5 = ___start0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))));
StringBuilder_t * L_6 = ___sb2;
int32_t L_7 = V_0;
NullCheck(L_6);
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_6, L_7, /*hidden argument*/NULL);
int32_t L_8 = ___end1;
int32_t L_9 = __this->get__offset_17();
___end1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9));
int32_t L_10 = ___start0;
int32_t L_11 = __this->get__offset_17();
___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11));
int32_t L_12 = ___start0;
int32_t L_13 = ___start0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)8)), (int32_t)((int32_t)((int32_t)L_13&(int32_t)7))));
}
IL_0033:
{
int32_t L_14 = V_1;
if ((!(((uint32_t)L_14) == ((uint32_t)8))))
{
goto IL_0040;
}
}
{
uint32_t L_15 = __this->get__val1_19();
V_2 = L_15;
goto IL_006c;
}
IL_0040:
{
int32_t L_16 = V_1;
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)16)))))
{
goto IL_004e;
}
}
{
uint32_t L_17 = __this->get__val2_20();
V_2 = L_17;
goto IL_006c;
}
IL_004e:
{
int32_t L_18 = V_1;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)24)))))
{
goto IL_005c;
}
}
{
uint32_t L_19 = __this->get__val3_21();
V_2 = L_19;
goto IL_006c;
}
IL_005c:
{
int32_t L_20 = V_1;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)32)))))
{
goto IL_006a;
}
}
{
uint32_t L_21 = __this->get__val4_22();
V_2 = L_21;
goto IL_006c;
}
IL_006a:
{
V_2 = 0;
}
IL_006c:
{
uint32_t L_22 = V_2;
int32_t L_23 = ___start0;
V_2 = ((int32_t)((uint32_t)L_22>>((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_23&(int32_t)7))<<(int32_t)2))&(int32_t)((int32_t)31)))));
int32_t L_24 = V_1;
int32_t L_25 = ___end1;
if ((((int32_t)L_24) <= ((int32_t)L_25)))
{
goto IL_007d;
}
}
{
int32_t L_26 = ___end1;
V_1 = L_26;
}
IL_007d:
{
StringBuilder_t * L_27 = ___sb2;
int32_t L_28 = V_0;
int32_t L_29 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
V_0 = L_29;
uint32_t L_30 = V_2;
NullCheck(L_27);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_27, L_29, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_30&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
int32_t L_31 = V_1;
int32_t L_32 = ___start0;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_32));
int32_t L_33 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_33, (int32_t)1)))
{
case 0:
{
goto IL_0162;
}
case 1:
{
goto IL_014b;
}
case 2:
{
goto IL_0134;
}
case 3:
{
goto IL_011d;
}
case 4:
{
goto IL_0106;
}
case 5:
{
goto IL_00ef;
}
case 6:
{
goto IL_00d8;
}
case 7:
{
goto IL_00c1;
}
}
}
{
goto IL_0167;
}
IL_00c1:
{
StringBuilder_t * L_34 = ___sb2;
int32_t L_35 = V_0;
int32_t L_36 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_0 = L_36;
uint32_t L_37 = V_2;
int32_t L_38 = ((int32_t)((uint32_t)L_37>>4));
V_2 = L_38;
NullCheck(L_34);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_34, L_36, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_38&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_00d8:
{
StringBuilder_t * L_39 = ___sb2;
int32_t L_40 = V_0;
int32_t L_41 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)1));
V_0 = L_41;
uint32_t L_42 = V_2;
int32_t L_43 = ((int32_t)((uint32_t)L_42>>4));
V_2 = L_43;
NullCheck(L_39);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_39, L_41, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_43&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_00ef:
{
StringBuilder_t * L_44 = ___sb2;
int32_t L_45 = V_0;
int32_t L_46 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_45, (int32_t)1));
V_0 = L_46;
uint32_t L_47 = V_2;
int32_t L_48 = ((int32_t)((uint32_t)L_47>>4));
V_2 = L_48;
NullCheck(L_44);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_44, L_46, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_48&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_0106:
{
StringBuilder_t * L_49 = ___sb2;
int32_t L_50 = V_0;
int32_t L_51 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)1));
V_0 = L_51;
uint32_t L_52 = V_2;
int32_t L_53 = ((int32_t)((uint32_t)L_52>>4));
V_2 = L_53;
NullCheck(L_49);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_49, L_51, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_53&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_011d:
{
StringBuilder_t * L_54 = ___sb2;
int32_t L_55 = V_0;
int32_t L_56 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1));
V_0 = L_56;
uint32_t L_57 = V_2;
int32_t L_58 = ((int32_t)((uint32_t)L_57>>4));
V_2 = L_58;
NullCheck(L_54);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_54, L_56, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_58&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_0134:
{
StringBuilder_t * L_59 = ___sb2;
int32_t L_60 = V_0;
int32_t L_61 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_60, (int32_t)1));
V_0 = L_61;
uint32_t L_62 = V_2;
int32_t L_63 = ((int32_t)((uint32_t)L_62>>4));
V_2 = L_63;
NullCheck(L_59);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_59, L_61, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_63&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_014b:
{
StringBuilder_t * L_64 = ___sb2;
int32_t L_65 = V_0;
int32_t L_66 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)1));
V_0 = L_66;
uint32_t L_67 = V_2;
int32_t L_68 = ((int32_t)((uint32_t)L_67>>4));
V_2 = L_68;
NullCheck(L_64);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_64, L_66, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_68&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_0162:
{
int32_t L_69 = V_1;
int32_t L_70 = ___end1;
if ((!(((uint32_t)L_69) == ((uint32_t)L_70))))
{
goto IL_0167;
}
}
{
return;
}
IL_0167:
{
int32_t L_71 = V_1;
___start0 = L_71;
int32_t L_72 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)8));
goto IL_0033;
}
}
// System.Void System.NumberFormatter::Multiply10(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___count0;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_000c;
}
}
{
int32_t L_1 = __this->get__digitsLen_16();
if (L_1)
{
goto IL_000d;
}
}
IL_000c:
{
return;
}
IL_000d:
{
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = ___count0;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3)));
return;
}
}
// System.Void System.NumberFormatter::Divide10(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatter_Divide10_m19182F6184716E02E9DBA42FCF89EFEBA7AC19B7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___count0;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_000c;
}
}
{
int32_t L_1 = __this->get__digitsLen_16();
if (L_1)
{
goto IL_000d;
}
}
IL_000c:
{
return;
}
IL_000d:
{
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = ___count0;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)));
return;
}
}
// System.NumberFormatter System.NumberFormatter::GetClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL);
return ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)CastclassSealed((RuntimeObject*)L_0, NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87mscorlib7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var);
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_0 = ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get_s_defaultTaskScheduler_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892mscorlib7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_t_currentTask_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE_inline (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method)
{
{
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * L_0 = __this->get_findData_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* SearchResult_get_UserPath_mB57A92D43162037A6A6F8AA91903F33C6D14B636_inline (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_userPath_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
*__this = ((intptr_t)L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void* IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65_inline (intptr_t* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = *__this;
return (void*)(L_0);
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79_inline (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_slot_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88_inline (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->get_m_cookie_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5_inline (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->get_m_cookie_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStoreElement_get_Value_m5822C535F5DD63A7F1BA4EFA424D82450C972A16_inline (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_value_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void LocalDataStoreElement_set_Value_mA97C37A5E8F4E76276D025D604DCBAD1400570B3_inline (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_m_value_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * LocalDataStoreSlot_get_Manager_m75417D224C02173EC33CFD9BF494E82A70B21EDD_inline (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_mgr_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F_inline (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_inherited_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * AttributeInfo_get_Usage_mC0CA19AEB050A11C3E89E5A015E204AB9D51F4A0_inline (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method)
{
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = __this->get__usage_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_AllowMultiple_mF910B0B16B485A8F02C54854FC9A9604B8810FF7_inline (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_allowMultiple_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t AttributeInfo_get_InheritanceLevel_mDC293DDDC43F613FBBA304C3A5FDC63AB3961AAD_inline (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__inheritanceLevel_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_positiveInfinitySymbol_13();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_negativeInfinitySymbol_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_nanSymbol_12();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_currencySymbol_10();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_numberDecimalSeparator_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_numberGroupSeparator_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencyDecimalSeparator_mB1EE2B6EA5D9F58355F26F071B9A08435378214D_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_currencyDecimalSeparator_9();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencyGroupSeparator_m5AC1CA2A478284D1D059459951C8208168A20130_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_currencyGroupSeparator_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_numberNegativePattern_25();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_positiveSign_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_negativeSign_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_isReadOnly_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyDecimalDigits_mB08BE40DFC57B589B74916CF3D63CEBBC7432C25_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_currencyDecimalDigits_22();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyPositivePattern_mA9F592EAAA7F5BD929C60D65936892A45A101D7B_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_currencyPositivePattern_23();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyNegativePattern_mFC6B6D99EB695BFB5ED94F3F7F4DD40F5D02A58A_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_currencyNegativePattern_24();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_NumberDecimalDigits_m52C856E2079DAA1657069DB00506DCF77EA62DC2_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_numberDecimalDigits_21();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentDecimalDigits_mC976C226BAA510C75E13D526FF7407B2A2E2A164_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_percentDecimalDigits_28();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentPositivePattern_mD23B2B53488F48B707952CCFADD216A7E7BAA430_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_percentPositivePattern_26();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_percentSymbol_17();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentNegativePattern_m9563E73E22236A41D695465A1B2E76F3AA7DD463_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_percentNegativePattern_27();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentGroupSeparator_mBCCC5E617B3BEFED528AB99571AC593CEA45B4EC_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_percentGroupSeparator_16();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentDecimalSeparator_m8E0E23E04199DCA6D6E7E494D11522465180CCD2_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_percentDecimalSeparator_15();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m6510C633C5CE5469F032825306A482F311F89A20_gshared_inline (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_mF200874169D9957B0B84C426263AF8D9AC06F165_gshared_inline (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_mB9F3262AABCA302F85A50469C7EC4E7CB4524028_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_mE1BF4632C63BD8DBF8A578455582CC2F21FD4002_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_mA5222F04F99CBA901A4A5B11CCE3D5DA7E8277C3_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item3_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item4_mBC1FC8F28A1BFFE2AB0AFD164DE6305FE98EDA69_gshared_inline (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item4_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_mA483C126556F793CB20A05976E11B4A331D96AA9_gshared_inline (Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar Tuple_2_get_Item2_m41639BC03C1D91747BE1B3493BAC59AB4B6469AF_gshared_inline (Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000 * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = (Il2CppChar)__this->get_m_Item2_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
return L_4;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return L_0;
}
}
| [
"oskalli@Omars-MacBook-Pro.local"
] | oskalli@Omars-MacBook-Pro.local |
c6bf247a8af01aee25bdc4942852a9cf118cadac | 88c29d6f237a15a7326c0cf616faad98367d5dc9 | /src/build-MYPlayer-Desktop_Qt_5_9_8_MSVC2015_64bit-Debug/tmp/debug/moc_MYSubTitle.cpp | 55e844d23d78b3f559ec24bbad36318e09ffb580 | [] | no_license | hackerzZ-Zhao/Video-Player | a9c3cd27b8a0ad884cabca82f5144146068f0f59 | 33bdbcd51c84b7a2126ce8ac4192aee0917cd57e | refs/heads/master | 2022-06-27T14:59:01.660152 | 2020-05-07T22:52:58 | 2020-05-07T22:52:58 | 262,169,625 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,243 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'MYSubTitle.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.8)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../../MYPlayer/MYSubTitle.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'MYSubTitle.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.9.8. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_MYSubTitle_t {
QByteArrayData data[5];
char stringdata0[83];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_MYSubTitle_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_MYSubTitle_t qt_meta_stringdata_MYSubTitle = {
{
QT_MOC_LITERAL(0, 0, 10), // "MYSubTitle"
QT_MOC_LITERAL(1, 11, 13), // "SUBTITLE_TYPE"
QT_MOC_LITERAL(2, 25, 20), // "SUBTITLE_TYPE_UNKNOW"
QT_MOC_LITERAL(3, 46, 17), // "SUBTITLE_TYPE_SRT"
QT_MOC_LITERAL(4, 64, 18) // "SUBTITLE_TYPPE_SSA"
},
"MYSubTitle\0SUBTITLE_TYPE\0SUBTITLE_TYPE_UNKNOW\0"
"SUBTITLE_TYPE_SRT\0SUBTITLE_TYPPE_SSA"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_MYSubTitle[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
1, 14, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// enums: name, flags, count, data
1, 0x0, 3, 18,
// enum data: key, value
2, uint(MYSubTitle::SUBTITLE_TYPE_UNKNOW),
3, uint(MYSubTitle::SUBTITLE_TYPE_SRT),
4, uint(MYSubTitle::SUBTITLE_TYPPE_SSA),
0 // eod
};
void MYSubTitle::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
const QMetaObject MYSubTitle::staticMetaObject = {
{ &QObject::staticMetaObject, qt_meta_stringdata_MYSubTitle.data,
qt_meta_data_MYSubTitle, qt_static_metacall, nullptr, nullptr}
};
const QMetaObject *MYSubTitle::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *MYSubTitle::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_MYSubTitle.stringdata0))
return static_cast<void*>(this);
return QObject::qt_metacast(_clname);
}
int MYSubTitle::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
return _id;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE
| [
"noreply@github.com"
] | noreply@github.com |
aacc1c518a128751dc49d0fa0d169ab6f120f93d | e61480bfd0f4ee1c79e527f61cee53070c7b2933 | /lab3/prioritynpe/timepass.cpp | 2183c8b37d3aaa571abb456907b65093cac6fb07 | [] | no_license | miapurva/OS | 20ffaa3ac181fb67cd84e4bb8ae7dca0edf331a6 | fe307ecb1ae29d3a1a3d707c2743f5335b46daee | refs/heads/master | 2021-09-13T13:11:54.502385 | 2018-04-30T11:54:41 | 2018-04-30T11:54:41 | 111,197,309 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,150 | cpp | #include "prioritynpe_h.h"
#include <cstdlib>
#include <ctime>
#include <iostream>
using namespace std;
void priority_npe_h::priority_npe()
{
srand(time(NULL));
int n=5, CT=0, index=0,flag=0;
//cout<<"Enter the number of processes:\t ";
//n=rand()%7;
for(int i=0; i<5; i++)
{
/*cout<<"Enter the process ID:\t";
cin>>pid[i];
cout<<"Enter the arrival time:\t";
cin>>arrival_Time[i];
cout<<"Enter the Burst time:\t";
cin>>burst_Time[i];*/
pid[i]=i+1;
arrival_Time[i]=rand()%10;
burst_Time[i]=(rand()%10)+1;
priority_Array[i]=(rand()%10)+1;
//duplicate_Burst_Time[i]=burst_Time[i];
}
/*for (int i = 0; i < n; ++i)
{
cout<<arrival_Time[i]<<" "<<burst_Time[i]<<endl;
}*/
for(int i=0; i < n-1; i++)
{
int temp;
for(int j=0; j < n-i-1; j++)
{
if(arrival_Time[j]>arrival_Time[j+1])
{
temp=arrival_Time[j];
arrival_Time[j]=arrival_Time[j+1];
arrival_Time[j+1]=temp;
temp=burst_Time[j];
burst_Time[j]=burst_Time[j+1];
burst_Time[j+1]=temp;
temp=priority_Array[j];
priority_Array[j]=priority_Array[j+1];
priority_Array[j+1]=temp;
temp=pid[j];
pid[j]=pid[j+1];
pid[j+1]=temp;
}
}
}
for (int i = 0; i < n; ++i)
{
cout<<arrival_Time[i]<<" "<<burst_Time[i]<<" "<<priority_Array[i]<<endl;
}
for(int i=0; i<n; i++)
{
check[i]=0;
}
int remain=0;
cout<<"PID Arrival Time Burst Time Priority Array Completion Time Turn Around Time Waiting Time \n";
for (int time = 0; remain!=n; time++)
{
int max=0;
cout<<"max";
for(int j=0;j<n;j++)
{
if((j==0) && (check[j]==0))
{
index=j;
completion_Time[index] = arrival_Time[0] + burst_Time[0];
CT=completion_Time[index];
//turn_Around_Time[index] = completion_Time[index] - arrival_Time[index];
//waiting_Time[index]=turn_Around_Time[index]-burst_Time[index];
remain++;
//check[index]=1;
}
else if((j!=0) && (check[j]==0) && (priority_Array[j] > max) && (arrival_Time[j]<=CT))
{
//flag=1;
index=j;
max = priority_Array[j];
}
else if((flag==0)&&(arrival_Time[index]>CT)&&(index!=0))
{
CT= time+1;
break;
}
}
/*if((flag==0)&&(arrival_Time[index]>CT)&&(index!=0))
{
//continue;
CT=time+1;
}*/
check[index]=1;
// cout<<"prio"<<index<<endl;
/*cout<<"check"<<endl;
for(int k=0;k<n;k++)
{
cout<<check[k]<<endl;
}*/
if(arrival_Time[index]<=CT && index>0)
{
//cout<<"Index "<< index<<endl;
completion_Time[index] = CT + burst_Time[index];
remain++;
CT=completion_Time[index];
turn_Around_Time[index] = completion_Time[index] - arrival_Time[index];
waiting_Time[index]=turn_Around_Time[index]-burst_Time[index];
//cout<<"Completion:2 "<<completion_Time[index]<<endl;
}
//cout<<pid[index]<<"\t "<<arrival_Time[index]<<" \t\t"<<burst_Time[index]<<" \t\t"<<priority_Array[index]<<" \t\t"<<completion_Time[index]<<" \t\t"<<turn_Around_Time[index]<<" \t\t"<<waiting_Time[index]<<"\n";
}
for (int i = 0; i < n; ++i)
{
cout<<"\t\t\t"<<pid[i]<<"\t "<<arrival_Time[i]<<" \t\t"<<burst_Time[i]<<" \t\t"<<priority_Array[i]<<" \t\t"<<completion_Time[i]<<"\n";
}
}
| [
"ced15i017@iiitdm.ac.in"
] | ced15i017@iiitdm.ac.in |
850774e1fd2a67300730f341aec8f77e08c30581 | eb732da956139586662e33bfb550471fcb91f22d | /src/fastGHQuad.h | e22ad20326f34137abf967b7a71b1435bf758974 | [] | no_license | pablobernabeu/robustlmm | 8093f8bd2f3dfd2921b69eeb470b07dc07c6037b | e8253e634d8cb26cc4f97161c0a27d1e2ccbc5ca | refs/heads/master | 2023-08-27T08:17:12.197455 | 2021-05-24T10:35:04 | 2021-05-24T10:35:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,605 | h | /* copied from fastGHQuad source c5813d03
*
* MIT LICENCE
* Copyright (c) 2014 Alexander W Blocker
*
* 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 _fastGHQuad_LIB_H
#define _fastGHQuad_LIB_H
#include <Rcpp.h>
#include <R_ext/Lapack.h>
/*
* note : RcppExport is an alias to `extern "C"` defined by Rcpp.
*
* It gives C calling convention to the rcpp_hello_world function so that
* it can be called from .Call in R. Otherwise, the C++ compiler mangles the
* name of the function and .Call can't find it.
*
* It is only useful to use RcppExport when the function is intended to be
* called by .Call. See the thread
* http://thread.gmane.org/gmane.comp.lang.r.rcpp/649/focus=672
* on Rcpp-devel for a misuse of RcppExport
*/
double hermitePoly(double x, int n);
RcppExport SEXP evalHermitePoly(SEXP xR, SEXP nR);
void findPolyRoots(const std::vector<double>& c, int n, std::vector<double>* r);
RcppExport SEXP findPolyRoots(SEXP cR);
void hermitePolyCoef(int n, std::vector<double>* c);
RcppExport SEXP hermitePolyCoef(SEXP nR);
void buildHermiteJacobi(int n, std::vector<double>* D, std::vector<double> E);
void quadInfoGolubWelsch(int n, std::vector<double>& D, std::vector<double>& E,
double mu0, std::vector<double>& x,
std::vector<double>& w);
int gaussHermiteDataDirect(int n, std::vector<double>* x,
std::vector<double>* w);
int gaussHermiteDataGolubWelsch(int n, std::vector<double>* x, std::vector<double>* w);
RcppExport SEXP gaussHermiteData(SEXP nR);
#endif
| [
"koller.manuel@gmail.com"
] | koller.manuel@gmail.com |
ef885513c85fc68842193b2607e132778056fe8b | 35248267d65eec0cff474080ae504aad3b94ab06 | /config.h | 1793d9724d1c629f5fa120b1db70a9351a7145c2 | [
"MIT"
] | permissive | voidpp/nemo | 204716dd5761c4561988886b42e8e4fe5d214994 | 6d70fd0af3d578c84900dad4666438b58359ba52 | refs/heads/master | 2021-01-10T01:33:15.517786 | 2016-02-09T19:53:11 | 2016-02-09T19:53:11 | 50,253,584 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 497 | h | #ifndef CONFIG_H
#define CONFIG_H
#include <QJsonObject>
#include <QStringList>
class Config
{
public:
void setFilename(const QString& filename) {
m_filename = filename;
}
bool load();
bool save();
const QJsonObject& getData() const {
return m_data;
}
QJsonObject& getData() {
return m_data;
}
private:
QString m_filename;
QJsonObject m_data;
};
#endif // CONFIG_H
| [
"santa.lajos@coldline.hu"
] | santa.lajos@coldline.hu |
9f25557ffe645064c5e023d7b0f765e8b1e0721f | 8dbaa1b507600175cc3505995b5350eec1790c9d | /qmath/qmath.h | 0218ca37d69d19dd5f4a4fe79b84328cfc93d6cc | [] | no_license | nbqofficial/qmath | 83e9a7948f61b7ebd204a7d07848f9674a5e54ac | aeacee7030df6fb50750ae66446dd7516c60e1c3 | refs/heads/master | 2023-02-20T18:09:44.978214 | 2021-01-24T16:48:30 | 2021-01-24T16:48:30 | 332,501,688 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,922 | h | // QMATH by nbq
#pragma once
#define X_PI 3.14159f
#define X_DIV 57.29577f
namespace qmath
{
/* IMPLEMENTED IN x64 ASSEMBLY */
extern "C" float _abs(float x); // returns absolute value of x
extern "C" float _min(float x, float y); // returns minimum value of x or y
extern "C" float _max(float x, float y); // returns maximum value of x or y
extern "C" float _floor(float x); // returns x rounded to the nearest value
extern "C" float _pow(float x, int y); // returns x to the power of y (only positive)
extern "C" float _sqrt(float x); // returns square root of x
/* IMPLEMENTED IN C++ */
float _asin(float x) // returns arc sin of x in radians
{
float negate = float(x < 0);
x = _abs(x);
float ret = -0.0187293;
ret *= x;
ret += 0.0742610;
ret *= x;
ret -= 0.2121144;
ret *= x;
ret += 1.5707288;
ret = 3.14159265358979 * 0.5 - _sqrt(1.0 - x) * ret;
return ret - 2 * negate * ret;
}
float _acos(float x) // returns arc cos of x in radians
{
float negate = (x < 0);
x = _abs(x);
float ret = -0.01872f;
ret = ret * x;
ret = ret + 0.07426f;
ret = ret * x;
ret = ret - 0.21211f;
ret = ret * x;
ret = ret + 1.57072f;
ret = ret * _sqrt(1.0f - x);
ret = ret - 2 * negate * ret;
return negate * X_PI + ret;
}
float _atan2(float x, float y) // returns arc tan2 of x to the y in radians
{
float t0, t1, t3, t4;
t3 = _abs(x);
t1 = _abs(y);
t0 = _max(t3, t1);
t1 = _min(t3, t1);
t3 = 1 / t0;
t3 = t1 * t3;
t4 = t3 * t3;
t0 = -0.0134804f;
t0 = t0 * t4 + 0.05747f;
t0 = t0 * t4 - 0.12123f;
t0 = t0 * t4 + 0.19563f;
t0 = t0 * t4 - 0.33299f;
t0 = t0 * t4 + 0.99999f;
t3 = t0 * t3;
t3 = (_abs(y) > _abs(x)) ? 1.57079f - t3 : t3;
t3 = (x < 0) ? X_PI - t3 : t3;
t3 = (y < 0) ? -t3 : t3;
return t3;
}
float _atan(float x) // returns arc tan of x in radians
{
return _atan2(x, 1);
}
} | [
"noblanqme@gmail.com"
] | noblanqme@gmail.com |
e7704bdba7f1e1b042da8b326de025b3f2c50e33 | 4d632399ecacc3e829eaffd1a15c92c5b44c40a8 | /프로젝트1주차/설계 과제1/rectangle.h | 496e699b5656b9b4222f83edab52e611005c34a4 | [] | no_license | choijinsung/C-PLUS-PLUS | 79449dd1a1348bc4f4d024e9e8da8f1acad4bee7 | f9e08aeee362af203b66a941c672f0072e6a8581 | refs/heads/master | 2021-01-21T04:55:39.715514 | 2015-04-07T07:59:09 | 2015-04-07T07:59:09 | 33,529,819 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 602 | h | #ifndef RECTANGLE_H
#define RECTANGLE_H
class Rectangle
{
public:
/* 생성자 */
Rectangle();
/* 데이터 얻기 */
double Get_UP_X();
double Get_UP_Y();
double Get_DOWN_X();
double Get_DOWN_Y();
double Get_Color(int num); // 색깔 얻기 (r=0, g=1, b=2)
/* 데이터 입력 */
void Set_UP_X(double _x);
void Set_UP_Y(double _y);
void Set_DOWN_X(double _x);
void Set_DOWN_Y(double _y);
void Set_Color(double R, double G, double B);
private:
double up_x, up_y; // 좌상단 좌표
double down_x, down_y; // 우하단 좌표
double color[3]; // 색깔 (r=0, g=1, b=2)
};
#endif | [
"bugslife102401@gmail.com"
] | bugslife102401@gmail.com |
352abf8a5df7291dde55fcc9c6cc28f3ccd7c6a3 | cdd97aba68281f2a862d8441c9ec0456bf108163 | /benchmarks/src/453.povray/src/pov_util.cpp | 610738c7c06d1c931bc2903faa719d97f157e407 | [] | no_license | elbrandt/CS752_Proj | 894cf78096d8d8916c30acfbadda36729e69006a | 546a5d0602211fcf8b93492e3cabf61dce6194c0 | refs/heads/main | 2023-02-02T07:33:15.191093 | 2020-12-16T02:44:18 | 2020-12-16T02:44:18 | 312,392,830 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 10,421 | cpp | /****************************************************************************
* pov_util.cpp
*
* This module implements misc utility functions.
*
* from Persistence of Vision(tm) Ray Tracer version 3.6.
* Copyright 1991-2003 Persistence of Vision Team
* Copyright 2003-2004 Persistence of Vision Raytracer Pty. Ltd.
*---------------------------------------------------------------------------
* NOTICE: This source code file is provided so that users may experiment
* with enhancements to POV-Ray and to port the software to platforms other
* than those supported by the POV-Ray developers. There are strict rules
* regarding how you are permitted to use this file. These rules are contained
* in the distribution and derivative versions licenses which should have been
* provided with this file.
*
* These licences may be found online, linked from the end-user license
* agreement that is located at http://www.povray.org/povlegal.html
*---------------------------------------------------------------------------
* This program is based on the popular DKB raytracer version 2.12.
* DKBTrace was originally written by David K. Buck.
* DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
*---------------------------------------------------------------------------
* $File: //depot/povray/3.5/source/pov_util.cpp $
* $Revision: #20 $
* $Change: 3010 $
* $DateTime: 2004/07/27 14:06:43 $
* $Author: thorsten $
* $Log$
*****************************************************************************/
#include <ctype.h>
#include <stdarg.h>
#include "frame.h"
#include "pov_util.h"
#include "povray.h"
BEGIN_POV_NAMESPACE
/*
// not used right now
typedef struct
{
bool read_local;
bool read_global;
bool write_local;
bool write_global;
} POV_File_Restrictions;
POV_File_Restrictions gPOV_File_Restrictions[POV_File_Unknown_Count] =
{
{ false, false, false, false }, // POV_File_Unknown
{ true, true, false, false }, // POV_File_Image_Targa
{ true, true, false, false }, // POV_File_Image_PNG
{ true, true, false, false }, // POV_File_Image_PPM
{ true, true, false, false }, // POV_File_Image_PGM
{ true, true, false, false }, // POV_File_Image_GIF
{ true, true, false, false }, // POV_File_Image_IFF
{ true, true, false, false }, // POV_File_Image_JPEG
{ true, true, false, false }, // POV_File_Image_TIFF
{ true, true, false, false }, // POV_File_Image_System
{ true, false, false, false }, // POV_File_Text_POV
{ true, false, false, false }, // POV_File_Text_INC
{ true, false, false, false }, // POV_File_Text_INI
{ true, true, false, false }, // POV_File_Text_CSV
{ true, false, false, false }, // POV_File_Text_Stream
{ true, true, false, false }, // POV_File_Text_User
{ true, true, true, false }, // POV_File_Data_DF3
{ true, true, true, true }, // POV_File_Data_RCA
{ true, true, true, true }, // POV_File_Data_LOG
{ true, false, true, false } // POV_File_Font_TTF
};
*/
/*****************************************************************************
*
* FUNCTION
*
* POV_Std_Split_Time
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* POV-Ray Team
*
* DESCRIPTION
*
* Split time into hours, minutes and seconds.
*
* CHANGES
*
* Changed to use plain integer math. Will no longer operate correctly for
* time differences longer than 6.8 years. [trf]
*
******************************************************************************/
void POV_Std_Split_Time(DBL time_dif, unsigned int *hrs, unsigned int *mins, DBL *secs)
{
int t = (int)(time_dif * 10.0);
*hrs = t / 36000;
*mins = (t / 600) % 60;
*secs = ((DBL)(t % 600)) / 10.0;
}
/*****************************************************************************
*
* FUNCTION
*
* closest_power_of_2
*
* INPUT
*
* theNumber - the value to determine closest power of 2 for.
*
* OUTPUT
*
* RETURNS
*
* The closest power of two is returned, or zero if the
* argument is less than or equal to zero.
*
* AUTHOR
*
* Eduard Schwan
*
* DESCRIPTION
*
* Decription: Find the highest positive power of 2 that is
* less than or equal to the number passed.
*
* Input Output
* ----- ------
* 0 0
* 1 1
* 2 2
* 3 2
* 8 8
* 9 8
*
* CHANGES
*
* Aug 1994 : Created by Eduard.
*
******************************************************************************/
unsigned closest_power_of_2(unsigned theNumber)
{
int PowerOf2Counter;
/* do not handle zero or negative numbers for now */
if (theNumber <= 0)
{
return(0);
}
/* count the number in question down as we count up a power of 2 */
PowerOf2Counter = 1;
while (theNumber > 1)
{
/* move our power of 2 counter bit up... */
PowerOf2Counter <<= 1;
/* and reduce our test number by a factor of 2 two */
theNumber >>= 1;
}
return(PowerOf2Counter);
}
/*****************************************************************************
*
* FUNCTION
* POVMSUtil_SetFormatString
*
* DESCRIPTION
* Stores a string with format information in the given attribute.
*
* CHANGES
* -
*
******************************************************************************/
int POVMSUtil_SetFormatString(POVMSObjectPtr object, POVMSType key, const char *format, ...) // Note: Strings may not contain \0 characters codes!
{
va_list marker;
char buffer[1024];
va_start(marker, format);
vsprintf(buffer, format, marker);
va_end(marker);
return POVMSUtil_SetString(object, key, buffer);
}
/*****************************************************************************
*
* FUNCTION
*
* New_Checked_IStream
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* POV-Ray Team
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
IStream *New_Checked_IStream(char *filename, unsigned int stype)
{
if(POV_ALLOW_FILE_READ(filename, stype) == true)
return New_IStream(filename, stype);
return NULL;
}
/*****************************************************************************
*
* FUNCTION
*
* New_Checked_OStream
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* POV-Ray Team
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
OStream *New_Checked_OStream(char *filename, unsigned int stype, bool append)
{
if(POV_ALLOW_FILE_WRITE(filename, stype) == true)
return New_OStream(filename, stype, append);
return NULL;
}
/*****************************************************************************
*
* FUNCTION
*
* Locate_File
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* POV-Ray Team
*
* DESCRIPTION
*
* Find a file in the search path.
*
* CHANGES
*
* Apr 1996: Don't add trailing FILENAME_SEPARATOR if we are immediately
* following DRIVE_SEPARATOR because of Amiga probs. [AED]
*
******************************************************************************/
IStream *Locate_File(char *filename, unsigned int stype, char *buffer, bool err_flag)
{
IStream *result;
char *qualified_name = Locate_Filename(filename, stype, err_flag);
if (qualified_name != NULL)
{
POV_GET_FULL_PATH(qualified_name, buffer);
result = New_Checked_IStream(qualified_name, stype);
delete[] qualified_name;
}
else
{
/* Any error was already reported in Locate_Filename(...) */
result = NULL;
}
return result;
}
/*****************************************************************************
*
* FUNCTION
*
* Locate_Filename
*
* INPUT
*
* OUTPUT
*
* RETURNS
* Fully expanded filename, including drive, path, ...
*
* AUTHOR
*
* Alexander R. Enzmann
*
* DESCRIPTION
*
* Find a file in the search path.
*
* CHANGES
*
*
******************************************************************************/
char *Locate_Filename(char *filename, unsigned int stype, bool err_flag)
{
int i,ii,l[4];
char pathname[FILE_NAME_LENGTH];
char file[FILE_NAME_LENGTH];
char file_x[4][FILE_NAME_LENGTH];
char *result = NULL;
if (Has_Extension(filename))
{
for(i = 0; i < 4; i++)
l[i]=0;
}
else
{
for(i = 0; i < 4; i++)
{
if ((l[i] = strlen(gPOV_File_Extensions[stype].ext[i])) > 0)
{
strcpy(file_x[i], filename);
strcat(file_x[i], gPOV_File_Extensions[stype].ext[i]);
}
}
}
/* Check the current directory first. */
for(i = 0; i < 4; i++)
{
/* Try appending the variations of the file extension */
if(l[i])
{
if (EXIST_FILE(file_x[i]) == true)
{
result = new char[strlen(file_x[i]) + 1];
POV_GET_FULL_PATH(file_x[i], result);
return result;
}
}
}
/* Try the filename without any modifications */
if (EXIST_FILE(filename) == true)
{
result = new char[strlen(filename) + 1];
POV_GET_FULL_PATH(filename, result);
return result;
}
/* Walk through the library paths, trying with and without file extensions */
for (i = 0; i < opts.Library_Path_Index; i++)
{
strcpy(file, opts.Library_Paths[i]);
file[strlen(file)+1] = '\0';
if (file[strlen(file) - 1] != DRIVE_SEPARATOR)
file[strlen(file)] = FILENAME_SEPARATOR;
for(ii = 0; ii < 4; ii++)
{
if(l[ii])
{
strcpy(pathname, file);
strcat(pathname, file_x[ii]);
if (EXIST_FILE(pathname) == true)
{
result = new char[strlen(pathname) + 1];
POV_GET_FULL_PATH(pathname, result);
return result;
}
}
}
strcpy(pathname, file);
strcat(pathname, filename);
if (EXIST_FILE(pathname) == true)
{
result = new char[strlen(pathname) + 1];
POV_GET_FULL_PATH(pathname, result);
return result;
}
}
// Allow system specific access of font files:
// Obviously this requires POV_NEW_ISTREAM
// to be platform specific as well! [trf]
if(stype == POV_File_Font_TTF)
{
if(EXIST_FONT_FILE(filename))
{
result = new char[strlen(filename) + 1];
strcpy(filename, result);
return result;
}
}
if (err_flag)
{
if (l[0])
PossibleError("Could not find file '%s%s'",filename,gPOV_File_Extensions[stype].ext[0]);
else
PossibleError("Could not find file '%s'",filename);
}
return NULL;
}
END_POV_NAMESPACE
| [
"eric.l.brandt@gmail.com"
] | eric.l.brandt@gmail.com |
86c3601eeb50645bcbba21b9837be7e0cf442d6e | 44af0ea84382b4b87b439e3366b58e89cb4911f1 | /EPI/Solutions/16_Recursion/16.4_power_set_alternative_solution.cpp | b4aab4d85eeb10d4a8ef97f57d9ac83b958c1654 | [] | no_license | axxonite/algorithms | 6c837036f7bc3a968e864e31337b50430d498834 | d5e890c7ccd1addee1772bda826a152cf96c0f03 | refs/heads/master | 2022-12-17T12:09:11.509053 | 2022-11-26T19:39:52 | 2022-11-26T19:39:52 | 231,862,591 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 917 | cpp | // Copyright (c) 2015 Elements of Programming Interviews. All rights reserved.
#include "stdafx.h"
namespace Solutions
{
// Generate all subsets whose intersection with input[0], ...,
// input[index - 1] is exactly partial.
void DirectedPowerSet(const vector<int>& input, int index, vector<int>& partial, vector<vector<int>>& result)
{
if (index == input.size())
{
result.emplace_back(partial);
return;
}
// Generate all subsets that contain input[index].
partial.emplace_back(input[index]);
DirectedPowerSet(input, index + 1, partial, result);
// Generate all subsets that do not contain input[index].
partial.pop_back();
DirectedPowerSet(input, index + 1, partial, result);
}
vector<vector<int>> GeneratePowerSet(const vector<int>& inputSet)
{
vector<vector<int>> result;
vector<int> selectedSoFar;
DirectedPowerSet(inputSet, 0, selectedSoFar, result);
return result;
}
}
| [
"dfilion@outlook.com"
] | dfilion@outlook.com |
5bd6f34e193fa64c7dbdf8ac51a5481d29033e1f | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /third_party/blink/renderer/core/script/classic_pending_script.h | 41c456ba30cc85240dfbea06a7d8f2f7183f5f93 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LGPL-2.0-only",
"BSD-2-Clause",
"LGPL-2.1-only"
] | 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 | 6,162 | 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 THIRD_PARTY_BLINK_RENDERER_CORE_SCRIPT_CLASSIC_PENDING_SCRIPT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_SCRIPT_CLASSIC_PENDING_SCRIPT_H_
#include "third_party/blink/renderer/bindings/core/v8/script_source_location_type.h"
#include "third_party/blink/renderer/bindings/core/v8/script_streamer.h"
#include "third_party/blink/renderer/core/loader/resource/script_resource.h"
#include "third_party/blink/renderer/core/script/classic_script.h"
#include "third_party/blink/renderer/core/script/pending_script.h"
#include "third_party/blink/renderer/platform/loader/fetch/fetch_parameters.h"
#include "third_party/blink/renderer/platform/memory_coordinator.h"
namespace blink {
// PendingScript for a classic script
// https://html.spec.whatwg.org/multipage/webappapis.html#classic-script.
//
// TODO(kochi): The comment below is from pre-oilpan age and may not be correct
// now.
// A RefPtr alone does not prevent the underlying Resource from purging its data
// buffer. This class holds a dummy client open for its lifetime in order to
// guarantee that the data buffer will not be purged.
class CORE_EXPORT ClassicPendingScript final : public PendingScript,
public ResourceClient,
public MemoryCoordinatorClient {
USING_GARBAGE_COLLECTED_MIXIN(ClassicPendingScript);
USING_PRE_FINALIZER(ClassicPendingScript, Prefinalize);
public:
// https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-classic-script
//
// For a script from an external file, calls ScriptResource::Fetch() and
// creates ClassicPendingScript. Returns nullptr if Fetch() returns nullptr.
static ClassicPendingScript* Fetch(const KURL&,
Document&,
const ScriptFetchOptions&,
const WTF::TextEncoding&,
ScriptElementBase*,
FetchParameters::DeferOption);
// For an inline script.
static ClassicPendingScript* CreateInline(ScriptElementBase*,
const TextPosition&,
ScriptSourceLocationType,
const ScriptFetchOptions&);
~ClassicPendingScript() override;
// ScriptStreamer callbacks.
void SetStreamer(ScriptStreamer*);
void StreamingFinished();
void Trace(blink::Visitor*) override;
blink::ScriptType GetScriptType() const override {
return blink::ScriptType::kClassic;
}
ClassicScript* GetSource(const KURL& document_url,
bool& error_occurred) const override;
bool IsReady() const override;
bool IsExternal() const override { return is_external_; }
bool ErrorOccurred() const override;
bool WasCanceled() const override;
bool StartStreamingIfPossible(ScriptStreamer::Type,
base::OnceClosure) override;
bool IsCurrentlyStreaming() const override;
KURL UrlForTracing() const override;
void DisposeInternal() override;
void Prefinalize();
private:
// See AdvanceReadyState implementation for valid state transitions.
enum ReadyState {
// These states are considered "not ready".
kWaitingForResource,
kWaitingForStreaming,
// These states are considered "ready".
kReady,
kReadyStreaming,
kErrorOccurred,
};
ClassicPendingScript(ScriptElementBase*,
const TextPosition&,
ScriptSourceLocationType,
const ScriptFetchOptions&,
bool is_external);
ClassicPendingScript() = delete;
// Advances the current state of the script, reporting to the client if
// appropriate.
void AdvanceReadyState(ReadyState);
// Handle the end of streaming.
void FinishWaitingForStreaming();
void FinishReadyStreaming();
void CancelStreaming();
void CheckState() const override;
// ResourceClient
void NotifyFinished(Resource*) override;
String DebugName() const override { return "PendingScript"; }
void DataReceived(Resource*, const char*, size_t) override;
// MemoryCoordinatorClient
void OnPurgeMemory() override;
const ScriptFetchOptions options_;
// "base url" snapshot taken at #prepare-a-script timing.
// https://html.spec.whatwg.org/multipage/scripting.html#prepare-a-script
// which will eventually be used as #concept-script-base-url.
// https://html.spec.whatwg.org/multipage/webappapis.html#concept-script-base-url
const KURL base_url_for_inline_script_;
const ScriptSourceLocationType source_location_type_;
const bool is_external_;
ReadyState ready_state_;
bool integrity_failure_;
// The request is intervened by document.write() intervention.
bool intervened_ = false;
Member<ScriptStreamer> streamer_;
base::OnceClosure streamer_done_;
// This flag tracks whether streamer_ is currently streaming. It is used
// mainly to prevent re-streaming a script while it is being streamed.
//
// ReadyState unfortunately doesn't contain this information, because
// 1, the WaitingFor* states can occur with or without streaming, and
// 2, during the state transition, we need to first transition ready_state_,
// then run callbacks, and only then consider the streaming done. So
// during AdvanceReadyState and callback processing, the ready state
// and is_currently_streaming_ are temporarily different. (They must
// be consistent before and after AdvanceReadyState.)
//
// (See also: crbug.com/754360)
bool is_currently_streaming_;
// This is a temporary flag to confirm that ClassicPendingScript is not
// touched after its refinalizer call and thus https://crbug.com/715309
// doesn't break assumptions.
// TODO(hiroshige): Check the state in more general way.
bool prefinalizer_called_ = false;
};
} // namespace blink
#endif // PendingScript_h
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
d7fe2910ec66710a7688b00c197881d31a0b582b | e0c5d8644d9d88dbbe8f1f857cc4d0506270760a | /deps/include/Common/Protobuf/generated/not used/HeaderData.pb.cc | b50added63fe319a1117faa28e10a03a0f832566 | [] | no_license | isoundy000/MMONetwork | 060444348f703e8469598f0c6973c01db891ff8a | 24e771b005b38c7eb8a7351c30c38a00484568a1 | refs/heads/master | 2021-06-14T14:37:47.135973 | 2017-03-26T20:01:28 | 2017-03-26T20:01:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 14,015 | cc | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: HeaderData.proto
#define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
#include "HeaderData.pb.h"
#include <algorithm>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/stubs/port.h>
#include <google/protobuf/stubs/once.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/wire_format_lite_inl.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)
namespace Data {
class HeaderDataDefaultTypeInternal : public ::google::protobuf::internal::ExplicitlyConstructed<HeaderData> {
} _HeaderData_default_instance_;
namespace protobuf_HeaderData_2eproto {
namespace {
::google::protobuf::Metadata file_level_metadata[1];
} // namespace
const ::google::protobuf::uint32 TableStruct::offsets[] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(HeaderData, _has_bits_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(HeaderData, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(HeaderData, size_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(HeaderData, type_),
0,
1,
};
static const ::google::protobuf::internal::MigrationSchema schemas[] = {
{ 0, 6, sizeof(HeaderData)},
};
static ::google::protobuf::Message const * const file_default_instances[] = {
reinterpret_cast<const ::google::protobuf::Message*>(&_HeaderData_default_instance_),
};
namespace {
void protobuf_AssignDescriptors() {
AddDescriptors();
::google::protobuf::MessageFactory* factory = NULL;
AssignDescriptors(
"HeaderData.proto", schemas, file_default_instances, TableStruct::offsets, factory,
file_level_metadata, NULL, NULL);
}
void protobuf_AssignDescriptorsOnce() {
static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
::google::protobuf::GoogleOnceInit(&once, &protobuf_AssignDescriptors);
}
void protobuf_RegisterTypes(const ::std::string&) GOOGLE_ATTRIBUTE_COLD;
void protobuf_RegisterTypes(const ::std::string&) {
protobuf_AssignDescriptorsOnce();
::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 1);
}
} // namespace
void TableStruct::Shutdown() {
_HeaderData_default_instance_.Shutdown();
delete file_level_metadata[0].reflection;
}
void TableStruct::InitDefaultsImpl() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
::google::protobuf::internal::InitProtobufDefaults();
_HeaderData_default_instance_.DefaultConstruct();
}
void InitDefaults() {
static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
::google::protobuf::GoogleOnceInit(&once, &TableStruct::InitDefaultsImpl);
}
void AddDescriptorsImpl() {
InitDefaults();
static const char descriptor[] = {
"\n\020HeaderData.proto\022\004Data\"(\n\nHeaderData\022\014"
"\n\004size\030\001 \002(\007\022\014\n\004type\030\002 \002(\007"
};
::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
descriptor, 66);
::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
"HeaderData.proto", &protobuf_RegisterTypes);
::google::protobuf::internal::OnShutdown(&TableStruct::Shutdown);
}
void AddDescriptors() {
static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
::google::protobuf::GoogleOnceInit(&once, &AddDescriptorsImpl);
}
// Force AddDescriptors() to be called at static initialization time.
struct StaticDescriptorInitializer {
StaticDescriptorInitializer() {
AddDescriptors();
}
} static_descriptor_initializer;
} // namespace protobuf_HeaderData_2eproto
// ===================================================================
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int HeaderData::kSizeFieldNumber;
const int HeaderData::kTypeFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
HeaderData::HeaderData()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
protobuf_HeaderData_2eproto::InitDefaults();
}
SharedCtor();
// @@protoc_insertion_point(constructor:Data.HeaderData)
}
HeaderData::HeaderData(const HeaderData& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL),
_has_bits_(from._has_bits_),
_cached_size_(0) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
::memcpy(&size_, &from.size_,
reinterpret_cast<char*>(&type_) -
reinterpret_cast<char*>(&size_) + sizeof(type_));
// @@protoc_insertion_point(copy_constructor:Data.HeaderData)
}
void HeaderData::SharedCtor() {
_cached_size_ = 0;
::memset(&size_, 0, reinterpret_cast<char*>(&type_) -
reinterpret_cast<char*>(&size_) + sizeof(type_));
}
HeaderData::~HeaderData() {
// @@protoc_insertion_point(destructor:Data.HeaderData)
SharedDtor();
}
void HeaderData::SharedDtor() {
}
void HeaderData::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* HeaderData::descriptor() {
protobuf_HeaderData_2eproto::protobuf_AssignDescriptorsOnce();
return protobuf_HeaderData_2eproto::file_level_metadata[0].descriptor;
}
const HeaderData& HeaderData::default_instance() {
protobuf_HeaderData_2eproto::InitDefaults();
return *internal_default_instance();
}
HeaderData* HeaderData::New(::google::protobuf::Arena* arena) const {
HeaderData* n = new HeaderData;
if (arena != NULL) {
arena->Own(n);
}
return n;
}
void HeaderData::Clear() {
// @@protoc_insertion_point(message_clear_start:Data.HeaderData)
if (_has_bits_[0 / 32] & 3u) {
::memset(&size_, 0, reinterpret_cast<char*>(&type_) -
reinterpret_cast<char*>(&size_) + sizeof(type_));
}
_has_bits_.Clear();
_internal_metadata_.Clear();
}
bool HeaderData::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:Data.HeaderData)
for (;;) {
::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// required fixed32 size = 1;
case 1: {
if (tag == 13u) {
set_has_size();
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_FIXED32>(
input, &size_)));
} else {
goto handle_unusual;
}
break;
}
// required fixed32 type = 2;
case 2: {
if (tag == 21u) {
set_has_type();
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_FIXED32>(
input, &type_)));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0 ||
::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:Data.HeaderData)
return true;
failure:
// @@protoc_insertion_point(parse_failure:Data.HeaderData)
return false;
#undef DO_
}
void HeaderData::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:Data.HeaderData)
// required fixed32 size = 1;
if (has_size()) {
::google::protobuf::internal::WireFormatLite::WriteFixed32(1, this->size(), output);
}
// required fixed32 type = 2;
if (has_type()) {
::google::protobuf::internal::WireFormatLite::WriteFixed32(2, this->type(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:Data.HeaderData)
}
::google::protobuf::uint8* HeaderData::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
(void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:Data.HeaderData)
// required fixed32 size = 1;
if (has_size()) {
target = ::google::protobuf::internal::WireFormatLite::WriteFixed32ToArray(1, this->size(), target);
}
// required fixed32 type = 2;
if (has_type()) {
target = ::google::protobuf::internal::WireFormatLite::WriteFixed32ToArray(2, this->type(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:Data.HeaderData)
return target;
}
size_t HeaderData::RequiredFieldsByteSizeFallback() const {
// @@protoc_insertion_point(required_fields_byte_size_fallback_start:Data.HeaderData)
size_t total_size = 0;
if (has_size()) {
// required fixed32 size = 1;
total_size += 1 + 4;
}
if (has_type()) {
// required fixed32 type = 2;
total_size += 1 + 4;
}
return total_size;
}
size_t HeaderData::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:Data.HeaderData)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
if (((_has_bits_[0] & 0x00000003) ^ 0x00000003) == 0) { // All required fields are present.
// required fixed32 size = 1;
total_size += 1 + 4;
// required fixed32 type = 2;
total_size += 1 + 4;
} else {
total_size += RequiredFieldsByteSizeFallback();
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = cached_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void HeaderData::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:Data.HeaderData)
GOOGLE_DCHECK_NE(&from, this);
const HeaderData* source =
::google::protobuf::internal::DynamicCastToGenerated<const HeaderData>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:Data.HeaderData)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:Data.HeaderData)
MergeFrom(*source);
}
}
void HeaderData::MergeFrom(const HeaderData& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:Data.HeaderData)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
if (from._has_bits_[0 / 32] & 3u) {
if (from.has_size()) {
set_size(from.size());
}
if (from.has_type()) {
set_type(from.type());
}
}
}
void HeaderData::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:Data.HeaderData)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void HeaderData::CopyFrom(const HeaderData& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:Data.HeaderData)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool HeaderData::IsInitialized() const {
if ((_has_bits_[0] & 0x00000003) != 0x00000003) return false;
return true;
}
void HeaderData::Swap(HeaderData* other) {
if (other == this) return;
InternalSwap(other);
}
void HeaderData::InternalSwap(HeaderData* other) {
std::swap(size_, other->size_);
std::swap(type_, other->type_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_internal_metadata_.Swap(&other->_internal_metadata_);
std::swap(_cached_size_, other->_cached_size_);
}
::google::protobuf::Metadata HeaderData::GetMetadata() const {
protobuf_HeaderData_2eproto::protobuf_AssignDescriptorsOnce();
return protobuf_HeaderData_2eproto::file_level_metadata[0];
}
#if PROTOBUF_INLINE_NOT_IN_HEADERS
// HeaderData
// required fixed32 size = 1;
bool HeaderData::has_size() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
void HeaderData::set_has_size() {
_has_bits_[0] |= 0x00000001u;
}
void HeaderData::clear_has_size() {
_has_bits_[0] &= ~0x00000001u;
}
void HeaderData::clear_size() {
size_ = 0u;
clear_has_size();
}
::google::protobuf::uint32 HeaderData::size() const {
// @@protoc_insertion_point(field_get:Data.HeaderData.size)
return size_;
}
void HeaderData::set_size(::google::protobuf::uint32 value) {
set_has_size();
size_ = value;
// @@protoc_insertion_point(field_set:Data.HeaderData.size)
}
// required fixed32 type = 2;
bool HeaderData::has_type() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
void HeaderData::set_has_type() {
_has_bits_[0] |= 0x00000002u;
}
void HeaderData::clear_has_type() {
_has_bits_[0] &= ~0x00000002u;
}
void HeaderData::clear_type() {
type_ = 0u;
clear_has_type();
}
::google::protobuf::uint32 HeaderData::type() const {
// @@protoc_insertion_point(field_get:Data.HeaderData.type)
return type_;
}
void HeaderData::set_type(::google::protobuf::uint32 value) {
set_has_type();
type_ = value;
// @@protoc_insertion_point(field_set:Data.HeaderData.type)
}
#endif // PROTOBUF_INLINE_NOT_IN_HEADERS
// @@protoc_insertion_point(namespace_scope)
} // namespace Data
// @@protoc_insertion_point(global_scope)
| [
"인섭임"
] | 인섭임 |
0eb328346134da53b77f7e91eed793f48dfe9b5a | 0cebcb3676e1c53cd7134581846465bbd40ce7aa | /Source/@STAF_Misc/addons/staf_framework/CfgInventoryGlobalVariable.hpp | eee91eed27e42184f04eb02d57fa3ac42a89d79e | [] | no_license | IndeedPete/staf-mods | a8174fa94e0358b85d5cd3887e3c5dc837d83249 | 503412acf7a8cadeecbf07e98a106e3336e75bd0 | refs/heads/master | 2023-08-31T10:23:33.456505 | 2023-08-23T15:00:22 | 2023-08-23T15:00:22 | 78,773,032 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 148 | hpp | class CfgInventoryGlobalVariable
{
/* how much a soldier can carry (weight bar width) */
maxSoldierLoad = 1300; //default 1000, ACE 1200
};
| [
"moony@stafclan.com"
] | moony@stafclan.com |
f065b5c2fd220777951f88ff781160dd91727923 | 2aec12368cc5a493af73301d500afb59f0d19d28 | /GeometryTool/LibGraphics/Terrain/Wm4TerrainPage.inl | 4a623933ac8f435fd5f2f7641bc858d1b677669e | [] | no_license | GGBone/WM4 | ec964fc61f98ae39e160564a38fe7624273137fb | 8e9998e25924df3e0d765921b6d2a715887fbb01 | refs/heads/master | 2021-01-11T21:48:17.477941 | 2017-01-13T14:09:53 | 2017-01-13T14:09:53 | 78,854,366 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,322 | inl | // Geometric Tools, Inc.
// http://www.geometrictools.com
// Copyright (c) 1998-2006. All Rights Reserved
//
// The Wild Magic Version 4 Restricted Libraries source code is supplied
// under the terms of the license agreement
// http://www.geometrictools.com/License/Wm4RestrictedLicense.pdf
// and may not be copied or disclosed except in accordance with the terms
// of that agreement.
//----------------------------------------------------------------------------
inline int TerrainPage::GetSize () const
{
return m_iSize;
}
//----------------------------------------------------------------------------
inline const unsigned short* TerrainPage::GetHeights () const
{
return m_ausHeight;
}
//----------------------------------------------------------------------------
inline const Vector2f& TerrainPage::GetOrigin () const
{
return m_kOrigin;
}
//----------------------------------------------------------------------------
inline float TerrainPage::GetMinElevation () const
{
return m_fMinElevation;
}
//----------------------------------------------------------------------------
inline float TerrainPage::GetMaxElevation () const
{
return m_fMaxElevation;
}
//----------------------------------------------------------------------------
inline float TerrainPage::GetSpacing () const
{
return m_fSpacing;
}
//----------------------------------------------------------------------------
inline float TerrainPage::GetX (int iX) const
{
return m_kOrigin.X() + m_fSpacing*float(iX);
}
//----------------------------------------------------------------------------
inline float TerrainPage::GetY (int iY) const
{
return m_kOrigin.Y() + m_fSpacing*float(iY);
}
//----------------------------------------------------------------------------
inline float TerrainPage::GetHeight (int iIndex) const
{
return m_fMinElevation + m_fMultiplier*float(m_ausHeight[iIndex]);
}
//----------------------------------------------------------------------------
inline float& TerrainPage::UVBias ()
{
return m_fUVBias;
}
//----------------------------------------------------------------------------
inline float TerrainPage::GetTextureCoordinate (int iIndex) const
{
return m_fTextureSpacing*float(iIndex);
}
//----------------------------------------------------------------------------
| [
"z652137200@gmail.com"
] | z652137200@gmail.com |
6b0da2a39881ef1e136ce02be03956034a3173f4 | 93f5a69f67512ce1004d4094be7ec9a59b6916f9 | /src/Thread.cpp | 2e33a07f2e9ead8c972dd905d7e5f5ceac0aeee3 | [
"Zlib",
"Libpng",
"libpng-2.0"
] | permissive | biud436/Initial2D | d65523d5af31e93492a38fb920bb3b24b4ef7f09 | b984cd0b87b5ff7873a3f5a713c9b3094ca1ccd4 | refs/heads/master | 2022-08-25T23:01:33.753765 | 2022-07-08T15:49:44 | 2022-07-08T15:49:44 | 166,219,826 | 4 | 1 | NOASSERTION | 2022-03-26T14:53:36 | 2019-01-17T12:10:12 | C | UTF-8 | C++ | false | false | 957 | cpp | #include "Thread.h"
Thread::Thread() :
m_hMutex(NULL),
m_bWait(false)
{
OutputDebugString("new Thread();\n");
initWithLocker();
}
Thread::~Thread()
{
OutputDebugString("~Thread();\n");
}
void Thread::initWithLocker()
{
m_hMutex = CreateMutex(NULL, FALSE, NULL);
}
UINT WINAPI Thread::Callback(LPVOID p)
{
OutputDebugString("Callback();\n");
Thread* thread = reinterpret_cast<Thread*>(p);
if (thread == nullptr)
{
return 0;
}
thread->lock();
thread->run();
thread->unlock();
return 0;
}
void Thread::start()
{
m_bWait = true;
m_hThread = reinterpret_cast<void*>(_beginthreadex(nullptr, 0, Callback, static_cast<void*>(this), NULL, &m_nThreadId));
}
void Thread::lock()
{
WaitForSingleObject(m_hMutex, INFINITE);
}
void Thread::run()
{
}
void Thread::unlock()
{
ReleaseMutex(m_hMutex);
m_bWait = false;
}
void Thread::join() {
while (isWaiting()) {
Sleep(1);
}
}
bool Thread::isWaiting() const {
return m_bWait;
} | [
"biud436@gmail.com"
] | biud436@gmail.com |
55d8847c035598bece25208cc7ceaec91dcac3e8 | 0fee103f9ed82978144d9741e46882c7df9eedb1 | /2020/2020.12/12.4VP/B.cpp | df8c2cb04186b47bf0802cdbc9d4abcf98027909 | [] | no_license | Flying2019/testgit | 2776b6bc3a5839a005726ff108fb69d971065871 | 86a42bb1d4bfd65b5471373f03162270013da2af | refs/heads/main | 2023-07-15T00:57:55.321869 | 2021-08-21T01:16:53 | 2021-08-21T01:16:53 | 302,891,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 339 | cpp | #include<iostream>
#include<cstdio>
#include<cstring>
#define N 200010
using namespace std;
int a[N];
int main()
{
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%d",&a[i]);
int i=1;
for(i=1;i<n;i++)
if(a[i+1]<a[i]) break;
for(;i<n;i++)
if(a[i+1]>a[i]) break;
puts(i==n?"YES":"NO");
return 0;
} | [
"815375530@qq.com"
] | 815375530@qq.com |
62d07e12b0b41a67613b289f6f6dc40b1bd44a5b | adbb6139da0391de53c2f4dc88d181dc40b78bd4 | /proxy/http_proxy_final.cpp | b9badd6a62d819d694ae04667e6d748ab71eb73e | [] | no_license | YouLyu25/HTTP-HTTPS-proxy | d95c581da065194709b14fe85441a871f22b4ff5 | 5723eb53435bff5350c3c323879fb61fc441e6a8 | refs/heads/master | 2021-04-27T00:05:26.913626 | 2018-03-04T02:21:43 | 2018-03-04T02:21:43 | 123,748,843 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 56,526 | cpp | #include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
#include <map>
#include <unordered_map>
#include <queue>
#include <cstring>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <time.h>
#include <limits.h>
#include <signal.h>
#include <sys/types.h>
// network libraries
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
// multi-thread libraries
#include <pthread.h>
/* NOTE:
TIMEOUT_ENABLE is used to handle the situation where
too many connections are built and waiting for server's
responses, that can cause slow loading process when
using browser, as many threads are just waiting for
server's response. That may happen when many tabs are
opened and most of them have to request a large amount
of data. If TIMEOUT_ENABLE is set, the proxy will close
expired connections to save resources.
The proxy supports both multi-thread and single thread
mode with macro MULTI_THREAD. Note that if single thread
is used, the user may also want to set CONNECT_ENABLE
as 0 to disable HTTPS connection as if the connection is
build, it will wait until the server close the connection,
The efficiency will thus be low.
If the user don't want to clear the log file for every
run, he/she should disable LOG_CLEAR, and the record will
be appended to the log.
To run this proxy, firstly "make", and then do "./proxy".
The default listening port of this proxy is set to 12345.
Also note that generally the user may want to turn off
DEBUG macro, as there is tons of debug information coming
out, it may impact the user experience when using browser.
March 2th 2018 by You Lyu
*/
#define DEBUG 0 // for printing debug info
#define CACHE_DEBUG 0 // for printing cache debug info
#define MULTI_THREAD 1 // enable multi-thread
#define LOG 1 // enable recording request info in log
#define LOG_CLEAR 1 // if make the log empty every run
#define CONNECT_ENABLE 1 // if handle HTTPS
#define TIMEOUT_ENABLE 0 // if set timeout
#define LOG_NAME "/var/log/erss/proxy.log" // name and path of logfile
#define PROXY_PORT 12345 // default listening port of proxy
#define MAX_CONN 500 // maximum connections to proxy
#define NAME_SIZE 4096 //4096
#define REQ_BUFF_SIZE 102400
#define RES_BUFF_SIZE 1024000 //10240000
#define RESIZE_SIZE 102400 // used for expand buffer size
#define MAX_NUM 10 // parameters used to set thread stack
#define CACHE_SIZE 1000 // maximum response number in the cache
#define DAY_SECONDS 86400
#define HTTPS_TIMEOUT 90 // timeout for HTTPS connection
#define HTTP_TIMEOUT 120 // timeout for HTTP
// lock for thread safety
pthread_mutex_t mutex;
// to store accepted client socket fd
std::queue <int> client_conn_sfd_queue;
long long request_id = 0;
// client's request information
class RequestInfo {
public:
long long request_id; // unique id of each request
const char* client_ip; // ip address of client
RequestInfo () {}
RequestInfo (int id, const char* ip) : request_id(id), client_ip(ip) {}
~RequestInfo () {}
};
// HttpRequest class
class HttpRequest {
public:
std::vector <char> data_buff; // buffer for storing request data
std::string request_line; // first line of request
std::string server_name; // requested server's name
int server_port; // requested server's port
std::string http_type; // HTTP/1.0 or HTTP/1.1
std::string method; // GET, POST or CONNECT
int headers_len; // length of request headers
int content_len; // length of request content (for POST)
int data_len; // length or the entire request
// constructor and destructor
HttpRequest () : headers_len(0), content_len(0), data_len(0) {
data_buff.resize(REQ_BUFF_SIZE);
}
~HttpRequest () {}
// get Etag method
std::string get_Etag () {
std::string header(data_buff.data(), headers_len);
std::size_t pos = header.find("ETag");
if (pos!=std::string::npos) {
std::size_t i = header.find("/r/n", pos);
std::string etag = header.substr(pos, i-pos);
return etag;
}
else {
return NULL;
}
}
// check if request has been received successfully
bool headers_recv_finished () {
std::string str(data_buff.data());
std::size_t pos = str.find("\r\n\r\n");
headers_len = pos+4;
data_len = headers_len;
if (pos == std::string::npos) {
// if no "\r\n\r\n"
return false;
}
return true;
}
int get_content_len () {
std::string str(data_buff.data());
std::size_t pos1 = str.find("Content-Length: ");
if (pos1 == std::string::npos) {
return -1;
}
str.erase(0, pos1);
pos1 = str.find(": ");
std::size_t pos2 = str.find("\r\n");
if (pos2 == std::string::npos) {
#if DEBUG
std::cerr << "\nSTRANGE: request headers with no ^M\n" << std::endl;
#endif
return -1;
}
// used for converting string to int
std::stringstream ss;
ss << str.substr(pos1+2, pos2-pos1);
ss >> content_len;
#if DEBUG
std::cout << "Content-Length is: " << content_len << std::endl;
#endif
data_len = headers_len + content_len;
return 0;
}
int get_params () {
std::string request(data_buff.data());
std::string first_line;
// GET http://detectportal.firefox.com/success.txt HTTP/1.1
std::size_t pos = request.find("\r\n");
if (pos == std::string::npos) {
#if DEBUG
std::cerr << "Illegal request format: no new line" << std::endl;
std::cerr << "request is:\n\n" << request << std::endl;
#endif
return -1;
}
first_line = request.substr(0, pos);
request_line = first_line;
// get method
pos = first_line.find(" ");
if (pos == std::string::npos) {
#if DEBUG
std::cerr << "Illegal request format: no space before method" << std::endl;
#endif
return -1;
}
method = first_line.substr(0, pos);
// set port number according to method
if (method == "CONNECT") { // HTTPS
server_port = 443;
}
else {
server_port = 80;
}
#if DEBUG
std::cout << "method: " << method << std::endl;
#endif
// if method is not supported, return -1 and send 400 Bad Request
if (method != "CONNECT" && method != "POST" && method != "GET") {
return -1;
}
first_line.erase(0, pos+1);
// get http request type
pos = first_line.find(" ");
if (pos == std::string::npos) {
#if DEBUG
std::cerr << "Illegal request format: no space before HTTP type" << std::endl;
#endif
return -1;
}
http_type = first_line.substr(pos+1);
#if DEBUG
std::cout << "http_type: " << http_type << std::endl;
#endif
first_line.erase(pos);
// get server's name for GET and POST
if (method != "CONNECT") {
pos = first_line.find("://");
if (pos == std::string::npos) {
pos = first_line.find("/");
if (pos == std::string::npos) { // google.com
server_name = first_line;
}
else { // google.com/search?...
server_name = first_line.substr(0, pos);
}
}
else {
first_line.erase(0, pos+3);
pos = first_line.find("/");
if (pos == std::string::npos) { // http://google.com
server_name = first_line;
}
else { // http://google.com/search?...
server_name = first_line.substr(0, pos);
}
}
// maybe a situation where there is:
// http://vcm-xxx.vm.duke.edu:8080/rsvp/
pos = server_name.find(":");
if (pos != std::string::npos) {
// update server_name and server_port
std::string temp = server_name.substr(pos+1);
server_name = server_name.substr(0, pos);
std::stringstream ss;
ss << temp;
ss >> server_port;
}
}
else { // get server name for CONNECT
pos = first_line.find(":");
if (pos == std::string::npos) {
#if DEBUG
std::cout << "Illegal request format: no ':' for CONNECT" << std::endl;
#endif
return -1;
}
server_name = first_line.substr(0, pos);
}
#if DEBUG
std::cout << "server_name: " << server_name << std::endl;
#endif
if (http_type != "HTTP/1.1" && http_type != "HTTP/1.0") {
// HTTP proxy could not handle other request type
return -1;
}
return 0;
}
};
// HttpResponse class
class HttpResponse {
public:
std::vector <char> data_buff; // buffer for storing response data
std::string response_line; // first line of response
std::string code; // 200, 400, 404, 502, 504...
int headers_len; // length of response headers
int content_len; // length of response content
int data_len; // length of the entire response
// constructor and destructor
HttpResponse () : headers_len(0), content_len(0), data_len(0) {
data_buff.resize(RES_BUFF_SIZE);
}
~HttpResponse () {}
// check if headers have been received completely
bool headers_recv_finished () {
std::string str(data_buff.data());
std::size_t pos = str.find("\r\n\r\n");
headers_len = pos+4;
data_len = headers_len;
if (pos == std::string::npos) {
// if no "\r\n\r\n"
return false;
}
pos = str.find("\r\n");
// response_line is the first line of response
response_line = str.substr(0, pos);
pos = response_line.find(" ");
std::string temp = response_line.substr(pos+1);
pos = temp.find(" ");
code = temp.substr(0, pos);
#if DEBUG
std::cout << "response status: " << code << std::endl;
#endif
return true;
}
// check if server's response is garbage
bool validate () {
// check HTTP/1.1 or HTTP/1.0
if (data_buff[0] == 'H' && data_buff[1] == 'T' &&
data_buff[2] == 'T' && data_buff[3] == 'P' &&
data_buff[4] == '/' && data_buff[5] == '1' &&
data_buff[6] == '.' &&
(data_buff[7] == '1' || data_buff[7] == '0')) {
return true;
}
return false;
}
// method to check if content indicating by Transfer-Encoding has
// been received completely
bool coded_content_recv_finished (std::size_t current_index) {
#if DEBUG
std::cout << "decoding..." << std::endl;
#endif
// use "0\r\n\r\n" as the sign
for (std::size_t i = current_index; i < data_len; ++i) {
if (i > 3 && data_buff[i] == '\n' &&
data_buff[i-1] == '\r' && data_buff[i-2] == '\n' &&
data_buff[i-3] == '\r' && data_buff[i-4] == '0') {
#if DEBUG
std::cout << "done decoding..." << std::endl;
#endif
return true;
}
}
return false;
}
// get response's content length
int get_content_len () {
std::string str(data_buff.data());
std::size_t pos1 = str.find("Content-Length: ");
if (pos1 == std::string::npos) {
return -1;
}
str.erase(0, pos1);
pos1 = str.find(": ");
std::size_t pos2 = str.find("\r\n");
if (pos2 == std::string::npos) {
#if DEBUG
std::cerr << "\nSTRANGE: response headers with no ^M\n" << std::endl;
#endif
return -1;
}
std::stringstream ss;
ss << str.substr(pos1+2, pos2-pos1);
ss >> content_len;
// get total length of response
data_len = headers_len + content_len;
#if DEBUG
std::cout << "Content-Length is: " << content_len << std::endl;
#endif
if (content_len == 0) {
return -1;
}
return 0;
}
// check if there is Transfer-Encoding field
bool check_encoding () {
std::string str(data_buff.data());
std::size_t pos = str.find("Transfer-Encoding: ");
if (pos == std::string::npos) {
return false;
}
return true;
}
// get Age field in response header
int get_age () {
std::string header(data_buff.data(), headers_len);
std::size_t pos = header.find("\r\nAge:");
if (pos!=std::string::npos) {
std::size_t i = header.find("\r\n",pos+2);
std::string age = header.substr(pos+7, i-pos-7);
long res = 0;
std::stringstream ss;
ss << age;
ss >> res;
return res;
}
return 0;
}
// perform revalidation of response
void revalidate(){
std::string header(data_buff.data(), headers_len);
std::size_t pos = header.find("\r\nAge:");
if (pos != std::string::npos) {
std::size_t i = header.find("\r\n", pos+4);
}
}
// get Etag method, currently used to verify revalidation
int get_Etag () {
std::string header(data_buff.data(),headers_len);
std::size_t pos = header.find("ETag");
if (pos != std::string::npos) {
//std::size_t i = header.find("/r/n",pos);
//std::string etag = header.substr(pos,i-pos);
return 1;
}
else
return 0;
}
int get_Etag(std::string &str){
std::string header(data_buff.data(), headers_len);
std::size_t pos = header.find("\r\nETag:");
#if CACHE_DEBUG
std::cout << "FindETag: " << header << std::endl;
std::cout << "FindETag: " << headers_len << header << std::endl;
#endif
if (pos != std::string::npos) {
std::size_t i = header.find("\r\n", pos+4);
str += header.substr(pos+8, i-pos-8);
#if CACHE_DEBUG
std::cout << "!!FindETag" << header.substr(pos+8, i-pos-8) << std::endl;
#endif
return 1;
}
else {
return 0;
}
}
};
// CacheNode class
class CacheNode { // use linkedlist to implement LRU
public:
std::string key; // first line of request
long time; // expiration time
long life;
HttpResponse value; // response
CacheNode* prev;
CacheNode* next;
CacheNode (std::string& k, int t, long l, HttpResponse& v) :
key(k), time(t), life(l), value(v), prev(NULL), next(NULL) {}
~CacheNode () {}
};
// proxy LRU cache class, linked list is used to perform efficient
// LRU replacement policy
class LRUCache {
public:
int byte; // linked list size
int size; // maximum of cache-list size
CacheNode* head;
CacheNode* tail;
std::unordered_map <std::string, CacheNode*> map; // use to perform quick lookup
LRUCache (int size) : size(size), head(NULL), tail(NULL) {}
~LRUCache () {
CacheNode* temp = head;
while (temp != NULL) {
head = head->next;
delete temp;
temp = head;
}
}
// revalidate cache value
void revalidate (HttpRequest& key, long reval_time) {
std::unordered_map <std::string, CacheNode*>::iterator it = map.find(key.request_line);
// if response is found in the cache
if (it != map.end()) {
time_t rawtime;
time(&rawtime);
int current = time(&rawtime);
CacheNode* node = it->second;
node->time = reval_time;
remove(node);
set_head(node);
#if CACHE_DEBUG
std::cout << "RevalidateCache" << std::endl;
#endif
}
}
// try to get response from cache
time_t get (HttpRequest &key, HttpResponse &val) {
std::unordered_map <std::string, CacheNode*>::iterator it = map.find(key.request_line);
if (it != map.end()) { // if response found in the cache
time_t rawtime; // current time
time(&rawtime);
int current = time(&rawtime);
CacheNode* node = it->second;
// check if response has expired
if (node->time + node->life > rawtime) { // not expired
remove(node);
set_head(node);
val = node->value;
#if CACHE_DEBUG
std::cout << "cache: get in cache!" << std::endl;
#endif
return 0; // successfully get response
}
else { // response expired
#if CACHE_DEBUG
std::cout << "response expired at: " << rawtime << " , current time is:"
<< node->time << std::endl;
#endif
if (node->value.get_Etag()) {
long i =-(node->time+node->life);
//std::cout<<"!needreval:"<<i<<std::endl;
return -(node->time+node->life); // revalidation check
}
else {
remove(node);
map.erase(it);
time_t temp = node->life + node->time;
struct tm* time_info = gmtime(&temp);
return node->life + node->time; // expired
}
}
}
else { // cache doesn't have response
return -1;
}
}
// get cache size in bytes
int get_size () {
return byte;
}
// get number of response stored
int count () {
return map.size();
}
// store response to proxy cache
void set (HttpRequest& key, long time, long life, HttpResponse& value,
std::ofstream& log) {
std::unordered_map <std::string, CacheNode*>::iterator it1 = map.find(key.request_line);
if (it1 != map.end()) { // if already stored, update
CacheNode* node = it1->second;
node->value = value;
remove(node);
set_head(node); // add as head as it is newly accessed
}
else { // if not already in the cache
#if CACHE_DEBUG
std::cout << "not set" << std::endl;
#endif
CacheNode* new_node = new CacheNode(key.request_line, time, life, value);
if (map.size() >= size) { // check if cache is full
std::unordered_map <std::string, CacheNode*>::iterator it2 = map.find(tail->key);
byte -= tail->value.data_len;
#if LOG
std::string temp = tail->key;
std::size_t pos = temp.find("http://");
temp = temp.substr(pos+7);
pos = temp.find(" HTTP");
temp = temp.substr(0, pos);
log << "(no-id): NOTE evicted " << temp << " from cache" << std::endl;
#endif
remove(tail); // replace the tail of linked list
//#################################################################################################
map.erase(it2);
}
// add the new response as head
set_head(new_node);
byte += value.data_len;
map.insert(std::pair <std::string, CacheNode*> (key.request_line, new_node));
}
}
// remove node from cache linked list
void remove (CacheNode* node) {
if (node->prev != NULL) {
node->prev->next = node->next;
}
else{
head = node->next;
}
if (node->next != NULL) {
node->next->prev = node->prev;
}
else{
tail = node->prev;
}
//delete node;
}
// add new response to the head of cache linked list
void set_head (CacheNode* node) {
node->next = head;
node->prev = NULL;
if (head != NULL) {
head->prev = node;
}
head = node;
if (tail == NULL) {
tail = head;
}
}
};
// NOTE: this is a global variable used as proxy's cache
LRUCache proxy_cache(CACHE_SIZE);
// functions for caching, convert string to int/long
long to_int (std::string& str) {
long res = 0;
std::stringstream ss;
ss << str;
ss >> res;
return res;
}
std::string to_string(int i){
std::string ans;
std::stringstream ss;
if (i < 10) {
int n = 0;
ss << n;
}
ss << i;
ss >> ans;
return ans;
}
// parse string to time with specific format
long to_time (std::string& str) {
time_t rawtime;
time(&rawtime);
struct tm* timeinfo = localtime(&rawtime);
std::size_t pos = str.find(", ");
if (pos==std::string::npos) {
return -1; //wrong type of time
}
std::string month[12] ={"Jan","Feb","Mar","Apr","May","Jun",
"Jul","Aug","Sep","Oct","Nov","Dec"};
int i = 0;
std::string mon(str.substr(pos+5, 3));
timeinfo->tm_sec = 1;
timeinfo->tm_min = 54;
timeinfo->tm_hour = 15;
for(i = 0; i < 12; ++i){
if(mon.compare(month[i]) == 0){
timeinfo->tm_mon = i;
break;
}
}
if (i > 11) {
return -1; //wrong time;
}
std::string mday(str.substr(pos+2, 2));
timeinfo->tm_mday = to_int(mday);
std::string year (str.substr(pos+9, 4));
timeinfo->tm_year = to_int(year) - 1900;
std::string hour(str.substr(pos+14, 2));
timeinfo->tm_hour = to_int(hour);
std::string min(str.substr(pos+17, 2));
timeinfo->tm_min = to_int(min);
std::string sec(str.substr(pos+20, 2));
timeinfo->tm_sec = to_int(sec);
return mktime(timeinfo);
}
// test if the cached response can be revalidate, if can, modify the request head
int revalidate(HttpRequest &req,HttpResponse &res, long time){
std::string etag;
if (res.get_Etag(etag)) {
std::string str("If-Modified-Since: ");
struct tm *timeinfo = gmtime(&time);
std::string month[12] ={"Jan","Feb","Mar","Apr","May","Jun",
"Jul","Aug","Sep","Oct","Nov","Dec"};
std::string weekday[7] ={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
str+= weekday[timeinfo->tm_wday];
str+=", ";
str+=to_string(timeinfo->tm_mday);
str+=" ";
str+=month[timeinfo->tm_mon];
str+=" ";
str+=to_string(timeinfo->tm_year+100);
str+=" ";
str+=to_string(timeinfo->tm_hour);
str+=":";
str+=to_string(timeinfo->tm_min);
str+=":";
str+=to_string(timeinfo->tm_sec);
str+=" ";
str+="GMT\r\n";
str+="If-None-Match: ";
str+=etag;
str+="\r\n\r\n";
for(int i = 0; i<str.size();i++){
req.data_buff.push_back(str[i]);
}
req.headers_len += str.size() - 2;
req.data_len += str.size() - 2;
#if CACHE_DEBUG
std::cout << "size" << req.data_buff.size() << std::endl;
std::cout << "myrevalid\n" << asctime(timeinfo) << "etag:"
<< etag<<"\nstr:" << str << str.size() << "\nbuff:"
<< req.data_buff.data() << "!myrevalid\n";
#endif
return 1;
}
#if CACHE_DEBUG
std::cout << "myrevalid:noEtag" << std::endl;
#endif
return 0;
}
// function to check if response need to be cached
time_t need_cache (HttpResponse& res, long delay) {
std::string header(res.data_buff.data(),res.headers_len);
std::size_t pos = header.find("200 OK");
if (pos == std::string::npos) {
//we only need to cache 200 ok
#if CACHE_DEBUG
std::cout << "Not200OK" << std::endl;
#endif
return -1; // not 200 OK
}
pos = header.find("304 Not Modified");
if (pos != std::string::npos) {
//if contains 304, don't care, this seems the same as the former one
#if CACHE_DEBUG
std::cout << "Find304" << std::endl;
#endif
return -2;
}
pos = header.find("Cache-Control");
// if cache-control, use it
if (pos != std::string::npos) {
#if CACHE_DEBUG
std::cout << "findCache-Control" << std::endl;
#endif
std::size_t i = header.find("\r\n", pos);
std::string control = header.substr(pos, i-pos);
// if no-store
pos = control.find("no-store");
if (pos != std::string::npos) {
#if CACHE_DEBUG
std::cout << "controlfind:no-store" << std::endl;
#endif
return -3; // no-store
}
// if no-cache
pos = control.find("no-cache");
if (pos != std::string::npos) {
#if CACHE_DEBUG
std::cout << "controlfind:no-cache" << std::endl;
#endif
return -4; // no-cache
}
// find max-age
pos = control.find("max-age=");
if (pos != std::string::npos) {
std::string time = control.substr(pos+8);
if ((to_int(time)-delay) > 0) {
#if CACHE_DEBUG
std::cout << "controlfind:max-age" << std::endl;
#endif
return to_int(time);
}
else {
#if CACHE_DEBUG
std::cout << "controlfind:need-re" << std::endl;
#endif
return 0; // need revalidation
}
}
// about no-cache, I think it is similar to If-No-Match
// will be adopted by browser and should be checked in server
}
// check if response has expired
pos = header.find("Expires");
if (pos != std::string::npos) {
std::size_t i = header.find("\r\n", pos);
std::string control = header.substr(pos+9, i-pos);
if ((to_time(control) - delay) > 0) {
#if CACHE_DEBUG
std::cout << "timeExpires:" << control << std::endl;
#endif
return to_time(control);
}
else {
#if CACHE_DEBUG
std::cout << "timeExpires:need-re" << std::endl;
#endif
return 0; //need revalidation
}
}
if (res.get_Etag()) {
#if CACHE_DEBUG
std::cout << "getEtag:need-re" << std::endl;
#endif
return 0; //need revalidation
}
#if CACHE_DEBUG
std::cout << "!noflag" << std::endl;
#endif
return -5; //no flag, don't cache
}
/* GET CLIENT'S REQUEST ***************************************************************************/
int get_request (int client_conn_sfd, HttpRequest& request) {
std::size_t len = 0;
std::size_t i = 0;
std::size_t received_bytes = 0;
// continue receive headers until "\r\n\r\n" is seen
while (1) {
len = recv(client_conn_sfd, &request.data_buff.data()[i], REQ_BUFF_SIZE, 0);
received_bytes += len;
if (request.headers_recv_finished() == true) {
// done receiving headers
break;
}
else {
// if no enough space and no "\r\n\r\n", resize and continue
if (received_bytes == request.data_buff.size()) {
try {
request.data_buff.resize(received_bytes + RESIZE_SIZE);
i = received_bytes;
}
catch (std::bad_alloc& ba) {
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
return -1;
}
}
// if 0 is received, the connection is closed
else if (len == 0) {
if (received_bytes != 0) {
break;
}
else { // no request received, close connection and exit
#if DEBUG
perror("no request");
#endif
return -1;
}
}
else if (len < 0) { // error
#if DEBUG
perror("request recv");
#endif
return -1;
}
else {
#if DEBUG
std::cout << "\n\nbuff isn't filled up (req no ^M)\n" << std::endl;
#endif
i = received_bytes;
}
}
}
// 400, Bad Request
if (request.get_params() < 0) {
#if DEBUG
perror("get request parameters error");
#endif
return -1;
}
if (request.method == "POST") {
// manage to count the rest content
#if DEBUG
std::cout << "\nrequest:\n" << request.data_buff.data() << std::endl;
#endif
if (request.get_content_len() < 0) { // no Content-Length field
#if DEBUG
std::cerr << "\n\nPOST with no Content-Length\n" << std::endl;
#endif
return -1; // 400 Bad Request
}
#if DEBUG
std::cout << "\nrequest.content_len: " << request.content_len << std::endl;
std::cout << "\ncurrent content len: " << received_bytes - request.headers_len << std::endl;
#endif
int rest_content_len = request.content_len - (received_bytes - request.headers_len);
#if DEBUG
std::cout << "\nrest_content_len: " << rest_content_len << std::endl;
#endif
i = received_bytes;
if (rest_content_len > request.data_buff.size()) {
// no enough space, resize
try {
request.data_buff.resize(rest_content_len + request.headers_len + request.content_len);
}
catch (std::bad_alloc& ba) {
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
return -1;
}
}
// receive rest contents
while (rest_content_len != 0) {
len = recv(client_conn_sfd, &request.data_buff.data()[i], REQ_BUFF_SIZE, 0);
received_bytes += len;
rest_content_len = rest_content_len - len;
if (rest_content_len == 0) {
// finish receiving request content
break;
}
if (len == 0) {
// connection closed
break;
}
else if (len < 0) {
return -1;
}
i = received_bytes;
}// end while(1)
}// end if
#if DEBUG
std::cout << "\nrequest received:\n" << request.data_buff.data();
std::cout << "\nRequest received bytes: " << received_bytes << std::endl;
std::cout << "\n\n";
#endif
return 0;
}
/**************************************************************************************************/
// function to form response to handle error conditions like 400, 404, 502...
void proxy_response (int client_conn_sfd, std::string code,
std::string reason, std::string info) {
std::string response("HTTP/1.1 ");
response += code; // HTTP/1.1 404
response += " ";
response += reason; // HTTP/1.1 404 Not Found
response += "\r\nContent-Length: ";
std::stringstream ss;
std::string temp;
ss << info.length();
ss >> temp;
response += temp;
response += "\r\nContent-Type: text/plain\r\n\r\n";
response += info;
response += "\n";
// send error info back to the client
// set MSG_NOSIGNAL to prevent to handle SIGPIPE locally
int len = send(client_conn_sfd, response.c_str(),
response.length(), MSG_NOSIGNAL);
#if DEBUG
std::cout << "ERROR: " << response << std::endl;
#endif
return;
}
/* HANDLE CONNECT REQUEST *************************************************************************/
// build a socket connection: client <=> proxy <=> server, move data back and forth
int handle_https (int client_conn_sfd, HttpRequest& request,
RequestInfo request_info, std::ofstream& log) {
int stat;
int len;
fd_set read_fds;
std::string ready_msg("200 OK");
// create connection between proxy and the server
sockaddr_in server_addr;
struct hostent* server_info;
struct timeval wait_time;
server_info = gethostbyname(request.server_name.c_str());
if (server_info == NULL) { // 404, Not Found
#if DEBUG
std::cerr << "\nCannot find server: " << request.server_name << std::endl;
#endif
std::string info("Cannot find server: ");
info += request.server_name;
proxy_response(client_conn_sfd, "404", "Not Found", info);
#if LOG
log << request_info.request_id << ": Responding \"" << request.http_type
<< " 404 Not Found\"" << std::endl;
#endif
return -2;
}
// create TCP socket for connecting to the server
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(request.server_port);
server_addr.sin_addr = *((struct in_addr*)server_info->h_addr);
memcpy(&server_addr.sin_addr, server_info->h_addr_list[0],
server_info->h_length);
int server_sfd = socket(AF_INET, SOCK_STREAM, 0);
if (server_sfd < 0) {
// proxy's internal issue
#if DEBUG
perror("Failed to create socket connecting to the server");
#endif
return -2;
}
#if TIMEOUT_ENABLE
wait_time.tv_sec = HTTPS_TIMEOUT; // set HTTPS_TIMEOUT secs timeout for each connection
setsockopt(server_sfd, SOL_SOCKET, SO_RCVTIMEO|SO_REUSEADDR,
(struct timeval*)&wait_time, sizeof(wait_time));
#endif
#if 0
int yes = 1;
stat = setsockopt(server_sfd, SOL_SOCKET, SO_REUSEADDR, (char*)&yes, sizeof(yes));
#endif
// proxy connect to the server
stat = connect(server_sfd, (struct sockaddr*)&server_addr, sizeof(server_addr));
if (stat < 0) { // 504
#if DEBUG
perror("Cannot connect to the server");
#endif
std::string info("Server does not response on time...");
info += request.server_name;
proxy_response(client_conn_sfd, "504", "Gateway Timeout", info);
#if LOG
log << request_info.request_id << ": Responding " << "\"" << request.http_type
<< " 504 Gateway Timeout" << "\"" << std::endl;
#endif
return -2;
}
// inform client the connection is ready
// set MSG_NOSIGNAL to prevent to handle SIGPIPE locally
len = send(client_conn_sfd, ready_msg.c_str(),
ready_msg.length(), MSG_NOSIGNAL);
// continute to check if there is any data to send
while (1) {
std::vector <char> data_buff(RES_BUFF_SIZE);
FD_ZERO(&read_fds);
FD_SET(client_conn_sfd, &read_fds);
FD_SET(server_sfd, &read_fds);
stat = select(FD_SETSIZE, &read_fds, NULL, NULL, NULL);
// check if client is ready to send data
if (FD_ISSET(client_conn_sfd, &read_fds)) {
len = recv(client_conn_sfd, &data_buff.data()[0], RES_BUFF_SIZE, 0);
if (len < 0) {
#if DEBUG
perror("Failed to received from client");
#endif
return -1;
}
else if (len == 0) { // conenction is closed, exit
#if DEBUG
std::cout << "HTTPS Connection closed..." << std::endl;
#endif
return -1;
}
// set MSG_NOSIGNAL to prevent to handle SIGPIPE locally
len = send(server_sfd, data_buff.data(), len, MSG_NOSIGNAL);
if (len < 0) {
#if DEBUG
perror("Failed to send the server");
#endif
return -1;
}
}
// check if server is ready to response data
else if (FD_ISSET(server_sfd, &read_fds)) {
len = recv(server_sfd, &data_buff.data()[0], RES_BUFF_SIZE, 0);
if (len < 0) { // 502 Bad Gateway
#if DEBUG
perror("Failed to received from server");
#endif
return -1;
}
else if (len == 0) {
#if DEBUG
std::cout << "HTTPS Connection closed..." << std::endl;
#endif
return -1;
}
// set MSG_NOSIGNAL to prevent to handle SIGPIPE locally
len = send(client_conn_sfd, data_buff.data(), len, MSG_NOSIGNAL);
if (len < 0) {
#if DEBUG
perror("Failed to send the client");
#endif
return -1;
}
}
data_buff.clear();
}
return 0;
}
// get server's response
int get_response (int server_sfd, HttpResponse& response) {
std::size_t len = 0;
std::size_t received_bytes = 0;
std::size_t i = 0;
// receive headers and a part of the contents
while (1) {
#if DEBUG
std::cout << "recving response headers..." << std::endl;
#endif
len = recv(server_sfd, &response.data_buff.data()[i], RES_BUFF_SIZE, 0);
received_bytes += len;
if (response.headers_recv_finished() == true) {
// done receiving response headers
break;
}
else {
// if no enough space and no "\r\n\r\n", resize and continue
if (received_bytes == response.data_buff.size()) {
try {
response.data_buff.resize(received_bytes + RESIZE_SIZE);
i = received_bytes;
}
// try catch bad alloc when doing memory allocation
catch (std::bad_alloc& ba) {
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
return -1;
}
}
// if 0 is received, the connection is closed
else if (len == 0) {
break;
}
else if (len < 0) {
return -1;
}
else {
#if DEBUG
std::cout << "\n\nbuff isn't filled up (res no ^M)\n" << std::endl;
#endif
i = received_bytes;
}
}
}
// validate if the response is garbage
if (response.validate() == false) {
return -1; // garbage received, response with 502
}
// manage to count the rest content
#if DEBUG
std::cout << "\nresponse:\n" << response.data_buff.data() << std::endl;
#endif
if (response.get_content_len() < 0 && response.check_encoding() == false) {
// no Content-Length and Transfer-Encoding
return 0;
}
// receive rest content, use Content-Length field to decide when to finish
if (response.content_len > 0) {
#if DEBUG
std::cout << "\nreceived_bytes: " << received_bytes << std::endl;
std::cout << "\nresponse.headers_len: " << response.headers_len << std::endl;
std::cout << "\nresponse.content_len: " << response.content_len << std::endl;
std::cout << "\ncurrent content len: "
<< received_bytes - response.headers_len << std::endl;
#endif
int rest_content_len = response.content_len -
(received_bytes - response.headers_len);
#if DEBUG
std::cout << "\nrest_content_len: " << rest_content_len << std::endl;
#endif
i = received_bytes;
if (rest_content_len > response.data_buff.size()) {
// no enough space, resize, try to catch memory issue
try {
response.data_buff.resize(rest_content_len + response.headers_len + response.content_len);
}
catch (std::bad_alloc& ba) {
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
return -1;
}
}
// receive rest contents
while (rest_content_len != 0) {
#if DEBUG
std::cout << "recving response content..." << std::endl;
#endif
len = recv(server_sfd, &response.data_buff.data()[i], RES_BUFF_SIZE, 0);
received_bytes += len;
rest_content_len = rest_content_len - len;
if (rest_content_len == 0) {
// finish receiving response content
break;
}
if (len == 0) {
// connection closed
break;
}
else if (len < 0) {
// connection timeout or broken unexpectedly
return -1;
}
i = received_bytes;
}
}
// receive rest content, use Transfer-Encoding field to decide when to finish
else if (response.check_encoding() == true &&
response.coded_content_recv_finished(response.headers_len) == false) {
i = received_bytes;
// receive the rest of contents
while (1) {
#if DEBUG
std::cout << "recving response chunked..." << std::endl;
#endif
len = recv(server_sfd, &response.data_buff.data()[i], RES_BUFF_SIZE, 0);
received_bytes += len;
response.data_len = received_bytes;
// calculate response's content length
response.content_len = response.data_len - response.headers_len;
if (response.coded_content_recv_finished(i) == true) {
// done receiving response contents
break;
}
else {
// if no enough space and no "0\r\n\r\n", resize and continue
if (received_bytes == response.data_buff.size()) {
// try to add relatively small amount of data first
try {
response.data_buff.resize(received_bytes + RESIZE_SIZE);
i = received_bytes;
}
catch (std::bad_alloc& ba) {
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
return -1;
}
}
// if 0 is received, the connection is closed
else if (len == 0) {
break;
}
// failed to receive, 502 probably
else if (len < 0) {
return -1;
}
else {
#if DEBUG
std::cout << "\n\nbuff isn't filled up (chunked)\n" << std::endl;
std::cout << "len in this loop: " << len << std::endl;
std::cout << "data_buff:\n" << response.data_buff.data() << std::endl;
#endif
i = received_bytes;
}
}
}
}
else {
return 0;
}
#if DEBUG
std::cout << "\nresponse received:\n" << response.data_buff.data();
std::cout << "\nResponse received bytes: " << received_bytes << std::endl;
#endif
// successfully received response
return 0;
}
/* FORWAR CLIENT'S REQUEST TO THE SERVER AND GET RESPONSE *****************************************/
// forward client's request and get server's response
int forward_request_and_get_response (int client_conn_sfd, HttpRequest& request,
HttpResponse& response, RequestInfo& request_info,
std::ofstream& log) {
sockaddr_in server_addr;
struct hostent* server_info;
int stat = 0;
int len = 0;
struct timeval wait_time;
// create TCP socket to connect to the server
server_info = gethostbyname(request.server_name.c_str());
if (server_info == NULL) { // 404
#if DEBUG
std::cerr << "\nCannot find server: " << request.server_name << std::endl;
#endif
std::string info("Cannot find server: ");
info += request.server_name;
proxy_response(client_conn_sfd, "404", "Not Found", info);
#if LOG
log << request_info.request_id << ": " << "Responding \""
<< request.http_type << "\" 404 Not Found" << std::endl;
#endif
return -2;
}
// create TCP socket for connecting to the server
server_addr.sin_family = AF_INET;
#if DEBUG
std::cout << "server_port: " << request.server_port << std::endl;
#endif
server_addr.sin_port = htons(request.server_port);
server_addr.sin_addr = *((struct in_addr*)server_info->h_addr);
memcpy(&server_addr.sin_addr, server_info->h_addr_list[0], server_info->h_length);
int server_sfd = socket(AF_INET, SOCK_STREAM, 0);
if (server_sfd < 0) {
#if DEBUG
perror("Failed to create socket connecting to the server");
#endif
return -1;
}
#if TIMEOUT_ENABLE
wait_time.tv_sec = HTTP_TIMEOUT; // set 120 Secs timeout for each connection
setsockopt(server_sfd, SOL_SOCKET, SO_RCVTIMEO|SO_REUSEADDR,
(struct timeval*)&wait_time, sizeof(wait_time));
#endif
#if 0
int yes = 1;
stat = setsockopt(server_sfd, SOL_SOCKET, SO_REUSEADDR, (char*)&yes, sizeof(yes));
#endif
// proxy connect to the server
stat = connect(server_sfd, (struct sockaddr*)&server_addr, sizeof(server_addr));
if (stat < 0) { // 504 Gateway Timeout
#if DEBUG
perror("Cannot connect to the server");
#endif
std::string info("Server does not response on time...");
info += request.server_name;
// send 504 response to the client
proxy_response(client_conn_sfd, "504", "Gateway Timeout", info);
#if LOG
log << request_info.request_id << ": Responding " << "\"" << request.http_type
<< " 504 Bad Timeout" << "\"" << std::endl;
#endif
return -2;
}
// set MSG_NOSIGNAL to prevent to handle SIGPIPE locally
len = send(server_sfd, request.data_buff.data(), request.data_len, MSG_NOSIGNAL);
#if LOG
log << request_info.request_id << ": Requesting \"" << request.request_line
<< "\" from " << request.server_name << std::endl;
#endif
#if DEBUG
std::cout << "\nrequest sent:\n" << request.data_buff.data();
std::cout << "\nRequest sent bytes: " << len << std::endl;
std::cout << "\nrequest.headers_len: " << request.headers_len << std::endl;
std::cout << "\nrequest.content_len: " << request.content_len << std::endl;
#endif
/* GET SEVER'S RESPONSE ***************************************************************************/
stat = get_response(server_sfd, response);
close(server_sfd);
if (stat < 0) { // 502 Bad Gateway
return -1;
}
#if LOG
log << request_info.request_id << ": Received \"" << response.response_line
<< "\" from " << request.server_name << std::endl;
#endif
return EXIT_SUCCESS;
}
// return server's response back to the client
int return_response (int client_conn_sfd, HttpResponse& response) {
// set MSG_NOSIGNAL to handle SIGPIPE locally
int len = send(client_conn_sfd, response.data_buff.data(),
response.headers_len + response.content_len, MSG_NOSIGNAL);
if (len <= 0) { // error
return -1;
}
#if DEBUG
std::cout << "\nresponse returned:\n" << response.data_buff.data();
std::cout << "\nResponse sent bytes: " << len << std::endl;
#endif
return EXIT_SUCCESS;
}
// each thread's function, which handles one request
void* handle_request (void* arg) {
HttpRequest request;
HttpResponse response;
HttpResponse cached_response;
int stat;
long request_time;
long response_time;
long response_delay; // time to add response_delay
time_t time_stat;
time_t raw_time;
time_t curr_time;
struct tm* ptm;
std::ofstream log(LOG_NAME, std::ios::app);
// get request info for printing log
RequestInfo request_info = *((RequestInfo*)arg);
#if DEBUG
std::cout << "client id: " << request_info.request_id << std::endl;
std::cout << "client ip: " << request_info.client_ip << std::endl;
#endif
// use mutex to make thread safe
pthread_mutex_lock(&mutex);
// each thread get a socket fd from the queue and handle the request
int client_conn_sfd = client_conn_sfd_queue.front();
client_conn_sfd_queue.pop();
request_info.request_id = request_id;
++request_id;
pthread_mutex_unlock(&mutex);
#if DEBUG
std::cout << "\nNEW THREAD, fd: " << client_conn_sfd << std::endl;
#endif
// check time period for request
request_time = time(&raw_time);
// get request from the client
stat = get_request(client_conn_sfd, request);
response_time = time(&raw_time);
response_delay = response_time - request_time;
// if failed to get any request, exit this thread
if (stat == -1) { // HTTP 400, bad request
std::string info("Invalid request, incorrect format...");
// form andt send response to the client
proxy_response(client_conn_sfd, "400", "Bad Request", info);
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed -1\n" << std::endl;
#endif
close(client_conn_sfd);
#if DEBUG
perror("Failed to recv request\n");
#endif
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
#if LOG
time(&curr_time);
ptm = gmtime(&curr_time);
// print received request info to log
log << request_info.request_id << ": " << "\""
<< request.request_line << "\""
<< " from " << request_info.client_ip
<< " @ " << asctime(ptm);
#endif
#if CONNECT_ENABLE
// handle CONNECT, i.e. communication via HTTPS
if (request.method == "CONNECT") {
stat = handle_https(client_conn_sfd, request, request_info, log);
// tunnle is closed
if (stat != -2) {
#if LOG
log << request_info.request_id << ": Tunnle closed" << std::endl;
#endif
}
}
#else
if (0) {}
#endif
// handle GET and POST via HTTP
else {
// if HTTP method is GET, try find response in cache first
if (request.method == "GET") {
std::string header(request.data_buff.data(), request.headers_len);
std::size_t pos = header.find("If-None-Match");
if (pos == std::string::npos) {
pthread_mutex_lock(&mutex);
// try to get response from proxy cache
try {
time_stat = proxy_cache.get(request, cached_response);
pthread_mutex_unlock(&mutex);
}
catch (std::exception& e) {
std::cerr << "Exception caught: " << e.what() << std::endl;
std::cerr << "close socket and exit thread" << std::endl;
pthread_mutex_unlock(&mutex);
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
//##################################################################################################
#if LOG
if (time_stat == -1) { // stat == -1 -> not in cache
log << request_info.request_id << ": not in cache" << std::endl;
}
if (time_stat > 0) { // stat > 0 -> expired
struct tm* time_info = gmtime(&time_stat);
log << request_info.request_id << ": in cache, but expired at "
<< asctime(time_info);
}
#endif
if (time_stat < -1) { // stat < -1 -> need revalidation
#if LOG
log << request_info.request_id << ": in cache, requires validation" << std::endl;
#endif
int reval = revalidate(request,cached_response,-(time_stat)); //check if res has ETag
if(reval){ //has ETag, can revalidate
stat = forward_request_and_get_response(client_conn_sfd, request,
response, request_info, log);
if(response.response_line.compare("HTTP/1.1 304 Not Modified")==0){
//get 304,refresh cache and send cached response back;
stat = return_response(client_conn_sfd, cached_response);
#if DEBUG
std::cout<<"revalidate304"<<std::endl;
#endif
if (stat == -1) {
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed2\n" << std::endl;
perror("Failed to recv response");
#endif
close(client_conn_sfd);
proxy_cache.revalidate(request,request_time - response.get_age());
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
}
else{ //no 304, return response
#if DEBUG
std::cout<<"revalidateresponse"<<std::endl;
#endif
stat = return_response(client_conn_sfd, response);
if (stat == -1) {
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed2\n" << std::endl;
perror("Failed to recv response");
#endif
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
}
}
//if no ETag, cannot revalidate, go back to common method
}
if (time_stat == 0) { // here, stat == 0 -> valid
#if LOG
log << request_info.request_id << ": in cache, valid" << std::endl;
#endif
#if CACHE_DEBUG
std::cout << "cached_response:\n" << cached_response.data_buff.data() << std::endl;
#endif
stat = return_response(client_conn_sfd, cached_response);
if (stat == -1) {
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed2\n" << std::endl;
perror("Failed to recv response");
#endif
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed4\n" << std::endl;
#endif
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
}
}
// forward received request to the server and get its response
stat = forward_request_and_get_response(client_conn_sfd, request,
response, request_info, log);
// if failed to get any request, exit this thread
if (stat == -1) { // HTTP 502, Bad Gateway
std::string info("Connection timeout, invalid response...");
info += request.server_name;
// response the client with 502
proxy_response(client_conn_sfd, "502", "Bad Gateway", info);
#if LOG
log << request_info.request_id << ": Responding \""
<< request.http_type << "\" 502 Bad Gateway" << std::endl;
#endif
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed -2\n" << std::endl;
perror("Failed to recv response");
#endif
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
// already responsed 400 or 404
else if (stat == -2) {
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
// CACHE RESPONSE ==================================================================================
// need_cache give the time if the response should be cached
// response_delay + response.get_age() is the life time
time_stat = need_cache(response, response_delay + response.get_age());
if (time_stat >= 0) {
pthread_mutex_lock(&mutex);
// add response to cache
try {
proxy_cache.set(request, request_time - response.get_age(),
time_stat, response, log);
pthread_mutex_unlock(&mutex);
}
catch (std::exception& e) {
std::cerr << "Exception caught: " << e.what() << std::endl;
std::cerr << "close socket and exit thread" << std::endl;
pthread_mutex_unlock(&mutex);
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
#if LOG
if (time_stat == 0) {
log << request_info.request_id << ": cached, but requires re-validation"
<< std::endl;
}
else {
time_t temp = time_stat + request_time - response.get_age();
struct tm* time_info = gmtime(&temp);
log << request_info.request_id << ": cached, expires at "
<< asctime(time_info);
}
#endif
}
else if (time_stat == -2) {
#if LOG
log << request_info.request_id
<< ": not cacheable because 304 Not Modified is received"
<< std::endl;
#endif
}
else if (time_stat == -3) {
#if LOG
log << request_info.request_id
<< ": not cacheable because header indicates no-store"
<< std::endl;
#endif
}
else if (time_stat == -4) {
#if LOG
log << request_info.request_id
<< ": not cacheable because header indicates no-cache"
<< std::endl;
#endif
}
//==================================================================================================
// return response back to the client
stat = return_response(client_conn_sfd, response);
if (stat == -1) { // HTTP 502, Bad Gateway
std::string info("Connection with client is closed...");
info += request.server_name;
// response the client with 502
proxy_response(client_conn_sfd, "502", "Bad Gateway", info);
#if LOG
log << request_info.request_id << ": Responding \""
<< request.http_type << "502 Bad Gateway\"" << std::endl;
#endif
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed -3\n" << std::endl;
perror("Failed to return response");
#endif
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
#if LOG
log << request_info.request_id << ": Responding \""
<< response.response_line << "\"" << std::endl;
#endif
}
#if DEBUG
std::cout << "\nclient_conn_sfd: " << client_conn_sfd
<< " closed\n" << std::endl;
#endif
close(client_conn_sfd);
#if MULTI_THREAD
pthread_exit(0);
#else
return NULL;
#endif
}
/* MAIN FUNCTION **********************************************************************************/
int main (int argc, char** argv) {
int proxy_sfd;
int stat;
char proxy_hostname[NAME_SIZE];
int proxy_port = PROXY_PORT;
struct sockaddr_in proxy_addr_info;
struct hostent* proxy_info;
// ignore SIGPIPE to handle tons of connections
signal(SIGPIPE, SIG_IGN);
#if LOG_CLEAR
std::ofstream log;
// clear log on every run
log.open(LOG_NAME);
log.close();
#endif
std::cout << " Welcome to use our HTTP proxy\n"
<< " the default listening port is 12345\n"
<< " you can press Ctrl+C to exit\n"
<< " proxy is working...\n" << std::endl;
// first create proxy's socket
gethostname(proxy_hostname, sizeof(proxy_hostname));
proxy_info = gethostbyname(proxy_hostname);
proxy_addr_info.sin_family = AF_INET;
proxy_addr_info.sin_port = htons(proxy_port);
proxy_addr_info.sin_addr.s_addr = INADDR_ANY;
memcpy(&proxy_addr_info.sin_addr, proxy_info->h_addr_list[0], proxy_info->h_length);
// create TCP socket, bind and listen
proxy_sfd = socket(AF_INET, SOCK_STREAM, 0);
if (proxy_sfd < 0) {
#if DEBUG
perror("Cannot create socket");
#endif
}
#if 1
int yes = 1;
stat = setsockopt(proxy_sfd, SOL_SOCKET, SO_REUSEADDR, (char*)&yes, sizeof(yes));
#endif
stat = bind(proxy_sfd, (struct sockaddr*)&proxy_addr_info, sizeof(proxy_addr_info));
if (stat < 0) {
#if DEBUG
perror ("Failed binding");
#endif
}
stat = listen(proxy_sfd, MAX_CONN);
if (stat < 0) {
#if DEBUG
perror("Failed listening");
#endif
}
request_id = 0;
// continue to
while (1) {
try {
struct sockaddr_in client_addr;
socklen_t addr_len = sizeof(client_addr);
int client_conn_sfd = accept(proxy_sfd, (struct sockaddr*)&client_addr, &addr_len);
if (client_conn_sfd == -1) {
#if DEBUG
perror("Cannot accept connection");
#endif
continue;
}
#if DEBUG
std::cout << "\n\nconnection from:\n" << inet_ntoa(client_addr.sin_addr) << std::endl;
#endif
// HANDLED BY EACH THREAD==========================================================================
#if DEBUG
std::cout << "locking..." << std::endl;
#endif
pthread_mutex_lock(&mutex);
client_conn_sfd_queue.push(client_conn_sfd);
pthread_mutex_unlock(&mutex);
RequestInfo request_info(request_id, inet_ntoa(client_addr.sin_addr));
#if MULTI_THREAD
pthread_attr_t thread_attr;
pthread_attr_init(&thread_attr);
pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);
pthread_attr_setstacksize(&thread_attr, RES_BUFF_SIZE * MAX_NUM);
pthread_t thread_id;
pthread_create(&thread_id, &thread_attr, &handle_request, &request_info);
pthread_detach(thread_id);
#else
handle_request(&request_info);
#endif
//=================================================================================================
// in case there are too many requests cumulated
if (request_id == INT_MAX) {
request_id = 0;
}
}
catch (std::exception& e) {
std::cerr << "Exception caught in main thread: " << e.what() << std::endl;
std::cerr << "close all connections and exit proxy process..." << std::endl;
close(proxy_sfd);
exit(0);
}
}
close(proxy_sfd);
return EXIT_SUCCESS;
}
| [
"vcm@vcm-296.vm.duke.edu"
] | vcm@vcm-296.vm.duke.edu |
e05a3b0e7d48eed8493d7bad51f0f77ee9620c27 | 90cd1f7f6ddc33b1bf2d0a6a1ac6fe4be760ead5 | /include/boost/simd/function/simd/dec.hpp | b34e4cb3470b9101321eb4987194e71ebc25c426 | [
"BSL-1.0"
] | permissive | williammc/boost.simd | 511f03857ee66178179daba6295533e316d61a94 | b4310d441c7122f974498042ad604d559280431a | refs/heads/master | 2021-01-17T23:56:44.708853 | 2016-08-16T07:14:57 | 2016-08-16T07:14:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 708 | hpp | //==================================================================================================
/*!
@file
@copyright 2016 NumScale SAS
@copyright 2016 J.T. Lapreste
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
//==================================================================================================
#ifndef BOOST_SIMD_FUNCTION_SIMD_DEC_HPP_INCLUDED
#define BOOST_SIMD_FUNCTION_SIMD_DEC_HPP_INCLUDED
#include <boost/simd/function/scalar/dec.hpp>
#include <boost/simd/arch/common/generic/function/autodispatcher.hpp>
#include <boost/simd/arch/common/generic/function/dec.hpp>
#endif
| [
"charly.chevalier@numscale.com"
] | charly.chevalier@numscale.com |
5c1bd9f30808f2c67fdbdd24350979f8c1cd2091 | acb4df35c2251797e6292f24d89d29f64c7367f6 | /Framework/Common/main.cpp | 29df05a459bd2b7653f276b9242ca4f933e905c0 | [
"MIT"
] | permissive | yhyu13/GameEngineFromScratch | 8e1f639e988c207f76d5d041536e8b58da708c79 | 0dc128360db53f4e3ec4fc488e8237acea6da3a8 | refs/heads/master | 2020-06-16T12:05:38.522076 | 2020-05-08T20:43:32 | 2020-05-08T20:43:32 | 195,565,723 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,030 | cpp | #include <stdio.h>
#include "EmptyApplication.hpp"
#include "Scheduler.hpp"
using namespace My;
namespace My {
extern IApplication* g_pApp;
extern MemoryManager* g_pMemoryManager;
extern GraphicsManager* g_pGraphicsManager;
extern AssetLoader* g_pAssetLoader;
extern SceneManager* g_pSceneManager;
}
template< class Function, class... Args>
int initiate( Function&& f, Args&&... args )
{
try
{
f(args...);
}
catch( const EngineException& e )
{
BaseApplication::SetQuit(true);
const std::wstring eMsg = e.GetFullMessage() +
L"\n\nException caught at main window creation.";
std::wcerr << e.GetExceptionType().c_str() << std::endl;
std::wcerr << eMsg.c_str() << std::endl;
}
catch( const std::exception& e )
{
BaseApplication::SetQuit(true);
// need to convert std::exception what() string from narrow to wide string
const std::string whatStr( e.what() );
const std::wstring eMsg = std::wstring( whatStr.begin(),whatStr.end() ) +
L"\n\nException caught at main window creation.";
std::wcerr << "Unhandled STL Exception" << std::endl;
std::wcerr << eMsg.c_str() << std::endl;
}
// catch( ... )
// {
// BaseApplication::SetQuit(true);
// std::wcerr << L"Unhandled Non-STL Exception" << std::endl;
// std::wcerr << L"Exception caught at main window creation." << std::endl;
// }
return 0;
}
template< class Function, class... Args>
int FixedUpdate(double waitTime, Function&& f, Args&&... args )
{
Timer drawTimer;
try
{
while (!g_pApp->IsQuit())
{
drawTimer.Reset();
f(args...);
while(drawTimer.Mark() < waitTime) {};
}
}
catch(const EngineException & e)
{
BaseApplication::SetQuit(true);
const std::wstring eMsg = e.GetFullMessage() +
L"\n\nException caught at Windows message loop.";
BaseApplication* base = dynamic_cast<BaseApplication*>(g_pApp);
base->ShowMessage( e.GetExceptionType(),eMsg );
}
catch(const std::exception& e)
{
BaseApplication::SetQuit(true);
// need to convert std::exception what() string from narrow to wide string
const std::string whatStr( e.what() );
const std::wstring eMsg = std::wstring( whatStr.begin(),whatStr.end() ) +
L"\n\nException caught at Windows message loop.";
BaseApplication* base = dynamic_cast<BaseApplication*>(g_pApp);
base->ShowMessage( L"Unhandled STL Exception",eMsg );
}
// catch( ... )
// {
// BaseApplication::SetQuit(true);
// BaseApplication* base = dynamic_cast<BaseApplication*>(g_pApp);
// base->ShowMessage( L"Unhandled Non-STL Exception",L"Exception caught at Windows message loop." );
// }
return 0;
}
int main() {
initiate(
[] {
int ret = 0;
if ((ret = g_pApp->Initialize()) != 0) {
printf("App Initialize failed, will exit now.");
return ret;
}
if ((ret = g_pMemoryManager->Initialize()) != 0) {
printf("Memory Manager Initialize failed, will exit now.");
return ret;
}
if ((ret = g_pGraphicsManager->Initialize()) != 0) {
printf("Graphics Manager Initialize failed, will exit now.");
return ret;
}
if ((ret = g_pAssetLoader->Initialize()) != 0) {
printf("Asset Loader Initialize failed, will exit now.");
return ret;
}
if ((ret = g_pSceneManager->Initialize()) != 0) {
printf("Scene Manager Initialize failed, will exit now.");
return ret;
}
return ret;
}
);
std::future<int> tickGroup1Future = std::async(std::launch::async,
[] {
FixedUpdate(1.0/2000.0,
[] {
g_pMemoryManager->Tick();
g_pGraphicsManager->Tick();
g_pAssetLoader->Tick();
g_pSceneManager->Tick();
}
);
return 0;
}
);
/* Both g_pApp Tick() (i.e., Input message loop)
* and OnDraw() (i.e., Rendering loop),
* which is likely to be included in Tick() after the input message loop,
* need to iterate in the thread that creates them (for a windows application in particular).
*/
FixedUpdate(1.0/60.0,
[] {
g_pApp->Tick();
}
);
tickGroup1Future.get();
initiate(
[] {
g_pSceneManager->Finalize();
g_pAssetLoader->Finalize();
g_pGraphicsManager->Finalize();
g_pMemoryManager->Finalize();
g_pApp->Finalize();
delete g_pSceneManager;
delete g_pAssetLoader;
delete g_pGraphicsManager;
delete g_pMemoryManager;
delete g_pApp;
}
);
return 0;
} | [
"yohan680919@gmail.com"
] | yohan680919@gmail.com |
b0aed9ea1d2a7f1031034db2f437db1b037dfce3 | 6c945f5861276389d565fc2326ddfd069f61e6a9 | /src/boost/spirit/include/qi_difference.hpp | 132651b7321503cbe978f6117d3ec3ad59994e91 | [] | no_license | Springhead/dependency | 3f78387d2a50439ce2edf7790a296026c6012fa3 | 05d4e6f9a3e9c21aae8db4b47573aa34058c4705 | refs/heads/master | 2023-04-23T23:40:13.402639 | 2021-05-08T05:55:22 | 2021-05-08T05:55:22 | 112,149,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 634 | hpp | /*=============================================================================
Copyright (c) 2001-2010 Joel de Guzman
Copyright (c) 2001-2010 Hartmut Kaiser
http://spirit.sourceforge.net/
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)
=============================================================================*/
#ifndef BOOST_SPIRIT_INCLUDE_QI_DIFFERENCE
#define BOOST_SPIRIT_INCLUDE_QI_DIFFERENCE
#if defined(_MSC_VER)
#pragma once
#endif
#include <boost/spirit/home/qi/operator/difference.hpp>
#endif
| [
"kanehori@haselab.net"
] | kanehori@haselab.net |
d6409ac6bf704d6fba0b93d0b8a41116e898787d | f0a26ec6b779e86a62deaf3f405b7a83868bc743 | /Engine/Source/Editor/ReferenceViewer/Private/ReferenceViewer.cpp | a0c002b42a1e24b896917dc5c40905be34bc3594 | [] | no_license | Tigrouzen/UnrealEngine-4 | 0f15a56176439aef787b29d7c80e13bfe5c89237 | f81fe535e53ac69602bb62c5857bcdd6e9a245ed | refs/heads/master | 2021-01-15T13:29:57.883294 | 2014-03-20T15:12:46 | 2014-03-20T15:12:46 | 18,375,899 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,619 | cpp | // Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "ReferenceViewerPrivatePCH.h"
#include "ReferenceViewer.h"
#include "ReferenceViewer.generated.inl"
#include "EdGraphUtilities.h"
#define LOCTEXT_NAMESPACE "ReferenceViewer"
//DEFINE_LOG_CATEGORY(LogReferenceViewer);
class FGraphPanelNodeFactory_ReferenceViewer : public FGraphPanelNodeFactory
{
virtual TSharedPtr<class SGraphNode> CreateNode(UEdGraphNode* Node) const OVERRIDE
{
if ( UEdGraphNode_Reference* DependencyNode = Cast<UEdGraphNode_Reference>(Node) )
{
return SNew(SReferenceNode, DependencyNode);
}
return NULL;
}
};
class FReferenceViewerModule : public IReferenceViewerModule
{
public:
FReferenceViewerModule()
: ReferenceViewerTabId("ReferenceViewer")
{
}
virtual void StartupModule() OVERRIDE
{
GraphPanelNodeFactory = MakeShareable( new FGraphPanelNodeFactory_ReferenceViewer() );
FEdGraphUtilities::RegisterVisualNodeFactory(GraphPanelNodeFactory);
FGlobalTabmanager::Get()->RegisterNomadTabSpawner(ReferenceViewerTabId, FOnSpawnTab::CreateRaw( this, &FReferenceViewerModule::SpawnReferenceViewerTab ) )
.SetDisplayName( LOCTEXT("ReferenceViewerTitle", "Reference Viewer") )
.SetMenuType( ETabSpawnerMenuType::Hide );
}
virtual void ShutdownModule() OVERRIDE
{
if ( GraphPanelNodeFactory.IsValid() )
{
FEdGraphUtilities::UnregisterVisualNodeFactory(GraphPanelNodeFactory);
GraphPanelNodeFactory.Reset();
}
FGlobalTabmanager::Get()->UnregisterNomadTabSpawner(ReferenceViewerTabId);
}
virtual void InvokeReferenceViewerTab(const TArray<FName>& GraphRootPackageNames) OVERRIDE
{
TSharedRef<SDockTab> NewTab = FGlobalTabmanager::Get()->InvokeTab( ReferenceViewerTabId );
TSharedRef<SReferenceViewer> ReferenceViewer = StaticCastSharedRef<SReferenceViewer>( NewTab->GetContent() );
ReferenceViewer->SetGraphRootPackageNames(GraphRootPackageNames);
}
virtual TSharedRef<SWidget> CreateReferenceViewer(const TArray<FName>& GraphRootPackageNames) OVERRIDE
{
TSharedRef<SReferenceViewer> ReferenceViewer = SNew(SReferenceViewer);
ReferenceViewer->SetGraphRootPackageNames(GraphRootPackageNames);
return ReferenceViewer;
}
private:
TSharedRef<SDockTab> SpawnReferenceViewerTab( const FSpawnTabArgs& SpawnTabArgs )
{
TSharedRef<SDockTab> NewTab = SNew(SDockTab)
.TabRole(ETabRole::NomadTab);
NewTab->SetContent( SNew(SReferenceViewer) );
return NewTab;
}
private:
TSharedPtr<FGraphPanelNodeFactory> GraphPanelNodeFactory;
FName ReferenceViewerTabId;
};
IMPLEMENT_MODULE( FReferenceViewerModule, ReferenceViewer )
#undef LOCTEXT_NAMESPACE | [
"michaellam430@gmail.com"
] | michaellam430@gmail.com |
20d484357896935fc3e761b644b05c46725b48fb | 61dc0fb67bddab2f8bb9c1f6410dd7df41938fea | /StdAfx.cpp | 04495fc303c9c35701f8d4cbfc81285b112eb4f9 | [] | no_license | slguerreiro/BipedRobotControl | 81852cf031c00b7cd4f81d1ed6900d7d7dd25cdd | b650e1ef67d348fc4ca5968653b4303659b72621 | refs/heads/master | 2021-07-09T20:53:45.745597 | 2017-10-11T14:52:50 | 2017-10-11T14:52:50 | 106,567,549 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 215 | cpp | // stdafx.cpp : source file that includes just the standard includes
// Controlador_Robot.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
| [
"noreply@github.com"
] | noreply@github.com |
31f308762341e68467e4c6ef2b27137c096df930 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /chromecast/crash/linux/crash_util.cc | e0a3decd5fa41b0b49f14e7cbfa21ef3c8eab424 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 4,962 | cc | // Copyright 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 "chromecast/crash/linux/crash_util.h"
#include <string>
#include "base/bind.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/threading/thread_restrictions.h"
#include "base/time/time.h"
#include "chromecast/base/path_utils.h"
#include "chromecast/base/process_utils.h"
#include "chromecast/base/version.h"
#include "chromecast/crash/app_state_tracker.h"
#include "chromecast/crash/linux/dummy_minidump_generator.h"
#include "chromecast/crash/linux/minidump_writer.h"
namespace chromecast {
namespace {
const char kDumpStateSuffix[] = ".txt.gz";
const char kMinidumpsDir[] = "minidumps";
const size_t kMaxFilesInMinidumpsDir = 22; // 10 crashes
// This can be set to a callback for testing. This allows us to inject a fake
// dumpstate routine to avoid calling an executable during an automated test.
// This value should not be mutated through any other function except
// CrashUtil::SetDumpStateCbForTest().
static base::OnceCallback<int(const std::string&)>* g_dumpstate_cb = nullptr;
} // namespace
// static
bool CrashUtil::HasSpaceToCollectCrash() {
// Normally the path is protected by a file lock, but we don't need to acquire
// that just to make an estimate of the space consumed.
base::FilePath dump_dir(GetHomePathASCII(kMinidumpsDir));
base::FileEnumerator file_enumerator(dump_dir, false /* recursive */,
base::FileEnumerator::FILES);
size_t total = 0;
for (base::FilePath name = file_enumerator.Next(); !name.empty();
name = file_enumerator.Next()) {
total++;
}
return total <= kMaxFilesInMinidumpsDir;
}
// static
bool CrashUtil::CollectDumpstate(const base::FilePath& minidump_path,
base::FilePath* dumpstate_path) {
std::vector<std::string> argv = {
chromecast::GetBinPathASCII("dumpstate").value(),
"-w",
"crash-request",
"-z",
"-o",
minidump_path.value() /* dumpstate appends ".txt.gz" to the filename */
};
std::string log;
if (!chromecast::GetAppOutput(argv, &log)) {
LOG(ERROR) << "failed to execute dumpstate";
return false;
}
*dumpstate_path = minidump_path.AddExtensionASCII(kDumpStateSuffix);
return true;
}
// static
uint64_t CrashUtil::GetCurrentTimeMs() {
return (base::TimeTicks::Now() - base::TimeTicks()).InMilliseconds();
}
// static
bool CrashUtil::RequestUploadCrashDump(
const std::string& existing_minidump_path,
uint64_t crashed_pid,
uint64_t crashed_process_start_time_ms) {
// Remove IO restrictions from this thread. Chromium IO functions must be used
// to access the file system and upload information to the crash server.
const bool io_allowed = base::ThreadRestrictions::SetIOAllowed(true);
LOG(INFO) << "Request to upload crash dump " << existing_minidump_path
<< " for process " << crashed_pid;
uint64_t uptime_ms = GetCurrentTimeMs() - crashed_process_start_time_ms;
MinidumpParams params(
uptime_ms,
"", // suffix
AppStateTracker::GetPreviousApp(), AppStateTracker::GetCurrentApp(),
AppStateTracker::GetLastLaunchedApp(), CAST_BUILD_RELEASE,
CAST_BUILD_INCREMENTAL, "", /* reason */
AppStateTracker::GetStadiaSessionId());
DummyMinidumpGenerator minidump_generator(existing_minidump_path);
base::FilePath filename = base::FilePath(existing_minidump_path).BaseName();
std::unique_ptr<MinidumpWriter> writer;
if (g_dumpstate_cb) {
writer.reset(new MinidumpWriter(&minidump_generator, filename.value(),
params, std::move(*g_dumpstate_cb)));
} else {
writer.reset(
new MinidumpWriter(&minidump_generator, filename.value(), params));
}
bool success = false;
success = (0 == writer->Write()); // error already logged.
// In case the file is still in $TEMP, remove it. Note that DeleteFile() will
// return true if |existing_minidump_path| has already been moved.
if (!base::DeleteFile(base::FilePath(existing_minidump_path))) {
LOG(ERROR) << "Unable to delete temp minidump file "
<< existing_minidump_path;
success = false;
}
// Use std::endl to flush the log stream in case this process exits.
LOG(INFO) << "Request to upload crash dump finished. "
<< "Exit now if it is main process that crashed." << std::endl;
// Restore the original IO restrictions on the thread, if there were any.
base::ThreadRestrictions::SetIOAllowed(io_allowed);
return success;
}
void CrashUtil::SetDumpStateCbForTest(
base::OnceCallback<int(const std::string&)> cb) {
DCHECK(!g_dumpstate_cb);
g_dumpstate_cb =
new base::OnceCallback<int(const std::string&)>(std::move(cb));
}
} // namespace chromecast
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
9c3609c62010299e34cf50e87e7c05ae655e5c6a | 911c6c8da18d05d2cd8fefefdf57e2db7273ce3c | /TrenchCoatAdministrator-GUI-MVC/CoatService.h | 1ea430ca3167b201eb80608b4cc68ce3c1973533 | [] | no_license | ComanacDragos/Assembly-C-CPP-Projects | db1d34f05e4eaa9f978330503f81da0468682ce9 | 5aa306032319ae7840b30928b3268878b6e18869 | refs/heads/master | 2023-04-15T02:16:10.782569 | 2021-03-16T13:41:16 | 2021-03-16T13:41:16 | 261,495,900 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,426 | h | #pragma once
#include "FileRepository.h"
#include "CoatsIterator.h"
#include "FileRepository.h"
#include "CoatValidator.h"
#include "Action.h"
#include "InMemoryRepository.h"
#include "Observer.h"
#include <memory>
class CoatService: public Observable
{
private:
AbstractRepository* coatRepository;
CoatsIterator coatsIterator;
CoatValidator* coatsValidator;
AbstractRepository* userRepository;
std::vector<std::unique_ptr<Action>> undoStack;
std::vector<std::unique_ptr<Action>> redoStack;
std::vector<std::unique_ptr<Action>> userUndoStack;
std::vector<std::unique_ptr<Action>> userRedoStack;
bool duringUndo = false, duringUserUndo = false;
public:
CoatService() :coatRepository{ new CSVFileRepository }, coatsValidator { new CoatValidator }, userRepository{ new CSVFileRepository }, duringUndo{ false } {}
CoatService(CSVFileRepository& coatRepository, CoatValidator* coatsValidator);
CoatService(CSVFileRepository& coatRepository);
CoatService(const CoatService& coatService);
CoatService& operator=(const CoatService& coatService);
~CoatService();
//raises an exception if coat fields are invalid
void storeCoatService(const std::string& name, const std::string& size, const std::string& photographSource, const std::string& price);
void deleteCoatService(const std::string name);
//raises an exception if coat fields are invalid
void updateCoatService(const std::string& name, const std::string& size, const std::string& photographSource, const std::string& price);
std::vector<TrenchCoat> listCoats();
TrenchCoat getCoatFromRepository(int position);
TrenchCoat getCoatFromUserRepository(int position);
int getRepositoryLength();
int getUserRepositoryLength();
//returns an interator over the list of coats
CoatsIterator getCoatsIterator();
void setCoatsIterator();
void saveTrenchCoatToUserList(const std::string& name);
std::vector<TrenchCoat> listFilteredCoats(const std::string& size, const std::string& price);
std::vector<TrenchCoat> getUserCoats();
void emptyUserCoats();
void setCoatIteratorToFirst();
TrenchCoat getNextCoatFromIterator();
void setPath(const std::string& filePath, const std::string& userRepositoryPath = "");
void setCoatRepositoryPath(const std::string& filePath);
void setUserRepositoryPath(const std::string& userRepositoryPath);
void openUserFile();
void undo();
void redo();
void undoUser();
void redoUser();
};
| [
"46956225+WildUrti@users.noreply.github.com"
] | 46956225+WildUrti@users.noreply.github.com |
1e762880eba29fc42936537df2eb2f430f88ce45 | 767e380bbe222b2b61730343e99d91b23f88cf39 | /kinnect-src/testApp.cpp | acc0e7548275d0960ae607b51162d3cfae7ab073 | [] | no_license | Jehyeok/hci | 38fe2a8701c473a57369c78ac104be9a9e34c3a6 | 5c6e3456d681d15811e23edad0f18d3deee8e332 | refs/heads/master | 2016-09-06T09:32:08.079683 | 2014-06-16T14:01:29 | 2014-06-16T14:01:29 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 4,798 | cpp | #include "testApp.h"
#include "Circle.h"
//--------------------------------------------------------------
void testApp::setup() {
circle = new Circle();
ofSetLogLevel(OF_LOG_VERBOSE);
openNIDevice.setup();
openNIDevice.addImageGenerator();
openNIDevice.addDepthGenerator();
openNIDevice.setRegister(true);
openNIDevice.setMirror(true);
width = ofGetWidth();
height = ofGetHeight();
// setup the hand generator
openNIDevice.addHandsGenerator();
// add all focus gestures (ie., wave, click, raise arm)
openNIDevice.addAllHandFocusGestures();
// or you can add them one at a time
//vector<string> gestureNames = openNIDevice.getAvailableGestures(); // you can use this to get a list of gestures
// prints to console and/or you can use the returned vector
//openNIDevice.addHandFocusGesture("Wave");
openNIDevice.setMaxNumHands(MAX_NUMBER_OF_HAND);
openNIDevice.start();
verdana.loadFont(ofToDataPath("verdana.ttf"), 24);
for (int i = 0; i < MAX_NUMBER_OF_HAND; ++i)
{
detectingEffectList[i] = new DetectingEffect();
}
detectingEffectIdx = 0;
// hand event를 담당하는 리스너 등록
ofAddListener(openNIDevice.handEvent, this, &testApp::handEvent);
}
//--------------------------------------------------------------
void testApp::update(){
openNIDevice.update();
}
//--------------------------------------------------------------
void testApp::draw(){
ofSetColor(255, 255, 255);
ofPushMatrix();
// draw debug (ie., image, depth, skeleton)
//openNIDevice.drawDebug();
openNIDevice.drawDepth();
ofPopMatrix();
ofPushMatrix();
// get number of current hands
int numHands = openNIDevice.getNumTrackedHands();
// iterate through users
for (int i = 0; i < numHands; i++){
// get a reference to this user
ofxOpenNIHand & hand = openNIDevice.getTrackedHand(i);
// get hand position
ofPoint & handPosition = hand.getPosition();
// do something with the positions like:
// draw a rect at the position (don't confuse this with the debug draw which shows circles!!)
ofSetColor(255,0,0);
ofRect(handPosition.x, handPosition.y, 10, 10);
}
ofPopMatrix();
// 손을 찾았을 때 그려지는 이펙트를 화면에 그림
for (int i = 0; i < MAX_NUMBER_OF_HAND; ++i)
{
detectingEffectList[i]->display();
}
// draw some info regarding frame counts etc
ofSetColor(0, 255, 0);
string msg = " MILLIS: " + ofToString(ofGetElapsedTimeMillis()) + " FPS: " + ofToString(ofGetFrameRate()) + " Device FPS: " + ofToString(openNIDevice.getFrameRate());
verdana.drawString(msg, 20, openNIDevice.getNumDevices() * 480 - 20);
ofPushMatrix();
circle->display();
ofPopMatrix();
}
//--------------------------------------------------------------
void testApp::handEvent(ofxOpenNIHandEvent & event){
// show hand event messages in the console
// ofLogNotice() << getHandStatusAsString(event.handStatus) << "for hand" << event.id << "from device" << event.deviceID;
// 앞에서 등록한 리스너에 의해서 이벤트가 발생하면 불려지는 함수
// hand에 관련된 모든 이벤트에 반응을 하므로 여기서 특정 이벤트의 경우를 판단해서 다른 작업을 할 수 있게 설정
if (event.handStatus == HAND_TRACKING_STARTED)
{
// 새로운 손을 찾았을 경우 아래의 이펙트 표현
ofLog(OF_LOG_NOTICE, "handEvent call");
detectingEffectList[detectingEffectIdx]->startEffect(event.position.x, event.position.y);
detectingEffectIdx = (detectingEffectIdx + 1) % MAX_NUMBER_OF_HAND;
}
circle->isCollided(event.position.x, event.position.y);
}
//--------------------------------------------------------------
void testApp::exit(){
openNIDevice.stop();
}
//--------------------------------------------------------------
void testApp::keyPressed(int key){
}
//--------------------------------------------------------------
void testApp::keyReleased(int key){
}
//--------------------------------------------------------------
void testApp::mouseMoved(int x, int y ){
}
//--------------------------------------------------------------
void testApp::mouseDragged(int x, int y, int button){
}
//--------------------------------------------------------------
void testApp::mousePressed(int x, int y, int button){
}
//--------------------------------------------------------------
void testApp::mouseReleased(int x, int y, int button){
}
//--------------------------------------------------------------
void testApp::windowResized(int w, int h){
} | [
"hook3748@gmail.com"
] | hook3748@gmail.com |
5dbba053817694372a80ff88a4b19c5af9524774 | 9a228e9914f64ecd96762267dfb40c97ae6fbda9 | /FaceDemo_DXUT/DXUT/Optional/SDKmesh.cpp | 6612ff1ceca4c74dce3a53c7fc7d8b2341d7e7e4 | [
"Apache-2.0"
] | permissive | GameTechDev/FaceTracking | eee409518ea660fcd9faf800df3ed7b420f2e06d | 56223359cb00a66b6dcd882dadd6e6f6a47da9ea | refs/heads/master | 2023-03-31T06:23:18.531060 | 2017-06-05T19:36:22 | 2017-06-05T19:36:22 | 84,974,089 | 42 | 16 | null | null | null | null | UTF-8 | C++ | false | false | 95,353 | cpp | //--------------------------------------------------------------------------------------
// File: SDKMesh.cpp
//
// The SDK Mesh format (.sdkmesh) is not a recommended file format for games.
// It was designed to meet the specific needs of the SDK samples. Any real-world
// applications should avoid this file format in favor of a destination format that
// meets the specific needs of the application.
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//--------------------------------------------------------------------------------------
#include "DXUT.h"
#include "SDKMesh.h"
#include "SDKMisc.h"
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::LoadMaterials( ID3D10Device* pd3dDevice, SDKMESH_MATERIAL* pMaterials, UINT numMaterials,
SDKMESH_CALLBACKS10* pLoaderCallbacks )
{
char strPath[MAX_PATH];
if( pLoaderCallbacks && pLoaderCallbacks->pCreateTextureFromFile )
{
for( UINT m = 0; m < numMaterials; m++ )
{
pMaterials[m].pDiffuseTexture10 = NULL;
pMaterials[m].pNormalTexture10 = NULL;
pMaterials[m].pSpecularTexture10 = NULL;
pMaterials[m].pDiffuseRV10 = NULL;
pMaterials[m].pNormalRV10 = NULL;
pMaterials[m].pSpecularRV10 = NULL;
// load textures
if( pMaterials[m].DiffuseTexture[0] != 0 )
{
pLoaderCallbacks->pCreateTextureFromFile( pd3dDevice,
pMaterials[m].DiffuseTexture, &pMaterials[m].pDiffuseRV10,
pLoaderCallbacks->pContext );
}
if( pMaterials[m].NormalTexture[0] != 0 )
{
pLoaderCallbacks->pCreateTextureFromFile( pd3dDevice,
pMaterials[m].NormalTexture, &pMaterials[m].pNormalRV10,
pLoaderCallbacks->pContext );
}
if( pMaterials[m].SpecularTexture[0] != 0 )
{
pLoaderCallbacks->pCreateTextureFromFile( pd3dDevice,
pMaterials[m].SpecularTexture, &pMaterials[m].pSpecularRV10,
pLoaderCallbacks->pContext );
}
}
}
else
{
for( UINT m = 0; m < numMaterials; m++ )
{
pMaterials[m].pDiffuseTexture10 = NULL;
pMaterials[m].pNormalTexture10 = NULL;
pMaterials[m].pSpecularTexture10 = NULL;
pMaterials[m].pDiffuseRV10 = NULL;
pMaterials[m].pNormalRV10 = NULL;
pMaterials[m].pSpecularRV10 = NULL;
// load textures
if( pMaterials[m].DiffuseTexture[0] != 0 )
{
sprintf_s( strPath, MAX_PATH, "%s%s", m_strPath, pMaterials[m].DiffuseTexture );
if( FAILED( DXUTGetGlobalResourceCache().CreateTextureFromFile( pd3dDevice,
strPath, &pMaterials[m].pDiffuseRV10,
true ) ) )
pMaterials[m].pDiffuseRV10 = ( ID3D10ShaderResourceView* )ERROR_RESOURCE_VALUE;
}
if( pMaterials[m].NormalTexture[0] != 0 )
{
sprintf_s( strPath, MAX_PATH, "%s%s", m_strPath, pMaterials[m].NormalTexture );
if( FAILED( DXUTGetGlobalResourceCache().CreateTextureFromFile( pd3dDevice,
strPath,
&pMaterials[m].pNormalRV10 ) ) )
pMaterials[m].pNormalRV10 = ( ID3D10ShaderResourceView* )ERROR_RESOURCE_VALUE;
}
if( pMaterials[m].SpecularTexture[0] != 0 )
{
sprintf_s( strPath, MAX_PATH, "%s%s", m_strPath, pMaterials[m].SpecularTexture );
if( FAILED( DXUTGetGlobalResourceCache().CreateTextureFromFile( pd3dDevice,
strPath,
&pMaterials[m].pSpecularRV10 ) ) )
pMaterials[m].pSpecularRV10 = ( ID3D10ShaderResourceView* )ERROR_RESOURCE_VALUE;
}
}
}
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::LoadMaterials( IDirect3DDevice9* pd3dDevice, SDKMESH_MATERIAL* pMaterials, UINT numMaterials,
SDKMESH_CALLBACKS9* pLoaderCallbacks )
{
char strPath[MAX_PATH];
if( pLoaderCallbacks && pLoaderCallbacks->pCreateTextureFromFile )
{
for( UINT m = 0; m < numMaterials; m++ )
{
pMaterials[m].pDiffuseTexture9 = NULL;
pMaterials[m].pNormalTexture9 = NULL;
pMaterials[m].pSpecularTexture9 = NULL;
pMaterials[m].pDiffuseRV10 = NULL;
pMaterials[m].pNormalRV10 = NULL;
pMaterials[m].pSpecularRV10 = NULL;
// load textures
if( pMaterials[m].DiffuseTexture[0] != 0 )
{
pLoaderCallbacks->pCreateTextureFromFile( pd3dDevice,
pMaterials[m].DiffuseTexture,
&pMaterials[m].pDiffuseTexture9,
pLoaderCallbacks->pContext );
}
if( pMaterials[m].NormalTexture[0] != 0 )
{
pLoaderCallbacks->pCreateTextureFromFile( pd3dDevice,
pMaterials[m].NormalTexture, &pMaterials[m].pNormalTexture9,
pLoaderCallbacks->pContext );
}
if( pMaterials[m].SpecularTexture[0] != 0 )
{
pLoaderCallbacks->pCreateTextureFromFile( pd3dDevice,
pMaterials[m].SpecularTexture,
&pMaterials[m].pSpecularTexture9,
pLoaderCallbacks->pContext );
}
}
}
else
{
for( UINT m = 0; m < numMaterials; m++ )
{
pMaterials[m].pDiffuseTexture9 = NULL;
pMaterials[m].pNormalTexture9 = NULL;
pMaterials[m].pSpecularTexture9 = NULL;
pMaterials[m].pDiffuseRV10 = NULL;
pMaterials[m].pNormalRV10 = NULL;
pMaterials[m].pSpecularRV10 = NULL;
// load textures
if( pMaterials[m].DiffuseTexture[0] != 0 )
{
sprintf_s( strPath, MAX_PATH, "%s%s", m_strPath, pMaterials[m].DiffuseTexture );
if( FAILED( DXUTGetGlobalResourceCache().CreateTextureFromFile( pd3dDevice,
strPath,
&pMaterials[m].pDiffuseTexture9 ) ) )
pMaterials[m].pDiffuseTexture9 = ( IDirect3DTexture9* )ERROR_RESOURCE_VALUE;
}
if( pMaterials[m].NormalTexture[0] != 0 )
{
sprintf_s( strPath, MAX_PATH, "%s%s", m_strPath, pMaterials[m].NormalTexture );
if( FAILED( DXUTGetGlobalResourceCache().CreateTextureFromFile( pd3dDevice,
strPath,
&pMaterials[m].pNormalTexture9 ) ) )
pMaterials[m].pNormalTexture9 = ( IDirect3DTexture9* )ERROR_RESOURCE_VALUE;
}
if( pMaterials[m].SpecularTexture[0] != 0 )
{
sprintf_s( strPath, MAX_PATH, "%s%s", m_strPath, pMaterials[m].SpecularTexture );
if( FAILED( DXUTGetGlobalResourceCache().CreateTextureFromFile( pd3dDevice,
strPath,
&pMaterials[m].pSpecularTexture9 ) ) )
pMaterials[m].pSpecularTexture9 = ( IDirect3DTexture9* )ERROR_RESOURCE_VALUE;
}
}
}
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::CreateVertexBuffer( ID3D10Device* pd3dDevice, SDKMESH_VERTEX_BUFFER_HEADER* pHeader,
void* pVertices, SDKMESH_CALLBACKS10* pLoaderCallbacks )
{
HRESULT hr = S_OK;
pHeader->DataOffset = 0;
//Vertex Buffer
D3D10_BUFFER_DESC bufferDesc;
bufferDesc.ByteWidth = ( UINT )( pHeader->SizeBytes );
bufferDesc.Usage = D3D10_USAGE_DEFAULT;
bufferDesc.BindFlags = D3D10_BIND_VERTEX_BUFFER;
bufferDesc.CPUAccessFlags = 0;
bufferDesc.MiscFlags = 0;
if( pLoaderCallbacks && pLoaderCallbacks->pCreateVertexBuffer )
{
pLoaderCallbacks->pCreateVertexBuffer( pd3dDevice, &pHeader->pVB10, bufferDesc, pVertices,
pLoaderCallbacks->pContext );
}
else
{
D3D10_SUBRESOURCE_DATA InitData;
InitData.pSysMem = pVertices;
hr = pd3dDevice->CreateBuffer( &bufferDesc, &InitData, &pHeader->pVB10 );
DXUT_SetDebugName( pHeader->pVB10, "CDXUTSDKMesh" );
}
return hr;
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::CreateIndexBuffer( ID3D10Device* pd3dDevice, SDKMESH_INDEX_BUFFER_HEADER* pHeader,
void* pIndices, SDKMESH_CALLBACKS10* pLoaderCallbacks )
{
HRESULT hr = S_OK;
pHeader->DataOffset = 0;
//Index Buffer
D3D10_BUFFER_DESC bufferDesc;
bufferDesc.ByteWidth = ( UINT )( pHeader->SizeBytes );
bufferDesc.Usage = D3D10_USAGE_DEFAULT;
bufferDesc.BindFlags = D3D10_BIND_INDEX_BUFFER;
bufferDesc.CPUAccessFlags = 0;
bufferDesc.MiscFlags = 0;
if( pLoaderCallbacks && pLoaderCallbacks->pCreateVertexBuffer )
{
pLoaderCallbacks->pCreateIndexBuffer( pd3dDevice, &pHeader->pIB10, bufferDesc, pIndices,
pLoaderCallbacks->pContext );
}
else
{
D3D10_SUBRESOURCE_DATA InitData;
InitData.pSysMem = pIndices;
hr = pd3dDevice->CreateBuffer( &bufferDesc, &InitData, &pHeader->pIB10 );
DXUT_SetDebugName( pHeader->pIB10, "CDXUTSDKMesh" );
}
return hr;
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::CreateVertexBuffer( IDirect3DDevice9* pd3dDevice, SDKMESH_VERTEX_BUFFER_HEADER* pHeader,
void* pVertices, SDKMESH_CALLBACKS9* pLoaderCallbacks )
{
HRESULT hr = S_OK;
pHeader->DataOffset = 0;
if( pLoaderCallbacks && pLoaderCallbacks->pCreateVertexBuffer )
{
pLoaderCallbacks->pCreateVertexBuffer( pd3dDevice, &pHeader->pVB9, ( UINT )pHeader->SizeBytes,
D3DUSAGE_WRITEONLY, 0, D3DPOOL_DEFAULT, pVertices,
pLoaderCallbacks->pContext );
}
else
{
hr = pd3dDevice->CreateVertexBuffer( ( UINT )pHeader->SizeBytes,
D3DUSAGE_WRITEONLY,
0,
D3DPOOL_DEFAULT,
&pHeader->pVB9,
NULL );
//lock
if( SUCCEEDED( hr ) )
{
void* pLockedVerts = NULL;
V_RETURN( pHeader->pVB9->Lock( 0, 0, &pLockedVerts, 0 ) );
CopyMemory( pLockedVerts, pVertices, ( size_t )pHeader->SizeBytes );
pHeader->pVB9->Unlock();
}
}
return hr;
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::CreateIndexBuffer( IDirect3DDevice9* pd3dDevice, SDKMESH_INDEX_BUFFER_HEADER* pHeader,
void* pIndices, SDKMESH_CALLBACKS9* pLoaderCallbacks )
{
HRESULT hr = S_OK;
pHeader->DataOffset = 0;
D3DFORMAT ibFormat = D3DFMT_INDEX16;
switch( pHeader->IndexType )
{
case IT_16BIT:
ibFormat = D3DFMT_INDEX16;
break;
case IT_32BIT:
ibFormat = D3DFMT_INDEX32;
break;
};
if( pLoaderCallbacks && pLoaderCallbacks->pCreateIndexBuffer )
{
pLoaderCallbacks->pCreateIndexBuffer( pd3dDevice, &pHeader->pIB9, ( UINT )pHeader->SizeBytes,
D3DUSAGE_WRITEONLY, ibFormat, D3DPOOL_DEFAULT, pIndices,
pLoaderCallbacks->pContext );
}
else
{
hr = pd3dDevice->CreateIndexBuffer( ( UINT )( pHeader->SizeBytes ),
D3DUSAGE_WRITEONLY,
ibFormat,
D3DPOOL_DEFAULT,
&pHeader->pIB9,
NULL );
if( SUCCEEDED( hr ) )
{
void* pLockedIndices = NULL;
V_RETURN( pHeader->pIB9->Lock( 0, 0, &pLockedIndices, 0 ) );
CopyMemory( pLockedIndices, pIndices, ( size_t )( pHeader->SizeBytes ) );
pHeader->pIB9->Unlock();
}
}
return hr;
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::CreateFromFile( ID3D10Device* pDev10, IDirect3DDevice9* pDev9,
LPCTSTR szFileName,
bool bCreateAdjacencyIndices,
SDKMESH_CALLBACKS10* pLoaderCallbacks10, SDKMESH_CALLBACKS9* pLoaderCallbacks9 )
{
HRESULT hr = S_OK;
// Find the path for the file
V_RETURN( DXUTFindDXSDKMediaFileCch( m_strPathW, sizeof( m_strPathW ) / sizeof( WCHAR ), szFileName ) );
// Open the file
m_hFile = CreateFile( m_strPathW, FILE_READ_DATA, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_SEQUENTIAL_SCAN,
NULL );
if( INVALID_HANDLE_VALUE == m_hFile )
return DXUTERR_MEDIANOTFOUND;
// Change the path to just the directory
WCHAR* pLastBSlash = wcsrchr( m_strPathW, L'\\' );
if( pLastBSlash )
*( pLastBSlash + 1 ) = L'\0';
else
*m_strPathW = L'\0';
WideCharToMultiByte( CP_ACP, 0, m_strPathW, -1, m_strPath, MAX_PATH, NULL, FALSE );
// Get the file size
LARGE_INTEGER FileSize;
GetFileSizeEx( m_hFile, &FileSize );
UINT cBytes = FileSize.LowPart;
// Allocate memory
m_pStaticMeshData = new BYTE[ cBytes ];
if( !m_pStaticMeshData )
{
CloseHandle( m_hFile );
return E_OUTOFMEMORY;
}
// Read in the file
DWORD dwBytesRead;
if( !ReadFile( m_hFile, m_pStaticMeshData, cBytes, &dwBytesRead, NULL ) )
hr = E_FAIL;
CloseHandle( m_hFile );
if( SUCCEEDED( hr ) )
{
hr = CreateFromMemory( pDev10,
pDev9,
m_pStaticMeshData,
cBytes,
bCreateAdjacencyIndices,
false,
pLoaderCallbacks10, pLoaderCallbacks9 );
if( FAILED( hr ) )
delete []m_pStaticMeshData;
}
return hr;
}
HRESULT CDXUTSDKMesh::CreateFromMemory( ID3D10Device* pDev10,
IDirect3DDevice9* pDev9,
BYTE* pData,
UINT DataBytes,
bool bCreateAdjacencyIndices,
bool bCopyStatic,
SDKMESH_CALLBACKS10* pLoaderCallbacks10,
SDKMESH_CALLBACKS9* pLoaderCallbacks9 )
{
HRESULT hr = E_FAIL;
D3DXVECTOR3 lower;
D3DXVECTOR3 upper;
m_pDev9 = pDev9;
m_pDev10 = pDev10;
// Set outstanding resources to zero
m_NumOutstandingResources = 0;
if( bCopyStatic )
{
SDKMESH_HEADER* pHeader = ( SDKMESH_HEADER* )pData;
SIZE_T StaticSize = ( SIZE_T )( pHeader->HeaderSize + pHeader->NonBufferDataSize );
m_pHeapData = new BYTE[ StaticSize ];
if( !m_pHeapData )
return hr;
m_pStaticMeshData = m_pHeapData;
CopyMemory( m_pStaticMeshData, pData, StaticSize );
}
else
{
m_pHeapData = pData;
m_pStaticMeshData = pData;
}
// Pointer fixup
m_pMeshHeader = ( SDKMESH_HEADER* )m_pStaticMeshData;
m_pVertexBufferArray = ( SDKMESH_VERTEX_BUFFER_HEADER* )( m_pStaticMeshData +
m_pMeshHeader->VertexStreamHeadersOffset );
m_pIndexBufferArray = ( SDKMESH_INDEX_BUFFER_HEADER* )( m_pStaticMeshData +
m_pMeshHeader->IndexStreamHeadersOffset );
m_pMeshArray = ( SDKMESH_MESH* )( m_pStaticMeshData + m_pMeshHeader->MeshDataOffset );
m_pSubsetArray = ( SDKMESH_SUBSET* )( m_pStaticMeshData + m_pMeshHeader->SubsetDataOffset );
m_pFrameArray = ( SDKMESH_FRAME* )( m_pStaticMeshData + m_pMeshHeader->FrameDataOffset );
m_pMaterialArray = ( SDKMESH_MATERIAL* )( m_pStaticMeshData + m_pMeshHeader->MaterialDataOffset );
// Setup subsets
for( UINT i = 0; i < m_pMeshHeader->NumMeshes; i++ )
{
m_pMeshArray[i].pSubsets = ( UINT* )( m_pStaticMeshData + m_pMeshArray[i].SubsetOffset );
m_pMeshArray[i].pFrameInfluences = ( UINT* )( m_pStaticMeshData + m_pMeshArray[i].FrameInfluenceOffset );
}
// error condition
if( m_pMeshHeader->Version != SDKMESH_FILE_VERSION )
{
hr = E_NOINTERFACE;
goto Error;
}
// Setup buffer data pointer
BYTE* pBufferData = pData + m_pMeshHeader->HeaderSize + m_pMeshHeader->NonBufferDataSize;
// Get the start of the buffer data
UINT64 BufferDataStart = m_pMeshHeader->HeaderSize + m_pMeshHeader->NonBufferDataSize;
// Create Adjacency Indices
if( pDev10 && bCreateAdjacencyIndices )
CreateAdjacencyIndices( pDev10, 0.001f, pBufferData - BufferDataStart );
// Create VBs
m_ppVertices = new BYTE*[m_pMeshHeader->NumVertexBuffers];
for( UINT i = 0; i < m_pMeshHeader->NumVertexBuffers; i++ )
{
BYTE* pVertices = NULL;
pVertices = ( BYTE* )( pBufferData + ( m_pVertexBufferArray[i].DataOffset - BufferDataStart ) );
if( pDev10 )
CreateVertexBuffer( pDev10, &m_pVertexBufferArray[i], pVertices, pLoaderCallbacks10 );
else if( pDev9 )
CreateVertexBuffer( pDev9, &m_pVertexBufferArray[i], pVertices, pLoaderCallbacks9 );
m_ppVertices[i] = pVertices;
}
// Create IBs
m_ppIndices = new BYTE*[m_pMeshHeader->NumIndexBuffers];
for( UINT i = 0; i < m_pMeshHeader->NumIndexBuffers; i++ )
{
BYTE* pIndices = NULL;
pIndices = ( BYTE* )( pBufferData + ( m_pIndexBufferArray[i].DataOffset - BufferDataStart ) );
if( pDev10 )
CreateIndexBuffer( pDev10, &m_pIndexBufferArray[i], pIndices, pLoaderCallbacks10 );
else if( pDev9 )
CreateIndexBuffer( pDev9, &m_pIndexBufferArray[i], pIndices, pLoaderCallbacks9 );
m_ppIndices[i] = pIndices;
}
// Load Materials
if( pDev10 )
LoadMaterials( pDev10, m_pMaterialArray, m_pMeshHeader->NumMaterials, pLoaderCallbacks10 );
else if( pDev9 )
LoadMaterials( pDev9, m_pMaterialArray, m_pMeshHeader->NumMaterials, pLoaderCallbacks9 );
// Create a place to store our bind pose frame matrices
m_pBindPoseFrameMatrices = new D3DXMATRIX[ m_pMeshHeader->NumFrames ];
if( !m_pBindPoseFrameMatrices )
goto Error;
// Create a place to store our transformed frame matrices
m_pTransformedFrameMatrices = new D3DXMATRIX[ m_pMeshHeader->NumFrames ];
if( !m_pTransformedFrameMatrices )
goto Error;
hr = S_OK;
SDKMESH_SUBSET* pSubset = NULL;
D3D10_PRIMITIVE_TOPOLOGY PrimType;
// update bounding volume
SDKMESH_MESH* currentMesh = &m_pMeshArray[0];
int tris = 0;
for (UINT meshi=0; meshi < m_pMeshHeader->NumMeshes; ++meshi) {
lower.x = FLT_MAX; lower.y = FLT_MAX; lower.z = FLT_MAX;
upper.x = -FLT_MAX; upper.y = -FLT_MAX; upper.z = -FLT_MAX;
currentMesh = GetMesh( meshi );
INT indsize;
if (m_pIndexBufferArray[currentMesh->IndexBuffer].IndexType == IT_16BIT ) {
indsize = 2;
}else {
indsize = 4;
}
for( UINT subset = 0; subset < currentMesh->NumSubsets; subset++ )
{
pSubset = GetSubset( meshi, subset ); //&m_pSubsetArray[ currentMesh->pSubsets[subset] ];
PrimType = GetPrimitiveType10( ( SDKMESH_PRIMITIVE_TYPE )pSubset->PrimitiveType );
assert( PrimType == D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST );// only triangle lists are handled.
UINT IndexCount = ( UINT )pSubset->IndexCount;
UINT IndexStart = ( UINT )pSubset->IndexStart;
/*if( bAdjacent )
{
IndexCount *= 2;
IndexStart *= 2;
}*/
//BYTE* pIndices = NULL;
//m_ppIndices[i]
UINT *ind = ( UINT * )m_ppIndices[currentMesh->IndexBuffer];
FLOAT *verts = ( FLOAT* )m_ppVertices[currentMesh->VertexBuffers[0]];
UINT stride = (UINT)m_pVertexBufferArray[currentMesh->VertexBuffers[0]].StrideBytes;
assert (stride % 4 == 0);
stride /=4;
for (UINT vertind = IndexStart; vertind < IndexStart + IndexCount; ++vertind) {
UINT current_ind=0;
if (indsize == 2) {
UINT ind_div2 = vertind / 2;
current_ind = ind[ind_div2];
if (vertind %2 ==0) {
current_ind = current_ind << 16;
current_ind = current_ind >> 16;
}else {
current_ind = current_ind >> 16;
}
}else {
current_ind = ind[vertind];
}
tris++;
D3DXVECTOR3 *pt = (D3DXVECTOR3*)&(verts[stride * current_ind]);
if (pt->x < lower.x) {
lower.x = pt->x;
}
if (pt->y < lower.y) {
lower.y = pt->y;
}
if (pt->z < lower.z) {
lower.z = pt->z;
}
if (pt->x > upper.x) {
upper.x = pt->x;
}
if (pt->y > upper.y) {
upper.y = pt->y;
}
if (pt->z > upper.z) {
upper.z = pt->z;
}
//BYTE** m_ppVertices;
//BYTE** m_ppIndices;
}
//pd3dDeviceContext->DrawIndexed( IndexCount, IndexStart, VertexStart );
}
D3DXVECTOR3 half = upper - lower;
half *=0.5f;
currentMesh->BoundingBoxCenter = lower + half;
currentMesh->BoundingBoxExtents = half;
}
// Update
Error:
if( !pLoaderCallbacks10 && !pLoaderCallbacks9 )
{
CheckLoadDone();
}
return hr;
}
//--------------------------------------------------------------------------------------
// transform bind pose frame using a recursive traversal
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::TransformBindPoseFrame( UINT iFrame, D3DXMATRIX* pParentWorld )
{
if( !m_pBindPoseFrameMatrices )
return;
// Transform ourselves
D3DXMATRIX LocalWorld;
D3DXMatrixMultiply( &LocalWorld, &m_pFrameArray[iFrame].Matrix, pParentWorld );
m_pBindPoseFrameMatrices[iFrame] = LocalWorld;
// Transform our siblings
if( m_pFrameArray[iFrame].SiblingFrame != INVALID_FRAME )
TransformBindPoseFrame( m_pFrameArray[iFrame].SiblingFrame, pParentWorld );
// Transform our children
if( m_pFrameArray[iFrame].ChildFrame != INVALID_FRAME )
TransformBindPoseFrame( m_pFrameArray[iFrame].ChildFrame, &LocalWorld );
}
//--------------------------------------------------------------------------------------
// transform frame using a recursive traversal
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::TransformFrame( UINT iFrame, D3DXMATRIX* pParentWorld, double fTime )
{
// Get the tick data
D3DXMATRIX LocalTransform;
UINT iTick = GetAnimationKeyFromTime( fTime );
if( INVALID_ANIMATION_DATA != m_pFrameArray[iFrame].AnimationDataIndex )
{
SDKANIMATION_FRAME_DATA* pFrameData = &m_pAnimationFrameData[ m_pFrameArray[iFrame].AnimationDataIndex ];
SDKANIMATION_DATA* pData = &pFrameData->pAnimationData[ iTick ];
// turn it into a matrix (Ignore scaling for now)
D3DXVECTOR3 parentPos = pData->Translation;
D3DXMATRIX mTranslate;
D3DXMatrixTranslation( &mTranslate, parentPos.x, parentPos.y, parentPos.z );
D3DXQUATERNION quat;
D3DXMATRIX mQuat;
quat.w = pData->Orientation.w;
quat.x = pData->Orientation.x;
quat.y = pData->Orientation.y;
quat.z = pData->Orientation.z;
if( quat.w == 0 && quat.x == 0 && quat.y == 0 && quat.z == 0 )
D3DXQuaternionIdentity( &quat );
D3DXQuaternionNormalize( &quat, &quat );
D3DXMatrixRotationQuaternion( &mQuat, &quat );
LocalTransform = ( mQuat * mTranslate );
}
else
{
LocalTransform = m_pFrameArray[iFrame].Matrix;
}
// Transform ourselves
D3DXMATRIX LocalWorld;
D3DXMatrixMultiply( &LocalWorld, &LocalTransform, pParentWorld );
m_pTransformedFrameMatrices[iFrame] = LocalWorld;
// Transform our siblings
if( m_pFrameArray[iFrame].SiblingFrame != INVALID_FRAME )
TransformFrame( m_pFrameArray[iFrame].SiblingFrame, pParentWorld, fTime );
// Transform our children
if( m_pFrameArray[iFrame].ChildFrame != INVALID_FRAME )
TransformFrame( m_pFrameArray[iFrame].ChildFrame, &LocalWorld, fTime );
}
//--------------------------------------------------------------------------------------
// transform frame assuming that it is an absolute transformation
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::TransformFrameAbsolute( UINT iFrame, double fTime )
{
D3DXMATRIX mTrans1;
D3DXMATRIX mTrans2;
D3DXMATRIX mRot1;
D3DXMATRIX mRot2;
D3DXQUATERNION quat1;
D3DXQUATERNION quat2;
D3DXMATRIX mTo;
D3DXMATRIX mInvTo;
D3DXMATRIX mFrom;
UINT iTick = GetAnimationKeyFromTime( fTime );
if( INVALID_ANIMATION_DATA != m_pFrameArray[iFrame].AnimationDataIndex )
{
SDKANIMATION_FRAME_DATA* pFrameData = &m_pAnimationFrameData[ m_pFrameArray[iFrame].AnimationDataIndex ];
SDKANIMATION_DATA* pData = &pFrameData->pAnimationData[ iTick ];
SDKANIMATION_DATA* pDataOrig = &pFrameData->pAnimationData[ 0 ];
D3DXMatrixTranslation( &mTrans1, -pDataOrig->Translation.x,
-pDataOrig->Translation.y,
-pDataOrig->Translation.z );
D3DXMatrixTranslation( &mTrans2, pData->Translation.x,
pData->Translation.y,
pData->Translation.z );
quat1.x = pDataOrig->Orientation.x;
quat1.y = pDataOrig->Orientation.y;
quat1.z = pDataOrig->Orientation.z;
quat1.w = pDataOrig->Orientation.w;
D3DXQuaternionInverse( &quat1, &quat1 );
D3DXMatrixRotationQuaternion( &mRot1, &quat1 );
mInvTo = mTrans1 * mRot1;
quat2.x = pData->Orientation.x;
quat2.y = pData->Orientation.y;
quat2.z = pData->Orientation.z;
quat2.w = pData->Orientation.w;
D3DXMatrixRotationQuaternion( &mRot2, &quat2 );
mFrom = mRot2 * mTrans2;
D3DXMATRIX mOutput = mInvTo * mFrom;
m_pTransformedFrameMatrices[iFrame] = mOutput;
}
}
//--------------------------------------------------------------------------------------
#define MAX_D3D10_VERTEX_STREAMS D3D10_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT
void CDXUTSDKMesh::RenderMesh( UINT iMesh,
bool bAdjacent,
ID3D10Device* pd3dDevice,
UINT iDiffuseSlot,
UINT iNormalSlot,
UINT iSpecularSlot )
{
if( 0 < GetOutstandingBufferResources() )
return;
SDKMESH_MESH* pMesh = &m_pMeshArray[iMesh];
UINT Strides[MAX_D3D10_VERTEX_STREAMS];
UINT Offsets[MAX_D3D10_VERTEX_STREAMS];
ID3D10Buffer* pVB[MAX_D3D10_VERTEX_STREAMS];
if( pMesh->NumVertexBuffers > MAX_D3D10_VERTEX_STREAMS )
return;
for( UINT64 i = 0; i < pMesh->NumVertexBuffers; i++ )
{
pVB[i] = m_pVertexBufferArray[ pMesh->VertexBuffers[i] ].pVB10;
Strides[i] = ( UINT )m_pVertexBufferArray[ pMesh->VertexBuffers[i] ].StrideBytes;
Offsets[i] = 0;
}
SDKMESH_INDEX_BUFFER_HEADER* pIndexBufferArray;
if( bAdjacent )
pIndexBufferArray = m_pAdjacencyIndexBufferArray;
else
pIndexBufferArray = m_pIndexBufferArray;
ID3D10Buffer* pIB = pIndexBufferArray[ pMesh->IndexBuffer ].pIB10;
DXGI_FORMAT ibFormat = DXGI_FORMAT_R16_UINT;
switch( pIndexBufferArray[ pMesh->IndexBuffer ].IndexType )
{
case IT_16BIT:
ibFormat = DXGI_FORMAT_R16_UINT;
break;
case IT_32BIT:
ibFormat = DXGI_FORMAT_R32_UINT;
break;
};
pd3dDevice->IASetVertexBuffers( 0, pMesh->NumVertexBuffers, pVB, Strides, Offsets );
pd3dDevice->IASetIndexBuffer( pIB, ibFormat, 0 );
SDKMESH_SUBSET* pSubset = NULL;
SDKMESH_MATERIAL* pMat = NULL;
D3D10_PRIMITIVE_TOPOLOGY PrimType;
for( UINT subset = 0; subset < pMesh->NumSubsets; subset++ )
{
pSubset = &m_pSubsetArray[ pMesh->pSubsets[subset] ];
PrimType = GetPrimitiveType10( ( SDKMESH_PRIMITIVE_TYPE )pSubset->PrimitiveType );
if( bAdjacent )
{
switch( PrimType )
{
case D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ;
break;
case D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ;
break;
case D3D10_PRIMITIVE_TOPOLOGY_LINELIST:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_LINELIST_ADJ;
break;
case D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ;
break;
}
}
pd3dDevice->IASetPrimitiveTopology( PrimType );
pMat = &m_pMaterialArray[ pSubset->MaterialID ];
if( iDiffuseSlot != INVALID_SAMPLER_SLOT && !IsErrorResource( pMat->pDiffuseRV10 ) )
pd3dDevice->PSSetShaderResources( iDiffuseSlot, 1, &pMat->pDiffuseRV10 );
if( iNormalSlot != INVALID_SAMPLER_SLOT && !IsErrorResource( pMat->pNormalRV10 ) )
pd3dDevice->PSSetShaderResources( iNormalSlot, 1, &pMat->pNormalRV10 );
if( iSpecularSlot != INVALID_SAMPLER_SLOT && !IsErrorResource( pMat->pSpecularRV10 ) )
pd3dDevice->PSSetShaderResources( iSpecularSlot, 1, &pMat->pSpecularRV10 );
UINT IndexCount = ( UINT )pSubset->IndexCount;
UINT IndexStart = ( UINT )pSubset->IndexStart;
UINT VertexStart = ( UINT )pSubset->VertexStart;
if( bAdjacent )
{
IndexCount *= 2;
IndexStart *= 2;
}
pd3dDevice->DrawIndexed( IndexCount, IndexStart, VertexStart );
}
}
void CDXUTSDKMesh::RenderMesh( UINT iMesh,
bool bAdjacent,
ID3D10Device* pd3dDevice,
ID3D10EffectTechnique* pTechnique,
ID3D10EffectShaderResourceVariable* ptxDiffuse,
ID3D10EffectShaderResourceVariable* ptxNormal,
ID3D10EffectShaderResourceVariable* ptxSpecular,
ID3D10EffectVectorVariable* pvDiffuse,
ID3D10EffectVectorVariable* pvSpecular )
{
if( 0 < GetOutstandingBufferResources() )
return;
SDKMESH_MESH* pMesh = &m_pMeshArray[iMesh];
UINT Strides[MAX_D3D10_VERTEX_STREAMS];
UINT Offsets[MAX_D3D10_VERTEX_STREAMS];
ID3D10Buffer* pVB[MAX_D3D10_VERTEX_STREAMS];
if( pMesh->NumVertexBuffers > MAX_D3D10_VERTEX_STREAMS )
return;
for( UINT64 i = 0; i < pMesh->NumVertexBuffers; i++ )
{
pVB[i] = m_pVertexBufferArray[ pMesh->VertexBuffers[i] ].pVB10;
Strides[i] = ( UINT )m_pVertexBufferArray[ pMesh->VertexBuffers[i] ].StrideBytes;
Offsets[i] = 0;
}
SDKMESH_INDEX_BUFFER_HEADER* pIndexBufferArray;
if( bAdjacent )
pIndexBufferArray = m_pAdjacencyIndexBufferArray;
else
pIndexBufferArray = m_pIndexBufferArray;
ID3D10Buffer* pIB = pIndexBufferArray[ pMesh->IndexBuffer ].pIB10;
DXGI_FORMAT ibFormat = DXGI_FORMAT_R16_UINT;
switch( pIndexBufferArray[ pMesh->IndexBuffer ].IndexType )
{
case IT_16BIT:
ibFormat = DXGI_FORMAT_R16_UINT;
break;
case IT_32BIT:
ibFormat = DXGI_FORMAT_R32_UINT;
break;
};
pd3dDevice->IASetVertexBuffers( 0, pMesh->NumVertexBuffers, pVB, Strides, Offsets );
pd3dDevice->IASetIndexBuffer( pIB, ibFormat, 0 );
D3D10_TECHNIQUE_DESC techDesc;
pTechnique->GetDesc( &techDesc );
SDKMESH_SUBSET* pSubset = NULL;
SDKMESH_MATERIAL* pMat = NULL;
D3D10_PRIMITIVE_TOPOLOGY PrimType;
for( UINT p = 0; p < techDesc.Passes; ++p )
{
for( UINT subset = 0; subset < pMesh->NumSubsets; subset++ )
{
pSubset = &m_pSubsetArray[ pMesh->pSubsets[subset] ];
PrimType = GetPrimitiveType10( ( SDKMESH_PRIMITIVE_TYPE )pSubset->PrimitiveType );
if( bAdjacent )
{
switch( PrimType )
{
case D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ;
break;
case D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ;
break;
case D3D10_PRIMITIVE_TOPOLOGY_LINELIST:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_LINELIST_ADJ;
break;
case D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP:
PrimType = D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ;
break;
}
}
pd3dDevice->IASetPrimitiveTopology( PrimType );
pMat = &m_pMaterialArray[ pSubset->MaterialID ];
if( ptxDiffuse && !IsErrorResource( pMat->pDiffuseRV10 ) )
ptxDiffuse->SetResource( pMat->pDiffuseRV10 );
if( ptxNormal && !IsErrorResource( pMat->pNormalRV10 ) )
ptxNormal->SetResource( pMat->pNormalRV10 );
if( ptxSpecular && !IsErrorResource( pMat->pSpecularRV10 ) )
ptxSpecular->SetResource( pMat->pSpecularRV10 );
if( pvDiffuse )
pvDiffuse->SetFloatVector( pMat->Diffuse );
if( pvSpecular )
pvSpecular->SetFloatVector( pMat->Specular );
pTechnique->GetPassByIndex( p )->Apply( 0 );
UINT IndexCount = ( UINT )pSubset->IndexCount;
UINT IndexStart = ( UINT )pSubset->IndexStart;
UINT VertexStart = ( UINT )pSubset->VertexStart;
if( bAdjacent )
{
IndexCount *= 2;
IndexStart *= 2;
}
pd3dDevice->DrawIndexed( IndexCount, IndexStart, VertexStart );
}
}
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::RenderFrame( UINT iFrame,
bool bAdjacent,
ID3D10Device* pd3dDevice,
UINT iDiffuseSlot,
UINT iNormalSlot,
UINT iSpecularSlot )
{
if( !m_pStaticMeshData || !m_pFrameArray )
return;
if( m_pFrameArray[iFrame].Mesh != INVALID_MESH )
{
RenderMesh( m_pFrameArray[iFrame].Mesh,
bAdjacent,
pd3dDevice,
iDiffuseSlot,
iNormalSlot,
iSpecularSlot );
}
// Render our children
if( m_pFrameArray[iFrame].ChildFrame != INVALID_FRAME )
RenderFrame( m_pFrameArray[iFrame].ChildFrame, bAdjacent, pd3dDevice, iDiffuseSlot,
iNormalSlot, iSpecularSlot );
// Render our siblings
if( m_pFrameArray[iFrame].SiblingFrame != INVALID_FRAME )
RenderFrame( m_pFrameArray[iFrame].SiblingFrame, bAdjacent, pd3dDevice, iDiffuseSlot,
iNormalSlot, iSpecularSlot );
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::RenderFrame( UINT iFrame,
bool bAdjacent,
ID3D10Device* pd3dDevice,
ID3D10EffectTechnique* pTechnique,
ID3D10EffectShaderResourceVariable* ptxDiffuse,
ID3D10EffectShaderResourceVariable* ptxNormal,
ID3D10EffectShaderResourceVariable* ptxSpecular,
ID3D10EffectVectorVariable* pvDiffuse,
ID3D10EffectVectorVariable* pvSpecular )
{
if( !m_pStaticMeshData || !m_pFrameArray )
return;
if( m_pFrameArray[iFrame].Mesh != INVALID_MESH )
{
RenderMesh( m_pFrameArray[iFrame].Mesh,
bAdjacent,
pd3dDevice,
pTechnique,
ptxDiffuse,
ptxNormal,
ptxSpecular,
pvDiffuse,
pvSpecular );
}
// Render our children
if( m_pFrameArray[iFrame].ChildFrame != INVALID_FRAME )
RenderFrame( m_pFrameArray[iFrame].ChildFrame, bAdjacent, pd3dDevice, pTechnique, ptxDiffuse, ptxNormal,
ptxSpecular, pvDiffuse, pvSpecular );
// Render our siblings
if( m_pFrameArray[iFrame].SiblingFrame != INVALID_FRAME )
RenderFrame( m_pFrameArray[iFrame].SiblingFrame, bAdjacent, pd3dDevice, pTechnique, ptxDiffuse, ptxNormal,
ptxSpecular, pvDiffuse, pvSpecular );
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::RenderMesh( UINT iMesh,
LPDIRECT3DDEVICE9 pd3dDevice,
LPD3DXEFFECT pEffect,
D3DXHANDLE hTechnique,
D3DXHANDLE htxDiffuse,
D3DXHANDLE htxNormal,
D3DXHANDLE htxSpecular )
{
if( 0 < GetOutstandingBufferResources() )
return;
SDKMESH_MESH* pMesh = &m_pMeshArray[iMesh];
// set vb streams
for( UINT i = 0; i < ( UINT )pMesh->NumVertexBuffers; i++ )
{
pd3dDevice->SetStreamSource( i,
m_pVertexBufferArray[ pMesh->VertexBuffers[i] ].pVB9,
0,
( UINT )m_pVertexBufferArray[ pMesh->VertexBuffers[i] ].StrideBytes );
}
// Set our index buffer as well
pd3dDevice->SetIndices( m_pIndexBufferArray[ pMesh->IndexBuffer ].pIB9 );
// Render the scene with this technique
pEffect->SetTechnique( hTechnique );
SDKMESH_SUBSET* pSubset = NULL;
SDKMESH_MATERIAL* pMat = NULL;
D3DPRIMITIVETYPE PrimType;
UINT cPasses = 0;
pEffect->Begin( &cPasses, 0 );
for( UINT p = 0; p < cPasses; ++p )
{
pEffect->BeginPass( p );
for( UINT subset = 0; subset < pMesh->NumSubsets; subset++ )
{
pSubset = &m_pSubsetArray[ pMesh->pSubsets[subset] ];
PrimType = GetPrimitiveType9( ( SDKMESH_PRIMITIVE_TYPE )pSubset->PrimitiveType );
if( INVALID_MATERIAL != pSubset->MaterialID && m_pMeshHeader->NumMaterials > 0 )
{
pMat = &m_pMaterialArray[ pSubset->MaterialID ];
if( htxDiffuse && !IsErrorResource( pMat->pDiffuseTexture9 ) )
pEffect->SetTexture( htxDiffuse, pMat->pDiffuseTexture9 );
if( htxNormal && !IsErrorResource( pMat->pNormalTexture9 ) )
pEffect->SetTexture( htxNormal, pMat->pNormalTexture9 );
if( htxSpecular && !IsErrorResource( pMat->pSpecularTexture9 ) )
pEffect->SetTexture( htxSpecular, pMat->pSpecularTexture9 );
}
pEffect->CommitChanges();
UINT PrimCount = ( UINT )pSubset->IndexCount;
UINT IndexStart = ( UINT )pSubset->IndexStart;
UINT VertexStart = ( UINT )pSubset->VertexStart;
UINT VertexCount = ( UINT )pSubset->VertexCount;
if( D3DPT_TRIANGLELIST == PrimType )
PrimCount /= 3;
if( D3DPT_LINELIST == PrimType )
PrimCount /= 2;
if( D3DPT_TRIANGLESTRIP == PrimType )
PrimCount = ( PrimCount - 3 ) + 1;
if( D3DPT_LINESTRIP == PrimType )
PrimCount -= 1;
pd3dDevice->DrawIndexedPrimitive( PrimType, VertexStart, 0, VertexCount, IndexStart, PrimCount );
}
pEffect->EndPass();
}
pEffect->End();
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::RenderFrame( UINT iFrame,
LPDIRECT3DDEVICE9 pd3dDevice,
LPD3DXEFFECT pEffect,
D3DXHANDLE hTechnique,
D3DXHANDLE htxDiffuse,
D3DXHANDLE htxNormal,
D3DXHANDLE htxSpecular )
{
if( !m_pStaticMeshData || !m_pFrameArray )
return;
if( m_pFrameArray[iFrame].Mesh != INVALID_MESH )
{
RenderMesh( m_pFrameArray[iFrame].Mesh,
pd3dDevice,
pEffect,
hTechnique,
htxDiffuse,
htxNormal,
htxSpecular );
}
// Render our children
if( m_pFrameArray[iFrame].ChildFrame != INVALID_FRAME )
RenderFrame( m_pFrameArray[iFrame].ChildFrame, pd3dDevice, pEffect, hTechnique, htxDiffuse, htxNormal,
htxSpecular );
// Render our siblings
if( m_pFrameArray[iFrame].SiblingFrame != INVALID_FRAME )
RenderFrame( m_pFrameArray[iFrame].SiblingFrame, pd3dDevice, pEffect, hTechnique, htxDiffuse, htxNormal,
htxSpecular );
}
//--------------------------------------------------------------------------------------
CDXUTSDKMesh::CDXUTSDKMesh() : m_NumOutstandingResources( 0 ),
m_bLoading( false ),
m_hFile( 0 ),
m_hFileMappingObject( 0 ),
m_pMeshHeader( NULL ),
m_pStaticMeshData( NULL ),
m_pHeapData( NULL ),
m_pAdjacencyIndexBufferArray( NULL ),
m_pAnimationData( NULL ),
m_ppVertices( NULL ),
m_ppIndices( NULL ),
m_pBindPoseFrameMatrices( NULL ),
m_pTransformedFrameMatrices( NULL ),
m_pDev9( NULL ),
m_pDev10( NULL )
{
}
//--------------------------------------------------------------------------------------
CDXUTSDKMesh::~CDXUTSDKMesh()
{
Destroy();
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::Create( ID3D10Device* pDev10, LPCTSTR szFileName, bool bCreateAdjacencyIndices,
SDKMESH_CALLBACKS10* pLoaderCallbacks )
{
return CreateFromFile( pDev10, NULL, szFileName, bCreateAdjacencyIndices, pLoaderCallbacks, NULL );
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::Create( IDirect3DDevice9* pDev9, LPCTSTR szFileName, bool bCreateAdjacencyIndices,
SDKMESH_CALLBACKS9* pLoaderCallbacks )
{
return CreateFromFile( NULL, pDev9, szFileName, bCreateAdjacencyIndices, NULL, pLoaderCallbacks );
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::Create( ID3D10Device* pDev10, BYTE* pData, UINT DataBytes, bool bCreateAdjacencyIndices,
bool bCopyStatic, SDKMESH_CALLBACKS10* pLoaderCallbacks )
{
return CreateFromMemory( pDev10, NULL, pData, DataBytes, bCreateAdjacencyIndices, bCopyStatic, pLoaderCallbacks,
NULL );
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::Create( IDirect3DDevice9* pDev9, BYTE* pData, UINT DataBytes, bool bCreateAdjacencyIndices,
bool bCopyStatic, SDKMESH_CALLBACKS9* pLoaderCallbacks )
{
return CreateFromMemory( NULL, pDev9, pData, DataBytes, bCreateAdjacencyIndices, bCopyStatic, NULL,
pLoaderCallbacks );
}
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::LoadAnimation( WCHAR* szFileName )
{
HRESULT hr = E_FAIL;
DWORD dwBytesRead = 0;
LARGE_INTEGER liMove;
WCHAR strPath[MAX_PATH];
// Find the path for the file
V_RETURN( DXUTFindDXSDKMediaFileCch( strPath, MAX_PATH, szFileName ) );
// Open the file
HANDLE hFile = CreateFile( strPath, FILE_READ_DATA, FILE_SHARE_READ, NULL, OPEN_EXISTING,
FILE_FLAG_SEQUENTIAL_SCAN, NULL );
if( INVALID_HANDLE_VALUE == hFile )
return DXUTERR_MEDIANOTFOUND;
/////////////////////////
// Header
SDKANIMATION_FILE_HEADER fileheader;
if( !ReadFile( hFile, &fileheader, sizeof( SDKANIMATION_FILE_HEADER ), &dwBytesRead, NULL ) )
goto Error;
//allocate
m_pAnimationData = new BYTE[ ( size_t )( sizeof( SDKANIMATION_FILE_HEADER ) + fileheader.AnimationDataSize ) ];
if( !m_pAnimationData )
{
hr = E_OUTOFMEMORY;
goto Error;
}
// read it all in
liMove.QuadPart = 0;
if( !SetFilePointerEx( hFile, liMove, NULL, FILE_BEGIN ) )
goto Error;
if( !ReadFile( hFile, m_pAnimationData, ( DWORD )( sizeof( SDKANIMATION_FILE_HEADER ) +
fileheader.AnimationDataSize ), &dwBytesRead, NULL ) )
goto Error;
// pointer fixup
m_pAnimationHeader = ( SDKANIMATION_FILE_HEADER* )m_pAnimationData;
m_pAnimationFrameData = ( SDKANIMATION_FRAME_DATA* )( m_pAnimationData + m_pAnimationHeader->AnimationDataOffset );
UINT64 BaseOffset = sizeof( SDKANIMATION_FILE_HEADER );
for( UINT i = 0; i < m_pAnimationHeader->NumFrames; i++ )
{
m_pAnimationFrameData[i].pAnimationData = ( SDKANIMATION_DATA* )( m_pAnimationData +
m_pAnimationFrameData[i].DataOffset +
BaseOffset );
SDKMESH_FRAME* pFrame = FindFrame( m_pAnimationFrameData[i].FrameName );
if( pFrame )
{
pFrame->AnimationDataIndex = i;
}
}
hr = S_OK;
Error:
CloseHandle( hFile );
return hr;
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::Destroy()
{
if( !CheckLoadDone() )
return;
if( m_pStaticMeshData )
{
if( m_pMaterialArray )
{
for( UINT64 m = 0; m < m_pMeshHeader->NumMaterials; m++ )
{
if( m_pDev9 )
{
if( !IsErrorResource( m_pMaterialArray[m].pDiffuseTexture9 ) )
SAFE_RELEASE( m_pMaterialArray[m].pDiffuseTexture9 );
if( !IsErrorResource( m_pMaterialArray[m].pNormalTexture9 ) )
SAFE_RELEASE( m_pMaterialArray[m].pNormalTexture9 );
if( !IsErrorResource( m_pMaterialArray[m].pSpecularTexture9 ) )
SAFE_RELEASE( m_pMaterialArray[m].pSpecularTexture9 );
}
else
{
ID3D10Resource* pRes = NULL;
if( m_pMaterialArray[m].pDiffuseRV10 && !IsErrorResource( m_pMaterialArray[m].pDiffuseRV10 ) )
{
m_pMaterialArray[m].pDiffuseRV10->GetResource( &pRes );
SAFE_RELEASE( pRes );
SAFE_RELEASE( pRes ); // do this twice, because GetResource adds a ref
SAFE_RELEASE( m_pMaterialArray[m].pDiffuseRV10 );
}
if( m_pMaterialArray[m].pNormalRV10 && !IsErrorResource( m_pMaterialArray[m].pNormalRV10 ) )
{
m_pMaterialArray[m].pNormalRV10->GetResource( &pRes );
SAFE_RELEASE( pRes );
SAFE_RELEASE( pRes ); // do this twice, because GetResource adds a ref
SAFE_RELEASE( m_pMaterialArray[m].pNormalRV10 );
}
if( m_pMaterialArray[m].pSpecularRV10 && !IsErrorResource( m_pMaterialArray[m].pSpecularRV10 ) )
{
m_pMaterialArray[m].pSpecularRV10->GetResource( &pRes );
SAFE_RELEASE( pRes );
SAFE_RELEASE( pRes ); // do this twice, because GetResource adds a ref
SAFE_RELEASE( m_pMaterialArray[m].pSpecularRV10 );
}
}
}
}
for( UINT64 i = 0; i < m_pMeshHeader->NumVertexBuffers; i++ )
{
if( !IsErrorResource( m_pVertexBufferArray[i].pVB9 ) )
SAFE_RELEASE( m_pVertexBufferArray[i].pVB9 );
}
for( UINT64 i = 0; i < m_pMeshHeader->NumIndexBuffers; i++ )
{
if( !IsErrorResource( m_pIndexBufferArray[i].pIB9 ) )
SAFE_RELEASE( m_pIndexBufferArray[i].pIB9 );
}
}
if( m_pAdjacencyIndexBufferArray )
{
for( UINT64 i = 0; i < m_pMeshHeader->NumIndexBuffers; i++ )
{
SAFE_RELEASE( m_pAdjacencyIndexBufferArray[i].pIB10 );
}
}
SAFE_DELETE_ARRAY( m_pAdjacencyIndexBufferArray );
SAFE_DELETE_ARRAY( m_pHeapData );
m_pStaticMeshData = NULL;
SAFE_DELETE_ARRAY( m_pAnimationData );
SAFE_DELETE_ARRAY( m_pBindPoseFrameMatrices );
SAFE_DELETE_ARRAY( m_pTransformedFrameMatrices );
SAFE_DELETE_ARRAY( m_ppVertices );
SAFE_DELETE_ARRAY( m_ppIndices );
m_pMeshHeader = NULL;
m_pVertexBufferArray = NULL;
m_pIndexBufferArray = NULL;
m_pMeshArray = NULL;
m_pSubsetArray = NULL;
m_pFrameArray = NULL;
m_pMaterialArray = NULL;
m_pAnimationHeader = NULL;
m_pAnimationFrameData = NULL;
}
//--------------------------------------------------------------------------------------
// transform the bind pose
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::TransformBindPose( D3DXMATRIX* pWorld )
{
TransformBindPoseFrame( 0, pWorld );
}
//--------------------------------------------------------------------------------------
// transform the mesh frames according to the animation for time fTime
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::TransformMesh( D3DXMATRIX* pWorld, double fTime )
{
if( !m_pAnimationHeader )
return;
if( FTT_RELATIVE == m_pAnimationHeader->FrameTransformType )
{
TransformFrame( 0, pWorld, fTime );
// For each frame, move the transform to the bind pose, then
// move it to the final position
D3DXMATRIX mInvBindPose;
D3DXMATRIX mFinal;
for( UINT i = 0; i < m_pMeshHeader->NumFrames; i++ )
{
D3DXMatrixInverse( &mInvBindPose, NULL, &m_pBindPoseFrameMatrices[i] );
mFinal = mInvBindPose * m_pTransformedFrameMatrices[i];
m_pTransformedFrameMatrices[i] = mFinal;
}
}
else if( FTT_ABSOLUTE == m_pAnimationHeader->FrameTransformType )
{
for( UINT i = 0; i < m_pAnimationHeader->NumFrames; i++ )
TransformFrameAbsolute( i, fTime );
}
}
//--------------------------------------------------------------------------------------
// Generate an adjacency index buffer for each mesh
//--------------------------------------------------------------------------------------
HRESULT CDXUTSDKMesh::CreateAdjacencyIndices( ID3D10Device* pd3dDevice, float fEpsilon, BYTE* pBufferData )
{
HRESULT hr = S_OK;
UINT IBIndex = 0;
UINT VBIndex = 0;
m_pAdjacencyIndexBufferArray = new SDKMESH_INDEX_BUFFER_HEADER[ m_pMeshHeader->NumIndexBuffers ];
if( !m_pAdjacencyIndexBufferArray )
return E_OUTOFMEMORY;
for( UINT i = 0; i < m_pMeshHeader->NumMeshes; i++ )
{
VBIndex = m_pMeshArray[i].VertexBuffers[0];
IBIndex = m_pMeshArray[i].IndexBuffer;
BYTE* pVertices = ( BYTE* )( pBufferData + m_pVertexBufferArray[VBIndex].DataOffset );
BYTE* pIndices = ( BYTE* )( pBufferData + m_pIndexBufferArray[IBIndex].DataOffset );
UINT stride = ( UINT )m_pVertexBufferArray[VBIndex].StrideBytes;
D3D10_INPUT_ELEMENT_DESC layout[2] =
{
{ "POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 0, D3D10_INPUT_PER_VERTEX_DATA, 0 },
{ "END", 0, DXGI_FORMAT_R8_UINT, 0, 0, D3D10_INPUT_PER_VERTEX_DATA, 0 },
};
layout[1].AlignedByteOffset = stride - 1;
// create the mesh
UINT NumVertices = ( UINT )GetNumVertices( i, 0 );
UINT NumIndices = ( UINT )GetNumIndices( i );
UINT Options = 0;
ID3DX10Mesh* pMesh = NULL;
if( DXGI_FORMAT_R32_UINT == GetIBFormat10( i ) )
Options |= D3DX10_MESH_32_BIT;
V_RETURN( D3DX10CreateMesh( pd3dDevice,
layout,
2,
layout[0].SemanticName,
NumVertices,
NumIndices / 3,
Options,
&pMesh ) );
//set the VB
pMesh->SetVertexData( 0, ( void* )pVertices );
//set the IB
pMesh->SetIndexData( ( void* )pIndices, NumIndices );
//generate adjacency
pMesh->GenerateAdjacencyAndPointReps( fEpsilon );
//generate adjacency indices
pMesh->GenerateGSAdjacency();
//get the adjacency data out of the mesh
ID3DX10MeshBuffer* pIndexBuffer = NULL;
BYTE* pAdjIndices = NULL;
SIZE_T Size = 0;
V_RETURN( pMesh->GetIndexBuffer( &pIndexBuffer ) );
V_RETURN( pIndexBuffer->Map( ( void** )&pAdjIndices, &Size ) );
//Copy info about the original IB with a few modifications
m_pAdjacencyIndexBufferArray[IBIndex] = m_pIndexBufferArray[IBIndex];
m_pAdjacencyIndexBufferArray[IBIndex].SizeBytes *= 2;
//create a new adjacency IB
D3D10_BUFFER_DESC bufferDesc;
bufferDesc.ByteWidth = ( UINT )( Size );
bufferDesc.Usage = D3D10_USAGE_IMMUTABLE;
bufferDesc.BindFlags = D3D10_BIND_INDEX_BUFFER;
bufferDesc.CPUAccessFlags = 0;
bufferDesc.MiscFlags = 0;
D3D10_SUBRESOURCE_DATA InitData;
InitData.pSysMem = pAdjIndices;
V_RETURN( pd3dDevice->CreateBuffer( &bufferDesc, &InitData, &m_pAdjacencyIndexBufferArray[IBIndex].pIB10 ) );
DXUT_SetDebugName( m_pAdjacencyIndexBufferArray[IBIndex].pIB10, "CDXUTSDKMesh" );
//cleanup
pIndexBuffer->Unmap();
SAFE_RELEASE( pIndexBuffer );
//release the ID3DX10Mesh
SAFE_RELEASE( pMesh );
}
return hr;
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::Render( ID3D10Device* pd3dDevice,
UINT iDiffuseSlot,
UINT iNormalSlot,
UINT iSpecularSlot )
{
RenderFrame( 0, false, pd3dDevice, iDiffuseSlot, iNormalSlot, iSpecularSlot );
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::Render( ID3D10Device* pd3dDevice,
ID3D10EffectTechnique* pTechnique,
ID3D10EffectShaderResourceVariable* ptxDiffuse,
ID3D10EffectShaderResourceVariable* ptxNormal,
ID3D10EffectShaderResourceVariable* ptxSpecular,
ID3D10EffectVectorVariable* pvDiffuse,
ID3D10EffectVectorVariable* pvSpecular )
{
RenderFrame( 0, false, pd3dDevice, pTechnique, ptxDiffuse, ptxNormal, ptxSpecular, pvDiffuse, pvSpecular );
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::RenderAdjacent( ID3D10Device* pd3dDevice,
ID3D10EffectTechnique* pTechnique,
ID3D10EffectShaderResourceVariable* ptxDiffuse,
ID3D10EffectShaderResourceVariable* ptxNormal,
ID3D10EffectShaderResourceVariable* ptxSpecular,
ID3D10EffectVectorVariable* pvDiffuse,
ID3D10EffectVectorVariable* pvSpecular )
{
RenderFrame( 0, true, pd3dDevice, pTechnique, ptxDiffuse, ptxNormal, ptxSpecular, pvDiffuse, pvSpecular );
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::Render( LPDIRECT3DDEVICE9 pd3dDevice,
LPD3DXEFFECT pEffect,
D3DXHANDLE hTechnique,
D3DXHANDLE htxDiffuse,
D3DXHANDLE htxNormal,
D3DXHANDLE htxSpecular )
{
RenderFrame( 0, pd3dDevice, pEffect, hTechnique, htxDiffuse, htxNormal, htxSpecular );
}
//--------------------------------------------------------------------------------------
D3D10_PRIMITIVE_TOPOLOGY CDXUTSDKMesh::GetPrimitiveType10( SDKMESH_PRIMITIVE_TYPE PrimType )
{
D3D10_PRIMITIVE_TOPOLOGY retType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST;
switch( PrimType )
{
case PT_TRIANGLE_LIST:
retType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST;
break;
case PT_TRIANGLE_STRIP:
retType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP;
break;
case PT_LINE_LIST:
retType = D3D10_PRIMITIVE_TOPOLOGY_LINELIST;
break;
case PT_LINE_STRIP:
retType = D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP;
break;
case PT_POINT_LIST:
retType = D3D10_PRIMITIVE_TOPOLOGY_POINTLIST;
break;
case PT_TRIANGLE_LIST_ADJ:
retType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ;
break;
case PT_TRIANGLE_STRIP_ADJ:
retType = D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ;
break;
case PT_LINE_LIST_ADJ:
retType = D3D10_PRIMITIVE_TOPOLOGY_LINELIST_ADJ;
break;
case PT_LINE_STRIP_ADJ:
retType = D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ;
break;
};
return retType;
}
//--------------------------------------------------------------------------------------
DXGI_FORMAT CDXUTSDKMesh::GetIBFormat10( UINT iMesh )
{
switch( m_pIndexBufferArray[ m_pMeshArray[ iMesh ].IndexBuffer ].IndexType )
{
case IT_16BIT:
return DXGI_FORMAT_R16_UINT;
case IT_32BIT:
return DXGI_FORMAT_R32_UINT;
};
return DXGI_FORMAT_R16_UINT;
}
//--------------------------------------------------------------------------------------
ID3D10Buffer* CDXUTSDKMesh::GetVB10( UINT iMesh, UINT iVB )
{
return m_pVertexBufferArray[ m_pMeshArray[ iMesh ].VertexBuffers[iVB] ].pVB10;
}
//--------------------------------------------------------------------------------------
ID3D10Buffer* CDXUTSDKMesh::GetIB10( UINT iMesh )
{
return m_pIndexBufferArray[ m_pMeshArray[ iMesh ].IndexBuffer ].pIB10;
}
SDKMESH_INDEX_TYPE CDXUTSDKMesh::GetIndexType( UINT iMesh )
{
return ( SDKMESH_INDEX_TYPE ) m_pIndexBufferArray[m_pMeshArray[ iMesh ].IndexBuffer].IndexType;
}
//--------------------------------------------------------------------------------------
ID3D10Buffer* CDXUTSDKMesh::GetAdjIB10( UINT iMesh )
{
return m_pAdjacencyIndexBufferArray[ m_pMeshArray[ iMesh ].IndexBuffer ].pIB10;
}
//--------------------------------------------------------------------------------------
D3DPRIMITIVETYPE CDXUTSDKMesh::GetPrimitiveType9( SDKMESH_PRIMITIVE_TYPE PrimType )
{
D3DPRIMITIVETYPE retType = D3DPT_TRIANGLELIST;
switch( PrimType )
{
case PT_TRIANGLE_LIST:
retType = D3DPT_TRIANGLELIST;
break;
case PT_TRIANGLE_STRIP:
retType = D3DPT_TRIANGLESTRIP;
break;
case PT_LINE_LIST:
retType = D3DPT_LINELIST;
break;
case PT_LINE_STRIP:
retType = D3DPT_LINESTRIP;
break;
case PT_POINT_LIST:
retType = D3DPT_POINTLIST;
break;
};
return retType;
}
//--------------------------------------------------------------------------------------
D3DFORMAT CDXUTSDKMesh::GetIBFormat9( UINT iMesh )
{
switch( m_pIndexBufferArray[ m_pMeshArray[ iMesh ].IndexBuffer ].IndexType )
{
case IT_16BIT:
return D3DFMT_INDEX16;
case IT_32BIT:
return D3DFMT_INDEX32;
};
return D3DFMT_INDEX16;
}
//--------------------------------------------------------------------------------------
IDirect3DVertexBuffer9* CDXUTSDKMesh::GetVB9( UINT iMesh, UINT iVB )
{
return m_pVertexBufferArray[ m_pMeshArray[ iMesh ].VertexBuffers[iVB] ].pVB9;
}
//--------------------------------------------------------------------------------------
IDirect3DIndexBuffer9* CDXUTSDKMesh::GetIB9( UINT iMesh )
{
return m_pIndexBufferArray[ m_pMeshArray[ iMesh ].IndexBuffer ].pIB9;
}
//--------------------------------------------------------------------------------------
char* CDXUTSDKMesh::GetMeshPathA()
{
return m_strPath;
}
//--------------------------------------------------------------------------------------
WCHAR* CDXUTSDKMesh::GetMeshPathW()
{
return m_strPathW;
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetNumMeshes()
{
if( !m_pMeshHeader )
return 0;
return m_pMeshHeader->NumMeshes;
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetNumMaterials()
{
if( !m_pMeshHeader )
return 0;
return m_pMeshHeader->NumMaterials;
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetNumVBs()
{
if( !m_pMeshHeader )
return 0;
return m_pMeshHeader->NumVertexBuffers;
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetNumIBs()
{
if( !m_pMeshHeader )
return 0;
return m_pMeshHeader->NumIndexBuffers;
}
//--------------------------------------------------------------------------------------
IDirect3DVertexBuffer9* CDXUTSDKMesh::GetVB9At( UINT iVB )
{
return m_pVertexBufferArray[ iVB ].pVB9;
}
//--------------------------------------------------------------------------------------
IDirect3DIndexBuffer9* CDXUTSDKMesh::GetIB9At( UINT iIB )
{
return m_pIndexBufferArray[ iIB ].pIB9;
}
//--------------------------------------------------------------------------------------
ID3D10Buffer* CDXUTSDKMesh::GetVB10At( UINT iVB )
{
return m_pVertexBufferArray[ iVB ].pVB10;
}
//--------------------------------------------------------------------------------------
ID3D10Buffer* CDXUTSDKMesh::GetIB10At( UINT iIB )
{
return m_pIndexBufferArray[ iIB ].pIB10;
}
//--------------------------------------------------------------------------------------
BYTE* CDXUTSDKMesh::GetRawVerticesAt( UINT iVB )
{
return m_ppVertices[iVB];
}
//--------------------------------------------------------------------------------------
BYTE* CDXUTSDKMesh::GetRawIndicesAt( UINT iIB )
{
return m_ppIndices[iIB];
}
//--------------------------------------------------------------------------------------
SDKMESH_MATERIAL* CDXUTSDKMesh::GetMaterial( UINT iMaterial )
{
return &m_pMaterialArray[ iMaterial ];
}
//--------------------------------------------------------------------------------------
SDKMESH_MESH* CDXUTSDKMesh::GetMesh( UINT iMesh )
{
return &m_pMeshArray[ iMesh ];
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetNumSubsets( UINT iMesh )
{
return m_pMeshArray[ iMesh ].NumSubsets;
}
//--------------------------------------------------------------------------------------
SDKMESH_SUBSET* CDXUTSDKMesh::GetSubset( UINT iMesh, UINT iSubset )
{
return &m_pSubsetArray[ m_pMeshArray[ iMesh ].pSubsets[iSubset] ];
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetVertexStride( UINT iMesh, UINT iVB )
{
return ( UINT )m_pVertexBufferArray[ m_pMeshArray[ iMesh ].VertexBuffers[iVB] ].StrideBytes;
}
//--------------------------------------------------------------------------------------
SDKMESH_FRAME* CDXUTSDKMesh::FindFrame( char* pszName )
{
for( UINT i = 0; i < m_pMeshHeader->NumFrames; i++ )
{
if( _stricmp( m_pFrameArray[i].Name, pszName ) == 0 )
{
return &m_pFrameArray[i];
}
}
return NULL;
}
//--------------------------------------------------------------------------------------
UINT64 CDXUTSDKMesh::GetNumVertices( UINT iMesh, UINT iVB )
{
return m_pVertexBufferArray[ m_pMeshArray[ iMesh ].VertexBuffers[iVB] ].NumVertices;
}
//--------------------------------------------------------------------------------------
UINT64 CDXUTSDKMesh::GetNumIndices( UINT iMesh )
{
return m_pIndexBufferArray[ m_pMeshArray[ iMesh ].IndexBuffer ].NumIndices;
}
//--------------------------------------------------------------------------------------
D3DXVECTOR3 CDXUTSDKMesh::GetMeshBBoxCenter( UINT iMesh )
{
return m_pMeshArray[iMesh].BoundingBoxCenter;
}
//--------------------------------------------------------------------------------------
D3DXVECTOR3 CDXUTSDKMesh::GetMeshBBoxExtents( UINT iMesh )
{
return m_pMeshArray[iMesh].BoundingBoxExtents;
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetOutstandingResources()
{
UINT outstandingResources = 0;
if( !m_pMeshHeader )
return 1;
outstandingResources += GetOutstandingBufferResources();
if( m_pDev10 )
{
for( UINT i = 0; i < m_pMeshHeader->NumMaterials; i++ )
{
if( m_pMaterialArray[i].DiffuseTexture[0] != 0 )
{
if( !m_pMaterialArray[i].pDiffuseRV10 && !IsErrorResource( m_pMaterialArray[i].pDiffuseRV10 ) )
outstandingResources ++;
}
if( m_pMaterialArray[i].NormalTexture[0] != 0 )
{
if( !m_pMaterialArray[i].pNormalRV10 && !IsErrorResource( m_pMaterialArray[i].pNormalRV10 ) )
outstandingResources ++;
}
if( m_pMaterialArray[i].SpecularTexture[0] != 0 )
{
if( !m_pMaterialArray[i].pSpecularRV10 && !IsErrorResource( m_pMaterialArray[i].pSpecularRV10 ) )
outstandingResources ++;
}
}
}
else
{
for( UINT i = 0; i < m_pMeshHeader->NumMaterials; i++ )
{
if( m_pMaterialArray[i].DiffuseTexture[0] != 0 )
{
if( !m_pMaterialArray[i].pDiffuseTexture9 && !IsErrorResource( m_pMaterialArray[i].pDiffuseTexture9 ) )
outstandingResources ++;
}
if( m_pMaterialArray[i].NormalTexture[0] != 0 )
{
if( !m_pMaterialArray[i].pNormalTexture9 && !IsErrorResource( m_pMaterialArray[i].pNormalTexture9 ) )
outstandingResources ++;
}
if( m_pMaterialArray[i].SpecularTexture[0] != 0 )
{
if( !m_pMaterialArray[i].pSpecularTexture9 &&
!IsErrorResource( m_pMaterialArray[i].pSpecularTexture9 ) )
outstandingResources ++;
}
}
}
return outstandingResources;
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetOutstandingBufferResources()
{
UINT outstandingResources = 0;
if( !m_pMeshHeader )
return 1;
for( UINT i = 0; i < m_pMeshHeader->NumVertexBuffers; i++ )
{
if( !m_pVertexBufferArray[i].pVB9 && !IsErrorResource( m_pVertexBufferArray[i].pVB9 ) )
outstandingResources ++;
}
for( UINT i = 0; i < m_pMeshHeader->NumIndexBuffers; i++ )
{
if( !m_pIndexBufferArray[i].pIB9 && !IsErrorResource( m_pIndexBufferArray[i].pIB9 ) )
outstandingResources ++;
}
return outstandingResources;
}
//--------------------------------------------------------------------------------------
bool CDXUTSDKMesh::CheckLoadDone()
{
if( 0 == GetOutstandingResources() )
{
m_bLoading = false;
return true;
}
return false;
}
//--------------------------------------------------------------------------------------
bool CDXUTSDKMesh::IsLoaded()
{
if( m_pStaticMeshData && !m_bLoading )
{
return true;
}
return false;
}
//--------------------------------------------------------------------------------------
bool CDXUTSDKMesh::IsLoading()
{
return m_bLoading;
}
//--------------------------------------------------------------------------------------
void CDXUTSDKMesh::SetLoading( bool bLoading )
{
m_bLoading = bLoading;
}
//--------------------------------------------------------------------------------------
BOOL CDXUTSDKMesh::HadLoadingError()
{
if( m_pMeshHeader )
{
for( UINT i = 0; i < m_pMeshHeader->NumVertexBuffers; i++ )
{
if( IsErrorResource( m_pVertexBufferArray[i].pVB9 ) )
return TRUE;
}
for( UINT i = 0; i < m_pMeshHeader->NumIndexBuffers; i++ )
{
if( IsErrorResource( m_pIndexBufferArray[i].pIB9 ) )
return TRUE;
}
}
return FALSE;
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetNumInfluences( UINT iMesh )
{
return m_pMeshArray[iMesh].NumFrameInfluences;
}
//--------------------------------------------------------------------------------------
const D3DXMATRIX* CDXUTSDKMesh::GetMeshInfluenceMatrix( UINT iMesh, UINT iInfluence )
{
UINT iFrame = m_pMeshArray[iMesh].pFrameInfluences[ iInfluence ];
return &m_pTransformedFrameMatrices[iFrame];
}
//--------------------------------------------------------------------------------------
UINT CDXUTSDKMesh::GetAnimationKeyFromTime( double fTime )
{
UINT iTick = ( UINT )( m_pAnimationHeader->AnimationFPS * fTime );
iTick = iTick % ( m_pAnimationHeader->NumAnimationKeys - 1 );
iTick ++;
return iTick;
}
//-------------------------------------------------------------------------------------
// CDXUTXFileMesh implementation.
//-------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------
CDXUTXFileMesh::CDXUTXFileMesh( LPCWSTR strName )
{
wcscpy_s( m_strName, 512, strName );
m_pMesh = NULL;
m_pMaterials = NULL;
m_pTextures = NULL;
m_bUseMaterials = TRUE;
m_pVB = NULL;
m_pIB = NULL;
m_pDecl = NULL;
m_strMaterials = NULL;
m_dwNumMaterials = 0;
m_dwNumVertices = 0;
m_dwNumFaces = 0;
m_dwBytesPerVertex = 0;
}
//-----------------------------------------------------------------------------
CDXUTXFileMesh::~CDXUTXFileMesh()
{
Destroy();
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::Create( LPDIRECT3DDEVICE9 pd3dDevice, LPCWSTR strFilename )
{
WCHAR strPath[MAX_PATH];
LPD3DXBUFFER pAdjacencyBuffer = NULL;
LPD3DXBUFFER pMtrlBuffer = NULL;
HRESULT hr;
// Cleanup previous mesh if any
Destroy();
// Find the path for the file, and convert it to ANSI (for the D3DX API)
DXUTFindDXSDKMediaFileCch( strPath, sizeof( strPath ) / sizeof( WCHAR ), strFilename );
// Load the mesh
if( FAILED( hr = D3DXLoadMeshFromX( strPath, D3DXMESH_MANAGED, pd3dDevice,
&pAdjacencyBuffer, &pMtrlBuffer, NULL,
&m_dwNumMaterials, &m_pMesh ) ) )
{
return hr;
}
// Optimize the mesh for performance
if( FAILED( hr = m_pMesh->OptimizeInplace(
D3DXMESHOPT_COMPACT | D3DXMESHOPT_ATTRSORT | D3DXMESHOPT_VERTEXCACHE,
( DWORD* )pAdjacencyBuffer->GetBufferPointer(), NULL, NULL, NULL ) ) )
{
SAFE_RELEASE( pAdjacencyBuffer );
SAFE_RELEASE( pMtrlBuffer );
return hr;
}
// Set strPath to the path of the mesh file
WCHAR* pLastBSlash = wcsrchr( strPath, L'\\' );
if( pLastBSlash )
*( pLastBSlash + 1 ) = L'\0';
else
*strPath = L'\0';
D3DXMATERIAL* d3dxMtrls = ( D3DXMATERIAL* )pMtrlBuffer->GetBufferPointer();
hr = CreateMaterials( strPath, pd3dDevice, d3dxMtrls, m_dwNumMaterials );
SAFE_RELEASE( pAdjacencyBuffer );
SAFE_RELEASE( pMtrlBuffer );
// Extract data from m_pMesh for easy access
D3DVERTEXELEMENT9 decl[MAX_FVF_DECL_SIZE];
m_dwNumVertices = m_pMesh->GetNumVertices();
m_dwNumFaces = m_pMesh->GetNumFaces();
m_dwBytesPerVertex = m_pMesh->GetNumBytesPerVertex();
m_pMesh->GetIndexBuffer( &m_pIB );
m_pMesh->GetVertexBuffer( &m_pVB );
m_pMesh->GetDeclaration( decl );
pd3dDevice->CreateVertexDeclaration( decl, &m_pDecl );
return hr;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::Create( LPDIRECT3DDEVICE9 pd3dDevice,
LPD3DXFILEDATA pFileData )
{
LPD3DXBUFFER pMtrlBuffer = NULL;
LPD3DXBUFFER pAdjacencyBuffer = NULL;
HRESULT hr;
// Cleanup previous mesh if any
Destroy();
// Load the mesh from the DXFILEDATA object
if( FAILED( hr = D3DXLoadMeshFromXof( pFileData, D3DXMESH_MANAGED, pd3dDevice,
&pAdjacencyBuffer, &pMtrlBuffer, NULL,
&m_dwNumMaterials, &m_pMesh ) ) )
{
return hr;
}
// Optimize the mesh for performance
if( FAILED( hr = m_pMesh->OptimizeInplace(
D3DXMESHOPT_COMPACT | D3DXMESHOPT_ATTRSORT | D3DXMESHOPT_VERTEXCACHE,
( DWORD* )pAdjacencyBuffer->GetBufferPointer(), NULL, NULL, NULL ) ) )
{
SAFE_RELEASE( pAdjacencyBuffer );
SAFE_RELEASE( pMtrlBuffer );
return hr;
}
D3DXMATERIAL* d3dxMtrls = ( D3DXMATERIAL* )pMtrlBuffer->GetBufferPointer();
hr = CreateMaterials( L"", pd3dDevice, d3dxMtrls, m_dwNumMaterials );
SAFE_RELEASE( pAdjacencyBuffer );
SAFE_RELEASE( pMtrlBuffer );
// Extract data from m_pMesh for easy access
D3DVERTEXELEMENT9 decl[MAX_FVF_DECL_SIZE];
m_dwNumVertices = m_pMesh->GetNumVertices();
m_dwNumFaces = m_pMesh->GetNumFaces();
m_dwBytesPerVertex = m_pMesh->GetNumBytesPerVertex();
m_pMesh->GetIndexBuffer( &m_pIB );
m_pMesh->GetVertexBuffer( &m_pVB );
m_pMesh->GetDeclaration( decl );
pd3dDevice->CreateVertexDeclaration( decl, &m_pDecl );
return hr;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::Create( LPDIRECT3DDEVICE9 pd3dDevice, ID3DXMesh* pInMesh,
D3DXMATERIAL* pd3dxMaterials, DWORD dwMaterials )
{
// Cleanup previous mesh if any
Destroy();
// Optimize the mesh for performance
DWORD* rgdwAdjacency = NULL;
rgdwAdjacency = new DWORD[pInMesh->GetNumFaces() * 3];
if( rgdwAdjacency == NULL )
return E_OUTOFMEMORY;
pInMesh->GenerateAdjacency( 1e-6f, rgdwAdjacency );
D3DVERTEXELEMENT9 decl[MAX_FVF_DECL_SIZE];
pInMesh->GetDeclaration( decl );
DWORD dwOptions = pInMesh->GetOptions();
dwOptions &= ~( D3DXMESH_32BIT | D3DXMESH_SYSTEMMEM | D3DXMESH_WRITEONLY );
dwOptions |= D3DXMESH_MANAGED;
dwOptions |= D3DXMESHOPT_COMPACT | D3DXMESHOPT_ATTRSORT | D3DXMESHOPT_VERTEXCACHE;
ID3DXMesh* pTempMesh = NULL;
if( FAILED( pInMesh->Optimize( dwOptions, rgdwAdjacency, NULL, NULL, NULL, &pTempMesh ) ) )
{
SAFE_DELETE_ARRAY( rgdwAdjacency );
return E_FAIL;
}
SAFE_DELETE_ARRAY( rgdwAdjacency );
SAFE_RELEASE( m_pMesh );
m_pMesh = pTempMesh;
HRESULT hr;
hr = CreateMaterials( L"", pd3dDevice, pd3dxMaterials, dwMaterials );
// Extract data from m_pMesh for easy access
m_dwNumVertices = m_pMesh->GetNumVertices();
m_dwNumFaces = m_pMesh->GetNumFaces();
m_dwBytesPerVertex = m_pMesh->GetNumBytesPerVertex();
m_pMesh->GetIndexBuffer( &m_pIB );
m_pMesh->GetVertexBuffer( &m_pVB );
m_pMesh->GetDeclaration( decl );
pd3dDevice->CreateVertexDeclaration( decl, &m_pDecl );
return hr;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::CreateMaterials( LPCWSTR strPath, IDirect3DDevice9* pd3dDevice, D3DXMATERIAL* d3dxMtrls,
DWORD dwNumMaterials )
{
// Get material info for the mesh
// Get the array of materials out of the buffer
m_dwNumMaterials = dwNumMaterials;
if( d3dxMtrls && m_dwNumMaterials > 0 )
{
// Allocate memory for the materials and textures
m_pMaterials = new D3DMATERIAL9[m_dwNumMaterials];
if( m_pMaterials == NULL )
return E_OUTOFMEMORY;
m_pTextures = new LPDIRECT3DBASETEXTURE9[m_dwNumMaterials];
if( m_pTextures == NULL )
return E_OUTOFMEMORY;
m_strMaterials = new CHAR[m_dwNumMaterials][MAX_PATH];
if( m_strMaterials == NULL )
return E_OUTOFMEMORY;
// Copy each material and create its texture
for( DWORD i = 0; i < m_dwNumMaterials; i++ )
{
// Copy the material
m_pMaterials[i] = d3dxMtrls[i].MatD3D;
m_pTextures[i] = NULL;
// Create a texture
if( d3dxMtrls[i].pTextureFilename )
{
strcpy_s( m_strMaterials[i], MAX_PATH, d3dxMtrls[i].pTextureFilename );
WCHAR strTexture[MAX_PATH];
WCHAR strTextureTemp[MAX_PATH];
D3DXIMAGE_INFO ImgInfo;
// First attempt to look for texture in the same folder as the input folder.
MultiByteToWideChar( CP_ACP, 0, d3dxMtrls[i].pTextureFilename, -1, strTextureTemp, MAX_PATH );
strTextureTemp[MAX_PATH - 1] = 0;
wcscpy_s( strTexture, MAX_PATH, strPath );
wcscat_s( strTexture, MAX_PATH, strTextureTemp );
// Inspect the texture file to determine the texture type.
if( FAILED( D3DXGetImageInfoFromFile( strTexture, &ImgInfo ) ) )
{
// Search the media folder
if( FAILED( DXUTFindDXSDKMediaFileCch( strTexture, MAX_PATH, strTextureTemp ) ) )
continue; // Can't find. Skip.
D3DXGetImageInfoFromFile( strTexture, &ImgInfo );
}
// Call the appropriate loader according to the texture type.
switch( ImgInfo.ResourceType )
{
case D3DRTYPE_TEXTURE:
{
IDirect3DTexture9* pTex;
if( SUCCEEDED( D3DXCreateTextureFromFile( pd3dDevice, strTexture, &pTex ) ) )
{
// Obtain the base texture interface
pTex->QueryInterface( IID_IDirect3DBaseTexture9, ( LPVOID* )&m_pTextures[i] );
// Release the specialized instance
pTex->Release();
}
break;
}
case D3DRTYPE_CUBETEXTURE:
{
IDirect3DCubeTexture9* pTex;
if( SUCCEEDED( D3DXCreateCubeTextureFromFile( pd3dDevice, strTexture, &pTex ) ) )
{
// Obtain the base texture interface
pTex->QueryInterface( IID_IDirect3DBaseTexture9, ( LPVOID* )&m_pTextures[i] );
// Release the specialized instance
pTex->Release();
}
break;
}
case D3DRTYPE_VOLUMETEXTURE:
{
IDirect3DVolumeTexture9* pTex;
if( SUCCEEDED( D3DXCreateVolumeTextureFromFile( pd3dDevice, strTexture, &pTex ) ) )
{
// Obtain the base texture interface
pTex->QueryInterface( IID_IDirect3DBaseTexture9, ( LPVOID* )&m_pTextures[i] );
// Release the specialized instance
pTex->Release();
}
break;
}
}
}
}
}
return S_OK;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::SetFVF( LPDIRECT3DDEVICE9 pd3dDevice, DWORD dwFVF )
{
LPD3DXMESH pTempMesh = NULL;
if( m_pMesh )
{
if( FAILED( m_pMesh->CloneMeshFVF( m_pMesh->GetOptions(), dwFVF,
pd3dDevice, &pTempMesh ) ) )
{
SAFE_RELEASE( pTempMesh );
return E_FAIL;
}
DWORD dwOldFVF = 0;
dwOldFVF = m_pMesh->GetFVF();
SAFE_RELEASE( m_pMesh );
m_pMesh = pTempMesh;
// Compute normals if they are being requested and
// the old mesh does not have them.
if( !( dwOldFVF & D3DFVF_NORMAL ) && dwFVF & D3DFVF_NORMAL )
{
D3DXComputeNormals( m_pMesh, NULL );
}
}
return S_OK;
}
//-----------------------------------------------------------------------------
// Convert the mesh to the format specified by the given vertex declarations.
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::SetVertexDecl( LPDIRECT3DDEVICE9 pd3dDevice, const D3DVERTEXELEMENT9* pDecl,
bool bAutoComputeNormals, bool bAutoComputeTangents,
bool bSplitVertexForOptimalTangents )
{
LPD3DXMESH pTempMesh = NULL;
if( m_pMesh )
{
if( FAILED( m_pMesh->CloneMesh( m_pMesh->GetOptions(), pDecl,
pd3dDevice, &pTempMesh ) ) )
{
SAFE_RELEASE( pTempMesh );
return E_FAIL;
}
}
// Check if the old declaration contains a normal.
bool bHadNormal = false;
bool bHadTangent = false;
D3DVERTEXELEMENT9 aOldDecl[MAX_FVF_DECL_SIZE];
if( m_pMesh && SUCCEEDED( m_pMesh->GetDeclaration( aOldDecl ) ) )
{
for( UINT index = 0; index < D3DXGetDeclLength( aOldDecl ); ++index )
{
if( aOldDecl[index].Usage == D3DDECLUSAGE_NORMAL )
{
bHadNormal = true;
}
if( aOldDecl[index].Usage == D3DDECLUSAGE_TANGENT )
{
bHadTangent = true;
}
}
}
// Check if the new declaration contains a normal.
bool bHaveNormalNow = false;
bool bHaveTangentNow = false;
D3DVERTEXELEMENT9 aNewDecl[MAX_FVF_DECL_SIZE];
if( pTempMesh && SUCCEEDED( pTempMesh->GetDeclaration( aNewDecl ) ) )
{
for( UINT index = 0; index < D3DXGetDeclLength( aNewDecl ); ++index )
{
if( aNewDecl[index].Usage == D3DDECLUSAGE_NORMAL )
{
bHaveNormalNow = true;
}
if( aNewDecl[index].Usage == D3DDECLUSAGE_TANGENT )
{
bHaveTangentNow = true;
}
}
}
SAFE_RELEASE( m_pMesh );
if( pTempMesh )
{
m_pMesh = pTempMesh;
if( !bHadNormal && bHaveNormalNow && bAutoComputeNormals )
{
// Compute normals in case the meshes have them
D3DXComputeNormals( m_pMesh, NULL );
}
if( bHaveNormalNow && !bHadTangent && bHaveTangentNow && bAutoComputeTangents )
{
ID3DXMesh* pNewMesh;
HRESULT hr;
DWORD* rgdwAdjacency = NULL;
rgdwAdjacency = new DWORD[m_pMesh->GetNumFaces() * 3];
if( rgdwAdjacency == NULL )
return E_OUTOFMEMORY;
V( m_pMesh->GenerateAdjacency( 1e-6f, rgdwAdjacency ) );
float fPartialEdgeThreshold;
float fSingularPointThreshold;
float fNormalEdgeThreshold;
if( bSplitVertexForOptimalTangents )
{
fPartialEdgeThreshold = 0.01f;
fSingularPointThreshold = 0.25f;
fNormalEdgeThreshold = 0.01f;
}
else
{
fPartialEdgeThreshold = -1.01f;
fSingularPointThreshold = 0.01f;
fNormalEdgeThreshold = -1.01f;
}
// Compute tangents, which are required for normal mapping
hr = D3DXComputeTangentFrameEx( m_pMesh,
D3DDECLUSAGE_TEXCOORD, 0,
D3DDECLUSAGE_TANGENT, 0,
D3DX_DEFAULT, 0,
D3DDECLUSAGE_NORMAL, 0,
0, rgdwAdjacency,
fPartialEdgeThreshold, fSingularPointThreshold, fNormalEdgeThreshold,
&pNewMesh, NULL );
SAFE_DELETE_ARRAY( rgdwAdjacency );
if( FAILED( hr ) )
return hr;
SAFE_RELEASE( m_pMesh );
m_pMesh = pNewMesh;
}
}
return S_OK;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::RestoreDeviceObjects( LPDIRECT3DDEVICE9 pd3dDevice )
{
return S_OK;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::InvalidateDeviceObjects()
{
SAFE_RELEASE( m_pIB );
SAFE_RELEASE( m_pVB );
SAFE_RELEASE( m_pDecl );
return S_OK;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::Destroy()
{
InvalidateDeviceObjects();
for( UINT i = 0; i < m_dwNumMaterials; i++ )
SAFE_RELEASE( m_pTextures[i] );
SAFE_DELETE_ARRAY( m_pTextures );
SAFE_DELETE_ARRAY( m_pMaterials );
SAFE_DELETE_ARRAY( m_strMaterials );
SAFE_RELEASE( m_pMesh );
m_dwNumMaterials = 0L;
return S_OK;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::Render( LPDIRECT3DDEVICE9 pd3dDevice, bool bDrawOpaqueSubsets,
bool bDrawAlphaSubsets )
{
if( NULL == m_pMesh )
return E_FAIL;
// Frist, draw the subsets without alpha
if( bDrawOpaqueSubsets )
{
for( DWORD i = 0; i < m_dwNumMaterials; i++ )
{
if( m_bUseMaterials )
{
if( m_pMaterials[i].Diffuse.a < 1.0f )
continue;
pd3dDevice->SetMaterial( &m_pMaterials[i] );
pd3dDevice->SetTexture( 0, m_pTextures[i] );
}
m_pMesh->DrawSubset( i );
}
}
// Then, draw the subsets with alpha
if( bDrawAlphaSubsets && m_bUseMaterials )
{
for( DWORD i = 0; i < m_dwNumMaterials; i++ )
{
if( m_pMaterials[i].Diffuse.a == 1.0f )
continue;
// Set the material and texture
pd3dDevice->SetMaterial( &m_pMaterials[i] );
pd3dDevice->SetTexture( 0, m_pTextures[i] );
m_pMesh->DrawSubset( i );
}
}
return S_OK;
}
//-----------------------------------------------------------------------------
HRESULT CDXUTXFileMesh::Render( ID3DXEffect* pEffect,
D3DXHANDLE hTexture,
D3DXHANDLE hDiffuse,
D3DXHANDLE hAmbient,
D3DXHANDLE hSpecular,
D3DXHANDLE hEmissive,
D3DXHANDLE hPower,
bool bDrawOpaqueSubsets,
bool bDrawAlphaSubsets )
{
if( NULL == m_pMesh )
return E_FAIL;
UINT cPasses;
// Frist, draw the subsets without alpha
if( bDrawOpaqueSubsets )
{
pEffect->Begin( &cPasses, 0 );
for( UINT p = 0; p < cPasses; ++p )
{
pEffect->BeginPass( p );
for( DWORD i = 0; i < m_dwNumMaterials; i++ )
{
if( m_bUseMaterials )
{
if( m_pMaterials[i].Diffuse.a < 1.0f )
continue;
if( hTexture )
pEffect->SetTexture( hTexture, m_pTextures[i] );
// D3DCOLORVALUE and D3DXVECTOR4 are data-wise identical.
// No conversion is needed.
if( hDiffuse )
pEffect->SetVector( hDiffuse, ( D3DXVECTOR4* )&m_pMaterials[i].Diffuse );
if( hAmbient )
pEffect->SetVector( hAmbient, ( D3DXVECTOR4* )&m_pMaterials[i].Ambient );
if( hSpecular )
pEffect->SetVector( hSpecular, ( D3DXVECTOR4* )&m_pMaterials[i].Specular );
if( hEmissive )
pEffect->SetVector( hEmissive, ( D3DXVECTOR4* )&m_pMaterials[i].Emissive );
if( hPower )
pEffect->SetFloat( hPower, m_pMaterials[i].Power );
pEffect->CommitChanges();
}
m_pMesh->DrawSubset( i );
}
pEffect->EndPass();
}
pEffect->End();
}
// Then, draw the subsets with alpha
if( bDrawAlphaSubsets && m_bUseMaterials )
{
pEffect->Begin( &cPasses, 0 );
for( UINT p = 0; p < cPasses; ++p )
{
pEffect->BeginPass( p );
for( DWORD i = 0; i < m_dwNumMaterials; i++ )
{
if( m_bUseMaterials )
{
if( m_pMaterials[i].Diffuse.a == 1.0f )
continue;
if( hTexture )
pEffect->SetTexture( hTexture, m_pTextures[i] );
// D3DCOLORVALUE and D3DXVECTOR4 are data-wise identical.
// No conversion is needed.
if( hDiffuse )
pEffect->SetVector( hDiffuse, ( D3DXVECTOR4* )&m_pMaterials[i].Diffuse );
if( hAmbient )
pEffect->SetVector( hAmbient, ( D3DXVECTOR4* )&m_pMaterials[i].Ambient );
if( hSpecular )
pEffect->SetVector( hSpecular, ( D3DXVECTOR4* )&m_pMaterials[i].Specular );
if( hEmissive )
pEffect->SetVector( hEmissive, ( D3DXVECTOR4* )&m_pMaterials[i].Emissive );
if( hPower )
pEffect->SetFloat( hPower, m_pMaterials[i].Power );
pEffect->CommitChanges();
}
m_pMesh->DrawSubset( i );
}
pEffect->EndPass();
}
pEffect->End();
}
return S_OK;
}
| [
"marissax.du.bois@intel.com"
] | marissax.du.bois@intel.com |
ab088780579ec7bce14cf9b903f7608f639affcd | 69b9525d8909b110f40f2c77a41a612c9fdf4e52 | /Testing/tracker.start/asg5/collider.cpp | cdd3848e8452d165ce1de598e9b6a943ab6dd7ee | [] | no_license | vrunal1994/Vegeta | 1fe1a9d6a65d5cac06c3810b37b3519ff9c72748 | bec41ea33b6bfeae49d9102372cdb7791af07924 | refs/heads/master | 2021-01-11T02:46:05.741133 | 2017-02-14T13:57:33 | 2017-02-14T13:57:33 | 70,930,141 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 356 | cpp | #include <iostream>
#include "collider.h"
Collider::Collider() : strategy(new PerPixelCollisionStrategy){}
Collider::~Collider(){
delete strategy;
}
bool Collider::collidedWithVegeta(const flamethrower c,
const Vegeta* d) const {
return strategy->execute(c, *d);
}
Collider& Collider::getInstance(){
static Collider collider;
return collider;
}
| [
"vroxace@gmail.com"
] | vroxace@gmail.com |
c1514c0f07cabf1899c9b6abaac6af5dd6cb5d21 | 8227f3b4d39f077faf1776aba1e199dcb14a3d93 | /图/kruskal(邻接矩阵).cpp | c119f62b2c04ad2da0d77b95276910f7034b29e2 | [] | no_license | xiaofengxx/acm-learning | 123e146348ce2a22f811f6563cfce3497e0c2135 | 37562a99de95201a53450323268465791944c319 | refs/heads/master | 2016-09-13T07:12:30.855650 | 2016-05-12T12:38:27 | 2016-05-12T12:38:27 | 58,609,523 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 2,219 | cpp | /*#include<cstdio>
#include<cstring>
#include<iostream>
#include<cstdlib>
using namespace std;
const int maxn=1100;
const int inf=1<<29;
const int maxm=maxn*maxn/2;
int e,head[maxn],pnt[maxm],next[maxm],cost[maxm];
int n,m,dist[maxn];
bool vis[maxn];
void AddEdge(int u,int v,int c)
{
pnt[e]=v;
cost[e]=c;
next[e]=head[u];
head[u]=e++;
}
int Prim()
{
int ans=0;
memset(vis,0,sizeof(vis));
for(int i=1; i<=n; i++)
dist[i]=inf;
vis[1]=1;
for(int i=head[1]; i!=-1; i=next[i])
dist[pnt[i]]=cost[i];
for(int j=1; j<n; j++)
{
int mini=inf,u=-1;
for(int i=1; i<=n; i++)
if(!vis[i]&&dist[i]<mini)
{
mini=dist[i];
u=i;
}
if(u==-1)
break;
ans+=mini;
vis[u]=1;
for(int i=head[u]; i!=-1; i=next[i])
dist[pnt[i]]=min(dist[pnt[i]],cost[i]);
}
return ans;
}
int main()
{
while(scanf("%d%d",&n,&m)!=EOF)
{
e=0;
memset(head,-1,sizeof(head));
for(int i=0; i<m; i++)
{
int u,v,c;
scanf("%d%d%d",&u,&v,&c);
AddEdge(u,v,c);
AddEdge(v,u,c);
}
printf("%d\n",Prim());
}
}
*/
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxm=1e6;
const int maxn=100000;
int n,m;
struct Node
{
int from;
int to;
int w;
bool operator < (const Node &a)const
{
return w<a.w;
}
} E[maxm];
int p[maxn];
int Find(int x)
{
if(p[x]==-1)
return x;
return p[x]=Find(p[x]);
}
int Kruskal()
{
int ans=0,cnt=0;
for(int i=0; i<m; i++)
{
int x=Find(E[i].from);
int y=Find(E[i].to);
if(x!=y)
{
cnt++;
ans+=E[i].w;
p[x]=y;
}
}
if(cnt<n-1)
return -1;//无法构成生成树;
return ans;
}
int main()
{
while(scanf("%d%d",&n,&m)!=EOF)
{
memset(p,-1,sizeof(p));
for(int i=0; i<m; i++)
scanf("%d%d%d",&E[i].from,&E[i].to,&E[i].w);
sort(E,E+m);
printf("%d\n",Kruskal());
}
return 0;
}
| [
"651908051@qq.com"
] | 651908051@qq.com |
a770f82a0f21d72f9c1741bcaed2d881231e2f1f | f9f8bd992dac718043a5e8c12deed3dd190c21d0 | /More-Programming-Problems-and Concepts/Pattern matching.cpp | 6056a6c88e8c5d65752217abc850883f38e645d3 | [] | no_license | sankalp163/CPP-codes | e51e920ac296aa3481edaa56566c9e63913550c7 | 1cc1a75311262b19fcab8086c58f7c68871100b8 | refs/heads/main | 2023-06-14T18:19:55.967344 | 2021-07-12T06:45:10 | 2021-07-12T06:45:10 | 338,971,480 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,952 | cpp | #include <string>
#include <vector>
class TrieNode {
public :
char data;
TrieNode **children;
bool isTerminal;
TrieNode(char data) {
this -> data = data;
children = new TrieNode*[26];
for(int i = 0; i < 26; i++) {
children[i] = NULL;
}
isTerminal = false;
}
};
class Trie {
TrieNode *root;
public :
int count;
Trie() {
this->count = 0;
root = new TrieNode('\0');
}
bool insertWord(TrieNode *root, string word) {
// Base case
if(word.size() == 0) {
if (!root->isTerminal) {
root -> isTerminal = true;
return true;
} else {
return false;
}
}
// Small Calculation
int index = word[0] - 'a';
TrieNode *child;
if(root -> children[index] != NULL) {
child = root -> children[index];
}
else {
child = new TrieNode(word[0]);
root -> children[index] = child;
}
// Recursive call
return insertWord(child, word.substr(1));
}
// For user
void insertWord(string word) {
if (insertWord(root, word)) {
this->count++;
}
}
bool search(TrieNode *root, string word){
if(word.size()==0){
return true;
}
int index=word[0]-'a';
TrieNode *child;
if(root->children[index]==NULL){
return false;
}
child=root->children[index];
bool res=search(child,word.substr(1));
return res;
}
bool search(string word) {
// Write your code here
return search(root,word);
}
bool patternMatching(vector<string> vect, string pattern) {
// Complete this function
// Return true or false
for(int i=0;i<vect.size();i++){
insertWord(vect[i]);
for(int j=1;j<vect[i].size();j++){
insertWord(vect[i].substr(j));
}
}
bool res=search(pattern);
return res;
}
};
| [
"noreply@github.com"
] | noreply@github.com |
83b73ea5476d9b6dc446e6ecabff0ff09416b863 | 6db655b90d5dfd563b4328fcbd22f292e0b529aa | /project 6/cache.cpp.txt | 85fe987863d5055bc32b5f2366c215f1d48a1828 | [] | no_license | Saurabh-Bazari/Hardware-lab-projects | fb662c48fab887ce29a1f33b0cbf3b1fa5edc6f1 | d40b3cb04ea0fe01de83400e8eb1addf32dbb659 | refs/heads/master | 2021-07-09T12:34:57.784733 | 2020-06-21T18:15:52 | 2020-06-21T18:15:52 | 132,309,527 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,139 | txt | /*
* Actual data storing, data movement and LRU policy not implemented
* For LRU: for every index we can have a 6 bit counter and every set have a LRU register, when there is a access to a set of an index the counter value of the index is incremented and copied to the LRU register of the set. At the time of replacement, cache block with smallest LRU value of the index get replaced.
* */
#include <iostream>
#include <cassert>
#include <cstdlib>
#include <ctime>
#define HIT 1
#define MISS 0
using namespace std;
class Cache {
private:
int set, asso, LS;
int hit_counter,miss_counter;
int **TAG;
public:
int get_hit(void){return hit_counter;}
int get_miss(void){return miss_counter;}
Cache(){}
void CacheInit( int sets, int associativity, int LineSize ) {
int i, j;
TAG = new int*[sets];
for(i = 0; i < sets; i++)
TAG[i] = new int [associativity];
assert( TAG != NULL );
/* Initialize tag to be -1 */
for(i=0;i<sets;i++)
for(j=0;j<associativity;j++) TAG[i][j]=-1;
/*cout << TAG[5][3] << endl;*/
asso = associativity; set = sets; LS = LineSize;
hit_counter=miss_counter=0;
}
~Cache(void){delete[] TAG;}
int Access(unsigned int Address) {
int i, x;
int offset = Address % LS;
int index = (Address/LS) % set;
int Tag = (Address/LS)/set;
/*if hit*/
for(i = 0; i < asso; i++)
if( TAG[index][i] == Tag) {
hit_counter++;
return HIT;
}
miss_counter++;
/*miss*/
x = rand() % asso; /*used random policy for replacement, You have to LRU policy*/
TAG[index][x] = Tag;
return MISS;
}
};
int main()
{
int L1_hit_count,L1_miss_count, hit;
unsigned int Address;
int j, Time, i =0;
int MaxAddress=1<<16;
Cache L1;
Cache L2;
L1.CacheInit(128, 4, 32);
L2.CacheInit(512, 8, 64);
srand(time(NULL));
for(Time = 0; Time < 20000; Time++) {
Address = rand()%MaxAddress;
//cout << Address << endl;
hit = L1.Access(Address);
if(!hit) {
hit = L2.Access(Address);
}
}/*end for loop*/
cout<<"\nL1: hit "<<L1.get_hit()<<" miss "<<L1.get_miss();
cout<<"\nL2: hit "<<L2.get_hit()<<" miss "<<L2.get_miss();
cout<<"\n\nMy work is done\n\n";
return 0;
}
| [
"saurabhbazari3101@gmail.com"
] | saurabhbazari3101@gmail.com |
4db6739e60c361389cfef2bc983161afe1fa1c7b | 2f1bf372961b4745e565a69a1521f89b64dd75e5 | /src/omutex.h | 1b4f94678f885072502dc59979dc8c1b49b40410 | [] | no_license | dipietroa/PCO-Labo5 | 315ae3418accc616dca5781f471290f5885cea3a | 740f3f8b5cd1c3ce8f29e3d5ab01423884949475 | refs/heads/master | 2020-06-02T17:12:58.420952 | 2017-06-19T21:37:34 | 2017-06-19T21:37:34 | 94,099,093 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 768 | h | #ifndef PMUTEX_H
#define PMUTEX_H
#include <QThread>
#include <QMutex>
#include "waitinglogger.h"
/**
* @brief Wrap QMutex pour gérer des logs
* permettant de connaître les threads
* en attente sur le mutex
*/
class OMutex : public QMutex
{
private:
QString name;
WaitingLogger *wl;
QMutex* mutex;
public:
/**
* @brief Constructeur
* @param name - nom du mutex
*/
OMutex(QString name);
/**
* @brief lock - vérouille une section critique
*/
void lock();
/**
* @brief tryLock - Tente de vérouiller une section critique
* @return
*/
bool tryLock();
/**
* @brief unlock - dévérouille une section critique
*/
void unlock();
};
#endif // PMUTEX_H
| [
"adrian.dipietro@heig-vd.ch"
] | adrian.dipietro@heig-vd.ch |
2ceff4a8c2a631ad1abe17be7f1505f0bdd03715 | 3f5676c4ad69d4b6ea1ce8e777274255f1698176 | /main.cpp | edaf91e70a064f793d867410384aedec01423a8f | [] | no_license | patrickcjk/windows-new-user | ca27b993253731391b3992d3147bff338e221edf | 9040c0db6218e82539bc04c7aaf956efa6330bce | refs/heads/main | 2023-05-14T14:05:54.936713 | 2021-06-11T18:19:30 | 2021-06-11T18:19:30 | 376,109,542 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,034 | cpp | #include "stdafx.h"
bool create_user(wchar_t* username)
{
//create the user info structure
USER_INFO_1 user_info = { 0 };
user_info.usri1_name = (LPWSTR)username;
user_info.usri1_password = NULL;
user_info.usri1_priv = USER_PRIV_USER;
user_info.usri1_home_dir = NULL;
user_info.usri1_comment = NULL;
user_info.usri1_flags = UF_SCRIPT | UF_PASSWD_NOTREQD;
user_info.usri1_script_path = NULL;
//add user
DWORD error = 0;
auto status = NetUserAdd(NULL, 1, (LPBYTE)&user_info, &error);
if (status != NERR_Success)
{
switch (status)
{
case ERROR_INVALID_PARAMETER:
break;
case ERROR_ACCESS_DENIED:
break;
case NERR_InvalidComputer:
break;
case NERR_NotPrimary:
break;
case NERR_GroupExists:
break;
case NERR_UserExists:
break;
case NERR_PasswordTooShort:
break;
default:
break;
}
return false;
}
//we need to find the administrator group name
PSID admin_groupe_sid;
if (!ConvertStringSidToSidA("S-1-5-32-544", &admin_groupe_sid))
{
// unable to convert group SID
return false;
}
// find the admin user group string
const auto buffer_size = 256;
wchar_t admin_user_group_name[buffer_size];
DWORD admin_user_group_name_size = buffer_size;
wchar_t domain_name[buffer_size];
DWORD domain_name_size = buffer_size;
SID_NAME_USE sid_type = SidTypeGroup;
// we call as wide char so we don't have to convert later
if (!LookupAccountSidW(NULL, admin_groupe_sid, admin_user_group_name, &admin_user_group_name_size, domain_name, &domain_name_size, &sid_type))
{
// unable to get account SID for admin
LocalFree(admin_groupe_sid);
return false;
}
//free sid buffer
LocalFree(admin_groupe_sid);
//create local group info structure
LOCALGROUP_MEMBERS_INFO_3 lm_info = { 0 };
lm_info.lgrmi3_domainandname = (LPWSTR)username;
//add user to admin group
status = NetLocalGroupAddMembers(NULL, admin_user_group_name, 3, (LPBYTE)&lm_info, 1);
if (NERR_Success != status)
{
// unable to add user to user group
return false;
}
//ok
return true;
}
| [
"noreply@github.com"
] | noreply@github.com |
ee0ff3872025051a76e3663ff42219311285d594 | dd267038685dcefd5f89016c63f72c2ad4aa7fdf | /src/content/browser/media/session/webos/media_session_observer_webos.cc | 16b069871c070f93ba37d1fb0d6fda02600712fa | [
"BSD-3-Clause"
] | permissive | webosose/chromium87 | 044d5c74ae9c2815cf096fd98bf9ea4e7e2fe6b3 | 75729b78817d49249cd004ef734c032269f06e53 | refs/heads/master | 2022-11-05T07:23:21.710708 | 2021-10-06T11:24:51 | 2021-10-08T08:30:55 | 392,617,373 | 4 | 2 | null | 2022-11-01T02:23:21 | 2021-08-04T08:54:03 | null | UTF-8 | C++ | false | false | 16,523 | cc | // Copyright 2021 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 "content/browser/media/session/webos/media_session_observer_webos.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/json/json_reader.h"
#include "base/json/json_writer.h"
#include "base/process/process.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/values.h"
#include "content/browser/media/session/media_session_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/media_session.h"
#include "media/base/bind_to_current_loop.h"
#include "services/media_session/public/cpp/media_position.h"
#include "services/media_session/public/mojom/audio_focus.mojom.h"
#include "third_party/blink/public/mojom/renderer_preferences.mojom.h"
using media_session::mojom::MediaPlaybackState;
namespace content {
namespace {
const char kAppId[] = "appId";
const char kMediaId[] = "mediaId";
const char kSubscribe[] = "subscribe";
const char kSubscribed[] = "subscribed";
const char kReturnValue[] = "returnValue";
const char kKeyEvent[] = "keyEvent";
const char kMediaMetaData[] = "mediaMetaData";
const char kMediaMetaDataTitle[] = "title";
const char kMediaMetaDataArtist[] = "artist";
const char kMediaMetaDataAlbum[] = "album";
const char kMediaMetaDataTotalDuration[] = "totalDuration";
const char kMediaPlayStatus[] = "playStatus";
const char kMediaPlayStatusStopped[] = "PLAYSTATE_STOPPED";
const char kMediaPlayStatusPaused[] = "PLAYSTATE_PAUSED";
const char kMediaPlayStatusPlaying[] = "PLAYSTATE_PLAYING";
const char kMediaPlayStatusNone[] = "PLAYSTATE_NONE";
const char kMediaPlayPosition[] = "playPosition";
const char kPlayEvent[] = "play";
const char kPauseEvent[] = "pause";
const char kNextEvent[] = "next";
const char kPreviousEvent[] = "previous";
const char kRegisterMediaSession[] = "registerMediaSession";
const char kUnregisterMediaSession[] = "unregisterMediaSession";
const char kActivateMediaSession[] = "activateMediaSession";
const char kDeactivateMediaSession[] = "deactivateMediaSession";
const char kSetMediaMetaData[] = "setMediaMetaData";
const char kSetMediaPlayStatus[] = "setMediaPlayStatus";
const char kSetMediaPlayPosition[] = "setMediaPlayPosition";
} // namespace
#define BIND_TO_CURRENT_LOOP(function) \
(media::BindToCurrentLoop( \
base::BindRepeating(function, base::Unretained(this))))
MediaSessionObserverWebOS::MediaSessionObserverWebOS(MediaSessionImpl* session)
: media_session_(session) {
DCHECK(media_session_);
content::WebContents* web_contents =
static_cast<WebContentsImpl*>(session->web_contents());
DCHECK(web_contents);
blink::mojom::RendererPreferences* renderer_prefs =
web_contents->GetMutableRendererPrefs();
DCHECK(renderer_prefs);
luna_service_client_.reset(
new base::LunaServiceClient(renderer_prefs->application_id));
application_id_ = renderer_prefs->application_id + renderer_prefs->display_id;
VLOG(0) << __func__ << " this: [" << this << "]"
<< " Application id: " << application_id_;
session->AddObserver(observer_receiver_.BindNewPipeAndPassRemote());
}
MediaSessionObserverWebOS::~MediaSessionObserverWebOS() {
VLOG(0) << __func__ << " this: [" << this << "]";
UnregisterMediaSession();
}
void MediaSessionObserverWebOS::MediaSessionRequestChanged(
const base::Optional<base::UnguessableToken>& request_id) {
if (!session_id_.empty()) {
// Previous session is active. Deactivate it.
UnregisterMediaSession();
}
if (!request_id.has_value()) {
LOG(ERROR) << __func__ << " Session id is not received";
return;
}
if (!RegisterMediaSession(request_id->ToString())) {
LOG(ERROR) << __func__ << " Register session failed for "
<< request_id->ToString();
return;
}
if (!ActivateMediaSession(request_id->ToString())) {
LOG(ERROR) << __func__ << " Activate session failed for "
<< request_id->ToString();
return;
}
session_id_ = request_id->ToString();
}
void MediaSessionObserverWebOS::MediaSessionInfoChanged(
media_session::mojom::MediaSessionInfoPtr session_info) {
VLOG(1) << __func__ << " playback_state: " << session_info->playback_state;
if (playback_state_ == session_info->playback_state)
return;
SetPlaybackStatusInternal(session_info->playback_state);
}
void MediaSessionObserverWebOS::MediaSessionMetadataChanged(
const base::Optional<media_session::MediaMetadata>& metadata) {
VLOG(1) << __func__;
if (!metadata.has_value()) {
LOG(ERROR) << __func__ << " Metadata is not received";
return;
}
if (!metadata->title.empty())
SetMetadataPropertyInternal(kMediaMetaDataTitle, metadata->title);
if (!metadata->artist.empty())
SetMetadataPropertyInternal(kMediaMetaDataArtist, metadata->artist);
if (!metadata->album.empty())
SetMetadataPropertyInternal(kMediaMetaDataAlbum, metadata->album);
}
void MediaSessionObserverWebOS::MediaSessionPositionChanged(
const base::Optional<media_session::MediaPosition>& position) {
VLOG(3) << __func__;
if (!position.has_value()) {
LOG(ERROR) << __func__ << "media position value is not available.";
return;
}
SetMediaPositionInternal(position->GetPosition());
base::TimeDelta new_duration = position->duration();
if (duration_ == new_duration)
return;
duration_ = new_duration;
SetMetadataPropertyInternal(kMediaMetaDataTotalDuration,
base::NumberToString16(duration_.InSecondsF()));
}
bool MediaSessionObserverWebOS::RegisterMediaSession(
const std::string& session_id) {
if (session_id.empty()) {
LOG(ERROR) << __func__ << " Invalid session id";
return false;
}
base::DictionaryValue register_root;
register_root.SetKey(kMediaId, base::Value(session_id));
register_root.SetKey(kAppId, base::Value(application_id_));
register_root.SetKey(kSubscribe, base::Value(true));
std::string register_payload;
if (!base::JSONWriter::Write(register_root, ®ister_payload)) {
LOG(ERROR) << __func__ << " Failed to write registMediaSession payload";
return false;
}
VLOG(1) << __func__ << " payload: " << register_payload;
luna_service_client_->Subscribe(
base::LunaServiceClient::GetServiceURI(
base::LunaServiceClient::URIType::MEDIACONTROLLER,
kRegisterMediaSession),
register_payload, &subscribe_key_,
BIND_TO_CURRENT_LOOP(&MediaSessionObserverWebOS::HandleMediaKeyEvent));
registered_ = true;
return true;
}
void MediaSessionObserverWebOS::UnregisterMediaSession() {
if (!registered_) {
LOG(ERROR) << __func__ << " Session is already unregistered";
return;
}
if (session_id_.empty()) {
LOG(ERROR) << __func__ << " No registered session";
return;
}
if (playback_state_ != MediaPlaybackState::kStopped)
SetPlaybackStatusInternal(MediaPlaybackState::kStopped);
base::DictionaryValue unregister_root;
unregister_root.SetKey(kMediaId, base::Value(session_id_));
std::string unregister_payload;
if (!base::JSONWriter::Write(unregister_root, &unregister_payload)) {
LOG(ERROR) << __func__ << " Failed to write unregistMediaSession payload";
return;
}
VLOG(1) << __func__ << " payload: " << unregister_payload;
luna_service_client_->CallAsync(
base::LunaServiceClient::GetServiceURI(
base::LunaServiceClient::URIType::MEDIACONTROLLER,
kUnregisterMediaSession),
unregister_payload,
BIND_TO_CURRENT_LOOP(
&MediaSessionObserverWebOS::CheckReplyStatusMessage));
luna_service_client_->Unsubscribe(subscribe_key_);
registered_ = false;
session_id_ = std::string();
}
bool MediaSessionObserverWebOS::ActivateMediaSession(
const std::string& session_id) {
if (session_id.empty()) {
LOG(ERROR) << __func__ << " Invalid session id";
return false;
}
base::DictionaryValue activate_root;
activate_root.SetKey(kMediaId, base::Value(session_id));
std::string activate_payload;
if (!base::JSONWriter::Write(activate_root, &activate_payload)) {
LOG(ERROR) << __func__ << " Failed to write activateMediaSession payload";
return false;
}
VLOG(1) << __func__ << " payload: " << activate_payload;
luna_service_client_->CallAsync(
base::LunaServiceClient::GetServiceURI(
base::LunaServiceClient::URIType::MEDIACONTROLLER,
kActivateMediaSession),
activate_payload,
BIND_TO_CURRENT_LOOP(
&MediaSessionObserverWebOS::CheckReplyStatusMessage));
return true;
}
void MediaSessionObserverWebOS::DeactivateMediaSession() {
if (session_id_.empty()) {
LOG(ERROR) << __func__ << " No active session";
return;
}
base::DictionaryValue deactivate_root;
deactivate_root.SetKey(kMediaId, base::Value(session_id_));
std::string deactivate_payload;
if (!base::JSONWriter::Write(deactivate_root, &deactivate_payload)) {
LOG(ERROR) << __func__ << " Failed to write deactivateMediaSession payload";
return;
}
VLOG(1) << __func__ << " payload: " << deactivate_payload;
luna_service_client_->CallAsync(
base::LunaServiceClient::GetServiceURI(
base::LunaServiceClient::URIType::MEDIACONTROLLER,
kDeactivateMediaSession),
deactivate_payload,
BIND_TO_CURRENT_LOOP(
&MediaSessionObserverWebOS::CheckReplyStatusMessage));
}
void MediaSessionObserverWebOS::SetPlaybackStatusInternal(
media_session::mojom::MediaPlaybackState playback_state) {
if (session_id_.empty()) {
LOG(ERROR) << __func__ << " No active session";
return;
}
static std::map<MediaPlaybackState, std::string> kPlaybackStateMap = {
{MediaPlaybackState::kPaused, kMediaPlayStatusPaused},
{MediaPlaybackState::kPlaying, kMediaPlayStatusPlaying},
{MediaPlaybackState::kStopped, kMediaPlayStatusStopped}};
auto get_playback_status = [&](MediaPlaybackState status) {
auto it = kPlaybackStateMap.find(status);
if (it != kPlaybackStateMap.end())
return it->second;
return std::string(kMediaPlayStatusNone);
};
playback_state_ = playback_state;
std::string play_status = get_playback_status(playback_state_);
base::DictionaryValue playstatus_root;
playstatus_root.SetKey(kMediaId, base::Value(session_id_));
playstatus_root.SetKey(kMediaPlayStatus, base::Value(play_status));
std::string playstatus_payload;
if (!base::JSONWriter::Write(playstatus_root, &playstatus_payload)) {
LOG(ERROR) << __func__ << " Failed to write setMediaPlayStatus payload";
return;
}
VLOG(1) << __func__ << " payload: " << playstatus_payload;
luna_service_client_->CallAsync(
base::LunaServiceClient::GetServiceURI(
base::LunaServiceClient::URIType::MEDIACONTROLLER,
kSetMediaPlayStatus),
playstatus_payload,
BIND_TO_CURRENT_LOOP(
&MediaSessionObserverWebOS::CheckReplyStatusMessage));
}
void MediaSessionObserverWebOS::SetMetadataPropertyInternal(
const std::string& property,
const base::string16& value) {
base::DictionaryValue metadata;
metadata.SetStringKey(property, base::UTF16ToUTF8(value));
base::DictionaryValue metadata_root;
metadata_root.SetStringKey(kMediaId, session_id_);
metadata_root.SetKey(kMediaMetaData, std::move(metadata));
std::string metadata_payload;
if (!base::JSONWriter::Write(metadata_root, &metadata_payload)) {
LOG(ERROR) << __func__ << " Failed to write setMediaMetaData payload";
return;
}
VLOG(1) << __func__ << " payload: " << metadata_payload;
luna_service_client_->CallAsync(
base::LunaServiceClient::GetServiceURI(
base::LunaServiceClient::URIType::MEDIACONTROLLER, kSetMediaMetaData),
metadata_payload,
BIND_TO_CURRENT_LOOP(
&MediaSessionObserverWebOS::CheckReplyStatusMessage));
}
void MediaSessionObserverWebOS::SetMediaPositionInternal(
const base::TimeDelta& position) {
if (session_id_.empty()) {
LOG(ERROR) << __func__ << " No active session.";
return;
}
base::DictionaryValue playposition_root;
playposition_root.SetStringKey(kMediaId, session_id_);
playposition_root.SetStringKey(kMediaPlayPosition,
std::to_string(position.InSecondsF()));
std::string playposition_payload;
if (!base::JSONWriter::Write(playposition_root, &playposition_payload)) {
LOG(ERROR) << __func__ << " Failed to write Play Position payload";
return;
}
VLOG(1) << __func__ << " playposition_payload: " << playposition_payload;
luna_service_client_->CallAsync(
base::LunaServiceClient::GetServiceURI(
base::LunaServiceClient::URIType::MEDIACONTROLLER,
kSetMediaPlayPosition),
playposition_payload,
BIND_TO_CURRENT_LOOP(
&MediaSessionObserverWebOS::CheckReplyStatusMessage));
}
void MediaSessionObserverWebOS::HandleMediaKeyEvent(
const std::string& payload) {
VLOG(1) << __func__ << " payload: " << payload;
base::Optional<base::Value> value = base::JSONReader::Read(payload);
if (!value) {
return;
}
auto response = base::DictionaryValue::From(
base::Value::ToUniquePtrValue(std::move(*value)));
auto return_value = response->FindBoolPath(kReturnValue);
auto subscribed = response->FindBoolPath(kSubscribed);
if (!return_value || !*return_value || !subscribed || !*subscribed) {
LOG(ERROR) << __func__
<< " Failed to Register with MCS, session_id: " << session_id_;
return;
}
const std::string* session_id = response->FindStringPath(kMediaId);
if (!session_id || session_id->empty()) {
LOG(WARNING) << __func__ << " Session ID is not sent";
return;
}
if (session_id_ != *session_id) {
VLOG(1) << __func__ << " Event recieved for other session. Ignore.";
return;
}
const std::string* key_event = response->FindStringPath(kKeyEvent);
if (key_event) {
HandleMediaKeyEventInternal(key_event);
} else {
VLOG(0) << __func__ << " Successfully Registered with MCS, session_id: "
<< session_id_;
}
}
void MediaSessionObserverWebOS::CheckReplyStatusMessage(
const std::string& message) {
VLOG(1) << __func__ << " message: " << message;
base::Optional<base::Value> value = base::JSONReader::Read(message);
if (!value) {
return;
}
auto response = base::DictionaryValue::From(
base::Value::ToUniquePtrValue(std::move(*value)));
auto return_value = response->FindBoolPath(kReturnValue);
if (!return_value || !*return_value) {
LOG(ERROR) << __func__ << " MCS call Failed. message: " << message
<< " session_id: " << session_id_;
return;
}
VLOG(1) << __func__ << " MCS call Success. message: " << message
<< " session_id: " << session_id_;
}
void MediaSessionObserverWebOS::HandleMediaKeyEventInternal(
const std::string* key_event) {
VLOG(0) << __func__ << " key_event: " << *key_event;
static std::map<std::string, MediaKeyEvent> kEventKeyMap = {
{kPlayEvent, MediaSessionObserverWebOS::MediaKeyEvent::kPlay},
{kPauseEvent, MediaSessionObserverWebOS::MediaKeyEvent::kPause},
{kNextEvent, MediaSessionObserverWebOS::MediaKeyEvent::kNext},
{kPreviousEvent, MediaSessionObserverWebOS::MediaKeyEvent::kPrevious}};
auto get_event_type = [&](const std::string* key) {
std::map<std::string, MediaKeyEvent>::iterator it;
it = kEventKeyMap.find(*key);
if (it != kEventKeyMap.end())
return it->second;
return MediaSessionObserverWebOS::MediaKeyEvent::kUnsupported;
};
if (media_session_) {
MediaKeyEvent event_type = get_event_type(key_event);
switch (event_type) {
case MediaSessionObserverWebOS::MediaKeyEvent::kPlay:
media_session_->Resume(MediaSession::SuspendType::kUI);
break;
case MediaSessionObserverWebOS::MediaKeyEvent::kPause:
media_session_->Suspend(MediaSession::SuspendType::kUI);
break;
case MediaSessionObserverWebOS::MediaKeyEvent::kNext:
media_session_->NextTrack();
break;
case MediaSessionObserverWebOS::MediaKeyEvent::kPrevious:
media_session_->PreviousTrack();
break;
default:
NOTREACHED() << " key_event: " << key_event << " Not Handled !!!";
break;
}
}
}
} // namespace content
| [
"donghyun11.kim@lge.com"
] | donghyun11.kim@lge.com |
b04ca8e981c1a77eabea4064e1a7171a2a98f4b8 | 1736eaafb1ac4f9afd24a34ea8460823fcc514f1 | /sak/project_outliner_items.hpp | 040949c12eca9966f71717756c1cbc4b3f722b7a | [] | no_license | Elbagast/TF2_Mod_Builder | 5bdc805af51e8d963e2081aa813e70eb96b36063 | 6b8794f298da3a050111452c859e5bf87ef6a792 | refs/heads/master | 2021-01-22T23:54:14.502305 | 2018-02-01T20:59:29 | 2018-02-01T20:59:29 | 32,723,048 | 0 | 1 | null | 2018-02-01T20:59:30 | 2015-03-23T09:41:00 | C++ | UTF-8 | C++ | false | false | 5,301 | hpp | #ifndef SAK_PROJECT_OUTLINER_ITEMS_HPP
#define SAK_PROJECT_OUTLINER_ITEMS_HPP
#ifndef SAK_PROJECT_OUTLINER_ITEMS_FWD_HPP
#include "project_outliner_items_fwd.hpp"
#endif
#ifndef SAK_PROJECT_INTERFACE_FWD_HPP
#include "project_interface_fwd.hpp"
#endif
#ifndef SAK_ABSTRACT_OUTLINER_TRUNK_ITEM_HPP
#include "abstract_outliner_trunk_item.hpp"
#endif
#ifndef SAK_ABSTRACT_OUTLINER_MULTITRUNK_ITEM_HPP
#include "abstract_outliner_multitrunk_item.hpp"
#endif
// Need these names for the template definitions.
#ifndef SAK_SECTION_OUTLINER_ITEMS_FWD_HPP
#include "section_outliner_items_fwd.hpp"
#endif
namespace sak
{
//---------------------------------------------------------------------------
// sak::Project_Outliner_Root_Item
//---------------------------------------------------------------------------
// Outliner root item for a single project. This item is invisible and
// defines the default context menu.
// For a single instance of the template declaration.
namespace internal
{
using Project_Outliner_Root_Item_Base =
Abstract_Outliner_Root_Trunk_Item<Project_Outliner_Project_Item>;
}
class Project_Outliner_Root_Item :
public internal::Project_Outliner_Root_Item_Base
{
public:
// Special 6
//============================================================
explicit Project_Outliner_Root_Item(Project_Interface* a_project);
~Project_Outliner_Root_Item() override;
// Virtual Interface
//============================================================
// Other
//----------------------------------------
// Make and act on the context menu for this item. Need the model pointer here so that
// actions can call functions in it for editing. Position is the position in terms of
// the widget rather than the window. Use a_view->viewport()->mapToGlobal(a_position)
// to get the position relative to the window for a properly placed menu.
void do_context_menu(QAbstractItemView* a_view, Outliner_Model* a_model, QPoint const& a_position) override final;
// Do whatever we want when an item has been double clicked on.
void do_double_clicked(QAbstractItemView* a_view, Outliner_Model* a_model) override final;
// Additional Interface
//============================================================
Project_Interface* get_project();
Project_Interface const* cget_project() const;
Project_Outliner_Project_Item* get_project_item() const;
File_Outliner_Header_Item* file_header_item() const;
Texture_Outliner_Header_Item* texture_header_item() const;
private:
Project_Interface* m_project;
};
//------------------------------------------------------------------------------------------------------------------------------------------------------
//---------------------------------------------------------------------------
// sak::Project_Outliner_Project_Item
//---------------------------------------------------------------------------
// Outliner item that represents a Project. It's data is the Project's name.
// It's children are the section headers which may or may not be present.
// For a single instance of the template declaration.
namespace internal
{
using Project_Outliner_Project_Item_Base =
Abstract_Outliner_Readonly_Multitrunk_Item<Project_Outliner_Root_Item, File_Outliner_Header_Item, Texture_Outliner_Header_Item>;
}
class Project_Outliner_Project_Item :
public internal::Project_Outliner_Project_Item_Base
{
public:
// Special 6
//============================================================
explicit Project_Outliner_Project_Item(Parent_Item_Type* a_parent);
~Project_Outliner_Project_Item() override;
// Virtual Interface
//============================================================
// Underlying data access
//----------------------------------------
// Get the item data for a given column and role
QVariant get_data(int a_role = Qt::DisplayRole) const override final;
// Other
//----------------------------------------
// Get the flags for this item
Qt::ItemFlags get_flags() const override final;
// Make and act on the context menu for this item. Need the model pointer here so that
// actions can call functions in it for editing. Position is the position in terms of
// the widget rather than the window. Use a_view->viewport()->mapToGlobal(a_position)
// to get the position relative to the window for a properly placed menu.
void do_context_menu(QAbstractItemView* a_view, Outliner_Model* a_model, QPoint const& a_position) override final;
// Do whatever we want when an item has been double clicked on.
void do_double_clicked(QAbstractItemView* a_view, Outliner_Model* a_model) override final;
// Additional Interface
//============================================================
Project_Interface* get_project();
Project_Interface const* cget_project() const;
File_Outliner_Header_Item* file_header_item() const;
void initialise_files(bool a_read);
void close_files();
Texture_Outliner_Header_Item* texture_header_item() const;
void initialise_textures(bool a_read);
void close_textures();
};
}
#endif // SAK_PROJECT_OUTLINER_ITEMS_HPP
| [
"elbagast@gmail.com"
] | elbagast@gmail.com |
e530655f3032d2aa1a542957f03717337ff22154 | 7fd5e6156d6a42b305809f474659f641450cea81 | /boost/signals/signal0.hpp | 9dcc219780a635b17990ed74320c9afa75227e70 | [] | no_license | imos/icfpc2015 | 5509b6cfc060108c9e5df8093c5bc5421c8480ea | e998055c0456c258aa86e8379180fad153878769 | refs/heads/master | 2020-04-11T04:30:08.777739 | 2015-08-10T11:53:12 | 2015-08-10T11:53:12 | 40,011,767 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,149 | hpp | // Boost.Signals library
// Copyright Douglas Gregor 2001-2003. Use, modification and
// distribution is subject to 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)
// For more information, see http://www.boost.org
#ifndef BOOST_SIGNALS_SIGNAL0_HEADER
#define BOOST_SIGNALS_SIGNAL0_HEADER
#define BOOST_SIGNALS_NUM_ARGS 0
#define BOOST_SIGNALS_TEMPLATE_PARMS
#define BOOST_SIGNALS_TEMPLATE_ARGS
#define BOOST_SIGNALS_PARMS
#define BOOST_SIGNALS_ARGS
#define BOOST_SIGNALS_BOUND_ARGS
#define BOOST_SIGNALS_ARGS_AS_MEMBERS
#define BOOST_SIGNALS_COPY_PARMS
#define BOOST_SIGNALS_INIT_ARGS
#define BOOST_SIGNALS_ARG_TYPES
#include "boost/signals/signal_template.hpp"
#undef BOOST_SIGNALS_ARG_TYPES
#undef BOOST_SIGNALS_INIT_ARGS
#undef BOOST_SIGNALS_COPY_PARMS
#undef BOOST_SIGNALS_ARGS_AS_MEMBERS
#undef BOOST_SIGNALS_BOUND_ARGS
#undef BOOST_SIGNALS_ARGS
#undef BOOST_SIGNALS_PARMS
#undef BOOST_SIGNALS_TEMPLATE_ARGS
#undef BOOST_SIGNALS_TEMPLATE_PARMS
#undef BOOST_SIGNALS_NUM_ARGS
#endif // BOOST_SIGNALS_SIGNAL0_HEADER
| [
"git@imoz.jp"
] | git@imoz.jp |
55a1ac0d6c4a510ca74555972f887e1fe3f26658 | 786de89be635eb21295070a6a3452f3a7fe6712c | /PSCalib/tags/V00-01-18/include/PnccdCalibPars.h | 719109140ee552052a5ced6b720debe902087008 | [] | no_license | connectthefuture/psdmrepo | 85267cfe8d54564f99e17035efe931077c8f7a37 | f32870a987a7493e7bf0f0a5c1712a5a030ef199 | refs/heads/master | 2021-01-13T03:26:35.494026 | 2015-09-03T22:22:11 | 2015-09-03T22:22:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,772 | h | #ifndef PSCALIB_PNCCDCALIBPARS_H
#define PSCALIB_PNCCDCALIBPARS_H
//--------------------------------------------------------------------------
// File and Version Information:
// $Id$
//
// Description:
// Class PnccdCalibPars.
//
//------------------------------------------------------------------------
//-----------------
// C/C++ Headers --
//-----------------
#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <fstream> // open, close etc.
//----------------------
// Base Class Headers --
//----------------------
#include "ndarray/ndarray.h"
#include "PSCalib/CalibPars.h"
//-------------------------------
// Collaborating Class Headers --
//-------------------------------
#include "psddl_psana/pnccd.ddl.h"
#include "pdsdata/xtc/Src.hh"
#include "pdscalibdata/PnccdBaseV1.h"
#include "pdscalibdata/PnccdPedestalsV1.h"
#include "pdscalibdata/PnccdCommonModeV1.h"
#include "pdscalibdata/PnccdPixelStatusV1.h"
#include "pdscalibdata/PnccdPixelGainV1.h"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
// ---------------------
// -- Class Interface --
// ---------------------
namespace PSCalib {
/// @addtogroup PSCalib PSCalib
/**
* @ingroup PSCalib
*
* @brief PnccdCalibPars class loads/holds/provides access to the pnCCD
* geometry calibration parameters.
*
* This software was developed for the LCLS project. If you use all or
* part of it, please give an appropriate acknowledgment.
*
* @see CalibPars, CalibParsStore
*
* @version $Id$
*
* @author Mikhail S. Dubrovin
*
*
*
*
* @anchor interface
* @par<interface> Interface Description
*
* @li Include and typedef
* @code
* #include "PSCalib/PnccdCalibPars.h"
* typedef PSCalib::PnccdCalibPars CALIB;
* @endcode
*
* @li Instatiation
* \n
* For default constructor:
* @code
* CALIB *calibpars = new CALIB();
* @endcode
* \n
* For regular constructor:
* @code
* const std::string calibDir = "/reg/d/psdm/AMO/amoa1214/calib";
* const std::string groupName = "PNCCD::CalibV1";
* const std::string source = "Camp.0:pnCCD.1";
* unsigned long runNumber = 10;
* Pds::Src src; env.get(source, key, &src);
* CALIB *calibpars = new CALIB(calibDir, groupName, src, runNumber);
* @endcode
* \n
* For explicit constructor (depricated):
* @code
* const std::string calibDir = "/reg/d/psdm/AMO/amoa1214/calib";
* const std::string groupName = "PNCCD::CalibV1";
* const std::string source = "Camp.0:pnCCD.1";
* unsigned long runNumber = 10;
* CALIB *calibpars = new CALIB(calibDir, groupName, source, runNumber);
* @endcode
* \n
* or for the same list of parameters using polymorphism:
* @code
* PSCalib::CalibPars *calibpars = new CALIB(calibDir, groupName, source, runNumber);
* @endcode
* In this case all virtual methods defined in the base class PSCalib::CalibPars will be accessible through the calibpars pointer.
*
*
* @li Printing methods
* @code
* calibpars -> printInputPars();
* calibpars -> printCalibPars();
* calibpars -> printCalibParsStatus();
* @endcode
*
* @li Access methods
* @code
* const size_t ndim = calibpars -> ndim();
* const size_t size = calibpars -> size();
* const unsigned* p_shape = calibpars -> shape();
* const CalibPars::pedestals_t* p_pedestals = calibpars -> pedestals()
* const CalibPars::pixel_status_t* p_pixel_stat = calibpars -> pixel_status()
* const CalibPars::common_mode_t* p_common_mode = calibpars -> common_mode()
* const CalibPars::pixel_gain_t* p_pixel_gain = calibpars -> pixel_gain()
* ... etc. for all other access methods
* @endcode
*
* @see CalibFileFinder
*/
//----------------
class PnccdCalibPars: public PSCalib::CalibPars {
public:
/// Default and test constructor
PnccdCalibPars ( bool isTestMode = false ) ;
/**
* @brief DEPRICATED constructor, which use string& source
*
* @param[in] calibDir Calibration directory for current experiment.
* @param[in] typeGroupName Data type and group names.
* @param[in] source The name of the data source.
* @param[in] runNumber Run number to search the valid file name.
* @param[in] print_bits =0-print no messages; +1-input parameters, +2-print msges from PSCalib::CalibFileFinder, +4-use default, +8-missing type
*/
PnccdCalibPars ( const std::string& calibDir, // /reg/d/psdm/AMO/amoa1214/calib
const std::string& typeGroupName, // PNCCD::CalibV1
const std::string& source, // Camp.0:pnCCD.0
const unsigned long& runNumber, // 7
unsigned print_bits=255 );
/**
* @brief Regular constructor, which use Pds::Src& src
*
* @param[in] calibDir Calibration directory for current experiment.
* @param[in] typeGroupName Data type and group names.
* @param[in] src The data source object, for example Pds::Src m_src; defined in the env.get(...,&m_src)
* @param[in] runNumber Run number to search the valid file name.
* @param[in] print_bits =0-print no messages; +1-input parameters, +2-print msges from PSCalib::CalibFileFinder, +4-use default, +8-missing type
*/
PnccdCalibPars ( const std::string& calibDir, // /reg/d/psdm/AMO/amoa1214/calib
const std::string& typeGroupName, // PNCCD::CalibV1
const Pds::Src& src, // Pds::Src m_src; <- is defined in env.get(...,&m_src)
const unsigned long& runNumber, // 7
unsigned print_bits=255 ) ;
/// Destructor
virtual ~PnccdCalibPars () ;
//size_t getNRows (){ return m_nrows; };
//size_t getNCols (){ return m_ncols; };
/// Makes member data vector with all supported calibration types such as center, tilt, ...
void fillCalibNameVector ();
/// Define the path to the calibration file based on input parameters
void getCalibFileName ();
/// Load all known calibration parameters
void loadCalibPars ();
/// Fill calibration parameters from vector
void fillCalibParsV1 ();
/// Fill default calibration parameters
void fillDefaultCalibParsV1();
/// Generate error message in the log and abort
void fatalMissingFileName ();
/// Generate warning message in the log
void msgUseDefault ();
/// Prints calibration parameters
void printCalibPars (); // declared as pure virtual in superclass
/// Prints input parameters of the object
void printInputPars ();
/// Returns status of the calibration constants, 0-default, 1-loaded from file @param[in] type - calibration type string-name, for example "center" or "tilt"
int getCalibTypeStatus(const std::string& type) { return m_calibtype_status[type]; };
/// INTERFACE METHODS
/// Prints calibration parameters status
virtual void printCalibParsStatus ();
/// Returns ndarray of pnCCD pedestals
//pdscalibdata::PnccdPedestalsV1::pars_t
//ndarray<CalibPars::pedestals_t, 3> pedestals(){ return m_pedestals -> pedestals(); };
virtual const size_t ndim() { return pdscalibdata::PnccdBaseV1::Ndim; };
virtual const size_t size() { return pdscalibdata::PnccdBaseV1::Size; };
virtual const unsigned* shape(){ return m_pedestals -> pedestals().shape(); };
virtual const CalibPars::pedestals_t* pedestals(){ return m_pedestals -> pedestals().data(); };
/// Returns ndarray of pnCCD pixel status
//pdscalibdata::PnccdPixelStatusV1::pars_t
//ndarray<CalibPars::pixel_status_t, 3> pixel_status(){ return m_pixel_status -> pixel_status(); };
virtual const CalibPars::pixel_status_t* pixel_status(){ return m_pixel_status -> pixel_status().data(); };
/// Returns ndarray of pnCCD common mode
//ndarray<CalibPars::common_mode_t, 1> common_mode(){ return m_common_mode -> common_mode(); };
virtual const CalibPars::common_mode_t* common_mode(){ return m_common_mode -> common_mode().data(); };
/// Returns ndarray of pnCCD pixel gain
//ndarray<CalibPars::pixel_gain_t, 3> pixel_gain(){ return m_pixel_gain -> pixel_gain(); };
virtual const CalibPars::pixel_gain_t* pixel_gain(){ return m_pixel_gain -> pixel_gain().data(); };
private:
/// Copy constructor is disabled by default
PnccdCalibPars ( const PnccdCalibPars& ) ;
/// Assignment is disabled by default
//PnccdCalibPars operator = ( const PnccdCalibPars& ) ;
//------------------
// Static Members --
//------------------
// Assuming path: /reg/d/psdm/AMO/amoa1214/calib/PNCCD::CalibV1/Camp.0:pnCCD.1/pedestals/1-end.data
std::string m_calibdir; // /reg/d/psdm/AMO/amoa1214/calib
std::string m_calibfilename; // 1-end.data
// Data members for regular constructor
std::string m_calibDir;
std::string m_typeGroupName;
std::string m_source;
Pds::Src m_src;
std::string m_dataType;
unsigned long m_runNumber;
unsigned m_print_bits;
std::vector<std::string> v_calibname; // center, tilt, ...
std::map<std::string, int> m_calibtype_status; // =0-default, =1-from file
std::string m_cur_calibname;
std::string m_fname;
bool m_isTestMode;
//size_t m_nrows;
//size_t m_ncols;
std::ifstream m_file;
pdscalibdata::PnccdPedestalsV1 *m_pedestals;
pdscalibdata::PnccdPixelGainV1 *m_pixel_gain;
pdscalibdata::PnccdCommonModeV1 *m_common_mode;
pdscalibdata::PnccdPixelStatusV1 *m_pixel_status;
};
} // namespace PSCalib
#endif // PSCALIB_PNCCDCALIBPARS_H
| [
"dubrovin@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7"
] | dubrovin@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7 |
497eb9879cfeaf960277a2fefe1f5956f025fe7b | 9d57c253f8a503170a0e9ac5d2a48b646048fb71 | /D_Polycarp_and_Div_3.cpp | cc9556782ec1f4958fa32e49e017a48015461fdf | [] | no_license | tarundecipher/CompetitiveProgramming | 4f2dfd3f77c2a1de0b56964650d5cad05e4258ab | 466bdc6333ca2f14b3a8aef14063a1278523bb9c | refs/heads/master | 2023-04-04T07:50:49.626690 | 2021-04-18T08:13:16 | 2021-04-18T08:13:16 | 359,052,986 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 693 | cpp | #include <bits/stdc++.h>
#define ll long long int
using namespace std;
map<pair<int,int>,int> memo;
int clc(string &s,int i,int j,int n){
if(j>=n || i>=n){
return 0;
}
if(memo[{i,j}]){
return memo[{i,j}];
}
int temp=0;
for(int k=i;k<=j;k++){
temp+=s[k]-'0';
}
int a1=0,a2=0,a3=0;
if(temp%3==0){
a1 = 1 + clc(s,j+1,j+1,n);
}
else{
a2 = clc(s,i,j+1,n);
if(i+1<=j){
a3= clc(s,i+1,j,n);
}
}
memo[{i,j}]= max(a1,max(a2,a3));
return max(a1,max(a2,a3));
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
string s; cin>>s;
cout<<clc(s,0,0,s.length());
}
| [
"tarunyadav83333@gmail.com"
] | tarunyadav83333@gmail.com |
c933efbf8e94d24bd8b6ecfcd57cc8421c3a1cd4 | f00a1a1ace8a624c371b2fa1391e00f297fccf78 | /cpp_lib/include/QTheme3DPrivate.h | df95ee3de58a480bfe67e0768fda50cdfb7db602 | [] | no_license | x-bruce/QtStackedBars3D | f02990261d3efa2481b94edd5b32588f538563e8 | fccdf00f7101447567214747d2c552cac6f880b9 | refs/heads/master | 2022-04-20T22:18:01.338399 | 2020-04-17T11:09:06 | 2020-04-17T11:09:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,102 | h | /****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Data Visualization module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
//
// W A R N I N G
// -------------
//
// This file is not part of the QtDataVisualization API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
#ifndef Q_THEME_3D_PRIVATE_H
#define Q_THEME_3D_PRIVATE_H
#include "QVisualizationGlobals3D.h"
#include "QTheme3D.h"
namespace QtStackedBar3DVis
{
struct Q3DThemeDirtyBitField {
bool baseColorDirty : 1;
bool backgroundColorDirty : 1;
bool windowColorDirty : 1;
bool labelTextColorDirty : 1;
bool labelBackgroundColorDirty : 1;
bool gridLineColorDirty : 1;
bool singleHighlightColorDirty : 1;
bool multiHighlightColorDirty : 1;
bool lightColorDirty : 1;
bool baseGradientDirty : 1;
bool singleHighlightGradientDirty : 1;
bool multiHighlightGradientDirty : 1;
bool lightStrengthDirty : 1;
bool ambientLightStrengthDirty : 1;
bool highlightLightStrengthDirty : 1;
bool labelBorderEnabledDirty : 1;
bool colorStyleDirty : 1;
bool fontDirty : 1;
bool backgroundEnabledDirty : 1;
bool gridEnabledDirty : 1;
bool labelBackgroundEnabledDirty : 1;
bool themeIdDirty : 1;
Q3DThemeDirtyBitField()
: baseColorDirty(false),
backgroundColorDirty(false),
windowColorDirty(false),
labelTextColorDirty(false),
labelBackgroundColorDirty(false),
gridLineColorDirty(false),
singleHighlightColorDirty(false),
multiHighlightColorDirty(false),
lightColorDirty(false),
baseGradientDirty(false),
singleHighlightGradientDirty(false),
multiHighlightGradientDirty(false),
lightStrengthDirty(false),
ambientLightStrengthDirty(false),
highlightLightStrengthDirty(false),
labelBorderEnabledDirty(false),
colorStyleDirty(false),
fontDirty(false),
backgroundEnabledDirty(false),
gridEnabledDirty(false),
labelBackgroundEnabledDirty(false),
themeIdDirty(false)
{
}
};
class QTheme3DPrivate : public QObject
{
Q_OBJECT
public:
QTheme3DPrivate(QTheme3D *q);
virtual ~QTheme3DPrivate();
void resetDirtyBits();
bool sync(QTheme3DPrivate &other);
inline bool isDefaultTheme() { return m_isDefaultTheme; }
inline void setDefaultTheme(bool isDefault) { m_isDefaultTheme = isDefault; }
// If m_forcePredefinedType is true, it means we should forcibly update all properties
// of the theme to those of the predefined theme, when setting the theme type. Otherwise
// we only change the properties that haven't been explicitly changed since last render cycle.
// Defaults to true, and is only ever set to false by DeclarativeTheme3D to enable using
// predefined themes as base for custom themes, since the order of initial property sets cannot
// be easily controlled in QML.
inline bool isForcePredefinedType() { return m_forcePredefinedType; }
inline void setForcePredefinedType(bool enable) { m_forcePredefinedType = enable; }
Q_SIGNALS:
void needRender();
public:
QTheme3D::Theme m_themeId;
Q3DThemeDirtyBitField m_dirtyBits;
QList<QColor> m_baseColors;
QColor m_backgroundColor;
QColor m_windowColor;
QColor m_textColor;
QColor m_textBackgroundColor;
QColor m_gridLineColor;
QColor m_singleHighlightColor;
QColor m_multiHighlightColor;
QColor m_lightColor;
QList<QLinearGradient> m_baseGradients;
QLinearGradient m_singleHighlightGradient;
QLinearGradient m_multiHighlightGradient;
float m_lightStrength;
float m_ambientLightStrength;
float m_highlightLightStrength;
bool m_labelBorders;
QTheme3D::ColorStyle m_colorStyle;
QFont m_font;
bool m_backgoundEnabled;
bool m_gridEnabled;
bool m_labelBackground;
bool m_isDefaultTheme;
bool m_forcePredefinedType;
protected:
QTheme3D *q_ptr;
};
}
#endif
| [
"aichele@zykl.io"
] | aichele@zykl.io |
9f2f0ab0614ba6c340593b03c5b558b865ce46f4 | ac77b6f74b8746bd2089447e4cd995725b0f9426 | /DirectX_Engine/FBX_Animator.h | 597f93bc9d574cdce848bfd532153a02c1ee4c33 | [] | no_license | SimoHayha/LevelEditor | de0f5c30beb011ec892b9796a11c068e570f47be | 571df2aef278573f25dc37d369dc913d20bfb2b2 | refs/heads/master | 2021-01-20T09:32:30.351900 | 2014-06-05T19:05:02 | 2014-06-05T19:05:02 | 20,537,406 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,301 | h | #pragma once
#include <fbxsdk.h>
#include <vector>
#include "FBX_Mesh.h"
namespace id
{
namespace FBX
{
class Animator
{
public:
Animator(void);
~Animator(void);
void setEvaluator(FbxScene* scene);
void startTime();
FbxAnimEvaluator* getEvaluator();
FbxTime& getTime();
FbxTime getTotalTime();
unsigned int& getCurrentAnim();
bool addStack(FbxAnimStack* stack);
void startStack(unsigned int i);
bool incDt(float dt);
bool computeDeformations(id::FBX::Mesh& mesh, FbxVector4* newVertices);
void getGlobalMatrix(FbxAMatrix& matrix, FbxNode* node);
void getLocalMatrix(FbxAMatrix& matrix, FbxNode* node);
bool initAll(FbxScene* scene);
void setCurrentAnimation(int animation);
void setCurrentAnimationCurrentTime(double d);
bool isLoop() const;
void setLoop(bool);
void next();
void setSpeed(float);
float getSpeed() const;
size_t getNumAnim() const;
FbxArray<FbxString *> const & getAnimNames() const;
private:
std::vector<FbxAnimStack*> animStack;
FbxArray<FbxString *> animStackName;
FbxAnimEvaluator* evaluator;
FbxTime time;
unsigned int currentAnim;
size_t numAnim;
bool loop;
float speed;
};
}
}
| [
"delporte.valentin@gmail.com"
] | delporte.valentin@gmail.com |
37442d2dfe5472abd9b9c7472843d8e2df733f61 | 5427ce9bcb0d6e583456645424fb7a53a306bc43 | /lib/SPIRVProducerPass.cpp | dde2794ba9ad22024898df61e50b7591aff103cd | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | robertfoss/clspv | 2b231dbb5443023f529e0a66521c835ebeb9158b | 3967210de9e51db49ef4c1cf69923013f29646be | refs/heads/master | 2021-07-07T04:44:53.958895 | 2017-09-29T13:33:13 | 2017-10-05T13:29:11 | 105,930,410 | 0 | 0 | null | 2017-10-05T19:16:59 | 2017-10-05T19:16:59 | null | UTF-8 | C++ | false | false | 212,464 | cpp | // Copyright 2017 The Clspv Authors. 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.
#ifdef _MSC_VER
#pragma warning(push, 0)
#endif
#include <cassert>
#include <clspv/Passes.h>
#include <llvm/ADT/StringSwitch.h>
#include <llvm/ADT/UniqueVector.h>
#include <llvm/Analysis/LoopInfo.h>
#include <llvm/IR/Constants.h>
#include <llvm/IR/Dominators.h>
#include <llvm/IR/Instructions.h>
#include <llvm/IR/Metadata.h>
#include <llvm/IR/Module.h>
#include <llvm/Pass.h>
#include <llvm/Support/CommandLine.h>
#include <llvm/Support/raw_ostream.h>
#include <llvm/Transforms/Utils/Cloning.h>
#include <spirv/1.0/spirv.hpp>
#include <clspv/AddressSpace.h>
#include <clspv/spirv_c_strings.hpp>
#include <clspv/spirv_glsl.hpp>
#include <list>
#include <iomanip>
#include <sstream>
#include <utility>
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
using namespace llvm;
using namespace clspv;
using namespace mdconst;
namespace {
// By default, reuse the same descriptor set number for all arguments.
// To turn that off, use -distinct-kernel-descriptor-sets
llvm::cl::opt<bool> distinct_kernel_descriptor_sets(
"distinct-kernel-descriptor-sets", llvm::cl::init(false),
llvm::cl::desc(
"Each kernel uses its own descriptor set for its arguments"));
enum SPIRVOperandType {
NUMBERID,
LITERAL_INTEGER,
LITERAL_STRING,
LITERAL_FLOAT
};
struct SPIRVOperand {
explicit SPIRVOperand(SPIRVOperandType Ty, uint32_t Num)
: Type(Ty), LiteralNum(1, Num) {}
explicit SPIRVOperand(SPIRVOperandType Ty, const char *Str)
: Type(Ty), LiteralStr(Str) {}
explicit SPIRVOperand(SPIRVOperandType Ty, StringRef Str)
: Type(Ty), LiteralStr(Str) {}
explicit SPIRVOperand(SPIRVOperandType Ty, ArrayRef<uint32_t> NumVec)
: Type(Ty), LiteralNum(NumVec.begin(), NumVec.end()) {}
SPIRVOperandType getType() { return Type; };
uint32_t getNumID() { return LiteralNum[0]; };
std::string getLiteralStr() { return LiteralStr; };
ArrayRef<uint32_t> getLiteralNum() { return LiteralNum; };
private:
SPIRVOperandType Type;
std::string LiteralStr;
SmallVector<uint32_t, 4> LiteralNum;
};
struct SPIRVInstruction {
explicit SPIRVInstruction(uint16_t WCount, spv::Op Opc, uint32_t ResID,
ArrayRef<SPIRVOperand *> Ops)
: WordCount(WCount), Opcode(static_cast<uint16_t>(Opc)), ResultID(ResID),
Operands(Ops.begin(), Ops.end()) {}
uint16_t getWordCount() const { return WordCount; }
uint16_t getOpcode() const { return Opcode; }
uint32_t getResultID() const { return ResultID; }
ArrayRef<SPIRVOperand *> getOperands() const { return Operands; }
private:
uint16_t WordCount;
uint16_t Opcode;
uint32_t ResultID;
SmallVector<SPIRVOperand *, 4> Operands;
};
struct SPIRVProducerPass final : public ModulePass {
typedef std::vector<SPIRVOperand *> SPIRVOperandList;
typedef DenseMap<Type *, uint32_t> TypeMapType;
typedef UniqueVector<Type *> TypeList;
typedef DenseMap<Value *, uint32_t> ValueMapType;
typedef UniqueVector<Value *> ValueList;
typedef std::vector<std::pair<Value *, uint32_t>> EntryPointVecType;
typedef std::list<SPIRVInstruction *> SPIRVInstructionList;
typedef std::vector<
std::tuple<Value *, SPIRVInstructionList::iterator, uint32_t>>
DeferredInstVecType;
typedef DenseMap<FunctionType *, std::pair<FunctionType *, uint32_t>>
GlobalConstFuncMapType;
explicit SPIRVProducerPass(
raw_pwrite_stream &out, raw_ostream &descriptor_map_out,
ArrayRef<std::pair<unsigned, std::string>> samplerMap, bool outputAsm,
bool outputCInitList)
: ModulePass(ID), samplerMap(samplerMap), out(out),
binaryTempOut(binaryTempUnderlyingVector), binaryOut(&out),
descriptorMapOut(descriptor_map_out), outputAsm(outputAsm),
outputCInitList(outputCInitList), patchBoundOffset(0), nextID(1),
OpExtInstImportID(0), HasVariablePointers(false), SamplerTy(nullptr),
WorkgroupSizeValueID(0), WorkgroupSizeVarID(0) {}
void getAnalysisUsage(AnalysisUsage &AU) const override {
AU.addRequired<DominatorTreeWrapperPass>();
AU.addRequired<LoopInfoWrapperPass>();
}
virtual bool runOnModule(Module &module) override;
// output the SPIR-V header block
void outputHeader();
// patch the SPIR-V header block
void patchHeader();
uint32_t lookupType(Type *Ty) {
if (Ty->isPointerTy() &&
(Ty->getPointerAddressSpace() != AddressSpace::UniformConstant)) {
auto PointeeTy = Ty->getPointerElementType();
if (PointeeTy->isStructTy() &&
dyn_cast<StructType>(PointeeTy)->isOpaque()) {
Ty = PointeeTy;
}
}
if (0 == TypeMap.count(Ty)) {
Ty->print(errs());
llvm_unreachable("Unhandled type!");
}
return TypeMap[Ty];
}
TypeMapType &getImageTypeMap() { return ImageTypeMap; }
TypeList &getTypeList() { return Types; };
ValueList &getConstantList() { return Constants; };
ValueMapType &getValueMap() { return ValueMap; }
ValueMapType &getAllocatedValueMap() { return AllocatedValueMap; }
SPIRVInstructionList &getSPIRVInstList() { return SPIRVInsts; };
ValueToValueMapTy &getArgumentGVMap() { return ArgumentGVMap; };
ValueMapType &getArgumentGVIDMap() { return ArgumentGVIDMap; };
EntryPointVecType &getEntryPointVec() { return EntryPointVec; };
DeferredInstVecType &getDeferredInstVec() { return DeferredInstVec; };
ValueList &getEntryPointInterfacesVec() { return EntryPointInterfacesVec; };
uint32_t &getOpExtInstImportID() { return OpExtInstImportID; };
std::vector<uint32_t> &getBuiltinDimVec() { return BuiltinDimensionVec; };
bool hasVariablePointers() { return true; /* We use StorageBuffer everywhere */ };
void setVariablePointers(bool Val) { HasVariablePointers = Val; };
ArrayRef<std::pair<unsigned, std::string>> &getSamplerMap() { return samplerMap; }
GlobalConstFuncMapType &getGlobalConstFuncTypeMap() {
return GlobalConstFuncTypeMap;
}
SmallPtrSet<Value *, 16> &getGlobalConstArgSet() {
return GlobalConstArgumentSet;
}
TypeList &getPointerTypesNeedingArrayStride() {
return PointerTypesNeedingArrayStride;
}
void GenerateLLVMIRInfo(Module &M);
bool FindExtInst(Module &M);
void FindTypePerGlobalVar(GlobalVariable &GV);
void FindTypePerFunc(Function &F);
// Inserts |Ty| and relevant sub-types into the |Types| member, indicating that
// |Ty| and its subtypes will need a corresponding SPIR-V type.
void FindType(Type *Ty);
void FindConstantPerGlobalVar(GlobalVariable &GV);
void FindConstantPerFunc(Function &F);
void FindConstant(Value *V);
void GenerateExtInstImport();
// Generates instructions for SPIR-V types corresponding to the LLVM types
// saved in the |Types| member. A type follows its subtypes. IDs are
// allocated sequentially starting with the current value of nextID, and
// with a type following its subtypes. Also updates nextID to just beyond
// the last generated ID.
void GenerateSPIRVTypes(const DataLayout &DL);
void GenerateSPIRVConstants();
void GenerateModuleInfo();
void GenerateGlobalVar(GlobalVariable &GV);
void GenerateSamplers(Module &M);
void GenerateFuncPrologue(Function &F);
void GenerateFuncBody(Function &F);
void GenerateInstForArg(Function &F);
spv::Op GetSPIRVCmpOpcode(CmpInst *CmpI);
spv::Op GetSPIRVCastOpcode(Instruction &I);
spv::Op GetSPIRVBinaryOpcode(Instruction &I);
void GenerateInstruction(Instruction &I);
void GenerateFuncEpilogue();
void HandleDeferredInstruction();
void HandleDeferredDecorations(const DataLayout& DL);
bool is4xi8vec(Type *Ty) const;
spv::StorageClass GetStorageClass(unsigned AddrSpace) const;
spv::BuiltIn GetBuiltin(StringRef globalVarName) const;
glsl::ExtInst getExtInstEnum(StringRef Name);
void PrintResID(SPIRVInstruction *Inst);
void PrintOpcode(SPIRVInstruction *Inst);
void PrintOperand(SPIRVOperand *Op);
void PrintCapability(SPIRVOperand *Op);
void PrintExtInst(SPIRVOperand *Op);
void PrintAddrModel(SPIRVOperand *Op);
void PrintMemModel(SPIRVOperand *Op);
void PrintExecModel(SPIRVOperand *Op);
void PrintExecMode(SPIRVOperand *Op);
void PrintSourceLanguage(SPIRVOperand *Op);
void PrintFuncCtrl(SPIRVOperand *Op);
void PrintStorageClass(SPIRVOperand *Op);
void PrintDecoration(SPIRVOperand *Op);
void PrintBuiltIn(SPIRVOperand *Op);
void PrintSelectionControl(SPIRVOperand *Op);
void PrintLoopControl(SPIRVOperand *Op);
void PrintDimensionality(SPIRVOperand *Op);
void PrintImageFormat(SPIRVOperand *Op);
void PrintMemoryAccess(SPIRVOperand *Op);
void PrintImageOperandsType(SPIRVOperand *Op);
void WriteSPIRVAssembly();
void WriteOneWord(uint32_t Word);
void WriteResultID(SPIRVInstruction *Inst);
void WriteWordCountAndOpcode(SPIRVInstruction *Inst);
void WriteOperand(SPIRVOperand *Op);
void WriteSPIRVBinary();
private:
static char ID;
ArrayRef<std::pair<unsigned, std::string>> samplerMap;
raw_pwrite_stream &out;
// TODO(dneto): Wouldn't it be better to always just emit a binary, and then
// convert to other formats on demand?
// When emitting a C initialization list, the WriteSPIRVBinary method
// will actually write its words to this vector via binaryTempOut.
SmallVector<char, 100> binaryTempUnderlyingVector;
raw_svector_ostream binaryTempOut;
// Binary output writes to this stream, which might be |out| or
// |binaryTempOut|. It's the latter when we really want to write a C
// initializer list.
raw_pwrite_stream* binaryOut;
raw_ostream &descriptorMapOut;
const bool outputAsm;
const bool outputCInitList; // If true, output look like {0x7023, ... , 5}
uint64_t patchBoundOffset;
uint32_t nextID;
// Maps an LLVM Value pointer to the corresponding SPIR-V Id.
TypeMapType TypeMap;
// Maps an LLVM image type to its SPIR-V ID.
TypeMapType ImageTypeMap;
// A unique-vector of LLVM types that map to a SPIR-V type.
TypeList Types;
ValueList Constants;
// Maps an LLVM Value pointer to the corresponding SPIR-V Id.
ValueMapType ValueMap;
ValueMapType AllocatedValueMap;
SPIRVInstructionList SPIRVInsts;
ValueToValueMapTy ArgumentGVMap;
ValueMapType ArgumentGVIDMap;
EntryPointVecType EntryPointVec;
DeferredInstVecType DeferredInstVec;
ValueList EntryPointInterfacesVec;
uint32_t OpExtInstImportID;
std::vector<uint32_t> BuiltinDimensionVec;
bool HasVariablePointers;
Type *SamplerTy;
GlobalConstFuncMapType GlobalConstFuncTypeMap;
SmallPtrSet<Value *, 16> GlobalConstArgumentSet;
// An ordered set of pointer types of Base arguments to OpPtrAccessChain,
// and which point into transparent memory (StorageBuffer storage class).
// These will require an ArrayStride decoration.
// See SPV_KHR_variable_pointers rev 13.
TypeList PointerTypesNeedingArrayStride;
// This is truly ugly, but works around what look like driver bugs.
// For get_local_size, an earlier part of the flow has created a module-scope
// variable in Private address space to hold the value for the workgroup
// size. Its intializer is a uint3 value marked as builtin WorkgroupSize.
// When this is present, save the IDs of the initializer value and variable
// in these two variables. We only ever do a vector load from it, and
// when we see one of those, substitute just the value of the intializer.
// This mimics what Glslang does, and that's what drivers are used to.
uint32_t WorkgroupSizeValueID;
uint32_t WorkgroupSizeVarID;
};
char SPIRVProducerPass::ID;
}
namespace clspv {
ModulePass *
createSPIRVProducerPass(raw_pwrite_stream &out, raw_ostream &descriptor_map_out,
ArrayRef<std::pair<unsigned, std::string>> samplerMap,
bool outputAsm, bool outputCInitList) {
return new SPIRVProducerPass(out, descriptor_map_out, samplerMap, outputAsm,
outputCInitList);
}
} // namespace clspv
bool SPIRVProducerPass::runOnModule(Module &module) {
binaryOut = outputCInitList ? &binaryTempOut : &out;
// SPIR-V always begins with its header information
outputHeader();
// Gather information from the LLVM IR that we require.
GenerateLLVMIRInfo(module);
// If we are using a sampler map, find the type of the sampler.
if (0 < getSamplerMap().size()) {
auto SamplerStructTy = module.getTypeByName("opencl.sampler_t");
if (!SamplerStructTy) {
SamplerStructTy =
StructType::create(module.getContext(), "opencl.sampler_t");
}
SamplerTy = SamplerStructTy->getPointerTo(AddressSpace::UniformConstant);
FindType(SamplerTy);
}
// Collect information on global variables too.
for (GlobalVariable &GV : module.globals()) {
// If the GV is one of our special __spirv_* variables, remove the
// initializer as it was only placed there to force LLVM to not throw the
// value away.
if (GV.getName().startswith("__spirv_")) {
GV.setInitializer(nullptr);
}
// Collect types' information from global variable.
FindTypePerGlobalVar(GV);
// Collect constant information from global variable.
FindConstantPerGlobalVar(GV);
// If the variable is an input, entry points need to know about it.
if (AddressSpace::Input == GV.getType()->getPointerAddressSpace()) {
getEntryPointInterfacesVec().insert(&GV);
}
}
// If there are extended instructions, generate OpExtInstImport.
if (FindExtInst(module)) {
GenerateExtInstImport();
}
// Generate SPIRV instructions for types.
const DataLayout &DL = module.getDataLayout();
GenerateSPIRVTypes(DL);
// Generate SPIRV constants.
GenerateSPIRVConstants();
// If we have a sampler map, we might have literal samplers to generate.
if (0 < getSamplerMap().size()) {
GenerateSamplers(module);
}
// Generate SPIRV variables.
for (GlobalVariable &GV : module.globals()) {
GenerateGlobalVar(GV);
}
// Generate SPIRV instructions for each function.
for (Function &F : module) {
if (F.isDeclaration()) {
continue;
}
// Generate Function Prologue.
GenerateFuncPrologue(F);
// Generate SPIRV instructions for function body.
GenerateFuncBody(F);
// Generate Function Epilogue.
GenerateFuncEpilogue();
}
HandleDeferredInstruction();
HandleDeferredDecorations(DL);
// Generate SPIRV module information.
GenerateModuleInfo();
if (outputAsm) {
WriteSPIRVAssembly();
} else {
WriteSPIRVBinary();
}
// We need to patch the SPIR-V header to set bound correctly.
patchHeader();
if (outputCInitList) {
bool first = true;
std::ostringstream os;
auto emit_word = [&os, &first](uint32_t word) {
if (!first)
os << ",\n";
os << word;
first = false;
};
os << "{";
const std::string str(binaryTempOut.str());
for (unsigned i = 0; i < str.size(); i += 4) {
const uint32_t a = static_cast<unsigned char>(str[i]);
const uint32_t b = static_cast<unsigned char>(str[i + 1]);
const uint32_t c = static_cast<unsigned char>(str[i + 2]);
const uint32_t d = static_cast<unsigned char>(str[i + 3]);
emit_word(a | (b << 8) | (c << 16) | (d << 24));
}
os << "}\n";
out << os.str();
}
return false;
}
void SPIRVProducerPass::outputHeader() {
if (outputAsm) {
// for ASM output the header goes into 5 comments at the beginning of the
// file
out << "; SPIR-V\n";
// the major version number is in the 2nd highest byte
const uint32_t major = (spv::Version >> 16) & 0xFF;
// the minor version number is in the 2nd lowest byte
const uint32_t minor = (spv::Version >> 8) & 0xFF;
out << "; Version: " << major << "." << minor << "\n";
// use Codeplay's vendor ID
out << "; Generator: Codeplay; 0\n";
out << "; Bound: ";
// we record where we need to come back to and patch in the bound value
patchBoundOffset = out.tell();
// output one space per digit for the max size of a 32 bit unsigned integer
// (which is the maximum ID we could possibly be using)
for (uint32_t i = std::numeric_limits<uint32_t>::max(); 0 != i; i /= 10) {
out << " ";
}
out << "\n";
out << "; Schema: 0\n";
} else {
binaryOut->write(reinterpret_cast<const char *>(&spv::MagicNumber),
sizeof(spv::MagicNumber));
binaryOut->write(reinterpret_cast<const char *>(&spv::Version),
sizeof(spv::Version));
// use Codeplay's vendor ID
const uint32_t vendor = 3 << 16;
binaryOut->write(reinterpret_cast<const char *>(&vendor), sizeof(vendor));
// we record where we need to come back to and patch in the bound value
patchBoundOffset = binaryOut->tell();
// output a bad bound for now
binaryOut->write(reinterpret_cast<const char *>(&nextID), sizeof(nextID));
// output the schema (reserved for use and must be 0)
const uint32_t schema = 0;
binaryOut->write(reinterpret_cast<const char *>(&schema), sizeof(schema));
}
}
void SPIRVProducerPass::patchHeader() {
if (outputAsm) {
// get the string representation of the max bound used (nextID will be the
// max ID used)
auto asString = std::to_string(nextID);
out.pwrite(asString.c_str(), asString.size(), patchBoundOffset);
} else {
// for a binary we just write the value of nextID over bound
binaryOut->pwrite(reinterpret_cast<char *>(&nextID), sizeof(nextID),
patchBoundOffset);
}
}
void SPIRVProducerPass::GenerateLLVMIRInfo(Module &M) {
// This function generates LLVM IR for function such as global variable for
// argument, constant and pointer type for argument access. These information
// is artificial one because we need Vulkan SPIR-V output. This function is
// executed ahead of FindType and FindConstant.
ValueToValueMapTy &ArgGVMap = getArgumentGVMap();
LLVMContext &Context = M.getContext();
// Map for avoiding to generate struct type with same fields.
DenseMap<Type *, Type *> ArgTyMap;
// Collect global constant variables.
SmallVector<GlobalVariable *, 8> GVList;
for (GlobalVariable &GV : M.globals()) {
if (GV.getType()->getAddressSpace() == AddressSpace::Constant) {
GVList.push_back(&GV);
}
}
// Change global constant variable's address space to ModuleScopePrivate.
auto &GlobalConstFuncTyMap = getGlobalConstFuncTypeMap();
for (auto GV : GVList) {
// If there is no user of gv, delete gv.
if (GV->use_empty()) {
GV->eraseFromParent();
continue;
}
// Create new gv with ModuleScopePrivate address space.
Type *NewGVTy = GV->getType()->getPointerElementType();
GlobalVariable *NewGV = new GlobalVariable(
M, NewGVTy, false, GV->getLinkage(), GV->getInitializer(), "", nullptr,
GV->getThreadLocalMode(), AddressSpace::ModuleScopePrivate);
NewGV->takeName(GV);
const SmallVector<User *, 8> GVUsers(GV->user_begin(), GV->user_end());
SmallVector<User*, 8> CandidateUsers;
for (User *GVU : GVUsers) {
if (CallInst *Call = dyn_cast<CallInst>(GVU)) {
// Find argument index.
unsigned GVCstArgIdx = 0;
for (unsigned i = 0; i < Call->getNumArgOperands(); i++) {
if (GV == Call->getOperand(i)) {
GVCstArgIdx = i;
}
}
// Record function with global constant.
GlobalConstFuncTyMap[Call->getFunctionType()] =
std::make_pair(Call->getFunctionType(), GVCstArgIdx);
} else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(GVU)) {
// Check GEP users.
for (User *GEPU : GEP->users()) {
if (CallInst *GEPCall = dyn_cast<CallInst>(GEPU)) {
// Find argument index.
unsigned GVCstArgIdx = 0;
for (unsigned i = 0; i < GEPCall->getNumArgOperands(); i++) {
if (GEP == GEPCall->getOperand(i)) {
GVCstArgIdx = i;
}
}
// Record function with global constant.
GlobalConstFuncTyMap[GEPCall->getFunctionType()] =
std::make_pair(GEPCall->getFunctionType(), GVCstArgIdx);
}
}
}
CandidateUsers.push_back(GVU);
}
for (User *U : CandidateUsers) {
// Update users of gv with new gv.
U->replaceUsesOfWith(GV, NewGV);
}
// Delete original gv.
GV->eraseFromParent();
}
bool HasWorkGroupBuiltin = false;
for (GlobalVariable &GV : M.globals()) {
const spv::BuiltIn BuiltinType = GetBuiltin(GV.getName());
if (spv::BuiltInWorkgroupSize == BuiltinType) {
HasWorkGroupBuiltin = true;
}
}
for (Function &F : M) {
// Handle kernel function first.
if (F.isDeclaration() || F.getCallingConv() != CallingConv::SPIR_KERNEL) {
continue;
}
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
if (I.getOpcode() == Instruction::ZExt ||
I.getOpcode() == Instruction::SExt ||
I.getOpcode() == Instruction::UIToFP) {
// If there is zext with i1 type, it will be changed to OpSelect. The
// OpSelect needs constant 0 and 1 so the constants are added here.
auto OpTy = I.getOperand(0)->getType();
if (OpTy->isIntegerTy(1) ||
(OpTy->isVectorTy() &&
OpTy->getVectorElementType()->isIntegerTy(1))) {
if (I.getOpcode() == Instruction::ZExt) {
APInt One(32, 1);
FindConstant(Constant::getNullValue(I.getType()));
FindConstant(Constant::getIntegerValue(I.getType(), One));
} else if (I.getOpcode() == Instruction::SExt) {
APInt MinusOne(32, UINT64_MAX, true);
FindConstant(Constant::getNullValue(I.getType()));
FindConstant(Constant::getIntegerValue(I.getType(), MinusOne));
} else {
FindConstant(ConstantFP::get(Context, APFloat(0.0f)));
FindConstant(ConstantFP::get(Context, APFloat(1.0f)));
}
}
} else if (CallInst *Call = dyn_cast<CallInst>(&I)) {
Function *Callee = Call->getCalledFunction();
// Handle image type specially.
if (Callee->getName().equals(
"_Z11read_imagef14ocl_image2d_ro11ocl_samplerDv2_f") ||
Callee->getName().equals(
"_Z11read_imagef14ocl_image3d_ro11ocl_samplerDv4_f")) {
TypeMapType &OpImageTypeMap = getImageTypeMap();
Type *ImageTy =
Call->getArgOperand(0)->getType()->getPointerElementType();
OpImageTypeMap[ImageTy] = 0;
FindConstant(ConstantFP::get(Context, APFloat(0.0f)));
}
}
}
}
if (M.getTypeByName("opencl.image2d_ro_t") ||
M.getTypeByName("opencl.image2d_wo_t") ||
M.getTypeByName("opencl.image3d_ro_t") ||
M.getTypeByName("opencl.image3d_wo_t")) {
// Assume Image type's sampled type is float type.
FindType(Type::getFloatTy(Context));
}
if (const MDNode *MD =
dyn_cast<Function>(&F)->getMetadata("reqd_work_group_size")) {
// We generate constants if the WorkgroupSize builtin is being used.
if (HasWorkGroupBuiltin) {
// Collect constant information for work group size.
FindConstant(mdconst::extract<ConstantInt>(MD->getOperand(0)));
FindConstant(mdconst::extract<ConstantInt>(MD->getOperand(1)));
FindConstant(mdconst::extract<ConstantInt>(MD->getOperand(2)));
}
}
// Wrap up all argument types with struct type and create global variables
// with them.
bool HasArgUser = false;
unsigned Idx = 0;
for (const Argument &Arg : F.args()) {
Type *ArgTy = Arg.getType();
Type *GVTy = nullptr;
// Check argument type whether it is pointer type or not. If it is
// pointer type, add its address space to new global variable for
// argument.
unsigned AddrSpace = AddressSpace::Global;
if (PointerType *ArgPTy = dyn_cast<PointerType>(ArgTy)) {
AddrSpace = ArgPTy->getAddressSpace();
}
Type *TmpArgTy = ArgTy;
// sampler_t and image types have pointer type of struct type with
// opaque
// type as field. Extract the struct type. It will be used by global
// variable for argument.
bool IsSamplerType = false;
bool IsImageType = false;
if (PointerType *TmpArgPTy = dyn_cast<PointerType>(TmpArgTy)) {
if (StructType *STy =
dyn_cast<StructType>(TmpArgPTy->getElementType())) {
if (STy->isOpaque()) {
if (STy->getName().equals("opencl.sampler_t")) {
AddrSpace = AddressSpace::UniformConstant;
IsSamplerType = true;
TmpArgTy = STy;
} else if (STy->getName().equals("opencl.image2d_ro_t") ||
STy->getName().equals("opencl.image2d_wo_t") ||
STy->getName().equals("opencl.image3d_ro_t") ||
STy->getName().equals("opencl.image3d_wo_t")) {
AddrSpace = AddressSpace::UniformConstant;
IsImageType = true;
TmpArgTy = STy;
} else {
llvm_unreachable("Argument has opaque type unsupported???");
}
}
}
}
// LLVM's pointer type is distinguished by address space but we need to
// regard constant and global address space as same here. If pointer
// type has constant address space, generate new pointer type
// temporarily to check previous struct type for argument.
if (PointerType *TmpArgPTy = dyn_cast<PointerType>(TmpArgTy)) {
AddrSpace = TmpArgPTy->getAddressSpace();
if (AddrSpace == AddressSpace::Constant) {
TmpArgTy = PointerType::get(TmpArgPTy->getElementType(),
AddressSpace::Global);
}
}
if (IsSamplerType || IsImageType) {
GVTy = TmpArgTy;
} else if (ArgTyMap.count(TmpArgTy)) {
// If there are arguments handled previously, use its type.
GVTy = ArgTyMap[TmpArgTy];
} else {
// Wrap up argument type with struct type.
StructType *STy = StructType::create(Context);
SmallVector<Type *, 8> EltTys;
EltTys.push_back(ArgTy);
STy->setBody(EltTys, false);
GVTy = STy;
ArgTyMap[TmpArgTy] = STy;
}
// In order to build type map between llvm type and spirv id, LLVM
// global variable is needed. It has llvm type and other instructions
// can access it with its type.
GlobalVariable *NewGV = new GlobalVariable(
M, GVTy, false, GlobalValue::ExternalLinkage, UndefValue::get(GVTy),
F.getName() + ".arg." + std::to_string(Idx++), nullptr,
GlobalValue::ThreadLocalMode::NotThreadLocal, AddrSpace);
// Generate type info for argument global variable.
FindType(NewGV->getType());
ArgGVMap[&Arg] = NewGV;
// Generate pointer type of argument type for OpAccessChain of argument.
if (!Arg.use_empty()) {
if (!isa<PointerType>(ArgTy)) {
FindType(PointerType::get(ArgTy, AddrSpace));
}
HasArgUser = true;
}
}
if (HasArgUser) {
// Generate constant 0 for OpAccessChain of argument.
Type *IdxTy = Type::getInt32Ty(Context);
FindConstant(ConstantInt::get(IdxTy, 0));
FindType(IdxTy);
}
// Collect types' information from function.
FindTypePerFunc(F);
// Collect constant information from function.
FindConstantPerFunc(F);
}
for (Function &F : M) {
// Handle non-kernel functions.
if (F.isDeclaration() || F.getCallingConv() == CallingConv::SPIR_KERNEL) {
continue;
}
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
if (I.getOpcode() == Instruction::ZExt ||
I.getOpcode() == Instruction::SExt ||
I.getOpcode() == Instruction::UIToFP) {
// If there is zext with i1 type, it will be changed to OpSelect. The
// OpSelect needs constant 0 and 1 so the constants are added here.
auto OpTy = I.getOperand(0)->getType();
if (OpTy->isIntegerTy(1) ||
(OpTy->isVectorTy() &&
OpTy->getVectorElementType()->isIntegerTy(1))) {
if (I.getOpcode() == Instruction::ZExt) {
APInt One(32, 1);
FindConstant(Constant::getNullValue(I.getType()));
FindConstant(Constant::getIntegerValue(I.getType(), One));
} else if (I.getOpcode() == Instruction::SExt) {
APInt MinusOne(32, UINT64_MAX, true);
FindConstant(Constant::getNullValue(I.getType()));
FindConstant(Constant::getIntegerValue(I.getType(), MinusOne));
} else {
FindConstant(ConstantFP::get(Context, APFloat(0.0f)));
FindConstant(ConstantFP::get(Context, APFloat(1.0f)));
}
}
} else if (CallInst *Call = dyn_cast<CallInst>(&I)) {
Function *Callee = Call->getCalledFunction();
// Handle image type specially.
if (Callee->getName().equals(
"_Z11read_imagef14ocl_image2d_ro11ocl_samplerDv2_f") ||
Callee->getName().equals(
"_Z11read_imagef14ocl_image3d_ro11ocl_samplerDv4_f")) {
TypeMapType &OpImageTypeMap = getImageTypeMap();
Type *ImageTy =
Call->getArgOperand(0)->getType()->getPointerElementType();
OpImageTypeMap[ImageTy] = 0;
FindConstant(ConstantFP::get(Context, APFloat(0.0f)));
}
}
}
}
if (M.getTypeByName("opencl.image2d_ro_t") ||
M.getTypeByName("opencl.image2d_wo_t") ||
M.getTypeByName("opencl.image3d_ro_t") ||
M.getTypeByName("opencl.image3d_wo_t")) {
// Assume Image type's sampled type is float type.
FindType(Type::getFloatTy(Context));
}
// Collect types' information from function.
FindTypePerFunc(F);
// Collect constant information from function.
FindConstantPerFunc(F);
}
}
bool SPIRVProducerPass::FindExtInst(Module &M) {
LLVMContext &Context = M.getContext();
bool HasExtInst = false;
for (Function &F : M) {
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
if (CallInst *Call = dyn_cast<CallInst>(&I)) {
Function *Callee = Call->getCalledFunction();
// Check whether this call is for extend instructions.
glsl::ExtInst EInst = getExtInstEnum(Callee->getName());
if (EInst) {
// clz needs OpExtInst and OpISub with constant 31, or splat vector
// of 31. Add it to the constant list here.
if (EInst == glsl::ExtInstFindUMsb) {
Type *IdxTy = Type::getInt32Ty(Context);
auto Idx = ConstantInt::get(IdxTy, 31);
FindType(IdxTy);
FindConstant(Idx);
if (auto* vectorTy = dyn_cast<VectorType>(I.getType())) {
// Register the splat vector with element 31.
FindConstant(ConstantVector::getSplat(
static_cast<unsigned>(vectorTy->getNumElements()), Idx));
FindType(vectorTy);
}
}
HasExtInst = true;
}
}
}
}
}
return HasExtInst;
}
void SPIRVProducerPass::FindTypePerGlobalVar(GlobalVariable &GV) {
// Investigate global variable's type.
FindType(GV.getType());
}
void SPIRVProducerPass::FindTypePerFunc(Function &F) {
// Investigate function's type.
FunctionType *FTy = F.getFunctionType();
if (F.getCallingConv() != CallingConv::SPIR_KERNEL) {
auto &GlobalConstFuncTyMap = getGlobalConstFuncTypeMap();
// Handle function with global constant parameters.
if (GlobalConstFuncTyMap.count(FTy)) {
uint32_t GVCstArgIdx = GlobalConstFuncTypeMap[FTy].second;
SmallVector<Type *, 4> NewFuncParamTys;
for (unsigned i = 0; i < FTy->getNumParams(); i++) {
Type *ParamTy = FTy->getParamType(i);
if (i == GVCstArgIdx) {
Type *EleTy = ParamTy->getPointerElementType();
ParamTy = PointerType::get(EleTy, AddressSpace::ModuleScopePrivate);
}
NewFuncParamTys.push_back(ParamTy);
}
FunctionType *NewFTy =
FunctionType::get(FTy->getReturnType(), NewFuncParamTys, false);
GlobalConstFuncTyMap[FTy] = std::make_pair(NewFTy, GVCstArgIdx);
FTy = NewFTy;
}
FindType(FTy);
} else {
// As kernel functions do not have parameters, create new function type and
// add it to type map.
SmallVector<Type *, 4> NewFuncParamTys;
FunctionType *NewFTy =
FunctionType::get(FTy->getReturnType(), NewFuncParamTys, false);
FindType(NewFTy);
}
// Investigate instructions' type in function body.
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
if (isa<ShuffleVectorInst>(I)) {
for (unsigned i = 0; i < I.getNumOperands(); i++) {
// Ignore type for mask of shuffle vector instruction.
if (i == 2) {
continue;
}
Value *Op = I.getOperand(i);
if (!isa<MetadataAsValue>(Op)) {
FindType(Op->getType());
}
}
FindType(I.getType());
continue;
}
// Work through the operands of the instruction.
for (unsigned i = 0; i < I.getNumOperands(); i++) {
Value *const Op = I.getOperand(i);
// If any of the operands is a constant, find the type!
if (isa<Constant>(Op) && !isa<GlobalValue>(Op)) {
FindType(Op->getType());
}
}
for (Use &Op : I.operands()) {
if (CallInst *Call = dyn_cast<CallInst>(&I)) {
// Avoid to check call instruction's type.
break;
}
if (!isa<MetadataAsValue>(&Op)) {
FindType(Op->getType());
continue;
}
}
CallInst *Call = dyn_cast<CallInst>(&I);
// We don't want to track the type of this call as we are going to replace
// it.
if (Call && ("__translate_sampler_initializer" ==
Call->getCalledFunction()->getName())) {
continue;
}
if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(&I)) {
// If gep's base operand has ModuleScopePrivate address space, make gep
// return ModuleScopePrivate address space.
if (GEP->getPointerAddressSpace() == AddressSpace::ModuleScopePrivate) {
// Add pointer type with private address space for global constant to
// type list.
Type *EleTy = I.getType()->getPointerElementType();
Type *NewPTy =
PointerType::get(EleTy, AddressSpace::ModuleScopePrivate);
FindType(NewPTy);
continue;
}
}
FindType(I.getType());
}
}
}
void SPIRVProducerPass::FindType(Type *Ty) {
TypeList &TyList = getTypeList();
if (0 != TyList.idFor(Ty)) {
return;
}
if (Ty->isPointerTy()) {
auto AddrSpace = Ty->getPointerAddressSpace();
if ((AddressSpace::Constant == AddrSpace) ||
(AddressSpace::Global == AddrSpace)) {
auto PointeeTy = Ty->getPointerElementType();
if (PointeeTy->isStructTy() &&
dyn_cast<StructType>(PointeeTy)->isOpaque()) {
FindType(PointeeTy);
auto ActualPointerTy =
PointeeTy->getPointerTo(AddressSpace::UniformConstant);
FindType(ActualPointerTy);
return;
}
}
}
// OpTypeArray has constant and we need to support type of the constant.
if (isa<ArrayType>(Ty)) {
LLVMContext &Context = Ty->getContext();
FindType(Type::getInt32Ty(Context));
}
for (Type *SubTy : Ty->subtypes()) {
FindType(SubTy);
}
TyList.insert(Ty);
}
void SPIRVProducerPass::FindConstantPerGlobalVar(GlobalVariable &GV) {
// If the global variable has a (non undef) initializer.
if (GV.hasInitializer() && !isa<UndefValue>(GV.getInitializer())) {
FindConstant(GV.getInitializer());
}
}
void SPIRVProducerPass::FindConstantPerFunc(Function &F) {
// Investigate constants in function body.
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
CallInst *Call = dyn_cast<CallInst>(&I);
if (Call && ("__translate_sampler_initializer" ==
Call->getCalledFunction()->getName())) {
// We've handled these constants elsewhere, so skip it.
continue;
}
if (isa<AllocaInst>(I)) {
// Alloca instruction has constant for the number of element. Ignore it.
continue;
} else if (isa<ShuffleVectorInst>(I)) {
for (unsigned i = 0; i < I.getNumOperands(); i++) {
// Ignore constant for mask of shuffle vector instruction.
if (i == 2) {
continue;
}
if (isa<Constant>(I.getOperand(i)) &&
!isa<GlobalValue>(I.getOperand(i))) {
FindConstant(I.getOperand(i));
}
}
continue;
} else if (isa<InsertElementInst>(I)) {
// Handle InsertElement with <4 x i8> specially.
Type *CompositeTy = I.getOperand(0)->getType();
if (is4xi8vec(CompositeTy)) {
LLVMContext &Context = CompositeTy->getContext();
if (isa<Constant>(I.getOperand(0))) {
FindConstant(I.getOperand(0));
}
if (isa<Constant>(I.getOperand(1))) {
FindConstant(I.getOperand(1));
}
// Add mask constant 0xFF.
Constant *CstFF = ConstantInt::get(Type::getInt32Ty(Context), 0xFF);
FindConstant(CstFF);
// Add shift amount constant.
if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2))) {
uint64_t Idx = CI->getZExtValue();
Constant *CstShiftAmount =
ConstantInt::get(Type::getInt32Ty(Context), Idx * 8);
FindConstant(CstShiftAmount);
}
continue;
}
for (unsigned i = 0; i < I.getNumOperands(); i++) {
// Ignore constant for index of InsertElement instruction.
if (i == 2) {
continue;
}
if (isa<Constant>(I.getOperand(i)) &&
!isa<GlobalValue>(I.getOperand(i))) {
FindConstant(I.getOperand(i));
}
}
continue;
} else if (isa<ExtractElementInst>(I)) {
// Handle ExtractElement with <4 x i8> specially.
Type *CompositeTy = I.getOperand(0)->getType();
if (is4xi8vec(CompositeTy)) {
LLVMContext &Context = CompositeTy->getContext();
if (isa<Constant>(I.getOperand(0))) {
FindConstant(I.getOperand(0));
}
// Add mask constant 0xFF.
Constant *CstFF = ConstantInt::get(Type::getInt32Ty(Context), 0xFF);
FindConstant(CstFF);
// Add shift amount constant.
if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1))) {
uint64_t Idx = CI->getZExtValue();
Constant *CstShiftAmount =
ConstantInt::get(Type::getInt32Ty(Context), Idx * 8);
FindConstant(CstShiftAmount);
} else {
ConstantInt *Cst8 = ConstantInt::get(Type::getInt32Ty(Context), 8);
FindConstant(Cst8);
}
continue;
}
for (unsigned i = 0; i < I.getNumOperands(); i++) {
// Ignore constant for index of ExtractElement instruction.
if (i == 1) {
continue;
}
if (isa<Constant>(I.getOperand(i)) &&
!isa<GlobalValue>(I.getOperand(i))) {
FindConstant(I.getOperand(i));
}
}
continue;
} else if ((Instruction::Xor == I.getOpcode()) && I.getType()->isIntegerTy(1)) {
// We special case for Xor where the type is i1 and one of the arguments is a constant 1 (true), this is an OpLogicalNot in SPIR-V, and we don't need the constant
bool foundConstantTrue = false;
for (Use &Op : I.operands()) {
if (isa<Constant>(Op) && !isa<GlobalValue>(Op)) {
auto CI = cast<ConstantInt>(Op);
if (CI->isZero() || foundConstantTrue) {
// If we already found the true constant, we might (probably only on -O0) have an OpLogicalNot which is taking a constant argument, so discover it anyway.
FindConstant(Op);
} else {
foundConstantTrue = true;
}
}
}
continue;
} else if (isa<TruncInst>(I)) {
// For truncation to i8 we mask against 255.
Type *ToTy = I.getType();
if (8u == ToTy->getPrimitiveSizeInBits()) {
LLVMContext &Context = ToTy->getContext();
Constant *Cst255 = ConstantInt::get(Type::getInt32Ty(Context), 0xff);
FindConstant(Cst255);
}
// Fall through.
} else if (isa<AtomicRMWInst>(I)) {
LLVMContext &Context = I.getContext();
FindConstant(
ConstantInt::get(Type::getInt32Ty(Context), spv::ScopeDevice));
FindConstant(ConstantInt::get(
Type::getInt32Ty(Context),
spv::MemorySemanticsUniformMemoryMask |
spv::MemorySemanticsSequentiallyConsistentMask));
}
for (Use &Op : I.operands()) {
if (isa<Constant>(Op) && !isa<GlobalValue>(Op)) {
FindConstant(Op);
}
}
}
}
}
void SPIRVProducerPass::FindConstant(Value *V) {
ValueList &CstList = getConstantList();
// If V is already tracked, ignore it.
if (0 != CstList.idFor(V)) {
return;
}
Constant *Cst = cast<Constant>(V);
// Handle constant with <4 x i8> type specially.
Type *CstTy = Cst->getType();
if (is4xi8vec(CstTy)) {
if (!isa<GlobalValue>(V)) {
CstList.insert(V);
}
}
if (Cst->getNumOperands()) {
for (User::const_op_iterator I = Cst->op_begin(), E = Cst->op_end(); I != E;
++I) {
FindConstant(*I);
}
CstList.insert(Cst);
return;
} else if (const ConstantDataSequential *CDS =
dyn_cast<ConstantDataSequential>(Cst)) {
// Add constants for each element to constant list.
for (unsigned i = 0; i < CDS->getNumElements(); i++) {
Constant *EleCst = CDS->getElementAsConstant(i);
FindConstant(EleCst);
}
}
if (!isa<GlobalValue>(V)) {
CstList.insert(V);
}
}
spv::StorageClass SPIRVProducerPass::GetStorageClass(unsigned AddrSpace) const {
switch (AddrSpace) {
default:
llvm_unreachable("Unsupported OpenCL address space");
case AddressSpace::Private:
return spv::StorageClassFunction;
case AddressSpace::Global:
case AddressSpace::Constant:
return spv::StorageClassStorageBuffer;
case AddressSpace::Input:
return spv::StorageClassInput;
case AddressSpace::Local:
return spv::StorageClassWorkgroup;
case AddressSpace::UniformConstant:
return spv::StorageClassUniformConstant;
case AddressSpace::ModuleScopePrivate:
return spv::StorageClassPrivate;
}
}
spv::BuiltIn SPIRVProducerPass::GetBuiltin(StringRef Name) const {
return StringSwitch<spv::BuiltIn>(Name)
.Case("__spirv_GlobalInvocationId", spv::BuiltInGlobalInvocationId)
.Case("__spirv_LocalInvocationId", spv::BuiltInLocalInvocationId)
.Case("__spirv_WorkgroupSize", spv::BuiltInWorkgroupSize)
.Case("__spirv_NumWorkgroups", spv::BuiltInNumWorkgroups)
.Case("__spirv_WorkgroupId", spv::BuiltInWorkgroupId)
.Default(spv::BuiltInMax);
}
void SPIRVProducerPass::GenerateExtInstImport() {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
uint32_t &ExtInstImportID = getOpExtInstImportID();
//
// Generate OpExtInstImport.
//
// Ops[0] ... Ops[n] = Name (Literal String)
SPIRVOperandList Ops;
SPIRVOperand *Name =
new SPIRVOperand(SPIRVOperandType::LITERAL_STRING, "GLSL.std.450");
Ops.push_back(Name);
size_t NameWordSize = (Name->getLiteralStr().size() + 1) / 4;
assert(NameWordSize < (UINT16_MAX - 2));
if ((Name->getLiteralStr().size() + 1) % 4) {
NameWordSize += 1;
}
uint16_t WordCount = static_cast<uint16_t>(2 + NameWordSize);
ExtInstImportID = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, spv::OpExtInstImport, nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
void SPIRVProducerPass::GenerateSPIRVTypes(const DataLayout &DL) {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
ValueMapType &AllocatedVMap = getAllocatedValueMap();
ValueToValueMapTy &ArgGVMap = getArgumentGVMap();
// Map for OpTypeRuntimeArray. If argument has pointer type, 2 spirv type
// instructions are generated. They are OpTypePointer and OpTypeRuntimeArray.
DenseMap<Type *, uint32_t> OpRuntimeTyMap;
for (Type *Ty : getTypeList()) {
// Update TypeMap with nextID for reference later.
TypeMap[Ty] = nextID;
switch (Ty->getTypeID()) {
default: {
Ty->print(errs());
llvm_unreachable("Unsupported type???");
break;
}
case Type::MetadataTyID:
case Type::LabelTyID: {
// Ignore these types.
break;
}
case Type::PointerTyID: {
PointerType *PTy = cast<PointerType>(Ty);
unsigned AddrSpace = PTy->getAddressSpace();
// For the purposes of our Vulkan SPIR-V type system, constant and global
// are conflated.
bool UseExistingOpTypePointer = false;
if (AddressSpace::Constant == AddrSpace) {
AddrSpace = AddressSpace::Global;
// Check to see if we already created this type (for instance, if we had
// a constant <type>* and a global <type>*, the type would be created by
// one of these types, and shared by both).
auto GlobalTy = PTy->getPointerElementType()->getPointerTo(AddrSpace);
if (0 < TypeMap.count(GlobalTy)) {
TypeMap[PTy] = TypeMap[GlobalTy];
break;
}
} else if (AddressSpace::Global == AddrSpace) {
AddrSpace = AddressSpace::Constant;
// Check to see if we already created this type (for instance, if we had
// a constant <type>* and a global <type>*, the type would be created by
// one of these types, and shared by both).
auto ConstantTy = PTy->getPointerElementType()->getPointerTo(AddrSpace);
if (0 < TypeMap.count(ConstantTy)) {
TypeMap[PTy] = TypeMap[ConstantTy];
UseExistingOpTypePointer = true;
}
}
bool IsOpTypeRuntimeArray = false;
bool HasArgUser = false;
for (auto ArgGV : ArgGVMap) {
auto Arg = ArgGV.first;
Type *ArgTy = Arg->getType();
if (ArgTy == PTy) {
if (AddrSpace != AddressSpace::UniformConstant) {
IsOpTypeRuntimeArray = true;
}
for (auto U : Arg->users()) {
if (!isa<GetElementPtrInst>(U) || (U->getType() == PTy)) {
HasArgUser = true;
break;
}
}
}
}
if ((!IsOpTypeRuntimeArray || HasArgUser) && !UseExistingOpTypePointer) {
//
// Generate OpTypePointer.
//
// OpTypePointer
// Ops[0] = Storage Class
// Ops[1] = Element Type ID
SPIRVOperandList Ops;
spv::StorageClass StorageClass = GetStorageClass(AddrSpace);
SPIRVOperand *StorageClassOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, StorageClass);
Ops.push_back(StorageClassOp);
uint32_t EleTyID = lookupType(PTy->getElementType());
SPIRVOperand *EleTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, EleTyID);
Ops.push_back(EleTyOp);
spv::Op Opcode = spv::OpTypePointer;
uint16_t WordCount = 4;
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, Opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
if (IsOpTypeRuntimeArray) {
//
// Generate OpTypeRuntimeArray.
//
// OpTypeRuntimeArray
// Ops[0] = Element Type ID
SPIRVOperandList Ops;
uint32_t EleTyID = lookupType(PTy->getElementType());
SPIRVOperand *EleTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, EleTyID);
Ops.push_back(EleTyOp);
spv::Op Opcode = spv::OpTypeRuntimeArray;
uint16_t WordCount = 3;
uint32_t OpTypeRuntimeArrayID = nextID;
assert(0 == OpRuntimeTyMap.count(Ty));
OpRuntimeTyMap[Ty] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, Opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// Generate OpDecorate.
auto DecoInsertPoint =
std::find_if(SPIRVInstList.begin(), SPIRVInstList.end(),
[](SPIRVInstruction *Inst) -> bool {
return Inst->getOpcode() != spv::OpDecorate &&
Inst->getOpcode() != spv::OpMemberDecorate &&
Inst->getOpcode() != spv::OpExtInstImport;
});
// Ops[0] = Target ID
// Ops[1] = Decoration (ArrayStride)
// Ops[2] = Stride Number(Literal Number)
Ops.clear();
SPIRVOperand *PTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, OpTypeRuntimeArrayID);
Ops.push_back(PTyIDOp);
SPIRVOperand *DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::DecorationArrayStride);
Ops.push_back(DecoOp);
std::vector<uint32_t> LiteralNum;
Type *EleTy = PTy->getElementType();
LiteralNum.push_back(static_cast<uint32_t>(DL.getTypeAllocSize(EleTy)));
SPIRVOperand *ArrayStrideOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ArrayStrideOp);
SPIRVInstruction *DecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, DecoInst);
}
break;
}
case Type::StructTyID: {
LLVMContext &Context = Ty->getContext();
StructType *STy = cast<StructType>(Ty);
// Handle sampler type.
if (STy->isOpaque()) {
if (STy->getName().equals("opencl.sampler_t")) {
//
// Generate OpTypeSampler
//
// Empty Ops.
SPIRVOperandList Ops;
SPIRVInstruction *Inst =
new SPIRVInstruction(2, spv::OpTypeSampler, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
} else if (STy->getName().equals("opencl.image2d_ro_t") ||
STy->getName().equals("opencl.image2d_wo_t") ||
STy->getName().equals("opencl.image3d_ro_t") ||
STy->getName().equals("opencl.image3d_wo_t")) {
//
// Generate OpTypeImage
//
// Ops[0] = Sampled Type ID
// Ops[1] = Dim ID
// Ops[2] = Depth (Literal Number)
// Ops[3] = Arrayed (Literal Number)
// Ops[4] = MS (Literal Number)
// Ops[5] = Sampled (Literal Number)
// Ops[6] = Image Format ID
//
SPIRVOperandList Ops;
// TODO: Changed Sampled Type according to situations.
uint32_t SampledTyID = lookupType(Type::getFloatTy(Context));
SPIRVOperand *SampledTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, SampledTyID);
Ops.push_back(SampledTyIDOp);
spv::Dim DimID = spv::Dim2D;
if (STy->getName().equals("opencl.image3d_ro_t") ||
STy->getName().equals("opencl.image3d_wo_t")) {
DimID = spv::Dim3D;
}
SPIRVOperand *DimIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, DimID);
Ops.push_back(DimIDOp);
// TODO: Set up Depth.
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(0);
SPIRVOperand *DepthOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(DepthOp);
// TODO: Set up Arrayed.
LiteralNum.clear();
LiteralNum.push_back(0);
SPIRVOperand *ArrayedOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ArrayedOp);
// TODO: Set up MS.
LiteralNum.clear();
LiteralNum.push_back(0);
SPIRVOperand *MSOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(MSOp);
// TODO: Set up Sampled.
//
// From Spec
//
// 0 indicates this is only known at run time, not at compile time
// 1 indicates will be used with sampler
// 2 indicates will be used without a sampler (a storage image)
uint32_t Sampled = 1;
if (STy->getName().equals("opencl.image2d_wo_t") ||
STy->getName().equals("opencl.image3d_wo_t")) {
Sampled = 2;
}
LiteralNum.clear();
LiteralNum.push_back(Sampled);
SPIRVOperand *SampledOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(SampledOp);
// TODO: Set up Image Format.
SPIRVOperand *ImageFormatOp = new SPIRVOperand(
SPIRVOperandType::NUMBERID, spv::ImageFormatUnknown);
Ops.push_back(ImageFormatOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(9, spv::OpTypeImage, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
}
//
// Generate OpTypeStruct
//
// Ops[0] ... Ops[n] = Member IDs
SPIRVOperandList Ops;
for (auto *EleTy : STy->elements()) {
uint32_t EleTyID = lookupType(EleTy);
// Check OpTypeRuntimeArray.
if (isa<PointerType>(EleTy)) {
for (auto ArgGV : ArgGVMap) {
Type *ArgTy = ArgGV.first->getType();
if (ArgTy == EleTy) {
assert(0 != OpRuntimeTyMap.count(EleTy));
EleTyID = OpRuntimeTyMap[EleTy];
}
}
}
SPIRVOperand *EleTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, EleTyID);
Ops.push_back(EleTyOp);
}
uint16_t WordCount = static_cast<uint16_t>(2 + Ops.size());
uint32_t STyID = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, spv::OpTypeStruct, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// Generate OpMemberDecorate.
auto DecoInsertPoint =
std::find_if(SPIRVInstList.begin(), SPIRVInstList.end(),
[](SPIRVInstruction *Inst) -> bool {
return Inst->getOpcode() != spv::OpDecorate &&
Inst->getOpcode() != spv::OpMemberDecorate &&
Inst->getOpcode() != spv::OpExtInstImport;
});
const auto StructLayout = DL.getStructLayout(STy);
for (unsigned MemberIdx = 0; MemberIdx < STy->getNumElements();
MemberIdx++) {
// Ops[0] = Structure Type ID
// Ops[1] = Member Index(Literal Number)
// Ops[2] = Decoration (Offset)
// Ops[3] = Byte Offset (Literal Number)
Ops.clear();
SPIRVOperand *STyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, STyID);
Ops.push_back(STyIDOp);
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(MemberIdx);
SPIRVOperand *MemberIdxOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(MemberIdxOp);
SPIRVOperand *DecoOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::DecorationOffset);
Ops.push_back(DecoOp);
LiteralNum.clear();
const auto ByteOffset =
uint32_t(StructLayout->getElementOffset(MemberIdx));
LiteralNum.push_back(ByteOffset);
SPIRVOperand *ByteOffsetOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ByteOffsetOp);
SPIRVInstruction *DecoInst =
new SPIRVInstruction(5, spv::OpMemberDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, DecoInst);
}
// Generate OpDecorate.
for (auto ArgGV : ArgGVMap) {
Type *ArgGVTy = ArgGV.second->getType();
PointerType *PTy = cast<PointerType>(ArgGVTy);
Type *ArgTy = PTy->getElementType();
// Struct type from argument is already distinguished with the other
// struct types on llvm types. As a result, if current processing struct
// type is same with argument type, we can generate OpDecorate with
// Block or BufferBlock.
if (ArgTy == STy) {
// Ops[0] = Target ID
// Ops[1] = Decoration (Block or BufferBlock)
Ops.clear();
SPIRVOperand *STyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, STyID);
Ops.push_back(STyIDOp);
// Use Block decorations with StorageBuffer storage class.
const spv::Decoration Deco = spv::DecorationBlock;
SPIRVOperand *DecoOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
Ops.push_back(DecoOp);
SPIRVInstruction *DecoInst =
new SPIRVInstruction(3, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, DecoInst);
break;
}
}
break;
}
case Type::IntegerTyID: {
unsigned BitWidth = Ty->getPrimitiveSizeInBits();
if (BitWidth == 1) {
SPIRVInstruction *Inst =
new SPIRVInstruction(2, spv::OpTypeBool, nextID++, {});
SPIRVInstList.push_back(Inst);
} else {
// i8 is added to TypeMap as i32.
// No matter what LLVM type is requested first, always alias the
// second one's SPIR-V type to be the same as the one we generated
// first.
unsigned aliasToWidth = 0;
if (BitWidth == 8) {
aliasToWidth = 32;
BitWidth = 32;
} else if (BitWidth == 32) {
aliasToWidth = 8;
}
if (aliasToWidth) {
Type* otherType = Type::getIntNTy(Ty->getContext(), aliasToWidth);
auto where = TypeMap.find(otherType);
if (where == TypeMap.end()) {
// Go ahead and make it, but also map the other type to it.
TypeMap[otherType] = nextID;
} else {
// Alias this SPIR-V type the existing type.
TypeMap[Ty] = where->second;
break;
}
}
SPIRVOperand *Ops[2] = {
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, BitWidth),
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, 0u)};
SPIRVInstList.push_back(
new SPIRVInstruction(4, spv::OpTypeInt, nextID++, Ops));
}
break;
}
case Type::HalfTyID:
case Type::FloatTyID:
case Type::DoubleTyID: {
SPIRVOperand *WidthOp = new SPIRVOperand(
SPIRVOperandType::LITERAL_INTEGER, Ty->getPrimitiveSizeInBits());
SPIRVInstList.push_back(
new SPIRVInstruction(3, spv::OpTypeFloat, nextID++, WidthOp));
break;
}
case Type::ArrayTyID: {
LLVMContext &Context = Ty->getContext();
ArrayType *ArrTy = cast<ArrayType>(Ty);
//
// Generate OpConstant and OpTypeArray.
//
//
// Generate OpConstant for array length.
//
// Ops[0] = Result Type ID
// Ops[1] .. Ops[n] = Values LiteralNumber
SPIRVOperandList Ops;
Type *LengthTy = Type::getInt32Ty(Context);
uint32_t ResTyID = lookupType(LengthTy);
SPIRVOperand *ResTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyOp);
uint64_t Length = ArrTy->getArrayNumElements();
assert(Length < UINT32_MAX);
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(static_cast<uint32_t>(Length));
SPIRVOperand *ValOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ValOp);
// Add constant for length to constant list.
Constant *CstLength = ConstantInt::get(LengthTy, Length);
AllocatedVMap[CstLength] = nextID;
VMap[CstLength] = nextID;
uint32_t LengthID = nextID;
SPIRVInstruction *CstInst =
new SPIRVInstruction(4, spv::OpConstant, nextID++, Ops);
SPIRVInstList.push_back(CstInst);
//
// Generate OpTypeArray.
//
// Ops[0] = Element Type ID
// Ops[1] = Array Length Constant ID
Ops.clear();
uint32_t EleTyID = lookupType(ArrTy->getElementType());
SPIRVOperand *EleTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, EleTyID);
Ops.push_back(EleTyOp);
SPIRVOperand *LengthOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, LengthID);
Ops.push_back(LengthOp);
// Update TypeMap with nextID.
TypeMap[Ty] = nextID;
SPIRVInstruction *ArrayInst =
new SPIRVInstruction(4, spv::OpTypeArray, nextID++, Ops);
SPIRVInstList.push_back(ArrayInst);
break;
}
case Type::VectorTyID: {
// <4 x i8> is changed to i32.
LLVMContext &Context = Ty->getContext();
if (Ty->getVectorElementType() == Type::getInt8Ty(Context)) {
if (Ty->getVectorNumElements() == 4) {
TypeMap[Ty] = lookupType(Ty->getVectorElementType());
break;
} else {
Ty->print(errs());
llvm_unreachable("Support above i8 vector type");
}
}
// Ops[0] = Component Type ID
// Ops[1] = Component Count (Literal Number)
SPIRVOperand *Ops[2] = {
new SPIRVOperand(SPIRVOperandType::NUMBERID,
lookupType(Ty->getVectorElementType())),
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER,
Ty->getVectorNumElements())};
SPIRVInstList.push_back(
new SPIRVInstruction(4, spv::OpTypeVector, nextID++, Ops));
break;
}
case Type::VoidTyID: {
SPIRVInstruction *Inst =
new SPIRVInstruction(2, spv::OpTypeVoid, nextID++, {});
SPIRVInstList.push_back(Inst);
break;
}
case Type::FunctionTyID: {
// Generate SPIRV instruction for function type.
FunctionType *FTy = cast<FunctionType>(Ty);
// Ops[0] = Return Type ID
// Ops[1] ... Ops[n] = Parameter Type IDs
SPIRVOperandList Ops;
// Find SPIRV instruction for return type
uint32_t RetTyID = lookupType(FTy->getReturnType());
SPIRVOperand *RetTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, RetTyID);
Ops.push_back(RetTyOp);
// Find SPIRV instructions for parameter types
for (unsigned k = 0; k < FTy->getNumParams(); k++) {
// Find SPIRV instruction for parameter type.
auto ParamTy = FTy->getParamType(k);
if (ParamTy->isPointerTy()) {
auto PointeeTy = ParamTy->getPointerElementType();
if (PointeeTy->isStructTy() &&
dyn_cast<StructType>(PointeeTy)->isOpaque()) {
ParamTy = PointeeTy;
}
}
uint32_t ParamTyID = lookupType(ParamTy);
SPIRVOperand *ParamTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ParamTyID);
Ops.push_back(ParamTyOp);
}
// Return type id is included in operand list.
uint16_t WordCount = static_cast<uint16_t>(2 + Ops.size());
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, spv::OpTypeFunction, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
}
}
// Generate OpTypeSampledImage.
TypeMapType &OpImageTypeMap = getImageTypeMap();
for (auto &ImageType : OpImageTypeMap) {
//
// Generate OpTypeSampledImage.
//
// Ops[0] = Image Type ID
//
SPIRVOperandList Ops;
Type *ImgTy = ImageType.first;
uint32_t ImgTyID = TypeMap[ImgTy];
SPIRVOperand *ImgTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ImgTyID);
Ops.push_back(ImgTyOp);
// Update OpImageTypeMap.
ImageType.second = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(3, spv::OpTypeSampledImage, nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
}
void SPIRVProducerPass::GenerateSPIRVConstants() {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
ValueMapType &AllocatedVMap = getAllocatedValueMap();
ValueList &CstList = getConstantList();
for (uint32_t i = 0; i < CstList.size(); i++) {
// UniqueVector ids are 1-based.
Constant *Cst = cast<Constant>(CstList[i+1]);
// OpTypeArray's constant was already generated.
if (AllocatedVMap.find_as(Cst) != AllocatedVMap.end()) {
continue;
}
// Set ValueMap with nextID for reference later.
VMap[Cst] = nextID;
//
// Generate OpConstant.
//
// Ops[0] = Result Type ID
// Ops[1] .. Ops[n] = Values LiteralNumber
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(Cst->getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
std::vector<uint32_t> LiteralNum;
uint16_t WordCount = 0;
spv::Op Opcode = spv::OpNop;
if (isa<UndefValue>(Cst)) {
// Ops[0] = Result Type ID
Opcode = spv::OpUndef;
WordCount = 3;
} else if (const ConstantInt *CI = dyn_cast<ConstantInt>(Cst)) {
unsigned BitWidth = CI->getBitWidth();
if (BitWidth == 1) {
// If the bitwidth of constant is 1, generate OpConstantTrue or
// OpConstantFalse.
if (CI->getZExtValue()) {
// Ops[0] = Result Type ID
Opcode = spv::OpConstantTrue;
} else {
// Ops[0] = Result Type ID
Opcode = spv::OpConstantFalse;
}
WordCount = 3;
} else {
auto V = CI->getZExtValue();
LiteralNum.push_back(V & 0xFFFFFFFF);
if (BitWidth > 32) {
LiteralNum.push_back(V >> 32);
}
Opcode = spv::OpConstant;
WordCount = static_cast<uint16_t>(3 + LiteralNum.size());
SPIRVOperand *CstValue =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(CstValue);
}
} else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(Cst)) {
uint64_t FPVal = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Type *CFPTy = CFP->getType();
if (CFPTy->isFloatTy()) {
LiteralNum.push_back(FPVal & 0xFFFFFFFF);
} else {
CFPTy->print(errs());
llvm_unreachable("Implement this ConstantFP Type");
}
Opcode = spv::OpConstant;
WordCount = static_cast<uint16_t>(3 + LiteralNum.size());
SPIRVOperand *CstValue =
new SPIRVOperand(SPIRVOperandType::LITERAL_FLOAT, LiteralNum);
Ops.push_back(CstValue);
} else if (isa<ConstantDataSequential>(Cst) &&
cast<ConstantDataSequential>(Cst)->isString()) {
Cst->print(errs());
llvm_unreachable("Implement this Constant");
} else if (const ConstantDataSequential *CDS =
dyn_cast<ConstantDataSequential>(Cst)) {
// Let's convert <4 x i8> constant to int constant specially.
// This case occurs when all the values are specified as constant
// ints.
Type *CstTy = Cst->getType();
if (is4xi8vec(CstTy)) {
LLVMContext &Context = CstTy->getContext();
//
// Generate OpConstant with OpTypeInt 32 0.
//
uint32_t IntValue = 0;
for (unsigned k = 0; k < 4; k++) {
const uint64_t Val = CDS->getElementAsInteger(k);
IntValue = (IntValue << 8) | (Val & 0xffu);
}
Type *i32 = Type::getInt32Ty(Context);
Constant *CstInt = ConstantInt::get(i32, IntValue);
// If this constant is already registered on VMap, use it.
if (VMap.count(CstInt)) {
uint32_t CstID = VMap[CstInt];
VMap[Cst] = CstID;
continue;
}
LiteralNum.push_back(IntValue);
SPIRVOperand *CstValue =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(CstValue);
SPIRVInstruction *CstInst =
new SPIRVInstruction(4, spv::OpConstant, nextID++, Ops);
SPIRVInstList.push_back(CstInst);
continue;
}
// A normal constant-data-sequential case.
for (unsigned k = 0; k < CDS->getNumElements(); k++) {
Constant *EleCst = CDS->getElementAsConstant(k);
uint32_t EleCstID = VMap[EleCst];
SPIRVOperand *EleCstIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, EleCstID);
Ops.push_back(EleCstIDOp);
}
Opcode = spv::OpConstantComposite;
WordCount = static_cast<uint16_t>(3 + CDS->getNumElements());
} else if (const ConstantAggregate *CA = dyn_cast<ConstantAggregate>(Cst)) {
// Let's convert <4 x i8> constant to int constant specially.
// This case occurs when at least one of the values is an undef.
Type *CstTy = Cst->getType();
if (is4xi8vec(CstTy)) {
LLVMContext &Context = CstTy->getContext();
//
// Generate OpConstant with OpTypeInt 32 0.
//
uint32_t IntValue = 0;
for (User::const_op_iterator I = Cst->op_begin(), E = Cst->op_end();
I != E; ++I) {
uint64_t Val = 0;
const Value* CV = *I;
if (auto *CI2 = dyn_cast<ConstantInt>(CV)) {
Val = CI2->getZExtValue();
}
IntValue = (IntValue << 8) | (Val & 0xffu);
}
Type *i32 = Type::getInt32Ty(Context);
Constant *CstInt = ConstantInt::get(i32, IntValue);
// If this constant is already registered on VMap, use it.
if (VMap.count(CstInt)) {
uint32_t CstID = VMap[CstInt];
VMap[Cst] = CstID;
continue;
}
LiteralNum.push_back(IntValue);
SPIRVOperand *CstValue =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(CstValue);
SPIRVInstruction *CstInst =
new SPIRVInstruction(4, spv::OpConstant, nextID++, Ops);
SPIRVInstList.push_back(CstInst);
continue;
}
// We use a constant composite in SPIR-V for our constant aggregate in
// LLVM.
Opcode = spv::OpConstantComposite;
WordCount = static_cast<uint16_t>(3 + CA->getNumOperands());
for (unsigned k = 0; k < CA->getNumOperands(); k++) {
// Look up the ID of the element of this aggregate (which we will
// previously have created a constant for).
uint32_t ElementConstantID = VMap[CA->getAggregateElement(k)];
// And add an operand to the composite we are constructing
Ops.push_back(
new SPIRVOperand(SPIRVOperandType::NUMBERID, ElementConstantID));
}
} else if (Cst->isNullValue()) {
Opcode = spv::OpConstantNull;
WordCount = 3;
} else {
Cst->print(errs());
llvm_unreachable("Unsupported Constant???");
}
SPIRVInstruction *CstInst =
new SPIRVInstruction(WordCount, Opcode, nextID++, Ops);
SPIRVInstList.push_back(CstInst);
}
}
void SPIRVProducerPass::GenerateSamplers(Module &M) {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
DenseMap<unsigned, unsigned> SamplerLiteralToIDMap;
unsigned BindingIdx = 0;
// Generate the sampler map.
for (auto SamplerLiteral : getSamplerMap()) {
// Generate OpVariable.
//
// GIDOps[0] : Result Type ID
// GIDOps[1] : Storage Class
SPIRVOperandList Ops;
Ops.push_back(
new SPIRVOperand(SPIRVOperandType::NUMBERID, lookupType(SamplerTy)));
spv::StorageClass StorageClass = spv::StorageClassUniformConstant;
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, StorageClass));
SPIRVInstruction *Inst = new SPIRVInstruction(
static_cast<uint16_t>(2 + Ops.size()), spv::OpVariable, nextID, Ops);
SPIRVInstList.push_back(Inst);
SamplerLiteralToIDMap[SamplerLiteral.first] = nextID++;
// Find Insert Point for OpDecorate.
auto DecoInsertPoint =
std::find_if(SPIRVInstList.begin(), SPIRVInstList.end(),
[](SPIRVInstruction *Inst) -> bool {
return Inst->getOpcode() != spv::OpDecorate &&
Inst->getOpcode() != spv::OpMemberDecorate &&
Inst->getOpcode() != spv::OpExtInstImport;
});
// Ops[0] = Target ID
// Ops[1] = Decoration (DescriptorSet)
// Ops[2] = LiteralNumber according to Decoration
Ops.clear();
SPIRVOperand *ArgIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID,
SamplerLiteralToIDMap[SamplerLiteral.first]);
Ops.push_back(ArgIDOp);
spv::Decoration Deco = spv::DecorationDescriptorSet;
SPIRVOperand *DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
Ops.push_back(DecoOp);
descriptorMapOut << "sampler," << SamplerLiteral.first << ",samplerExpr,\""
<< SamplerLiteral.second << "\",descriptorSet,0,binding,"
<< BindingIdx << "\n";
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(0);
SPIRVOperand *DescSet =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(DescSet);
SPIRVInstruction *DescDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, DescDecoInst);
// Ops[0] = Target ID
// Ops[1] = Decoration (Binding)
// Ops[2] = LiteralNumber according to Decoration
Ops.clear();
Ops.push_back(ArgIDOp);
Deco = spv::DecorationBinding;
DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
Ops.push_back(DecoOp);
LiteralNum.clear();
LiteralNum.push_back(BindingIdx++);
SPIRVOperand *Binding =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Binding);
SPIRVInstruction *BindDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, BindDecoInst);
}
const char *TranslateSamplerFunctionName = "__translate_sampler_initializer";
auto SamplerFunction = M.getFunction(TranslateSamplerFunctionName);
// If there are no uses of the sampler function, no work to do!
if (!SamplerFunction) {
return;
}
// Iterate through the users of the sampler function.
for (auto User : SamplerFunction->users()) {
if (auto CI = dyn_cast<CallInst>(User)) {
// Get the literal used to initialize the sampler.
auto Constant = dyn_cast<ConstantInt>(CI->getArgOperand(0));
if (!Constant) {
CI->getArgOperand(0)->print(errs());
llvm_unreachable("Argument of sampler initializer was non-constant!");
}
auto SamplerLiteral = static_cast<unsigned>(Constant->getZExtValue());
if (0 == SamplerLiteralToIDMap.count(SamplerLiteral)) {
Constant->print(errs());
llvm_unreachable("Sampler literal was not found in sampler map!");
}
// Calls to the sampler literal function to initialize a sampler are
// re-routed to the global variables declared for the sampler.
VMap[CI] = SamplerLiteralToIDMap[SamplerLiteral];
}
}
}
void SPIRVProducerPass::GenerateGlobalVar(GlobalVariable &GV) {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
std::vector<uint32_t> &BuiltinDimVec = getBuiltinDimVec();
const spv::BuiltIn BuiltinType = GetBuiltin(GV.getName());
Type *Ty = GV.getType();
PointerType *PTy = cast<PointerType>(Ty);
uint32_t InitializerID = 0;
// Workgroup size is handled differently (it goes into a constant)
if (spv::BuiltInWorkgroupSize == BuiltinType) {
std::vector<bool> HasMDVec;
uint32_t PrevXDimCst = 0xFFFFFFFF;
uint32_t PrevYDimCst = 0xFFFFFFFF;
uint32_t PrevZDimCst = 0xFFFFFFFF;
for (Function &Func : *GV.getParent()) {
if (Func.isDeclaration()) {
continue;
}
// We only need to check kernels.
if (Func.getCallingConv() != CallingConv::SPIR_KERNEL) {
continue;
}
if (const MDNode *MD =
dyn_cast<Function>(&Func)->getMetadata("reqd_work_group_size")) {
uint32_t CurXDimCst = static_cast<uint32_t>(
mdconst::extract<ConstantInt>(MD->getOperand(0))->getZExtValue());
uint32_t CurYDimCst = static_cast<uint32_t>(
mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue());
uint32_t CurZDimCst = static_cast<uint32_t>(
mdconst::extract<ConstantInt>(MD->getOperand(2))->getZExtValue());
if (PrevXDimCst == 0xFFFFFFFF && PrevYDimCst == 0xFFFFFFFF &&
PrevZDimCst == 0xFFFFFFFF) {
PrevXDimCst = CurXDimCst;
PrevYDimCst = CurYDimCst;
PrevZDimCst = CurZDimCst;
} else if (CurXDimCst != PrevXDimCst || CurYDimCst != PrevYDimCst ||
CurZDimCst != PrevZDimCst) {
llvm_unreachable(
"reqd_work_group_size must be the same across all kernels");
} else {
continue;
}
//
// Generate OpConstantComposite.
//
// Ops[0] : Result Type ID
// Ops[1] : Constant size for x dimension.
// Ops[2] : Constant size for y dimension.
// Ops[3] : Constant size for z dimension.
SPIRVOperandList Ops;
uint32_t XDimCstID =
VMap[mdconst::extract<ConstantInt>(MD->getOperand(0))];
uint32_t YDimCstID =
VMap[mdconst::extract<ConstantInt>(MD->getOperand(1))];
uint32_t ZDimCstID =
VMap[mdconst::extract<ConstantInt>(MD->getOperand(2))];
InitializerID = nextID;
Ops.push_back(
new SPIRVOperand(SPIRVOperandType::NUMBERID,
lookupType(Ty->getPointerElementType())));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, XDimCstID));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, YDimCstID));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, ZDimCstID));
SPIRVInstruction *Inst =
new SPIRVInstruction(6, spv::OpConstantComposite, nextID++, Ops);
SPIRVInstList.push_back(Inst);
HasMDVec.push_back(true);
} else {
HasMDVec.push_back(false);
}
}
// Check all kernels have same definitions for work_group_size.
bool HasMD = false;
if (!HasMDVec.empty()) {
HasMD = HasMDVec[0];
for (uint32_t i = 1; i < HasMDVec.size(); i++) {
if (HasMD != HasMDVec[i]) {
llvm_unreachable(
"Kernels should have consistent work group size definition");
}
}
}
// If all kernels do not have metadata for reqd_work_group_size, generate
// OpSpecConstants for x/y/z dimension.
if (!HasMD) {
//
// Generate OpSpecConstants for x/y/z dimension.
//
// Ops[0] : Result Type ID
// Ops[1] : Constant size for x/y/z dimension (Literal Number).
uint32_t XDimCstID = 0;
uint32_t YDimCstID = 0;
uint32_t ZDimCstID = 0;
// X Dimension
SPIRVOperandList Ops;
Ops.push_back(new SPIRVOperand(
SPIRVOperandType::NUMBERID,
lookupType(Ty->getPointerElementType()->getSequentialElementType())));
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(1);
SPIRVOperand *XDim =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(XDim);
XDimCstID = nextID;
BuiltinDimVec.push_back(XDimCstID);
SPIRVInstruction *XDimCstInst =
new SPIRVInstruction(4, spv::OpSpecConstant, nextID++, Ops);
SPIRVInstList.push_back(XDimCstInst);
// Y Dimension
Ops.clear();
Ops.push_back(new SPIRVOperand(
SPIRVOperandType::NUMBERID,
lookupType(Ty->getPointerElementType()->getSequentialElementType())));
LiteralNum.clear();
LiteralNum.push_back(1);
SPIRVOperand *YDim =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(YDim);
YDimCstID = nextID;
BuiltinDimVec.push_back(YDimCstID);
SPIRVInstruction *YDimCstInst =
new SPIRVInstruction(4, spv::OpSpecConstant, nextID++, Ops);
SPIRVInstList.push_back(YDimCstInst);
// Z Dimension
Ops.clear();
Ops.push_back(new SPIRVOperand(
SPIRVOperandType::NUMBERID,
lookupType(Ty->getPointerElementType()->getSequentialElementType())));
LiteralNum.clear();
LiteralNum.push_back(1);
SPIRVOperand *ZDim =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ZDim);
ZDimCstID = nextID;
BuiltinDimVec.push_back(ZDimCstID);
SPIRVInstruction *ZDimCstInst =
new SPIRVInstruction(4, spv::OpSpecConstant, nextID++, Ops);
SPIRVInstList.push_back(ZDimCstInst);
//
// Generate OpSpecConstantComposite.
//
// Ops[0] : Result Type ID
// Ops[1] : Constant size for x dimension.
// Ops[2] : Constant size for y dimension.
// Ops[3] : Constant size for z dimension.
InitializerID = nextID;
Ops.clear();
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
lookupType(Ty->getPointerElementType())));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, XDimCstID));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, YDimCstID));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, ZDimCstID));
SPIRVInstruction *Inst =
new SPIRVInstruction(6, spv::OpSpecConstantComposite, nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
}
if (GV.hasInitializer()) {
InitializerID = VMap[GV.getInitializer()];
}
VMap[&GV] = nextID;
//
// Generate OpVariable.
//
// GIDOps[0] : Result Type ID
// GIDOps[1] : Storage Class
SPIRVOperandList Ops;
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, lookupType(Ty)));
spv::StorageClass StorageClass = GetStorageClass(PTy->getAddressSpace());
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, StorageClass));
if (0 != InitializerID) {
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, InitializerID));
}
SPIRVInstruction *Inst = new SPIRVInstruction(
static_cast<uint16_t>(2 + Ops.size()), spv::OpVariable, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// If we have a builtin.
if (spv::BuiltInMax != BuiltinType) {
// Find Insert Point for OpDecorate.
auto DecoInsertPoint =
std::find_if(SPIRVInstList.begin(), SPIRVInstList.end(),
[](SPIRVInstruction *Inst) -> bool {
return Inst->getOpcode() != spv::OpDecorate &&
Inst->getOpcode() != spv::OpMemberDecorate &&
Inst->getOpcode() != spv::OpExtInstImport;
});
//
// Generate OpDecorate.
//
// DOps[0] = Target ID
// DOps[1] = Decoration (Builtin)
// DOps[2] = BuiltIn ID
uint32_t ResultID;
// WorkgroupSize is different, we decorate the constant composite that has
// its value, rather than the variable that we use to access the value.
if (spv::BuiltInWorkgroupSize == BuiltinType) {
ResultID = InitializerID;
// Save both the value and variable IDs for later.
WorkgroupSizeValueID = InitializerID;
WorkgroupSizeVarID = VMap[&GV];
} else {
ResultID = VMap[&GV];
}
SPIRVOperandList DOps;
SPIRVOperand *ResultIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResultID);
DOps.push_back(ResultIDOp);
spv::Decoration Deco = spv::DecorationBuiltIn;
SPIRVOperand *DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
DOps.push_back(DecoOp);
SPIRVOperand *Builtin =
new SPIRVOperand(SPIRVOperandType::NUMBERID, BuiltinType);
DOps.push_back(Builtin);
SPIRVInstruction *DescDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, DOps);
SPIRVInstList.insert(DecoInsertPoint, DescDecoInst);
}
}
void SPIRVProducerPass::GenerateFuncPrologue(Function &F) {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
EntryPointVecType &EntryPoints = getEntryPointVec();
ValueToValueMapTy &ArgGVMap = getArgumentGVMap();
ValueMapType &ArgGVIDMap = getArgumentGVIDMap();
auto &GlobalConstFuncTyMap = getGlobalConstFuncTypeMap();
auto &GlobalConstArgSet = getGlobalConstArgSet();
FunctionType *FTy = F.getFunctionType();
//
// Generate OpVariable and OpDecorate for kernel function with arguments.
//
if (F.getCallingConv() == CallingConv::SPIR_KERNEL) {
// Find Insert Point for OpDecorate.
auto DecoInsertPoint =
std::find_if(SPIRVInstList.begin(), SPIRVInstList.end(),
[](SPIRVInstruction *Inst) -> bool {
return Inst->getOpcode() != spv::OpDecorate &&
Inst->getOpcode() != spv::OpMemberDecorate &&
Inst->getOpcode() != spv::OpExtInstImport;
});
uint32_t DescriptorSetIdx = (0 < getSamplerMap().size()) ? 1u : 0u;
if (distinct_kernel_descriptor_sets) {
for (Function &Func : *F.getParent()) {
if (Func.isDeclaration()) {
continue;
}
if (Func.getCallingConv() == CallingConv::SPIR_KERNEL) {
if (&Func == &F) {
break;
}
DescriptorSetIdx++;
}
}
}
const auto *ArgMap = F.getMetadata("kernel_arg_map");
// Emit descriptor map entries, if there was explicit metadata
// attached.
if (ArgMap) {
for (const auto &arg : ArgMap->operands()) {
const MDNode *arg_node = dyn_cast<MDNode>(arg.get());
assert(arg_node->getNumOperands() == 4);
const auto name =
dyn_cast<MDString>(arg_node->getOperand(0))->getString();
const auto old_index =
dyn_extract<ConstantInt>(arg_node->getOperand(1))->getZExtValue();
const auto new_index =
dyn_extract<ConstantInt>(arg_node->getOperand(2))->getZExtValue();
const auto offset =
dyn_extract<ConstantInt>(arg_node->getOperand(3))->getZExtValue();
descriptorMapOut << "kernel," << F.getName() << ",arg," << name
<< ",argOrdinal," << old_index << ",descriptorSet,"
<< DescriptorSetIdx << ",binding," << new_index
<< ",offset," << offset << "\n";
}
}
uint32_t BindingIdx = 0;
for (auto &Arg : F.args()) {
Value *NewGV = ArgGVMap[&Arg];
VMap[&Arg] = VMap[NewGV];
ArgGVIDMap[&Arg] = VMap[&Arg];
// Emit a descriptor map entry for this arg, in case there was no explicit
// kernel arg mapping metadata.
if (!ArgMap) {
descriptorMapOut << "kernel," << F.getName() << ",arg," << Arg.getName()
<< ",argOrdinal," << BindingIdx << ",descriptorSet,"
<< DescriptorSetIdx << ",binding," << BindingIdx
<< ",offset,0\n";
}
// Ops[0] = Target ID
// Ops[1] = Decoration (DescriptorSet)
// Ops[2] = LiteralNumber according to Decoration
SPIRVOperandList Ops;
SPIRVOperand *ArgIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, VMap[&Arg]);
Ops.push_back(ArgIDOp);
spv::Decoration Deco = spv::DecorationDescriptorSet;
SPIRVOperand *DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
Ops.push_back(DecoOp);
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(DescriptorSetIdx);
SPIRVOperand *DescSet =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(DescSet);
SPIRVInstruction *DescDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, DescDecoInst);
// Ops[0] = Target ID
// Ops[1] = Decoration (Binding)
// Ops[2] = LiteralNumber according to Decoration
Ops.clear();
Ops.push_back(ArgIDOp);
Deco = spv::DecorationBinding;
DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
Ops.push_back(DecoOp);
LiteralNum.clear();
LiteralNum.push_back(BindingIdx++);
SPIRVOperand *Binding =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Binding);
SPIRVInstruction *BindDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, BindDecoInst);
// Handle image type argument.
bool HasReadOnlyImageType = false;
bool HasWriteOnlyImageType = false;
if (PointerType *ArgPTy = dyn_cast<PointerType>(Arg.getType())) {
if (StructType *STy = dyn_cast<StructType>(ArgPTy->getElementType())) {
if (STy->isOpaque()) {
if (STy->getName().equals("opencl.image2d_ro_t") ||
STy->getName().equals("opencl.image3d_ro_t")) {
HasReadOnlyImageType = true;
} else if (STy->getName().equals("opencl.image2d_wo_t") ||
STy->getName().equals("opencl.image3d_wo_t")) {
HasWriteOnlyImageType = true;
}
}
}
}
if (HasReadOnlyImageType || HasWriteOnlyImageType) {
// Ops[0] = Target ID
// Ops[1] = Decoration (NonReadable or NonWritable)
Ops.clear();
ArgIDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, VMap[&Arg]);
Ops.push_back(ArgIDOp);
Deco = spv::DecorationNonReadable;
if (HasReadOnlyImageType) {
Deco = spv::DecorationNonWritable;
}
DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
Ops.push_back(DecoOp);
DescDecoInst =
new SPIRVInstruction(3, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, DescDecoInst);
}
// Handle const address space.
if (NewGV->getType()->getPointerAddressSpace() ==
AddressSpace::Constant) {
// Ops[0] = Target ID
// Ops[1] = Decoration (NonWriteable)
Ops.clear();
Ops.push_back(ArgIDOp);
Deco = spv::DecorationNonWritable;
DecoOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Deco);
Ops.push_back(DecoOp);
BindDecoInst =
new SPIRVInstruction(3, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, BindDecoInst);
}
}
}
//
// Generate OPFunction.
//
// FOps[0] : Result Type ID
// FOps[1] : Function Control
// FOps[2] : Function Type ID
SPIRVOperandList FOps;
// Find SPIRV instruction for return type.
uint32_t RetTyID = lookupType(FTy->getReturnType());
SPIRVOperand *RetTyOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, RetTyID);
FOps.push_back(RetTyOp);
// Check function attributes for SPIRV Function Control.
uint32_t FuncControl = spv::FunctionControlMaskNone;
if (F.hasFnAttribute(Attribute::AlwaysInline)) {
FuncControl |= spv::FunctionControlInlineMask;
}
if (F.hasFnAttribute(Attribute::NoInline)) {
FuncControl |= spv::FunctionControlDontInlineMask;
}
// TODO: Check llvm attribute for Function Control Pure.
if (F.hasFnAttribute(Attribute::ReadOnly)) {
FuncControl |= spv::FunctionControlPureMask;
}
// TODO: Check llvm attribute for Function Control Const.
if (F.hasFnAttribute(Attribute::ReadNone)) {
FuncControl |= spv::FunctionControlConstMask;
}
SPIRVOperand *FunctionControlOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, FuncControl);
FOps.push_back(FunctionControlOp);
uint32_t FTyID;
if (F.getCallingConv() == CallingConv::SPIR_KERNEL) {
SmallVector<Type *, 4> NewFuncParamTys;
FunctionType *NewFTy =
FunctionType::get(FTy->getReturnType(), NewFuncParamTys, false);
FTyID = lookupType(NewFTy);
} else {
// Handle function with global constant parameters.
if (GlobalConstFuncTyMap.count(FTy)) {
FTyID = lookupType(GlobalConstFuncTyMap[FTy].first);
} else {
FTyID = lookupType(FTy);
}
}
SPIRVOperand *FTyOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, FTyID);
FOps.push_back(FTyOp);
if (F.getCallingConv() == CallingConv::SPIR_KERNEL) {
EntryPoints.push_back(std::make_pair(&F, nextID));
}
VMap[&F] = nextID;
// Generate SPIRV instruction for function.
SPIRVInstruction *FuncInst =
new SPIRVInstruction(5, spv::OpFunction, nextID++, FOps);
SPIRVInstList.push_back(FuncInst);
//
// Generate OpFunctionParameter for Normal function.
//
if (F.getCallingConv() != CallingConv::SPIR_KERNEL) {
// Iterate Argument for name instead of param type from function type.
unsigned ArgIdx = 0;
for (Argument &Arg : F.args()) {
VMap[&Arg] = nextID;
// ParamOps[0] : Result Type ID
SPIRVOperandList ParamOps;
// Find SPIRV instruction for parameter type.
uint32_t ParamTyID = lookupType(Arg.getType());
if (PointerType *PTy = dyn_cast<PointerType>(Arg.getType())) {
if (GlobalConstFuncTyMap.count(FTy)) {
if (ArgIdx == GlobalConstFuncTyMap[FTy].second) {
Type *EleTy = PTy->getPointerElementType();
Type *ArgTy =
PointerType::get(EleTy, AddressSpace::ModuleScopePrivate);
ParamTyID = lookupType(ArgTy);
GlobalConstArgSet.insert(&Arg);
}
}
}
SPIRVOperand *ParamTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ParamTyID);
ParamOps.push_back(ParamTyOp);
// Generate SPIRV instruction for parameter.
SPIRVInstruction *ParamInst =
new SPIRVInstruction(3, spv::OpFunctionParameter, nextID++, ParamOps);
SPIRVInstList.push_back(ParamInst);
ArgIdx++;
}
}
}
void SPIRVProducerPass::GenerateModuleInfo() {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
EntryPointVecType &EntryPoints = getEntryPointVec();
ValueMapType &VMap = getValueMap();
ValueList &EntryPointInterfaces = getEntryPointInterfacesVec();
uint32_t &ExtInstImportID = getOpExtInstImportID();
std::vector<uint32_t> &BuiltinDimVec = getBuiltinDimVec();
// Set up insert point.
auto InsertPoint = SPIRVInstList.begin();
//
// Generate OpCapability
//
// TODO: Which llvm information is mapped to SPIRV Capapbility?
// Ops[0] = Capability
SPIRVOperandList Ops;
SPIRVInstruction *CapInst = new SPIRVInstruction(
2, spv::OpCapability, 0 /* No id */,
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::CapabilityShader));
SPIRVInstList.insert(InsertPoint, CapInst);
for (Type *Ty : getTypeList()) {
// Find the i16 type.
if (Ty->isIntegerTy(16)) {
// Generate OpCapability for i16 type.
SPIRVInstList.insert(
InsertPoint,
new SPIRVInstruction(2, spv::OpCapability, 0 /* No id */,
new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::CapabilityInt16)));
} else if (Ty->isIntegerTy(64)) {
// Generate OpCapability for i64 type.
SPIRVInstList.insert(
InsertPoint,
new SPIRVInstruction(2, spv::OpCapability, 0 /* No id */,
new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::CapabilityInt64)));
} else if (Ty->isHalfTy()) {
// Generate OpCapability for half type.
SPIRVInstList.insert(
InsertPoint,
new SPIRVInstruction(2, spv::OpCapability, 0 /* No id */,
new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::CapabilityFloat16)));
} else if (Ty->isDoubleTy()) {
// Generate OpCapability for double type.
SPIRVInstList.insert(
InsertPoint,
new SPIRVInstruction(2, spv::OpCapability, 0 /* No id */,
new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::CapabilityFloat64)));
} else if (auto *STy = dyn_cast<StructType>(Ty)) {
if (STy->isOpaque()) {
if (STy->getName().equals("opencl.image2d_wo_t") ||
STy->getName().equals("opencl.image3d_wo_t")) {
// Generate OpCapability for write only image type.
SPIRVInstList.insert(
InsertPoint,
new SPIRVInstruction(
2, spv::OpCapability, 0 /* No id */,
new SPIRVOperand(
SPIRVOperandType::NUMBERID,
spv::CapabilityStorageImageWriteWithoutFormat)));
}
}
}
}
if (hasVariablePointers()) {
//
// Generate OpCapability and OpExtension
//
//
// Generate OpCapability.
//
// Ops[0] = Capability
//
Ops.clear();
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::CapabilityVariablePointers));
SPIRVInstList.insert(InsertPoint, new SPIRVInstruction(2, spv::OpCapability,
0 /* No id */, Ops));
//
// Generate OpExtension.
//
// Ops[0] = Name (Literal String)
//
for (auto extension : {"SPV_KHR_storage_buffer_storage_class",
"SPV_KHR_variable_pointers"}) {
Ops.clear();
SPIRVOperand *Name =
new SPIRVOperand(SPIRVOperandType::LITERAL_STRING, extension);
Ops.push_back(Name);
size_t NameWordSize = (Name->getLiteralStr().size() + 1) / 4;
if ((Name->getLiteralStr().size() + 1) % 4) {
NameWordSize += 1;
}
assert((NameWordSize + 1) < UINT16_MAX);
uint16_t WordCount = static_cast<uint16_t>(1 + NameWordSize);
SPIRVInstruction *ExtensionInst =
new SPIRVInstruction(WordCount, spv::OpExtension, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, ExtensionInst);
}
}
if (ExtInstImportID) {
++InsertPoint;
}
//
// Generate OpMemoryModel
//
// Memory model for Vulkan will always be GLSL450.
// Ops[0] = Addressing Model
// Ops[1] = Memory Model
Ops.clear();
SPIRVOperand *AddrModel =
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::AddressingModelLogical);
Ops.push_back(AddrModel);
SPIRVOperand *MemModel =
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::MemoryModelGLSL450);
Ops.push_back(MemModel);
SPIRVInstruction *MemModelInst =
new SPIRVInstruction(3, spv::OpMemoryModel, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, MemModelInst);
//
// Generate OpEntryPoint
//
for (auto EntryPoint : EntryPoints) {
// Ops[0] = Execution Model
// Ops[1] = EntryPoint ID
// Ops[2] = Name (Literal String)
// ...
//
// TODO: Do we need to consider Interface ID for forward references???
Ops.clear();
SPIRVOperand *ExecModel = new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::ExecutionModelGLCompute);
Ops.push_back(ExecModel);
SPIRVOperand *EntryPointID =
new SPIRVOperand(SPIRVOperandType::NUMBERID, EntryPoint.second);
Ops.push_back(EntryPointID);
SPIRVOperand *Name = new SPIRVOperand(SPIRVOperandType::LITERAL_STRING,
EntryPoint.first->getName());
Ops.push_back(Name);
size_t NameWordSize = (Name->getLiteralStr().size() + 1) / 4;
if ((Name->getLiteralStr().size() + 1) % 4) {
NameWordSize += 1;
}
assert((3 + NameWordSize) < UINT16_MAX);
uint16_t WordCount = static_cast<uint16_t>(3 + NameWordSize);
for (Value *Interface : EntryPointInterfaces) {
SPIRVOperand *GIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, VMap[Interface]);
Ops.push_back(GIDOp);
WordCount++;
}
SPIRVInstruction *EntryPointInst =
new SPIRVInstruction(WordCount, spv::OpEntryPoint, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, EntryPointInst);
}
for (auto EntryPoint : EntryPoints) {
if (const MDNode *MD = dyn_cast<Function>(EntryPoint.first)
->getMetadata("reqd_work_group_size")) {
if (!BuiltinDimVec.empty()) {
llvm_unreachable(
"Kernels should have consistent work group size definition");
}
//
// Generate OpExecutionMode
//
// Ops[0] = Entry Point ID
// Ops[1] = Execution Mode
// Ops[2] ... Ops[n] = Optional literals according to Execution Mode
Ops.clear();
SPIRVOperand *EntryPointID =
new SPIRVOperand(SPIRVOperandType::NUMBERID, EntryPoint.second);
Ops.push_back(EntryPointID);
SPIRVOperand *ExecMode = new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::ExecutionModeLocalSize);
Ops.push_back(ExecMode);
uint32_t XDim = static_cast<uint32_t>(
mdconst::extract<ConstantInt>(MD->getOperand(0))->getZExtValue());
uint32_t YDim = static_cast<uint32_t>(
mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue());
uint32_t ZDim = static_cast<uint32_t>(
mdconst::extract<ConstantInt>(MD->getOperand(2))->getZExtValue());
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(XDim);
SPIRVOperand *XDimOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(XDimOp);
LiteralNum.clear();
LiteralNum.push_back(YDim);
SPIRVOperand *YDimOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(YDimOp);
LiteralNum.clear();
LiteralNum.push_back(ZDim);
SPIRVOperand *ZDimOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ZDimOp);
SPIRVInstruction *ExecModeInst =
new SPIRVInstruction(static_cast<uint16_t>(1 + Ops.size()),
spv::OpExecutionMode, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, ExecModeInst);
}
}
//
// Generate OpSource.
//
// Ops[0] = SourceLanguage ID
// Ops[1] = Version (LiteralNum)
//
Ops.clear();
SPIRVOperand *SourceLanguage =
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::SourceLanguageOpenCL_C);
Ops.push_back(SourceLanguage);
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(120);
SPIRVOperand *Version =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Version);
SPIRVInstruction *OpenSourceInst =
new SPIRVInstruction(3, spv::OpSource, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, OpenSourceInst);
if (!BuiltinDimVec.empty()) {
//
// Generate OpDecorates for x/y/z dimension.
//
// Ops[0] = Target ID
// Ops[1] = Decoration (SpecId)
// Ops[2] = Specialization Cosntant ID (Literal Number)
// X Dimension
Ops.clear();
SPIRVOperand *TargetID =
new SPIRVOperand(SPIRVOperandType::NUMBERID, BuiltinDimVec[0]);
Ops.push_back(TargetID);
SPIRVOperand *DecoOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::DecorationSpecId);
Ops.push_back(DecoOp);
LiteralNum.clear();
LiteralNum.push_back(0);
SPIRVOperand *XDim =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(XDim);
SPIRVInstruction *XDimDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, XDimDecoInst);
// Y Dimension
Ops.clear();
TargetID = new SPIRVOperand(SPIRVOperandType::NUMBERID, BuiltinDimVec[1]);
Ops.push_back(TargetID);
DecoOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::DecorationSpecId);
Ops.push_back(DecoOp);
LiteralNum.clear();
LiteralNum.push_back(1);
SPIRVOperand *YDim =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(YDim);
SPIRVInstruction *YDimDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, YDimDecoInst);
// Z Dimension
Ops.clear();
TargetID = new SPIRVOperand(SPIRVOperandType::NUMBERID, BuiltinDimVec[2]);
Ops.push_back(TargetID);
DecoOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, spv::DecorationSpecId);
Ops.push_back(DecoOp);
LiteralNum.clear();
LiteralNum.push_back(2);
SPIRVOperand *ZDim =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ZDim);
SPIRVInstruction *ZDimDecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, ZDimDecoInst);
}
}
void SPIRVProducerPass::GenerateInstForArg(Function &F) {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
Module *Module = F.getParent();
LLVMContext &Context = Module->getContext();
ValueToValueMapTy &ArgGVMap = getArgumentGVMap();
for (Argument &Arg : F.args()) {
if (Arg.use_empty()) {
continue;
}
// Check the type of users of arguments.
bool HasOnlyGEPUse = true;
for (auto *U : Arg.users()) {
if (!isa<GetElementPtrInst>(U) && isa<Instruction>(U)) {
HasOnlyGEPUse = false;
break;
}
}
Type *ArgTy = Arg.getType();
if (PointerType *PTy = dyn_cast<PointerType>(ArgTy)) {
if (StructType *STy = dyn_cast<StructType>(PTy->getElementType())) {
if (STy->isOpaque()) {
// Generate OpLoad for sampler and image types.
if (STy->getName().equals("opencl.sampler_t") ||
STy->getName().equals("opencl.image2d_ro_t") ||
STy->getName().equals("opencl.image2d_wo_t") ||
STy->getName().equals("opencl.image3d_ro_t") ||
STy->getName().equals("opencl.image3d_wo_t")) {
//
// Generate OpLoad.
//
// Ops[0] = Result Type ID
// Ops[1] = Pointer ID
// Ops[2] ... Ops[n] = Optional Memory Access
//
// TODO: Do we need to implement Optional Memory Access???
SPIRVOperandList Ops;
// Use type with address space modified.
ArgTy = ArgGVMap[&Arg]->getType()->getPointerElementType();
uint32_t ResTyID = lookupType(ArgTy);
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t PointerID = VMap[&Arg];
SPIRVOperand *PointerIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, PointerID);
Ops.push_back(PointerIDOp);
VMap[&Arg] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpLoad, nextID++, Ops);
SPIRVInstList.push_back(Inst);
continue;
}
}
}
if (!HasOnlyGEPUse) {
//
// Generate OpAccessChain.
//
// Ops[0] = Result Type ID
// Ops[1] = Base ID
// Ops[2] ... Ops[n] = Indexes ID
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(ArgTy);
if (!isa<PointerType>(ArgTy)) {
ResTyID = lookupType(PointerType::get(ArgTy, AddressSpace::Global));
}
SPIRVOperand *ResTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyOp);
uint32_t BaseID = VMap[&Arg];
SPIRVOperand *BaseOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, BaseID);
Ops.push_back(BaseOp);
Type *IdxTy = Type::getInt32Ty(Context);
uint32_t IndexID = VMap[ConstantInt::get(IdxTy, 0)];
SPIRVOperand *IndexIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IndexID);
Ops.push_back(IndexIDOp);
Ops.push_back(IndexIDOp);
// Generate SPIRV instruction for argument.
VMap[&Arg] = nextID;
SPIRVInstruction *ArgInst =
new SPIRVInstruction(6, spv::OpAccessChain, nextID++, Ops);
SPIRVInstList.push_back(ArgInst);
} else {
// For GEP uses, generate OpAccessChain with folding GEP ahead of GEP.
// Nothing to do here.
}
} else {
//
// Generate OpAccessChain and OpLoad for non-pointer type argument.
//
//
// Generate OpAccessChain.
//
// Ops[0] = Result Type ID
// Ops[1] = Base ID
// Ops[2] ... Ops[n] = Indexes ID
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(ArgTy);
if (!isa<PointerType>(ArgTy)) {
ResTyID = lookupType(PointerType::get(ArgTy, AddressSpace::Global));
}
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t BaseID = VMap[&Arg];
SPIRVOperand *BaseOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, BaseID);
Ops.push_back(BaseOp);
Type *IdxTy = Type::getInt32Ty(Context);
uint32_t IndexID = VMap[ConstantInt::get(IdxTy, 0)];
SPIRVOperand *IndexIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IndexID);
Ops.push_back(IndexIDOp);
// Generate SPIRV instruction for argument.
uint32_t PointerID = nextID;
VMap[&Arg] = nextID;
SPIRVInstruction *ArgInst =
new SPIRVInstruction(5, spv::OpAccessChain, nextID++, Ops);
SPIRVInstList.push_back(ArgInst);
//
// Generate OpLoad.
//
// Ops[0] = Result Type ID
// Ops[1] = Pointer ID
// Ops[2] ... Ops[n] = Optional Memory Access
//
// TODO: Do we need to implement Optional Memory Access???
Ops.clear();
ResTyID = lookupType(ArgTy);
ResTyIDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
SPIRVOperand *PointerIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, PointerID);
Ops.push_back(PointerIDOp);
VMap[&Arg] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpLoad, nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
}
}
void SPIRVProducerPass::GenerateFuncBody(Function &F) {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
bool IsKernel = false;
if (F.getCallingConv() == CallingConv::SPIR_KERNEL) {
IsKernel = true;
}
for (BasicBlock &BB : F) {
// Register BasicBlock to ValueMap.
VMap[&BB] = nextID;
//
// Generate OpLabel for Basic Block.
//
SPIRVOperandList Ops;
SPIRVInstruction *Inst =
new SPIRVInstruction(2, spv::OpLabel, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// OpVariable instructions must come first.
for (Instruction &I : BB) {
if (isa<AllocaInst>(I)) {
GenerateInstruction(I);
}
}
if (&BB == &F.getEntryBlock() && IsKernel) {
GenerateInstForArg(F);
}
for (Instruction &I : BB) {
if (!isa<AllocaInst>(I)) {
GenerateInstruction(I);
}
}
}
}
spv::Op SPIRVProducerPass::GetSPIRVCmpOpcode(CmpInst *I) {
const std::map<CmpInst::Predicate, spv::Op> Map = {
{CmpInst::ICMP_EQ, spv::OpIEqual},
{CmpInst::ICMP_NE, spv::OpINotEqual},
{CmpInst::ICMP_UGT, spv::OpUGreaterThan},
{CmpInst::ICMP_UGE, spv::OpUGreaterThanEqual},
{CmpInst::ICMP_ULT, spv::OpULessThan},
{CmpInst::ICMP_ULE, spv::OpULessThanEqual},
{CmpInst::ICMP_SGT, spv::OpSGreaterThan},
{CmpInst::ICMP_SGE, spv::OpSGreaterThanEqual},
{CmpInst::ICMP_SLT, spv::OpSLessThan},
{CmpInst::ICMP_SLE, spv::OpSLessThanEqual},
{CmpInst::FCMP_OEQ, spv::OpFOrdEqual},
{CmpInst::FCMP_OGT, spv::OpFOrdGreaterThan},
{CmpInst::FCMP_OGE, spv::OpFOrdGreaterThanEqual},
{CmpInst::FCMP_OLT, spv::OpFOrdLessThan},
{CmpInst::FCMP_OLE, spv::OpFOrdLessThanEqual},
{CmpInst::FCMP_ONE, spv::OpFOrdNotEqual},
{CmpInst::FCMP_UEQ, spv::OpFUnordEqual},
{CmpInst::FCMP_UGT, spv::OpFUnordGreaterThan},
{CmpInst::FCMP_UGE, spv::OpFUnordGreaterThanEqual},
{CmpInst::FCMP_ULT, spv::OpFUnordLessThan},
{CmpInst::FCMP_ULE, spv::OpFUnordLessThanEqual},
{CmpInst::FCMP_UNE, spv::OpFUnordNotEqual}};
assert(0 != Map.count(I->getPredicate()));
return Map.at(I->getPredicate());
}
spv::Op SPIRVProducerPass::GetSPIRVCastOpcode(Instruction &I) {
const std::map<unsigned, spv::Op> Map{
{Instruction::Trunc, spv::OpUConvert},
{Instruction::ZExt, spv::OpUConvert},
{Instruction::SExt, spv::OpSConvert},
{Instruction::FPToUI, spv::OpConvertFToU},
{Instruction::FPToSI, spv::OpConvertFToS},
{Instruction::UIToFP, spv::OpConvertUToF},
{Instruction::SIToFP, spv::OpConvertSToF},
{Instruction::FPTrunc, spv::OpFConvert},
{Instruction::FPExt, spv::OpFConvert},
{Instruction::BitCast, spv::OpBitcast}};
assert(0 != Map.count(I.getOpcode()));
return Map.at(I.getOpcode());
}
spv::Op SPIRVProducerPass::GetSPIRVBinaryOpcode(Instruction &I) {
if (I.getType()->isIntegerTy(1)) {
switch (I.getOpcode()) {
default:
break;
case Instruction::Or:
return spv::OpLogicalOr;
case Instruction::And:
return spv::OpLogicalAnd;
case Instruction::Xor:
return spv::OpLogicalNotEqual;
}
}
const std::map<unsigned, spv::Op> Map {
{Instruction::Add, spv::OpIAdd},
{Instruction::FAdd, spv::OpFAdd},
{Instruction::Sub, spv::OpISub},
{Instruction::FSub, spv::OpFSub},
{Instruction::Mul, spv::OpIMul},
{Instruction::FMul, spv::OpFMul},
{Instruction::UDiv, spv::OpUDiv},
{Instruction::SDiv, spv::OpSDiv},
{Instruction::FDiv, spv::OpFDiv},
{Instruction::URem, spv::OpUMod},
{Instruction::SRem, spv::OpSRem},
{Instruction::FRem, spv::OpFRem},
{Instruction::Or, spv::OpBitwiseOr},
{Instruction::Xor, spv::OpBitwiseXor},
{Instruction::And, spv::OpBitwiseAnd},
{Instruction::Shl, spv::OpShiftLeftLogical},
{Instruction::LShr, spv::OpShiftRightLogical},
{Instruction::AShr, spv::OpShiftRightArithmetic}};
assert(0 != Map.count(I.getOpcode()));
return Map.at(I.getOpcode());
}
void SPIRVProducerPass::GenerateInstruction(Instruction &I) {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
ValueToValueMapTy &ArgGVMap = getArgumentGVMap();
ValueMapType &ArgGVIDMap = getArgumentGVIDMap();
DeferredInstVecType &DeferredInsts = getDeferredInstVec();
LLVMContext &Context = I.getParent()->getParent()->getParent()->getContext();
// Register Instruction to ValueMap.
if (0 == VMap[&I]) {
VMap[&I] = nextID;
}
switch (I.getOpcode()) {
default: {
if (Instruction::isCast(I.getOpcode())) {
//
// Generate SPIRV instructions for cast operators.
//
auto Ty = I.getType();
auto OpTy = I.getOperand(0)->getType();
auto toI8 = Ty == Type::getInt8Ty(Context);
auto fromI32 = OpTy == Type::getInt32Ty(Context);
// Handle zext, sext and uitofp with i1 type specially.
if ((I.getOpcode() == Instruction::ZExt ||
I.getOpcode() == Instruction::SExt ||
I.getOpcode() == Instruction::UIToFP) &&
(OpTy->isIntegerTy(1) ||
(OpTy->isVectorTy() &&
OpTy->getVectorElementType()->isIntegerTy(1)))) {
//
// Generate OpSelect.
//
// Ops[0] = Result Type ID
// Ops[1] = Condition ID
// Ops[2] = True Constant ID
// Ops[3] = False Constant ID
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
// TODO: zext's first operand should be compare instructions???
uint32_t CondID = VMap[I.getOperand(0)];
SPIRVOperand *CondIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CondID);
Ops.push_back(CondIDOp);
uint32_t TrueID = 0;
if (I.getOpcode() == Instruction::ZExt) {
APInt One(32, 1);
TrueID = VMap[Constant::getIntegerValue(I.getType(), One)];
} else if (I.getOpcode() == Instruction::SExt) {
APInt MinusOne(32, UINT64_MAX, true);
TrueID = VMap[Constant::getIntegerValue(I.getType(), MinusOne)];
} else {
TrueID = VMap[ConstantFP::get(Context, APFloat(1.0f))];
}
SPIRVOperand *TrueIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TrueID);
Ops.push_back(TrueIDOp);
uint32_t FalseID = 0;
if (I.getOpcode() == Instruction::ZExt) {
FalseID = VMap[Constant::getNullValue(I.getType())];
} else if (I.getOpcode() == Instruction::SExt) {
FalseID = VMap[Constant::getNullValue(I.getType())];
} else {
FalseID = VMap[ConstantFP::get(Context, APFloat(0.0f))];
}
SPIRVOperand *FalseIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, FalseID);
Ops.push_back(FalseIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(6, spv::OpSelect, nextID++, Ops);
SPIRVInstList.push_back(Inst);
} else if (I.getOpcode() == Instruction::Trunc && fromI32 && toI8) {
// The SPIR-V target type is a 32-bit int. Keep only the bottom
// 8 bits.
// Before:
// %result = trunc i32 %a to i8
// After
// %result = OpBitwiseAnd %uint %a %uint_255
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(OpTy);
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t Op0ID = VMap[I.getOperand(0)];
SPIRVOperand *Op0IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
Type *UintTy = Type::getInt32Ty(Context);
uint32_t MaskID = VMap[ConstantInt::get(UintTy, 255)];
SPIRVOperand *MaskOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, MaskID);
Ops.push_back(MaskOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(5, spv::OpBitwiseAnd, nextID++, Ops);
SPIRVInstList.push_back(Inst);
} else {
// Ops[0] = Result Type ID
// Ops[1] = Source Value ID
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t SrcID = VMap[I.getOperand(0)];
SPIRVOperand *SrcIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, SrcID);
Ops.push_back(SrcIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(4, GetSPIRVCastOpcode(I), nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
} else if (isa<BinaryOperator>(I)) {
//
// Generate SPIRV instructions for binary operators.
//
// Handle xor with i1 type specially.
if (I.getOpcode() == Instruction::Xor &&
I.getType() == Type::getInt1Ty(Context) &&
(isa<Constant>(I.getOperand(0)) || isa<Constant>(I.getOperand(1)))) {
//
// Generate OpLogicalNot.
//
// Ops[0] = Result Type ID
// Ops[1] = Operand
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
Value *CondV = I.getOperand(0);
if (isa<Constant>(I.getOperand(0))) {
CondV = I.getOperand(1);
}
uint32_t CondID = VMap[CondV];
SPIRVOperand *CondIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CondID);
Ops.push_back(CondIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpLogicalNot, nextID++, Ops);
SPIRVInstList.push_back(Inst);
} else {
// Ops[0] = Result Type ID
// Ops[1] = Operand 0
// Ops[2] = Operand 1
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t Op0ID = VMap[I.getOperand(0)];
SPIRVOperand *Op0IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
uint32_t Op1ID = VMap[I.getOperand(1)];
SPIRVOperand *Op1IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(5, GetSPIRVBinaryOpcode(I), nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
} else {
I.print(errs());
llvm_unreachable("Unsupported instruction???");
}
break;
}
case Instruction::GetElementPtr: {
auto &GlobalConstArgSet = getGlobalConstArgSet();
//
// Generate OpAccessChain.
//
GetElementPtrInst *GEP = cast<GetElementPtrInst>(&I);
//
// Generate OpAccessChain.
//
// Ops[0] = Result Type ID
// Ops[1] = Base ID
// Ops[2] ... Ops[n] = Indexes ID
SPIRVOperandList Ops;
PointerType* ResultType = cast<PointerType>(GEP->getType());
if (GEP->getPointerAddressSpace() == AddressSpace::ModuleScopePrivate ||
GlobalConstArgSet.count(GEP->getPointerOperand())) {
// Use pointer type with private address space for global constant.
Type *EleTy = I.getType()->getPointerElementType();
ResultType = PointerType::get(EleTy, AddressSpace::ModuleScopePrivate);
}
const uint32_t ResTyID = lookupType(ResultType);
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
// Check whether GEP's pointer operand is pointer argument.
bool HasArgBasePointer = false;
for (auto ArgGV : ArgGVMap) {
if (ArgGV.first == GEP->getPointerOperand()) {
if (isa<PointerType>(ArgGV.first->getType())) {
HasArgBasePointer = true;
} else {
llvm_unreachable(
"GEP's pointer operand is argument of non-poninter type???");
}
}
}
uint32_t BaseID;
if (HasArgBasePointer) {
// Point to global variable for argument directly.
BaseID = ArgGVIDMap[GEP->getPointerOperand()];
} else {
BaseID = VMap[GEP->getPointerOperand()];
}
SPIRVOperand *BaseIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, BaseID);
Ops.push_back(BaseIDOp);
uint16_t WordCount = 4;
if (HasArgBasePointer) {
// If GEP's pointer operand is argument, add one more index for struct
// type to wrap up argument type.
Type *IdxTy = Type::getInt32Ty(Context);
uint32_t IndexID = VMap[ConstantInt::get(IdxTy, 0)];
SPIRVOperand *IndexIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IndexID);
Ops.push_back(IndexIDOp);
WordCount++;
}
//
// Follows below rules for gep.
//
// 1. If gep's first index is 0 and gep's base is not kernel function's
// argument, generate OpAccessChain and ignore gep's first index.
// 2. If gep's first index is not 0, generate OpPtrAccessChain and use gep's
// first index.
// 3. If gep's first index is not constant, generate OpPtrAccessChain and
// use gep's first index.
// 4. If it is not above case 1, 2 and 3, generate OpAccessChain and use
// gep's first index.
//
spv::Op Opcode = spv::OpAccessChain;
unsigned offset = 0;
if (ConstantInt *CstInt = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
if (CstInt->getZExtValue() == 0 && !HasArgBasePointer) {
offset = 1;
} else if (CstInt->getZExtValue() != 0 && !HasArgBasePointer) {
Opcode = spv::OpPtrAccessChain;
}
} else if (!HasArgBasePointer) {
Opcode = spv::OpPtrAccessChain;
}
if (Opcode == spv::OpPtrAccessChain) {
setVariablePointers(true);
// Do we need to generate ArrayStride? Check against the GEP result type
// rather than the pointer type of the base because when indexing into
// an OpenCL program-scope constant, we'll swap out the LLVM base pointer
// for something else in the SPIR-V.
// E.g. see test/PointerAccessChain/pointer_index_is_constant_1.cl
if (GetStorageClass(ResultType->getAddressSpace()) ==
spv::StorageClassStorageBuffer) {
// Save the need to generate an ArrayStride decoration. But defer
// generation until later, so we only make one decoration.
getPointerTypesNeedingArrayStride().insert(ResultType);
}
}
for (auto II = GEP->idx_begin() + offset; II != GEP->idx_end(); II++) {
uint32_t IndexID = VMap[*II];
SPIRVOperand *IndexIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IndexID);
Ops.push_back(IndexIDOp);
WordCount++;
}
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, Opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::ExtractValue: {
ExtractValueInst *EVI = cast<ExtractValueInst>(&I);
// Ops[0] = Result Type ID
// Ops[1] = Composite ID
// Ops[2] ... Ops[n] = Indexes (Literal Number)
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t CompositeID = VMap[EVI->getAggregateOperand()];
SPIRVOperand *CompositeIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CompositeID);
Ops.push_back(CompositeIDOp);
for (auto &Index : EVI->indices()) {
Ops.push_back(new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, Index));
}
uint16_t WordCount = static_cast<uint16_t>(2 + Ops.size());
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, spv::OpCompositeExtract, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::InsertValue: {
InsertValueInst *IVI = cast<InsertValueInst>(&I);
// Ops[0] = Result Type ID
// Ops[1] = Object ID
// Ops[2] = Composite ID
// Ops[3] ... Ops[n] = Indexes (Literal Number)
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID));
uint32_t ObjectID = VMap[IVI->getInsertedValueOperand()];
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, ObjectID));
uint32_t CompositeID = VMap[IVI->getAggregateOperand()];
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, CompositeID));
for (auto &Index : IVI->indices()) {
Ops.push_back(new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, Index));
}
uint16_t WordCount = static_cast<uint16_t>(2 + Ops.size());
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, spv::OpCompositeInsert, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::Select: {
//
// Generate OpSelect.
//
// Ops[0] = Result Type ID
// Ops[1] = Condition ID
// Ops[2] = True Constant ID
// Ops[3] = False Constant ID
SPIRVOperandList Ops;
// Find SPIRV instruction for parameter type.
auto Ty = I.getType();
if (Ty->isPointerTy()) {
auto PointeeTy = Ty->getPointerElementType();
if (PointeeTy->isStructTy() &&
dyn_cast<StructType>(PointeeTy)->isOpaque()) {
Ty = PointeeTy;
}
}
uint32_t ResTyID = lookupType(Ty);
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t CondID = VMap[I.getOperand(0)];
SPIRVOperand *CondIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CondID);
Ops.push_back(CondIDOp);
uint32_t TrueID = VMap[I.getOperand(1)];
SPIRVOperand *TrueIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TrueID);
Ops.push_back(TrueIDOp);
uint32_t FalseID = VMap[I.getOperand(2)];
SPIRVOperand *FalseIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, FalseID);
Ops.push_back(FalseIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(6, spv::OpSelect, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::ExtractElement: {
// Handle <4 x i8> type manually.
Type *CompositeTy = I.getOperand(0)->getType();
if (is4xi8vec(CompositeTy)) {
//
// Generate OpShiftRightLogical and OpBitwiseAnd for extractelement with
// <4 x i8>.
//
//
// Generate OpShiftRightLogical
//
// Ops[0] = Result Type ID
// Ops[1] = Operand 0
// Ops[2] = Operand 1
//
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(CompositeTy);
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t Op0ID = VMap[I.getOperand(0)];
SPIRVOperand *Op0IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
uint32_t Op1ID = 0;
if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1))) {
// Handle constant index.
uint64_t Idx = CI->getZExtValue();
Value *ShiftAmount =
ConstantInt::get(Type::getInt32Ty(Context), Idx * 8);
Op1ID = VMap[ShiftAmount];
} else {
// Handle variable index.
SPIRVOperandList TmpOps;
uint32_t TmpResTyID = lookupType(Type::getInt32Ty(Context));
SPIRVOperand *TmpResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TmpResTyID);
TmpOps.push_back(TmpResTyIDOp);
uint32_t IdxID = VMap[I.getOperand(1)];
SPIRVOperand *TmpOp0IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IdxID);
TmpOps.push_back(TmpOp0IDOp);
ConstantInt *Cst8 = ConstantInt::get(Type::getInt32Ty(Context), 8);
uint32_t Cst8ID = VMap[Cst8];
SPIRVOperand *TmpOp1IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Cst8ID);
TmpOps.push_back(TmpOp1IDOp);
Op1ID = nextID;
SPIRVInstruction *TmpInst =
new SPIRVInstruction(5, spv::OpIMul, nextID++, TmpOps);
SPIRVInstList.push_back(TmpInst);
}
SPIRVOperand *Op1IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
uint32_t ShiftID = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(5, spv::OpShiftRightLogical, nextID++, Ops);
SPIRVInstList.push_back(Inst);
//
// Generate OpBitwiseAnd
//
// Ops[0] = Result Type ID
// Ops[1] = Operand 0
// Ops[2] = Operand 1
//
Ops.clear();
ResTyID = lookupType(CompositeTy);
ResTyIDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
Op0ID = ShiftID;
Op0IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
Constant *CstFF = ConstantInt::get(Type::getInt32Ty(Context), 0xFF);
Op1ID = VMap[CstFF];
Op1IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
// Reset mapping for this value to the result of the bitwise and.
VMap[&I] = nextID;
Inst = new SPIRVInstruction(5, spv::OpBitwiseAnd, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// Ops[0] = Result Type ID
// Ops[1] = Composite ID
// Ops[2] ... Ops[n] = Indexes (Literal Number)
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t CompositeID = VMap[I.getOperand(0)];
SPIRVOperand *CompositeIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CompositeID);
Ops.push_back(CompositeIDOp);
spv::Op Opcode = spv::OpCompositeExtract;
if (const ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1))) {
std::vector<uint32_t> LiteralNum;
assert(CI->getZExtValue() < UINT32_MAX);
LiteralNum.push_back(static_cast<uint32_t>(CI->getZExtValue()));
SPIRVOperand *Indexes =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Indexes);
} else {
uint32_t IndexID = VMap[I.getOperand(1)];
SPIRVOperand *IndexIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IndexID);
Ops.push_back(IndexIDOp);
Opcode = spv::OpVectorExtractDynamic;
}
uint16_t WordCount = 5;
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, Opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::InsertElement: {
// Handle <4 x i8> type manually.
Type *CompositeTy = I.getOperand(0)->getType();
if (is4xi8vec(CompositeTy)) {
Constant *CstFF = ConstantInt::get(Type::getInt32Ty(Context), 0xFF);
uint32_t CstFFID = VMap[CstFF];
uint32_t ShiftAmountID = 0;
if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2))) {
// Handle constant index.
uint64_t Idx = CI->getZExtValue();
Value *ShiftAmount =
ConstantInt::get(Type::getInt32Ty(Context), Idx * 8);
ShiftAmountID = VMap[ShiftAmount];
} else {
// Handle variable index.
SPIRVOperandList TmpOps;
uint32_t TmpResTyID = lookupType(Type::getInt32Ty(Context));
SPIRVOperand *TmpResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TmpResTyID);
TmpOps.push_back(TmpResTyIDOp);
uint32_t IdxID = VMap[I.getOperand(2)];
SPIRVOperand *TmpOp0IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IdxID);
TmpOps.push_back(TmpOp0IDOp);
ConstantInt *Cst8 = ConstantInt::get(Type::getInt32Ty(Context), 8);
uint32_t Cst8ID = VMap[Cst8];
SPIRVOperand *TmpOp1IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Cst8ID);
TmpOps.push_back(TmpOp1IDOp);
ShiftAmountID = nextID;
SPIRVInstruction *TmpInst =
new SPIRVInstruction(5, spv::OpIMul, nextID++, TmpOps);
SPIRVInstList.push_back(TmpInst);
}
//
// Generate mask operations.
//
// ShiftLeft mask according to index of insertelement.
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(CompositeTy);
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t Op0ID = CstFFID;
SPIRVOperand *Op0IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
uint32_t Op1ID = ShiftAmountID;
SPIRVOperand *Op1IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
uint32_t MaskID = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(5, spv::OpShiftLeftLogical, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// Inverse mask.
Ops.clear();
Ops.push_back(ResTyIDOp);
Op0ID = MaskID;
Op0IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
uint32_t InvMaskID = nextID;
Inst = new SPIRVInstruction(4, spv::OpNot, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// Apply mask.
Ops.clear();
Ops.push_back(ResTyIDOp);
Op0ID = VMap[I.getOperand(0)];
Op0IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
Op1ID = InvMaskID;
Op1IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
uint32_t OrgValID = nextID;
Inst = new SPIRVInstruction(5, spv::OpBitwiseAnd, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// Create correct value according to index of insertelement.
Ops.clear();
Ops.push_back(ResTyIDOp);
Op0ID = VMap[I.getOperand(1)];
Op0IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
Op1ID = ShiftAmountID;
Op1IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
uint32_t InsertValID = nextID;
Inst = new SPIRVInstruction(5, spv::OpShiftLeftLogical, nextID++, Ops);
SPIRVInstList.push_back(Inst);
// Insert value to original value.
Ops.clear();
Ops.push_back(ResTyIDOp);
Op0ID = OrgValID;
Op0IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
Op1ID = InsertValID;
Op1IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
VMap[&I] = nextID;
Inst = new SPIRVInstruction(5, spv::OpBitwiseOr, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// Ops[0] = Result Type ID
// Ops[1] = Object ID
// Ops[2] = Composite ID
// Ops[3] ... Ops[n] = Indexes (Literal Number)
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t ObjectID = VMap[I.getOperand(1)];
SPIRVOperand *ObjectIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ObjectID);
Ops.push_back(ObjectIDOp);
uint32_t CompositeID = VMap[I.getOperand(0)];
SPIRVOperand *CompositeIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CompositeID);
Ops.push_back(CompositeIDOp);
spv::Op Opcode = spv::OpCompositeInsert;
if (const ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2))) {
std::vector<uint32_t> LiteralNum;
assert(CI->getZExtValue() < UINT32_MAX);
LiteralNum.push_back(static_cast<uint32_t>(CI->getZExtValue()));
SPIRVOperand *Indexes =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Indexes);
} else {
uint32_t IndexID = VMap[I.getOperand(1)];
SPIRVOperand *IndexIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, IndexID);
Ops.push_back(IndexIDOp);
Opcode = spv::OpVectorInsertDynamic;
}
uint16_t WordCount = 6;
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, Opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::ShuffleVector: {
// Ops[0] = Result Type ID
// Ops[1] = Vector 1 ID
// Ops[2] = Vector 2 ID
// Ops[3] ... Ops[n] = Components (Literal Number)
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t Vec1ID = VMap[I.getOperand(0)];
SPIRVOperand *Vec1IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Vec1ID);
Ops.push_back(Vec1IDOp);
uint32_t Vec2ID = VMap[I.getOperand(1)];
SPIRVOperand *Vec2IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Vec2ID);
Ops.push_back(Vec2IDOp);
uint64_t NumElements = 0;
if (Constant *Cst = dyn_cast<Constant>(I.getOperand(2))) {
NumElements = cast<VectorType>(Cst->getType())->getNumElements();
if (Cst->isNullValue()) {
for (unsigned i = 0; i < NumElements; i++) {
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(0);
SPIRVOperand *Component =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Component);
}
} else if (const ConstantDataSequential *CDS =
dyn_cast<ConstantDataSequential>(Cst)) {
for (unsigned i = 0; i < CDS->getNumElements(); i++) {
std::vector<uint32_t> LiteralNum;
assert(CDS->getElementAsInteger(i) < UINT32_MAX);
LiteralNum.push_back(
static_cast<uint32_t>(CDS->getElementAsInteger(i)));
SPIRVOperand *Component =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Component);
}
} else if (const ConstantVector *CV = dyn_cast<ConstantVector>(Cst)) {
for (unsigned i = 0; i < CV->getNumOperands(); i++) {
auto Op = CV->getOperand(i);
uint32_t literal = 0;
if (auto CI = dyn_cast<ConstantInt>(Op)) {
literal = static_cast<uint32_t>(CI->getZExtValue());
} else if (auto UI = dyn_cast<UndefValue>(Op)) {
literal = 0xFFFFFFFFu;
} else {
Op->print(errs());
llvm_unreachable("Unsupported element in ConstantVector!");
}
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(literal);
SPIRVOperand *Component =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(Component);
}
} else {
Cst->print(errs());
llvm_unreachable("Unsupported constant mask in ShuffleVector!");
}
}
uint16_t WordCount = static_cast<uint16_t>(5 + NumElements);
SPIRVInstruction *Inst =
new SPIRVInstruction(WordCount, spv::OpVectorShuffle, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::ICmp:
case Instruction::FCmp: {
CmpInst *CmpI = cast<CmpInst>(&I);
// Ops[0] = Result Type ID
// Ops[1] = Operand 1 ID
// Ops[2] = Operand 2 ID
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(CmpI->getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
// Pointer equality is invalid.
Type* ArgTy = CmpI->getOperand(0)->getType();
if (isa<PointerType>(ArgTy)) {
CmpI->print(errs());
std::string name = I.getParent()->getParent()->getName();
errs()
<< "\nPointer equality test is not supported by SPIR-V for Vulkan, "
<< "in function " << name << "\n";
llvm_unreachable("Pointer equality check is invalid");
break;
}
uint32_t Op1ID = VMap[CmpI->getOperand(0)];
SPIRVOperand *Op1IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op1ID);
Ops.push_back(Op1IDOp);
uint32_t Op2ID = VMap[CmpI->getOperand(1)];
SPIRVOperand *Op2IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, Op2ID);
Ops.push_back(Op2IDOp);
spv::Op Opcode = GetSPIRVCmpOpcode(CmpI);
SPIRVInstruction *Inst = new SPIRVInstruction(5, Opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::Br: {
// Branch instrucion is deferred because it needs label's ID. Record slot's
// location on SPIRVInstructionList.
DeferredInsts.push_back(
std::make_tuple(&I, --SPIRVInstList.end(), 0 /* No id */));
break;
}
case Instruction::Switch: {
I.print(errs());
llvm_unreachable("Unsupported instruction???");
break;
}
case Instruction::IndirectBr: {
I.print(errs());
llvm_unreachable("Unsupported instruction???");
break;
}
case Instruction::PHI: {
// Branch instrucion is deferred because it needs label's ID. Record slot's
// location on SPIRVInstructionList.
DeferredInsts.push_back(
std::make_tuple(&I, --SPIRVInstList.end(), nextID++));
break;
}
case Instruction::Alloca: {
//
// Generate OpVariable.
//
// Ops[0] : Result Type ID
// Ops[1] : Storage Class
SPIRVOperandList Ops;
Type *ResTy = I.getType();
uint32_t ResTyID = lookupType(ResTy);
SPIRVOperand *ResTyOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyOp);
spv::StorageClass StorageClass = spv::StorageClassFunction;
SPIRVOperand *StorageClassOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, StorageClass);
Ops.push_back(StorageClassOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpVariable, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::Load: {
LoadInst *LD = cast<LoadInst>(&I);
//
// Generate OpLoad.
//
uint32_t ResTyID = lookupType(LD->getType());
uint32_t PointerID = VMap[LD->getPointerOperand()];
// This is a hack to work around what looks like a driver bug.
// When we're loading from the special variable holding the WorkgroupSize
// builtin value, use an OpBitWiseAnd of the value's ID rather than
// generating a load.
if (PointerID == WorkgroupSizeVarID) {
// Generate a bitwise-and of the original value with itself.
// We should have been able to get away with just an OpCopyObject,
// but we need something more complex to get past certain driver bugs.
// This is ridiculous, but necessary.
// TODO(dneto): Revisit this once drivers fix their bugs.
SPIRVOperandList Ops;
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
SPIRVOperand *ValueIDOp0 =
new SPIRVOperand(SPIRVOperandType::NUMBERID, WorkgroupSizeValueID);
Ops.push_back(ValueIDOp0);
SPIRVOperand *ValueIDOp1 =
new SPIRVOperand(SPIRVOperandType::NUMBERID, WorkgroupSizeValueID);
Ops.push_back(ValueIDOp1);
SPIRVInstruction *Inst =
new SPIRVInstruction(5, spv::OpBitwiseAnd, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// This is the normal path. Generate a load.
// Ops[0] = Result Type ID
// Ops[1] = Pointer ID
// Ops[2] ... Ops[n] = Optional Memory Access
//
// TODO: Do we need to implement Optional Memory Access???
SPIRVOperandList Ops;
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
SPIRVOperand *PointerIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, PointerID);
Ops.push_back(PointerIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpLoad, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::Store: {
StoreInst *ST = cast<StoreInst>(&I);
//
// Generate OpStore.
//
// Ops[0] = Pointer ID
// Ops[1] = Object ID
// Ops[2] ... Ops[n] = Optional Memory Access (later???)
//
// TODO: Do we need to implement Optional Memory Access???
SPIRVOperand *Ops[2] = {new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[ST->getPointerOperand()]),
new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[ST->getValueOperand()])};
SPIRVInstruction *Inst =
new SPIRVInstruction(3, spv::OpStore, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::AtomicCmpXchg: {
I.print(errs());
llvm_unreachable("Unsupported instruction???");
break;
}
case Instruction::AtomicRMW: {
AtomicRMWInst *AtomicRMW = dyn_cast<AtomicRMWInst>(&I);
spv::Op opcode;
switch (AtomicRMW->getOperation()) {
default:
I.print(errs());
llvm_unreachable("Unsupported instruction???");
case llvm::AtomicRMWInst::Add:
opcode = spv::OpAtomicIAdd;
break;
case llvm::AtomicRMWInst::Sub:
opcode = spv::OpAtomicISub;
break;
case llvm::AtomicRMWInst::Xchg:
opcode = spv::OpAtomicExchange;
break;
case llvm::AtomicRMWInst::Min:
opcode = spv::OpAtomicSMin;
break;
case llvm::AtomicRMWInst::Max:
opcode = spv::OpAtomicSMax;
break;
case llvm::AtomicRMWInst::UMin:
opcode = spv::OpAtomicUMin;
break;
case llvm::AtomicRMWInst::UMax:
opcode = spv::OpAtomicUMax;
break;
case llvm::AtomicRMWInst::And:
opcode = spv::OpAtomicAnd;
break;
case llvm::AtomicRMWInst::Or:
opcode = spv::OpAtomicOr;
break;
case llvm::AtomicRMWInst::Xor:
opcode = spv::OpAtomicXor;
break;
}
//
// Generate OpAtomic*.
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[AtomicRMW->getPointerOperand()]));
auto IntTy = Type::getInt32Ty(I.getContext());
const auto ConstantScopeDevice = ConstantInt::get(IntTy, spv::ScopeDevice);
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[ConstantScopeDevice]));
const auto ConstantMemorySemantics = ConstantInt::get(
IntTy, spv::MemorySemanticsUniformMemoryMask |
spv::MemorySemanticsSequentiallyConsistentMask);
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[ConstantMemorySemantics]));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[AtomicRMW->getValOperand()]));
VMap[&I] = nextID;
SPIRVInstruction *Inst = new SPIRVInstruction(
static_cast<uint16_t>(2 + Ops.size()), opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
case Instruction::Fence: {
I.print(errs());
llvm_unreachable("Unsupported instruction???");
break;
}
case Instruction::Call: {
CallInst *Call = dyn_cast<CallInst>(&I);
Function *Callee = Call->getCalledFunction();
// Sampler initializers become a load of the corresponding sampler.
if (Callee->getName().equals("__translate_sampler_initializer")) {
// Check that the sampler map was definitely used though.
if (0 == getSamplerMap().size()) {
llvm_unreachable("Sampler literal in source without sampler map!");
}
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(SamplerTy->getPointerElementType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t PointerID = VMap[Call];
SPIRVOperand *PointerIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, PointerID);
Ops.push_back(PointerIDOp);
VMap[Call] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpLoad, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
if (Callee->getName().startswith("spirv.atomic")) {
spv::Op opcode = StringSwitch<spv::Op>(Callee->getName())
.Case("spirv.atomic_add", spv::OpAtomicIAdd)
.Case("spirv.atomic_sub", spv::OpAtomicISub)
.Case("spirv.atomic_exchange", spv::OpAtomicExchange)
.Case("spirv.atomic_inc", spv::OpAtomicIIncrement)
.Case("spirv.atomic_dec", spv::OpAtomicIDecrement)
.Case("spirv.atomic_compare_exchange",
spv::OpAtomicCompareExchange)
.Case("spirv.atomic_umin", spv::OpAtomicUMin)
.Case("spirv.atomic_smin", spv::OpAtomicSMin)
.Case("spirv.atomic_umax", spv::OpAtomicUMax)
.Case("spirv.atomic_smax", spv::OpAtomicSMax)
.Case("spirv.atomic_and", spv::OpAtomicAnd)
.Case("spirv.atomic_or", spv::OpAtomicOr)
.Case("spirv.atomic_xor", spv::OpAtomicXor)
.Default(spv::OpNop);
//
// Generate OpAtomic*.
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID));
for (unsigned i = 0; i < Call->getNumArgOperands(); i++) {
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[Call->getArgOperand(i)]));
}
VMap[&I] = nextID;
SPIRVInstruction *Inst = new SPIRVInstruction(
static_cast<uint16_t>(2 + Ops.size()), opcode, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
if (Callee->getName().startswith("_Z3dot")) {
// If the argument is a vector type, generate OpDot
if (Call->getArgOperand(0)->getType()->isVectorTy()) {
//
// Generate OpDot.
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID));
for (unsigned i = 0; i < Call->getNumArgOperands(); i++) {
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[Call->getArgOperand(i)]));
}
VMap[&I] = nextID;
SPIRVInstruction *Inst = new SPIRVInstruction(
static_cast<uint16_t>(2 + Ops.size()), spv::OpDot, nextID++, Ops);
SPIRVInstList.push_back(Inst);
} else {
//
// Generate OpFMul.
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID));
for (unsigned i = 0; i < Call->getNumArgOperands(); i++) {
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[Call->getArgOperand(i)]));
}
VMap[&I] = nextID;
SPIRVInstruction *Inst = new SPIRVInstruction(
static_cast<uint16_t>(2 + Ops.size()), spv::OpFMul, nextID++, Ops);
SPIRVInstList.push_back(Inst);
}
break;
}
// spirv.store_null.* intrinsics become OpStore's.
if (Callee->getName().startswith("spirv.store_null")) {
//
// Generate OpStore.
//
// Ops[0] = Pointer ID
// Ops[1] = Object ID
// Ops[2] ... Ops[n]
SPIRVOperandList Ops;
uint32_t PointerID = VMap[Call->getArgOperand(0)];
SPIRVOperand *PointerIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, PointerID);
Ops.push_back(PointerIDOp);
uint32_t ObjectID = VMap[Call->getArgOperand(1)];
SPIRVOperand *ObjectIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ObjectID);
Ops.push_back(ObjectIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(3, spv::OpStore, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// spirv.copy_memory.* intrinsics become OpMemoryMemory's.
if (Callee->getName().startswith("spirv.copy_memory")) {
//
// Generate OpCopyMemory.
//
// Ops[0] = Dst ID
// Ops[1] = Src ID
// Ops[2] = Memory Access
// Ops[3] = Alignment
auto IsVolatile =
dyn_cast<ConstantInt>(Call->getArgOperand(3))->getZExtValue() != 0;
auto VolatileMemoryAccess = (IsVolatile) ? spv::MemoryAccessVolatileMask
: spv::MemoryAccessMaskNone;
auto MemoryAccess = VolatileMemoryAccess | spv::MemoryAccessAlignedMask;
auto Alignment =
dyn_cast<ConstantInt>(Call->getArgOperand(2))->getZExtValue();
SPIRVOperand *Ops[4] = {
new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[Call->getArgOperand(0)]),
new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[Call->getArgOperand(1)]),
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, MemoryAccess),
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER,
static_cast<uint32_t>(Alignment))};
SPIRVInstruction *Inst =
new SPIRVInstruction(5, spv::OpCopyMemory, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// Nothing to do for abs with uint. Map abs's operand ID to VMap for abs
// with unit.
if (Callee->getName().equals("_Z3absj") ||
Callee->getName().equals("_Z3absDv2_j") ||
Callee->getName().equals("_Z3absDv3_j") ||
Callee->getName().equals("_Z3absDv4_j")) {
VMap[&I] = VMap[Call->getOperand(0)];
break;
}
// barrier is converted to OpControlBarrier
if (Callee->getName().equals("__spirv_control_barrier")) {
//
// Generate OpControlBarrier.
//
// Ops[0] = Execution Scope ID
// Ops[1] = Memory Scope ID
// Ops[2] = Memory Semantics ID
//
Value *ExecutionScope = Call->getArgOperand(0);
Value *MemoryScope = Call->getArgOperand(1);
Value *MemorySemantics = Call->getArgOperand(2);
SPIRVOperand *Ops[3] = {
new SPIRVOperand(SPIRVOperandType::NUMBERID, VMap[ExecutionScope]),
new SPIRVOperand(SPIRVOperandType::NUMBERID, VMap[MemoryScope]),
new SPIRVOperand(SPIRVOperandType::NUMBERID, VMap[MemorySemantics])};
SPIRVInstList.push_back(
new SPIRVInstruction(4, spv::OpControlBarrier, 0 /* No id */, Ops));
break;
}
// memory barrier is converted to OpMemoryBarrier
if (Callee->getName().equals("__spirv_memory_barrier")) {
//
// Generate OpMemoryBarrier.
//
// Ops[0] = Memory Scope ID
// Ops[1] = Memory Semantics ID
//
SPIRVOperandList Ops;
Value *MemoryScope = Call->getArgOperand(0);
Value *MemorySemantics = Call->getArgOperand(1);
uint32_t MemoryScopeID = VMap[MemoryScope];
Ops.push_back(
new SPIRVOperand(SPIRVOperandType::NUMBERID, MemoryScopeID));
uint32_t MemorySemanticsID = VMap[MemorySemantics];
Ops.push_back(
new SPIRVOperand(SPIRVOperandType::NUMBERID, MemorySemanticsID));
SPIRVInstruction *Inst =
new SPIRVInstruction(3, spv::OpMemoryBarrier, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// isinf is converted to OpIsInf
if (Callee->getName().equals("__spirv_isinff") ||
Callee->getName().equals("__spirv_isinfDv2_f") ||
Callee->getName().equals("__spirv_isinfDv3_f") ||
Callee->getName().equals("__spirv_isinfDv4_f")) {
//
// Generate OpIsInf.
//
// Ops[0] = Result Type ID
// Ops[1] = X ID
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID);
Ops.push_back(ResTyIDOp);
uint32_t XID = VMap[Call->getArgOperand(0)];
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, XID));
VMap[&I] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpIsInf, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// isnan is converted to OpIsNan
if (Callee->getName().equals("__spirv_isnanf") ||
Callee->getName().equals("__spirv_isnanDv2_f") ||
Callee->getName().equals("__spirv_isnanDv3_f") ||
Callee->getName().equals("__spirv_isnanDv4_f")) {
//
// Generate OpIsInf.
//
// Ops[0] = Result Type ID
// Ops[1] = X ID
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID);
Ops.push_back(ResTyIDOp);
uint32_t XID = VMap[Call->getArgOperand(0)];
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, XID));
VMap[&I] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpIsNan, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// all is converted to OpAll
if (Callee->getName().equals("__spirv_allDv2_i") ||
Callee->getName().equals("__spirv_allDv3_i") ||
Callee->getName().equals("__spirv_allDv4_i")) {
//
// Generate OpAll.
//
// Ops[0] = Result Type ID
// Ops[1] = Vector ID
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID);
Ops.push_back(ResTyIDOp);
uint32_t VectorID = VMap[Call->getArgOperand(0)];
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, VectorID));
VMap[&I] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpAll, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// any is converted to OpAny
if (Callee->getName().equals("__spirv_anyDv2_i") ||
Callee->getName().equals("__spirv_anyDv3_i") ||
Callee->getName().equals("__spirv_anyDv4_i")) {
//
// Generate OpAny.
//
// Ops[0] = Result Type ID
// Ops[1] = Vector ID
//
SPIRVOperandList Ops;
uint32_t TyID = lookupType(I.getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TyID);
Ops.push_back(ResTyIDOp);
uint32_t VectorID = VMap[Call->getArgOperand(0)];
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID, VectorID));
VMap[&I] = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpAny, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// read_image is converted to OpSampledImage and OpImageSampleExplicitLod.
// Additionally, OpTypeSampledImage is generated.
if (Callee->getName().equals(
"_Z11read_imagef14ocl_image2d_ro11ocl_samplerDv2_f") ||
Callee->getName().equals(
"_Z11read_imagef14ocl_image3d_ro11ocl_samplerDv4_f")) {
//
// Generate OpSampledImage.
//
// Ops[0] = Result Type ID
// Ops[1] = Image ID
// Ops[2] = Sampler ID
//
SPIRVOperandList Ops;
Value *Image = Call->getArgOperand(0);
Value *Sampler = Call->getArgOperand(1);
Value *Coordinate = Call->getArgOperand(2);
TypeMapType &OpImageTypeMap = getImageTypeMap();
Type *ImageTy = Image->getType()->getPointerElementType();
uint32_t ImageTyID = OpImageTypeMap[ImageTy];
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ImageTyID);
Ops.push_back(ResTyIDOp);
uint32_t ImageID = VMap[Image];
SPIRVOperand *ImageIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ImageID);
Ops.push_back(ImageIDOp);
uint32_t SamplerID = VMap[Sampler];
SPIRVOperand *SamplerIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, SamplerID);
Ops.push_back(SamplerIDOp);
uint32_t SampledImageID = nextID;
SPIRVInstruction *Inst =
new SPIRVInstruction(5, spv::OpSampledImage, nextID++, Ops);
SPIRVInstList.push_back(Inst);
//
// Generate OpImageSampleExplicitLod.
//
// Ops[0] = Result Type ID
// Ops[1] = Sampled Image ID
// Ops[2] = Coordinate ID
// Ops[3] = Image Operands Type ID
// Ops[4] ... Ops[n] = Operands ID
//
Ops.clear();
uint32_t RetTyID = lookupType(Call->getType());
ResTyIDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID, RetTyID);
Ops.push_back(ResTyIDOp);
SPIRVOperand *SampledImageIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, SampledImageID);
Ops.push_back(SampledImageIDOp);
uint32_t CoordinateID = VMap[Coordinate];
SPIRVOperand *CoordinateIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CoordinateID);
Ops.push_back(CoordinateIDOp);
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(spv::ImageOperandsLodMask);
SPIRVOperand *ImageOperandTyIDOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(ImageOperandTyIDOp);
Constant *CstFP0 = ConstantFP::get(Context, APFloat(0.0f));
uint32_t OperandID = VMap[CstFP0];
SPIRVOperand *OperandIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, OperandID);
Ops.push_back(OperandIDOp);
VMap[&I] = nextID;
Inst =
new SPIRVInstruction(7, spv::OpImageSampleExplicitLod, nextID++, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// write_imagef is mapped to OpImageWrite.
if (Callee->getName().equals(
"_Z12write_imagef14ocl_image2d_woDv2_iDv4_f") ||
Callee->getName().equals(
"_Z12write_imagef14ocl_image3d_woDv4_iDv4_f")) {
//
// Generate OpImageWrite.
//
// Ops[0] = Image ID
// Ops[1] = Coordinate ID
// Ops[2] = Texel ID
// Ops[3] = (Optional) Image Operands Type (Literal Number)
// Ops[4] ... Ops[n] = (Optional) Operands ID
//
SPIRVOperandList Ops;
Value *Image = Call->getArgOperand(0);
Value *Coordinate = Call->getArgOperand(1);
Value *Texel = Call->getArgOperand(2);
uint32_t ImageID = VMap[Image];
SPIRVOperand *ImageIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ImageID);
Ops.push_back(ImageIDOp);
uint32_t CoordinateID = VMap[Coordinate];
SPIRVOperand *CoordinateIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CoordinateID);
Ops.push_back(CoordinateIDOp);
uint32_t TexelID = VMap[Texel];
SPIRVOperand *TexelIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TexelID);
Ops.push_back(TexelIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(4, spv::OpImageWrite, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
break;
}
// Call instrucion is deferred because it needs function's ID. Record
// slot's location on SPIRVInstructionList.
DeferredInsts.push_back(
std::make_tuple(&I, --SPIRVInstList.end(), nextID++));
// Check whether this call is for extend instructions.
glsl::ExtInst EInst = getExtInstEnum(Callee->getName());
if (EInst == glsl::ExtInstFindUMsb) {
// clz needs OpExtInst and OpISub with constant 31 or vector constant 31.
// Increase nextID.
VMap[&I] = nextID;
nextID++;
}
break;
}
case Instruction::Ret: {
unsigned NumOps = I.getNumOperands();
if (NumOps == 0) {
//
// Generate OpReturn.
//
// Empty Ops
SPIRVOperandList Ops;
SPIRVInstruction *Inst =
new SPIRVInstruction(1, spv::OpReturn, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
} else {
//
// Generate OpReturnValue.
//
// Ops[0] = Return Value ID
SPIRVOperandList Ops;
uint32_t RetValID = VMap[I.getOperand(0)];
SPIRVOperand *RetValIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, RetValID);
Ops.push_back(RetValIDOp);
SPIRVInstruction *Inst =
new SPIRVInstruction(2, spv::OpReturnValue, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
break;
}
break;
}
}
}
void SPIRVProducerPass::GenerateFuncEpilogue() {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
//
// Generate OpFunctionEnd
//
// Empty Ops
SPIRVOperandList Ops;
SPIRVInstruction *Inst =
new SPIRVInstruction(1, spv::OpFunctionEnd, 0 /* No id */, Ops);
SPIRVInstList.push_back(Inst);
}
bool SPIRVProducerPass::is4xi8vec(Type *Ty) const {
LLVMContext &Context = Ty->getContext();
if (Ty->isVectorTy()) {
if (Ty->getVectorElementType() == Type::getInt8Ty(Context) &&
Ty->getVectorNumElements() == 4) {
return true;
}
}
return false;
}
void SPIRVProducerPass::HandleDeferredInstruction() {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
ValueMapType &VMap = getValueMap();
DeferredInstVecType &DeferredInsts = getDeferredInstVec();
for (auto DeferredInst = DeferredInsts.rbegin();
DeferredInst != DeferredInsts.rend(); ++DeferredInst) {
Value *Inst = std::get<0>(*DeferredInst);
SPIRVInstructionList::iterator InsertPoint = ++std::get<1>(*DeferredInst);
if (InsertPoint != SPIRVInstList.end()) {
while ((*InsertPoint)->getOpcode() == spv::OpPhi) {
++InsertPoint;
}
}
if (BranchInst *Br = dyn_cast<BranchInst>(Inst)) {
// Check whether basic block, which has this branch instruction, is loop
// header or not. If it is loop header, generate OpLoopMerge and
// OpBranchConditional.
Function *Func = Br->getParent()->getParent();
DominatorTree &DT =
getAnalysis<DominatorTreeWrapperPass>(*Func).getDomTree();
const LoopInfo &LI =
getAnalysis<LoopInfoWrapperPass>(*Func).getLoopInfo();
BasicBlock *BrBB = Br->getParent();
if (LI.isLoopHeader(BrBB)) {
Value *ContinueBB = nullptr;
Value *MergeBB = nullptr;
Loop *L = LI.getLoopFor(BrBB);
MergeBB = L->getExitBlock();
if (!MergeBB) {
// StructurizeCFG pass converts CFG into triangle shape and the cfg
// has regions with single entry/exit. As a result, loop should not
// have multiple exits.
llvm_unreachable("Loop has multiple exits???");
}
if (L->isLoopLatch(BrBB)) {
ContinueBB = BrBB;
} else {
// From SPIR-V spec 2.11, Continue Target must dominate that back-edge
// block.
BasicBlock *Header = L->getHeader();
BasicBlock *Latch = L->getLoopLatch();
for (BasicBlock *BB : L->blocks()) {
if (BB == Header) {
continue;
}
// Check whether block dominates block with back-edge.
if (DT.dominates(BB, Latch)) {
ContinueBB = BB;
}
}
if (!ContinueBB) {
llvm_unreachable("Wrong continue block from loop");
}
}
//
// Generate OpLoopMerge.
//
// Ops[0] = Merge Block ID
// Ops[1] = Continue Target ID
// Ops[2] = Selection Control
SPIRVOperandList Ops;
// StructurizeCFG pass already manipulated CFG. Just use false block of
// branch instruction as merge block.
uint32_t MergeBBID = VMap[MergeBB];
SPIRVOperand *MergeBBIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, MergeBBID);
Ops.push_back(MergeBBIDOp);
uint32_t ContinueBBID = VMap[ContinueBB];
SPIRVOperand *ContinueBBIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ContinueBBID);
Ops.push_back(ContinueBBIDOp);
SPIRVOperand *SelectionControlOp = new SPIRVOperand(
SPIRVOperandType::NUMBERID, spv::SelectionControlMaskNone);
Ops.push_back(SelectionControlOp);
SPIRVInstruction *MergeInst =
new SPIRVInstruction(4, spv::OpLoopMerge, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, MergeInst);
} else if (Br->isConditional()) {
bool HasBackEdge = false;
for (unsigned i = 0; i < Br->getNumSuccessors(); i++) {
if (LI.isLoopHeader(Br->getSuccessor(i))) {
HasBackEdge = true;
}
}
if (!HasBackEdge) {
//
// Generate OpSelectionMerge.
//
// Ops[0] = Merge Block ID
// Ops[1] = Selection Control
SPIRVOperandList Ops;
// StructurizeCFG pass already manipulated CFG. Just use false block
// of branch instruction as merge block.
uint32_t MergeBBID = VMap[Br->getSuccessor(1)];
SPIRVOperand *MergeBBIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, MergeBBID);
Ops.push_back(MergeBBIDOp);
SPIRVOperand *SelectionControlOp = new SPIRVOperand(
SPIRVOperandType::NUMBERID, spv::SelectionControlMaskNone);
Ops.push_back(SelectionControlOp);
SPIRVInstruction *MergeInst = new SPIRVInstruction(
3, spv::OpSelectionMerge, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, MergeInst);
}
}
if (Br->isConditional()) {
//
// Generate OpBranchConditional.
//
// Ops[0] = Condition ID
// Ops[1] = True Label ID
// Ops[2] = False Label ID
// Ops[3] ... Ops[n] = Branch weights (Literal Number)
SPIRVOperandList Ops;
uint32_t CondID = VMap[Br->getCondition()];
SPIRVOperand *CondIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CondID);
Ops.push_back(CondIDOp);
uint32_t TrueBBID = VMap[Br->getSuccessor(0)];
SPIRVOperand *TrueBBIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TrueBBID);
Ops.push_back(TrueBBIDOp);
uint32_t FalseBBID = VMap[Br->getSuccessor(1)];
SPIRVOperand *FalseBBIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, FalseBBID);
Ops.push_back(FalseBBIDOp);
SPIRVInstruction *BrInst = new SPIRVInstruction(
4, spv::OpBranchConditional, 0 /* No id */, Ops);
SPIRVInstList.insert(InsertPoint, BrInst);
} else {
//
// Generate OpBranch.
//
// Ops[0] = Target Label ID
SPIRVOperandList Ops;
uint32_t TargetID = VMap[Br->getSuccessor(0)];
SPIRVOperand *TargetIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, TargetID);
Ops.push_back(TargetIDOp);
SPIRVInstList.insert(
InsertPoint,
new SPIRVInstruction(2, spv::OpBranch, 0 /* No id */, Ops));
}
} else if (PHINode *PHI = dyn_cast<PHINode>(Inst)) {
//
// Generate OpPhi.
//
// Ops[0] = Result Type ID
// Ops[1] ... Ops[n] = (Variable ID, Parent ID) pairs
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(PHI->getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint16_t WordCount = 3;
for (unsigned i = 0; i < PHI->getNumIncomingValues(); i++) {
uint32_t VarID = VMap[PHI->getIncomingValue(i)];
SPIRVOperand *VarIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, VarID);
Ops.push_back(VarIDOp);
uint32_t ParentID = VMap[PHI->getIncomingBlock(i)];
SPIRVOperand *ParentIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ParentID);
Ops.push_back(ParentIDOp);
WordCount += 2;
}
SPIRVInstList.insert(
InsertPoint, new SPIRVInstruction(WordCount, spv::OpPhi,
std::get<2>(*DeferredInst), Ops));
} else if (CallInst *Call = dyn_cast<CallInst>(Inst)) {
Function *Callee = Call->getCalledFunction();
glsl::ExtInst EInst = getExtInstEnum(Callee->getName());
if (EInst) {
uint32_t &ExtInstImportID = getOpExtInstImportID();
//
// Generate OpExtInst.
//
// Ops[0] = Result Type ID
// Ops[1] = Set ID (OpExtInstImport ID)
// Ops[2] = Instruction Number (Literal Number)
// Ops[3] ... Ops[n] = Operand 1, ... , Operand n
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(Call->getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
SPIRVOperand *SetIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ExtInstImportID);
Ops.push_back(SetIDOp);
std::vector<uint32_t> LiteralNum;
LiteralNum.push_back(EInst);
SPIRVOperand *InstructionOp =
new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, LiteralNum);
Ops.push_back(InstructionOp);
uint16_t WordCount = 5;
FunctionType *CalleeFTy = cast<FunctionType>(Call->getFunctionType());
for (unsigned i = 0; i < CalleeFTy->getNumParams(); i++) {
uint32_t ArgID = VMap[Call->getOperand(i)];
SPIRVOperand *ArgIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ArgID);
Ops.push_back(ArgIDOp);
WordCount++;
}
SPIRVInstruction *ExtInst = new SPIRVInstruction(
WordCount, spv::OpExtInst, std::get<2>(*DeferredInst), Ops);
SPIRVInstList.insert(InsertPoint, ExtInst);
// clz needs OpExtInst and OpISub with constant 31.
if (EInst == glsl::ExtInstFindUMsb) {
LLVMContext &Context =
Call->getParent()->getParent()->getParent()->getContext();
//
// Generate OpISub with constant 31.
//
// Ops[0] = Result Type ID
// Ops[1] = Operand 0
// Ops[2] = Operand 1
Ops.clear();
Type *resultTy = Call->getType();
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
lookupType(resultTy)));
Type *IdxTy = Type::getInt32Ty(Context);
Constant *minuend = ConstantInt::get(IdxTy, 31);
if (auto *vectorTy = dyn_cast<VectorType>(resultTy)) {
minuend = ConstantVector::getSplat(
static_cast<unsigned>(vectorTy->getNumElements()), minuend);
}
uint32_t Op0ID = VMap[minuend];
SPIRVOperand *Op0IDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, Op0ID);
Ops.push_back(Op0IDOp);
SPIRVOperand *Op1IDOp = new SPIRVOperand(SPIRVOperandType::NUMBERID,
std::get<2>(*DeferredInst));
Ops.push_back(Op1IDOp);
SPIRVInstList.insert(
InsertPoint,
new SPIRVInstruction(5, spv::OpISub,
std::get<2>(*DeferredInst) + 1, Ops));
}
} else if (Callee->getName().equals("_Z8popcounti") ||
Callee->getName().equals("_Z8popcountj") ||
Callee->getName().equals("_Z8popcountDv2_i") ||
Callee->getName().equals("_Z8popcountDv3_i") ||
Callee->getName().equals("_Z8popcountDv4_i") ||
Callee->getName().equals("_Z8popcountDv2_j") ||
Callee->getName().equals("_Z8popcountDv3_j") ||
Callee->getName().equals("_Z8popcountDv4_j")) {
//
// Generate OpBitCount
//
// Ops[0] = Result Type ID
// Ops[1] = Base ID
SPIRVOperand *Ops[2]{new SPIRVOperand(SPIRVOperandType::NUMBERID,
lookupType(Call->getType())),
new SPIRVOperand(SPIRVOperandType::NUMBERID,
VMap[Call->getOperand(0)])};
SPIRVInstList.insert(
InsertPoint, new SPIRVInstruction(4, spv::OpBitCount,
std::get<2>(*DeferredInst), Ops));
} else {
//
// Generate OpFunctionCall.
//
// Ops[0] = Result Type ID
// Ops[1] = Callee Function ID
// Ops[2] ... Ops[n] = Argument 0, ... , Argument n
SPIRVOperandList Ops;
uint32_t ResTyID = lookupType(Call->getType());
SPIRVOperand *ResTyIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ResTyID);
Ops.push_back(ResTyIDOp);
uint32_t CalleeID = VMap[Callee];
SPIRVOperand *CalleeIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, CalleeID);
Ops.push_back(CalleeIDOp);
uint16_t WordCount = 4;
FunctionType *CalleeFTy = cast<FunctionType>(Call->getFunctionType());
for (unsigned i = 0; i < CalleeFTy->getNumParams(); i++) {
uint32_t ArgID = VMap[Call->getOperand(i)];
SPIRVOperand *ArgIDOp =
new SPIRVOperand(SPIRVOperandType::NUMBERID, ArgID);
Ops.push_back(ArgIDOp);
WordCount++;
}
SPIRVInstruction *CallInst = new SPIRVInstruction(
WordCount, spv::OpFunctionCall, std::get<2>(*DeferredInst), Ops);
SPIRVInstList.insert(InsertPoint, CallInst);
}
}
}
}
void SPIRVProducerPass::HandleDeferredDecorations(const DataLayout &DL) {
// Insert ArrayStride decorations on pointer types, due to OpPtrAccessChain
// instructions we generated earlier.
if (getPointerTypesNeedingArrayStride().empty())
return;
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
// Find an iterator pointing just past the last decoration.
bool seen_decorations = false;
auto DecoInsertPoint =
std::find_if(SPIRVInstList.begin(), SPIRVInstList.end(),
[&seen_decorations](SPIRVInstruction *Inst) -> bool {
const bool is_decoration =
Inst->getOpcode() == spv::OpDecorate ||
Inst->getOpcode() == spv::OpMemberDecorate;
if (is_decoration) {
seen_decorations = true;
return false;
} else {
return seen_decorations;
}
});
for (auto *type : getPointerTypesNeedingArrayStride()) {
auto *ptrType = cast<PointerType>(type);
// Ops[0] = Target ID
// Ops[1] = Decoration (ArrayStride)
// Ops[2] = Stride number (Literal Number)
SPIRVOperandList Ops;
Ops.push_back(
new SPIRVOperand(SPIRVOperandType::NUMBERID, lookupType(ptrType)));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::NUMBERID,
spv::DecorationArrayStride));
Type *elemTy = ptrType->getElementType();
// Same as DL.getIndexedOfffsetInType( elemTy, { 1 } );
const uint32_t stride = static_cast<uint32_t>(DL.getTypeAllocSize(elemTy));
Ops.push_back(new SPIRVOperand(SPIRVOperandType::LITERAL_INTEGER, stride));
SPIRVInstruction *DecoInst =
new SPIRVInstruction(4, spv::OpDecorate, 0 /* No id */, Ops);
SPIRVInstList.insert(DecoInsertPoint, DecoInst);
}
}
glsl::ExtInst SPIRVProducerPass::getExtInstEnum(StringRef Name) {
return StringSwitch<glsl::ExtInst>(Name)
.Case("_Z3absi", glsl::ExtInst::ExtInstSAbs)
.Case("_Z3absDv2_i", glsl::ExtInst::ExtInstSAbs)
.Case("_Z3absDv3_i", glsl::ExtInst::ExtInstSAbs)
.Case("_Z3absDv4_i", glsl::ExtInst::ExtInstSAbs)
.Case("_Z5clampiii", glsl::ExtInst::ExtInstSClamp)
.Case("_Z5clampDv2_iS_S_", glsl::ExtInst::ExtInstSClamp)
.Case("_Z5clampDv3_iS_S_", glsl::ExtInst::ExtInstSClamp)
.Case("_Z5clampDv4_iS_S_", glsl::ExtInst::ExtInstSClamp)
.Case("_Z5clampjjj", glsl::ExtInst::ExtInstUClamp)
.Case("_Z5clampDv2_jS_S_", glsl::ExtInst::ExtInstUClamp)
.Case("_Z5clampDv3_jS_S_", glsl::ExtInst::ExtInstUClamp)
.Case("_Z5clampDv4_jS_S_", glsl::ExtInst::ExtInstUClamp)
.Case("_Z5clampfff", glsl::ExtInst::ExtInstFClamp)
.Case("_Z5clampDv2_fS_S_", glsl::ExtInst::ExtInstFClamp)
.Case("_Z5clampDv3_fS_S_", glsl::ExtInst::ExtInstFClamp)
.Case("_Z5clampDv4_fS_S_", glsl::ExtInst::ExtInstFClamp)
.StartsWith("_Z3clz", glsl::ExtInst::ExtInstFindUMsb)
.Case("_Z3maxii", glsl::ExtInst::ExtInstSMax)
.Case("_Z3maxDv2_iS_", glsl::ExtInst::ExtInstSMax)
.Case("_Z3maxDv3_iS_", glsl::ExtInst::ExtInstSMax)
.Case("_Z3maxDv4_iS_", glsl::ExtInst::ExtInstSMax)
.Case("_Z3maxjj", glsl::ExtInst::ExtInstUMax)
.Case("_Z3maxDv2_jS_", glsl::ExtInst::ExtInstUMax)
.Case("_Z3maxDv3_jS_", glsl::ExtInst::ExtInstUMax)
.Case("_Z3maxDv4_jS_", glsl::ExtInst::ExtInstUMax)
.Case("_Z3maxff", glsl::ExtInst::ExtInstFMax)
.Case("_Z3maxDv2_fS_", glsl::ExtInst::ExtInstFMax)
.Case("_Z3maxDv3_fS_", glsl::ExtInst::ExtInstFMax)
.Case("_Z3maxDv4_fS_", glsl::ExtInst::ExtInstFMax)
.StartsWith("_Z4fmax", glsl::ExtInst::ExtInstFMax)
.Case("_Z3minii", glsl::ExtInst::ExtInstSMin)
.Case("_Z3minDv2_iS_", glsl::ExtInst::ExtInstSMin)
.Case("_Z3minDv3_iS_", glsl::ExtInst::ExtInstSMin)
.Case("_Z3minDv4_iS_", glsl::ExtInst::ExtInstSMin)
.Case("_Z3minjj", glsl::ExtInst::ExtInstUMin)
.Case("_Z3minDv2_jS_", glsl::ExtInst::ExtInstUMin)
.Case("_Z3minDv3_jS_", glsl::ExtInst::ExtInstUMin)
.Case("_Z3minDv4_jS_", glsl::ExtInst::ExtInstUMin)
.Case("_Z3minff", glsl::ExtInst::ExtInstFMin)
.Case("_Z3minDv2_fS_", glsl::ExtInst::ExtInstFMin)
.Case("_Z3minDv3_fS_", glsl::ExtInst::ExtInstFMin)
.Case("_Z3minDv4_fS_", glsl::ExtInst::ExtInstFMin)
.StartsWith("_Z4fmin", glsl::ExtInst::ExtInstFMin)
.StartsWith("_Z7degrees", glsl::ExtInst::ExtInstDegrees)
.StartsWith("_Z7radians", glsl::ExtInst::ExtInstRadians)
.StartsWith("_Z3mix", glsl::ExtInst::ExtInstFMix)
.StartsWith("_Z4acos", glsl::ExtInst::ExtInstAcos)
.StartsWith("_Z5acosh", glsl::ExtInst::ExtInstAcosh)
.StartsWith("_Z4asin", glsl::ExtInst::ExtInstAsin)
.StartsWith("_Z5asinh", glsl::ExtInst::ExtInstAsinh)
.StartsWith("_Z4atan", glsl::ExtInst::ExtInstAtan)
.StartsWith("_Z5atan2", glsl::ExtInst::ExtInstAtan2)
.StartsWith("_Z5atanh", glsl::ExtInst::ExtInstAtanh)
.StartsWith("_Z4ceil", glsl::ExtInst::ExtInstCeil)
.StartsWith("_Z3sin", glsl::ExtInst::ExtInstSin)
.StartsWith("_Z4sinh", glsl::ExtInst::ExtInstSinh)
.StartsWith("_Z8half_sin", glsl::ExtInst::ExtInstSin)
.StartsWith("_Z10native_sin", glsl::ExtInst::ExtInstSin)
.StartsWith("_Z3cos", glsl::ExtInst::ExtInstCos)
.StartsWith("_Z4cosh", glsl::ExtInst::ExtInstCosh)
.StartsWith("_Z8half_cos", glsl::ExtInst::ExtInstCos)
.StartsWith("_Z10native_cos", glsl::ExtInst::ExtInstCos)
.StartsWith("_Z3tan", glsl::ExtInst::ExtInstTan)
.StartsWith("_Z4tanh", glsl::ExtInst::ExtInstTanh)
.StartsWith("_Z8half_tan", glsl::ExtInst::ExtInstTan)
.StartsWith("_Z10native_tan", glsl::ExtInst::ExtInstTan)
.StartsWith("_Z3exp", glsl::ExtInst::ExtInstExp)
.StartsWith("_Z8half_exp", glsl::ExtInst::ExtInstExp)
.StartsWith("_Z10native_exp", glsl::ExtInst::ExtInstExp)
.StartsWith("_Z4exp2", glsl::ExtInst::ExtInstExp2)
.StartsWith("_Z9half_exp2", glsl::ExtInst::ExtInstExp2)
.StartsWith("_Z11native_exp2", glsl::ExtInst::ExtInstExp2)
.StartsWith("_Z3log", glsl::ExtInst::ExtInstLog)
.StartsWith("_Z8half_log", glsl::ExtInst::ExtInstLog)
.StartsWith("_Z10native_log", glsl::ExtInst::ExtInstLog)
.StartsWith("_Z4log2", glsl::ExtInst::ExtInstLog2)
.StartsWith("_Z9half_log2", glsl::ExtInst::ExtInstLog2)
.StartsWith("_Z11native_log2", glsl::ExtInst::ExtInstLog2)
.StartsWith("_Z4fabs", glsl::ExtInst::ExtInstFAbs)
.StartsWith("_Z5floor", glsl::ExtInst::ExtInstFloor)
.StartsWith("_Z5ldexp", glsl::ExtInst::ExtInstLdexp)
.StartsWith("_Z3pow", glsl::ExtInst::ExtInstPow)
.StartsWith("_Z4powr", glsl::ExtInst::ExtInstPow)
.StartsWith("_Z9half_powr", glsl::ExtInst::ExtInstPow)
.StartsWith("_Z11native_powr", glsl::ExtInst::ExtInstPow)
.StartsWith("_Z5round", glsl::ExtInst::ExtInstRound)
.StartsWith("_Z4sqrt", glsl::ExtInst::ExtInstSqrt)
.StartsWith("_Z9half_sqrt", glsl::ExtInst::ExtInstSqrt)
.StartsWith("_Z11native_sqrt", glsl::ExtInst::ExtInstSqrt)
.StartsWith("_Z5rsqrt", glsl::ExtInst::ExtInstInverseSqrt)
.StartsWith("_Z10half_rsqrt", glsl::ExtInst::ExtInstInverseSqrt)
.StartsWith("_Z12native_rsqrt", glsl::ExtInst::ExtInstInverseSqrt)
.StartsWith("_Z5trunc", glsl::ExtInst::ExtInstTrunc)
.StartsWith("_Z5frexp", glsl::ExtInst::ExtInstFrexp)
.StartsWith("_Z4sign", glsl::ExtInst::ExtInstFSign)
.StartsWith("_Z6length", glsl::ExtInst::ExtInstLength)
.StartsWith("_Z8distance", glsl::ExtInst::ExtInstDistance)
.Case("_Z5crossDv3_fS_", glsl::ExtInst::ExtInstCross)
.StartsWith("_Z9normalize", glsl::ExtInst::ExtInstNormalize)
.StartsWith("llvm.fmuladd.", glsl::ExtInst::ExtInstFma)
.Case("spirv.unpack.v2f16", glsl::ExtInst::ExtInstUnpackHalf2x16)
.Case("spirv.pack.v2f16", glsl::ExtInst::ExtInstPackHalf2x16)
.Default(static_cast<glsl::ExtInst>(0));
}
void SPIRVProducerPass::PrintResID(SPIRVInstruction *Inst) {
out << "%" << Inst->getResultID();
}
void SPIRVProducerPass::PrintOpcode(SPIRVInstruction *Inst) {
spv::Op Opcode = static_cast<spv::Op>(Inst->getOpcode());
out << "\t" << spv::getOpName(Opcode);
}
void SPIRVProducerPass::PrintOperand(SPIRVOperand *Op) {
SPIRVOperandType OpTy = Op->getType();
switch (OpTy) {
default: {
llvm_unreachable("Unsupported SPIRV Operand Type???");
break;
}
case SPIRVOperandType::NUMBERID: {
out << "%" << Op->getNumID();
break;
}
case SPIRVOperandType::LITERAL_STRING: {
out << "\"" << Op->getLiteralStr() << "\"";
break;
}
case SPIRVOperandType::LITERAL_INTEGER: {
// TODO: Handle LiteralNum carefully.
for (auto Word : Op->getLiteralNum()) {
out << Word;
}
break;
}
case SPIRVOperandType::LITERAL_FLOAT: {
// TODO: Handle LiteralNum carefully.
for (auto Word : Op->getLiteralNum()) {
APFloat APF = APFloat(APFloat::IEEEsingle(), APInt(32, Word));
SmallString<8> Str;
APF.toString(Str, 6, 2);
out << Str;
}
break;
}
}
}
void SPIRVProducerPass::PrintCapability(SPIRVOperand *Op) {
spv::Capability Cap = static_cast<spv::Capability>(Op->getNumID());
out << spv::getCapabilityName(Cap);
}
void SPIRVProducerPass::PrintExtInst(SPIRVOperand *Op) {
auto LiteralNum = Op->getLiteralNum();
glsl::ExtInst Ext = static_cast<glsl::ExtInst>(LiteralNum[0]);
out << glsl::getExtInstName(Ext);
}
void SPIRVProducerPass::PrintAddrModel(SPIRVOperand *Op) {
spv::AddressingModel AddrModel =
static_cast<spv::AddressingModel>(Op->getNumID());
out << spv::getAddressingModelName(AddrModel);
}
void SPIRVProducerPass::PrintMemModel(SPIRVOperand *Op) {
spv::MemoryModel MemModel = static_cast<spv::MemoryModel>(Op->getNumID());
out << spv::getMemoryModelName(MemModel);
}
void SPIRVProducerPass::PrintExecModel(SPIRVOperand *Op) {
spv::ExecutionModel ExecModel =
static_cast<spv::ExecutionModel>(Op->getNumID());
out << spv::getExecutionModelName(ExecModel);
}
void SPIRVProducerPass::PrintExecMode(SPIRVOperand *Op) {
spv::ExecutionMode ExecMode = static_cast<spv::ExecutionMode>(Op->getNumID());
out << spv::getExecutionModeName(ExecMode);
}
void SPIRVProducerPass::PrintSourceLanguage(SPIRVOperand *Op) {
spv::SourceLanguage SourceLang = static_cast<spv::SourceLanguage>(Op->getNumID());
out << spv::getSourceLanguageName(SourceLang);
}
void SPIRVProducerPass::PrintFuncCtrl(SPIRVOperand *Op) {
spv::FunctionControlMask FuncCtrl =
static_cast<spv::FunctionControlMask>(Op->getNumID());
out << spv::getFunctionControlName(FuncCtrl);
}
void SPIRVProducerPass::PrintStorageClass(SPIRVOperand *Op) {
spv::StorageClass StClass = static_cast<spv::StorageClass>(Op->getNumID());
out << getStorageClassName(StClass);
}
void SPIRVProducerPass::PrintDecoration(SPIRVOperand *Op) {
spv::Decoration Deco = static_cast<spv::Decoration>(Op->getNumID());
out << getDecorationName(Deco);
}
void SPIRVProducerPass::PrintBuiltIn(SPIRVOperand *Op) {
spv::BuiltIn BIn = static_cast<spv::BuiltIn>(Op->getNumID());
out << getBuiltInName(BIn);
}
void SPIRVProducerPass::PrintSelectionControl(SPIRVOperand *Op) {
spv::SelectionControlMask BIn =
static_cast<spv::SelectionControlMask>(Op->getNumID());
out << getSelectionControlName(BIn);
}
void SPIRVProducerPass::PrintLoopControl(SPIRVOperand *Op) {
spv::LoopControlMask BIn = static_cast<spv::LoopControlMask>(Op->getNumID());
out << getLoopControlName(BIn);
}
void SPIRVProducerPass::PrintDimensionality(SPIRVOperand *Op) {
spv::Dim DIM = static_cast<spv::Dim>(Op->getNumID());
out << getDimName(DIM);
}
void SPIRVProducerPass::PrintImageFormat(SPIRVOperand *Op) {
spv::ImageFormat Format = static_cast<spv::ImageFormat>(Op->getNumID());
out << getImageFormatName(Format);
}
void SPIRVProducerPass::PrintMemoryAccess(SPIRVOperand *Op) {
out << spv::getMemoryAccessName(
static_cast<spv::MemoryAccessMask>(Op->getNumID()));
}
void SPIRVProducerPass::PrintImageOperandsType(SPIRVOperand *Op) {
auto LiteralNum = Op->getLiteralNum();
spv::ImageOperandsMask Type =
static_cast<spv::ImageOperandsMask>(LiteralNum[0]);
out << getImageOperandsName(Type);
}
void SPIRVProducerPass::WriteSPIRVAssembly() {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
for (auto Inst : SPIRVInstList) {
SPIRVOperandList Ops = Inst->getOperands();
spv::Op Opcode = static_cast<spv::Op>(Inst->getOpcode());
switch (Opcode) {
default: {
llvm_unreachable("Unsupported SPIRV instruction");
break;
}
case spv::OpCapability: {
// Ops[0] = Capability
PrintOpcode(Inst);
out << " ";
PrintCapability(Ops[0]);
out << "\n";
break;
}
case spv::OpMemoryModel: {
// Ops[0] = Addressing Model
// Ops[1] = Memory Model
PrintOpcode(Inst);
out << " ";
PrintAddrModel(Ops[0]);
out << " ";
PrintMemModel(Ops[1]);
out << "\n";
break;
}
case spv::OpEntryPoint: {
// Ops[0] = Execution Model
// Ops[1] = EntryPoint ID
// Ops[2] = Name (Literal String)
// Ops[3] ... Ops[n] = Interface ID
PrintOpcode(Inst);
out << " ";
PrintExecModel(Ops[0]);
for (uint32_t i = 1; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
case spv::OpExecutionMode: {
// Ops[0] = Entry Point ID
// Ops[1] = Execution Mode
// Ops[2] ... Ops[n] = Optional literals according to Execution Mode
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintExecMode(Ops[1]);
for (uint32_t i = 2; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
case spv::OpSource: {
// Ops[0] = SourceLanguage ID
// Ops[1] = Version (LiteralNum)
PrintOpcode(Inst);
out << " ";
PrintSourceLanguage(Ops[0]);
out << " ";
PrintOperand(Ops[1]);
out << "\n";
break;
}
case spv::OpDecorate: {
// Ops[0] = Target ID
// Ops[1] = Decoration (Block or BufferBlock)
// Ops[2] ... Ops[n] = Optional literals according to Decoration
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintDecoration(Ops[1]);
// Handle BuiltIn OpDecorate specially.
if (Ops[1]->getNumID() == spv::DecorationBuiltIn) {
out << " ";
PrintBuiltIn(Ops[2]);
} else {
for (uint32_t i = 2; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
}
out << "\n";
break;
}
case spv::OpMemberDecorate: {
// Ops[0] = Structure Type ID
// Ops[1] = Member Index(Literal Number)
// Ops[2] = Decoration
// Ops[3] ... Ops[n] = Optional literals according to Decoration
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintOperand(Ops[1]);
out << " ";
PrintDecoration(Ops[2]);
for (uint32_t i = 3; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
case spv::OpTypePointer: {
// Ops[0] = Storage Class
// Ops[1] = Element Type ID
PrintResID(Inst);
out << " = ";
PrintOpcode(Inst);
out << " ";
PrintStorageClass(Ops[0]);
out << " ";
PrintOperand(Ops[1]);
out << "\n";
break;
}
case spv::OpTypeImage: {
// Ops[0] = Sampled Type ID
// Ops[1] = Dim ID
// Ops[2] = Depth (Literal Number)
// Ops[3] = Arrayed (Literal Number)
// Ops[4] = MS (Literal Number)
// Ops[5] = Sampled (Literal Number)
// Ops[6] = Image Format ID
PrintResID(Inst);
out << " = ";
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintDimensionality(Ops[1]);
out << " ";
PrintOperand(Ops[2]);
out << " ";
PrintOperand(Ops[3]);
out << " ";
PrintOperand(Ops[4]);
out << " ";
PrintOperand(Ops[5]);
out << " ";
PrintImageFormat(Ops[6]);
out << "\n";
break;
}
case spv::OpFunction: {
// Ops[0] : Result Type ID
// Ops[1] : Function Control
// Ops[2] : Function Type ID
PrintResID(Inst);
out << " = ";
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintFuncCtrl(Ops[1]);
out << " ";
PrintOperand(Ops[2]);
out << "\n";
break;
}
case spv::OpSelectionMerge: {
// Ops[0] = Merge Block ID
// Ops[1] = Selection Control
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintSelectionControl(Ops[1]);
out << "\n";
break;
}
case spv::OpLoopMerge: {
// Ops[0] = Merge Block ID
// Ops[1] = Continue Target ID
// Ops[2] = Selection Control
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintOperand(Ops[1]);
out << " ";
PrintLoopControl(Ops[2]);
out << "\n";
break;
}
case spv::OpImageSampleExplicitLod: {
// Ops[0] = Result Type ID
// Ops[1] = Sampled Image ID
// Ops[2] = Coordinate ID
// Ops[3] = Image Operands Type ID
// Ops[4] ... Ops[n] = Operands ID
PrintResID(Inst);
out << " = ";
PrintOpcode(Inst);
for (uint32_t i = 0; i < 3; i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << " ";
PrintImageOperandsType(Ops[3]);
for (uint32_t i = 4; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
case spv::OpVariable: {
// Ops[0] : Result Type ID
// Ops[1] : Storage Class
// Ops[2] ... Ops[n] = Initializer IDs
PrintResID(Inst);
out << " = ";
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintStorageClass(Ops[1]);
for (uint32_t i = 2; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
case spv::OpExtInst: {
// Ops[0] = Result Type ID
// Ops[1] = Set ID (OpExtInstImport ID)
// Ops[2] = Instruction Number (Literal Number)
// Ops[3] ... Ops[n] = Operand 1, ... , Operand n
PrintResID(Inst);
out << " = ";
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintOperand(Ops[1]);
out << " ";
PrintExtInst(Ops[2]);
for (uint32_t i = 3; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
case spv::OpCopyMemory: {
// Ops[0] = Addressing Model
// Ops[1] = Memory Model
PrintOpcode(Inst);
out << " ";
PrintOperand(Ops[0]);
out << " ";
PrintOperand(Ops[1]);
out << " ";
PrintMemoryAccess(Ops[2]);
out << " ";
PrintOperand(Ops[3]);
out << "\n";
break;
}
case spv::OpExtension:
case spv::OpControlBarrier:
case spv::OpMemoryBarrier:
case spv::OpBranch:
case spv::OpBranchConditional:
case spv::OpStore:
case spv::OpImageWrite:
case spv::OpReturnValue:
case spv::OpReturn:
case spv::OpFunctionEnd: {
PrintOpcode(Inst);
for (uint32_t i = 0; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
case spv::OpExtInstImport:
case spv::OpTypeRuntimeArray:
case spv::OpTypeStruct:
case spv::OpTypeSampler:
case spv::OpTypeSampledImage:
case spv::OpTypeInt:
case spv::OpTypeFloat:
case spv::OpTypeArray:
case spv::OpTypeVector:
case spv::OpTypeBool:
case spv::OpTypeVoid:
case spv::OpTypeFunction:
case spv::OpFunctionParameter:
case spv::OpLabel:
case spv::OpPhi:
case spv::OpLoad:
case spv::OpSelect:
case spv::OpAccessChain:
case spv::OpPtrAccessChain:
case spv::OpInBoundsAccessChain:
case spv::OpUConvert:
case spv::OpSConvert:
case spv::OpConvertFToU:
case spv::OpConvertFToS:
case spv::OpConvertUToF:
case spv::OpConvertSToF:
case spv::OpFConvert:
case spv::OpConvertPtrToU:
case spv::OpConvertUToPtr:
case spv::OpBitcast:
case spv::OpIAdd:
case spv::OpFAdd:
case spv::OpISub:
case spv::OpFSub:
case spv::OpIMul:
case spv::OpFMul:
case spv::OpUDiv:
case spv::OpSDiv:
case spv::OpFDiv:
case spv::OpUMod:
case spv::OpSRem:
case spv::OpFRem:
case spv::OpBitwiseOr:
case spv::OpBitwiseXor:
case spv::OpBitwiseAnd:
case spv::OpNot:
case spv::OpShiftLeftLogical:
case spv::OpShiftRightLogical:
case spv::OpShiftRightArithmetic:
case spv::OpBitCount:
case spv::OpCompositeExtract:
case spv::OpVectorExtractDynamic:
case spv::OpCompositeInsert:
case spv::OpCopyObject:
case spv::OpVectorInsertDynamic:
case spv::OpVectorShuffle:
case spv::OpIEqual:
case spv::OpINotEqual:
case spv::OpUGreaterThan:
case spv::OpUGreaterThanEqual:
case spv::OpULessThan:
case spv::OpULessThanEqual:
case spv::OpSGreaterThan:
case spv::OpSGreaterThanEqual:
case spv::OpSLessThan:
case spv::OpSLessThanEqual:
case spv::OpFOrdEqual:
case spv::OpFOrdGreaterThan:
case spv::OpFOrdGreaterThanEqual:
case spv::OpFOrdLessThan:
case spv::OpFOrdLessThanEqual:
case spv::OpFOrdNotEqual:
case spv::OpFUnordEqual:
case spv::OpFUnordGreaterThan:
case spv::OpFUnordGreaterThanEqual:
case spv::OpFUnordLessThan:
case spv::OpFUnordLessThanEqual:
case spv::OpFUnordNotEqual:
case spv::OpSampledImage:
case spv::OpFunctionCall:
case spv::OpConstantTrue:
case spv::OpConstantFalse:
case spv::OpConstant:
case spv::OpSpecConstant:
case spv::OpConstantComposite:
case spv::OpSpecConstantComposite:
case spv::OpConstantNull:
case spv::OpLogicalOr:
case spv::OpLogicalAnd:
case spv::OpLogicalNot:
case spv::OpLogicalNotEqual:
case spv::OpUndef:
case spv::OpIsInf:
case spv::OpIsNan:
case spv::OpAny:
case spv::OpAll:
case spv::OpAtomicIAdd:
case spv::OpAtomicISub:
case spv::OpAtomicExchange:
case spv::OpAtomicIIncrement:
case spv::OpAtomicIDecrement:
case spv::OpAtomicCompareExchange:
case spv::OpAtomicUMin:
case spv::OpAtomicSMin:
case spv::OpAtomicUMax:
case spv::OpAtomicSMax:
case spv::OpAtomicAnd:
case spv::OpAtomicOr:
case spv::OpAtomicXor:
case spv::OpDot: {
PrintResID(Inst);
out << " = ";
PrintOpcode(Inst);
for (uint32_t i = 0; i < Ops.size(); i++) {
out << " ";
PrintOperand(Ops[i]);
}
out << "\n";
break;
}
}
}
}
void SPIRVProducerPass::WriteOneWord(uint32_t Word) {
binaryOut->write(reinterpret_cast<const char *>(&Word), sizeof(uint32_t));
}
void SPIRVProducerPass::WriteResultID(SPIRVInstruction *Inst) {
WriteOneWord(Inst->getResultID());
}
void SPIRVProducerPass::WriteWordCountAndOpcode(SPIRVInstruction *Inst) {
// High 16 bit : Word Count
// Low 16 bit : Opcode
uint32_t Word = Inst->getOpcode();
Word |= Inst->getWordCount() << 16;
WriteOneWord(Word);
}
void SPIRVProducerPass::WriteOperand(SPIRVOperand *Op) {
SPIRVOperandType OpTy = Op->getType();
switch (OpTy) {
default: {
llvm_unreachable("Unsupported SPIRV Operand Type???");
break;
}
case SPIRVOperandType::NUMBERID: {
WriteOneWord(Op->getNumID());
break;
}
case SPIRVOperandType::LITERAL_STRING: {
std::string Str = Op->getLiteralStr();
const char *Data = Str.c_str();
size_t WordSize = Str.size() / 4;
for (unsigned Idx = 0; Idx < WordSize; Idx++) {
WriteOneWord(*reinterpret_cast<const uint32_t *>(&Data[4 * Idx]));
}
uint32_t Remainder = Str.size() % 4;
uint32_t LastWord = 0;
if (Remainder) {
for (unsigned Idx = 0; Idx < Remainder; Idx++) {
LastWord |= Data[4 * WordSize + Idx] << 8 * Idx;
}
}
WriteOneWord(LastWord);
break;
}
case SPIRVOperandType::LITERAL_INTEGER:
case SPIRVOperandType::LITERAL_FLOAT: {
auto LiteralNum = Op->getLiteralNum();
// TODO: Handle LiteranNum carefully.
for (auto Word : LiteralNum) {
WriteOneWord(Word);
}
break;
}
}
}
void SPIRVProducerPass::WriteSPIRVBinary() {
SPIRVInstructionList &SPIRVInstList = getSPIRVInstList();
for (auto Inst : SPIRVInstList) {
SPIRVOperandList Ops = Inst->getOperands();
spv::Op Opcode = static_cast<spv::Op>(Inst->getOpcode());
switch (Opcode) {
default: {
llvm_unreachable("Unsupported SPIRV instruction");
break;
}
case spv::OpCapability:
case spv::OpExtension:
case spv::OpMemoryModel:
case spv::OpEntryPoint:
case spv::OpExecutionMode:
case spv::OpSource:
case spv::OpDecorate:
case spv::OpMemberDecorate:
case spv::OpBranch:
case spv::OpBranchConditional:
case spv::OpSelectionMerge:
case spv::OpLoopMerge:
case spv::OpStore:
case spv::OpImageWrite:
case spv::OpReturnValue:
case spv::OpControlBarrier:
case spv::OpMemoryBarrier:
case spv::OpReturn:
case spv::OpFunctionEnd:
case spv::OpCopyMemory: {
WriteWordCountAndOpcode(Inst);
for (uint32_t i = 0; i < Ops.size(); i++) {
WriteOperand(Ops[i]);
}
break;
}
case spv::OpTypeBool:
case spv::OpTypeVoid:
case spv::OpTypeSampler:
case spv::OpLabel:
case spv::OpExtInstImport:
case spv::OpTypePointer:
case spv::OpTypeRuntimeArray:
case spv::OpTypeStruct:
case spv::OpTypeImage:
case spv::OpTypeSampledImage:
case spv::OpTypeInt:
case spv::OpTypeFloat:
case spv::OpTypeArray:
case spv::OpTypeVector:
case spv::OpTypeFunction: {
WriteWordCountAndOpcode(Inst);
WriteResultID(Inst);
for (uint32_t i = 0; i < Ops.size(); i++) {
WriteOperand(Ops[i]);
}
break;
}
case spv::OpFunction:
case spv::OpFunctionParameter:
case spv::OpAccessChain:
case spv::OpPtrAccessChain:
case spv::OpInBoundsAccessChain:
case spv::OpUConvert:
case spv::OpSConvert:
case spv::OpConvertFToU:
case spv::OpConvertFToS:
case spv::OpConvertUToF:
case spv::OpConvertSToF:
case spv::OpFConvert:
case spv::OpConvertPtrToU:
case spv::OpConvertUToPtr:
case spv::OpBitcast:
case spv::OpIAdd:
case spv::OpFAdd:
case spv::OpISub:
case spv::OpFSub:
case spv::OpIMul:
case spv::OpFMul:
case spv::OpUDiv:
case spv::OpSDiv:
case spv::OpFDiv:
case spv::OpUMod:
case spv::OpSRem:
case spv::OpFRem:
case spv::OpBitwiseOr:
case spv::OpBitwiseXor:
case spv::OpBitwiseAnd:
case spv::OpNot:
case spv::OpShiftLeftLogical:
case spv::OpShiftRightLogical:
case spv::OpShiftRightArithmetic:
case spv::OpBitCount:
case spv::OpCompositeExtract:
case spv::OpVectorExtractDynamic:
case spv::OpCompositeInsert:
case spv::OpCopyObject:
case spv::OpVectorInsertDynamic:
case spv::OpVectorShuffle:
case spv::OpIEqual:
case spv::OpINotEqual:
case spv::OpUGreaterThan:
case spv::OpUGreaterThanEqual:
case spv::OpULessThan:
case spv::OpULessThanEqual:
case spv::OpSGreaterThan:
case spv::OpSGreaterThanEqual:
case spv::OpSLessThan:
case spv::OpSLessThanEqual:
case spv::OpFOrdEqual:
case spv::OpFOrdGreaterThan:
case spv::OpFOrdGreaterThanEqual:
case spv::OpFOrdLessThan:
case spv::OpFOrdLessThanEqual:
case spv::OpFOrdNotEqual:
case spv::OpFUnordEqual:
case spv::OpFUnordGreaterThan:
case spv::OpFUnordGreaterThanEqual:
case spv::OpFUnordLessThan:
case spv::OpFUnordLessThanEqual:
case spv::OpFUnordNotEqual:
case spv::OpExtInst:
case spv::OpIsInf:
case spv::OpIsNan:
case spv::OpAny:
case spv::OpAll:
case spv::OpUndef:
case spv::OpConstantNull:
case spv::OpLogicalOr:
case spv::OpLogicalAnd:
case spv::OpLogicalNot:
case spv::OpLogicalNotEqual:
case spv::OpConstantComposite:
case spv::OpSpecConstantComposite:
case spv::OpConstantTrue:
case spv::OpConstantFalse:
case spv::OpConstant:
case spv::OpSpecConstant:
case spv::OpVariable:
case spv::OpFunctionCall:
case spv::OpSampledImage:
case spv::OpImageSampleExplicitLod:
case spv::OpSelect:
case spv::OpPhi:
case spv::OpLoad:
case spv::OpAtomicIAdd:
case spv::OpAtomicISub:
case spv::OpAtomicExchange:
case spv::OpAtomicIIncrement:
case spv::OpAtomicIDecrement:
case spv::OpAtomicCompareExchange:
case spv::OpAtomicUMin:
case spv::OpAtomicSMin:
case spv::OpAtomicUMax:
case spv::OpAtomicSMax:
case spv::OpAtomicAnd:
case spv::OpAtomicOr:
case spv::OpAtomicXor:
case spv::OpDot: {
WriteWordCountAndOpcode(Inst);
WriteOperand(Ops[0]);
WriteResultID(Inst);
for (uint32_t i = 1; i < Ops.size(); i++) {
WriteOperand(Ops[i]);
}
break;
}
}
}
}
| [
"dneto@google.com"
] | dneto@google.com |
e9ed0e88cc6d457fd5bf91188056c98b40965be5 | a356f9ca1bf7cf8fe77ff87fd0ad435ae4e8d91d | /ylutils_lib/src/segment/SegTagSM/HBasDict.cpp | 30da69dd56c408877844a750fa6d2adfb37ca685 | [] | no_license | wuli133144/common_lib_json_acl | e70742963efe3ebf11a81f24d0fa72beac22d75f | 3a25384cd974dd09146cd74e0b85c4b4c7cde06f | refs/heads/master | 2020-03-20T00:34:29.404282 | 2018-06-12T09:29:17 | 2018-06-12T09:29:17 | 137,049,028 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 9,848 | cpp |
//#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <ctype.h>
#include "Limits.h"
#include "HBasDict.h"
extern char CateBuf[MAX_WordCatesLen+1]; /* buffer for the category information
- all possible POS (all ¡°¼æÀࡱ!!) */
#define ThisMalloc malloc
//
////////////////////////// internal functions:
//
//
int CmpBasDictStem(const void *Stem1, const void *Stem2);
void GenBasDictFirstCharList();
//
///////////// external functions
//
//
void readBasDic(char *curPath);
int SearchFCListOfBasicDict(char* FirstChar, int* StPos, int* FCWordSum);
int LookupBasicDict(char * word, int StPos, int FCWordSum,char *cate,char *pron, int *ruleflag, struct RuleFileItem *&head);
void FreeBasicDictMem();
int insertRuleLink(char *tmpWord, struct RuleFileItem *head);
void readBasDic(char *curPath)
{
char FullBasDictFileName[300];
char WordBufTmp[MAX_BasWordLen+40], CateBufTmp[MAX_WordCatesLen+40];
char TmpStr[MAX_WordCatesLen+40];
FILE *fp;
char *tokptr, *strptr;
char PinyinBufTmp[MAX_PINYINLEN+40];
char tmpline[ MAXDICLINELEN];
int len, i, pinyin, j;
strcpy(FullBasDictFileName, curPath);
strcat(FullBasDictFileName, "NewWholePinyin.txt");
if ((fp=fopen(FullBasDictFileName,"r"))==NULL) {
//AfxMessageBox("The basic dictionary file can not found");
printf("The basic dictionary file can not found\r"); //zanhy 2002-12-23
}
//// read the content of the basic dictionary
BasicDictIndex=0;
while (!feof(fp))
{
////we now allow C++ single-line comments in all the lexicons
//
//SkipComments(fp);
//fscanf(fp,"%s%s",WordBufTmp,CateBufTmp);
//// ^ To cooperate C/C++ cmmnts:
if(!fgets(tmpline, MAXDICLINELEN,fp))
break;
pinyin = 0;
len = strlen(tmpline);
for(i = len-1; i>3; i--)
if(tmpline[i] == '[')
{
pinyin = 1;
break;
}
strptr=tmpline;
if((tokptr = strtok(strptr," \t")) != (char *)0)
strcpy(WordBufTmp,tokptr);
strptr = (char *)0;
if(pinyin == 1)
{
if((tokptr = strtok(strptr,"[")) != (char *)0)
strcpy(CateBufTmp,tokptr);
strptr = (char *)0;
if((tokptr = strtok(strptr,"]")) != (char *)0)
strcpy(PinyinBufTmp,tokptr);
}
else
{
if((tokptr = strtok(strptr," \t\r\n")) != (char *)0)
strcpy(CateBufTmp, tokptr);
strcpy(PinyinBufTmp, WordBufTmp);
}
//GetNextTokenString(fp, WordBufTmp);
//GetNextTokenString(fp, CateBufTmp);
strcpy(TmpStr, CateBufTmp);
i = 0;
while((TmpStr[i] == ' ')||(TmpStr[i] == '\t')) i++;
j = 0;
while( (TmpStr[i] != '\0')&&(TmpStr[i] != ' ')&&(TmpStr[i] != '\t') )
CateBufTmp[j++] = TmpStr[i++];
CateBufTmp[j] = '\0';
// Try to store a word:
if ((BasicDict[BasicDictIndex]=(BasDictUnit*)ThisMalloc(sizeof(BasDictUnit)))==0)
return;
//for (i=0; i<=MAX_BasWordLen; i++) BasicDict[BasicDictIndex]->word[i]='\0';
//for (i=0; i<=MAX_WordCatesLen; i++) BasicDict[BasicDictIndex]->cate[i]='\0';
strcpy(BasicDict[BasicDictIndex]->word, WordBufTmp);
strcpy(BasicDict[BasicDictIndex]->cate, CateBufTmp);
//strcpy(BasicDict[BasicDictIndex]->pron,PinyinBufTmp);
//BasicDict[BasicDictIndex]->ruleFlag = 0;
//BasicDict[BasicDictIndex]->headRuleLink = NULL;
if (++BasicDictIndex == MAX_NumOfBasicDictWords)
//AfxMessageBox("Overflow in the basic dictionary!\n");
printf("Overflow in the basic dictionary!\n"); //zanhy 2002-12-23
}
fclose(fp);
////quick sort the dictionary entries according to the word and category information:
//
qsort((void *)BasicDict, (size_t)BasicDictIndex, sizeof(BasDictUnit*), CmpBasDictStem);
BasicWordSum=BasicDictIndex; //record the number of total words
GenBasDictFirstCharList();//generate the first Chinese character list of this dictionary
}
/* purpose : search the first character in the first character list, and return
* its information.
* argument : FirstChar --- the first character for searching
* StPos --- return the starting position in the FC list.
* FCWordSum --- return the sum of all words with the same first character.
* return : the maximun word length of all words -- if found.
* 0 --- if not found.
*/
int SearchFCListOfBasicDict(char* FirstChar, int* StPos, int* FCWordSum)
{
int i,j;
if( (unsigned char)FirstChar[0]<=0xFE && (unsigned char)FirstChar[1]<=0xFE )
{
i=(unsigned char)FirstChar[0]-0x81;
j=(unsigned char)FirstChar[1]-0x40;
if(i>=0 && j>=0)
{
if((* BasicDictFirstCharTable[i][j]).FCWordSum) /// 0 means empty
{
*StPos = (* BasicDictFirstCharTable[i][j]).StartPos;
*FCWordSum = (* BasicDictFirstCharTable[i][j]).FCWordSum;
return (* BasicDictFirstCharTable[i][j]).MaxWordLen; //Ch-char number!
}
}
}
return 0;
}
/* purpose : look up the word in basic dictionary, and return all of its category tags.
* argument : word --- the word for looking up
* StPos --- the starting position in the BasicDictFirstChar list - BasicDictFirstCharTab[Dict][StartPos]!
* FCWordSum --- the sum of all words with the same first character.
* return : the list of all category tags for the word --- if found
* 0 --- if not found
*/
int LookupBasicDict(char * word, int StPos, int FCWordSum,char *cate,char *pron, int *ruleflag, struct RuleFileItem *&head)
{
int low,high,mid,i,j,k;
int bp=0;
//char tmpstr[3];
low=StPos;
high=StPos+FCWordSum-1;
while (low<=high)
{
mid=(low+high)/2;
i=strcmp(word,BasicDict[mid]->word);
if (i<0) {
high=mid-1;
continue;
}
if (i>0) {
low=mid+1;
continue;
}
if (i==0)
{
/// get the cate's of "Distributed" words
/// not needed form our "well compact dict's" !!
j=k=mid;
while ((j>=0) && !strcmp(word,BasicDict[j]->word)) ///check the front word
j--;
while ((k<BasicWordSum) && !strcmp(word,BasicDict[k]->word))///check the next wrod
k++;
if(j+1==k-1)
{
//strcpy(pron,BasicDict[mid]->pron);
strcpy(cate,BasicDict[mid]->cate);
//*ruleflag = BasicDict[mid]->ruleFlag;
//head = BasicDict[mid]->headRuleLink;
head = NULL;
strcpy(pron,"***");
ruleflag = 0;
return 1;
}
else ///multiple entries of the same word with multiple categories: "Distributed"!
{
//AfxMessageBox(word);
strcpy(cate,"***");
strcpy(pron,"***");
return 0;//tmpstr;
}
} //if(i==0)
} //while
strcpy(cate,"***");
strcpy(pron,"***");
ruleflag = 0;
return 0; // not found this word
}
/* purpose : free the memory used by user's S&T dictionary and clear it
*/
//extern char * pMemBlock; ///the start byte of all the shared memory stuff
void FreeBasicDictMem()
{
long i;
for (i=0; i<BasicWordSum; i++)
free((char *)BasicDict[i]);
BasicWordSum = 0;
}
////////////////////////////// internals ////////////////////////////////////
/* purpose : generate the first Chinese character list BasDictF~C~L~ for
bi-search!
*/
void GenBasDictFirstCharList()
{
int i,j, k, WordLen;
/*
///memset(BasicDictFirstCharTable, 0, size...);
for(i=0; i<126; i++)
for(j=0; j<191; j++)
BasicDictFirstCharTable[i][j].FCWordSum = 0;
*/
for(i=0; i<126; i++)
for(j=0; j<191; j++) {
BasicDictFirstCharTable[i][j] =
(DictFirstCharRecord *)ThisMalloc(sizeof(DictFirstCharRecord));
(*(BasicDictFirstCharTable[i][j])).FCWordSum = 0;
}
for (k=0; k<BasicWordSum; k++)
{
if( (unsigned char)(BasicDict[k]->word)[0]<=0xFE &&
(unsigned char)(BasicDict[k]->word)[1]<=0xFE )
{
i=(unsigned char)(BasicDict[k]->word)[0]-0x81;
j=(unsigned char)(BasicDict[k]->word)[1]-0x40;
if(i>=0 && j>=0)
{
if((* BasicDictFirstCharTable[i][j]).FCWordSum == 0) /// 0 means empty
{
/* add a new stem in the first character list */
(* BasicDictFirstCharTable[i][j]).StartPos = k;
(* BasicDictFirstCharTable[i][j]).FCWordSum = 1;
(* BasicDictFirstCharTable[i][j]).MaxWordLen = ///Both Basic and SpDict's are now in byte number!!!
strlen(BasicDict[k]->word);
}
else ///there already exists
{
(* BasicDictFirstCharTable[i][j]).FCWordSum++;
if ((WordLen=strlen(BasicDict[k]->word)) >
(* BasicDictFirstCharTable[i][j]).MaxWordLen)
(* BasicDictFirstCharTable[i][j]).MaxWordLen = WordLen;
}
}
}
}///for()
}
/* purpose : compare two stems in the user's S&T dictionary,
according to its word and category information.
*/
int CmpBasDictStem(const void *Stem1, const void *Stem2)
{
int temp1, temp2;
temp1=strcmp( (*(BasDictUnit**)Stem1)->word, (*(BasDictUnit**)Stem2)->word ) ;
temp2=strcmp( (*(BasDictUnit**)Stem1)->cate, (*(BasDictUnit**)Stem2)->cate );
if (!temp1)
{
/*
if (!temp2)
return strcmp( (*(BasDictUnit**)Stem1)->pron, (*(BasDictUnit**)Stem2)->pron );
else
return temp2;
*/
return temp2;
}
else
return temp1;
}
int insertRuleLink(char *tmpWord, struct RuleFileItem *head)
{
int start, firstnum;
int j, high, mid, low;
j = SearchFCListOfBasicDict(tmpWord, &start, &firstnum);
if(j==0) //not found the first char, sth.is wrong.
//AfxMessageBox(tmpWord);
printf(tmpWord); //zanhy 2002-12-23
else
{
low = start;
high = start+firstnum-1;
while(low<=high)
{
mid=(low+high)/2;
j=strcmp(tmpWord,BasicDict[mid]->word);
if (j<0) {
high=mid-1;
continue;
}
if (j>0) {
low=mid+1;
continue;
}
if (j==0)
{
// BasicDict[mid]->ruleFlag = 1;
// BasicDict[mid]->headRuleLink = head;
return 1;
}
}//end of while(low<=high)
}// end of else
//AfxMessageBox("something is wrong with basic dict indexing");
printf("something is wrong with basic dict indexing\r"); //zanhy 2002-12-23
return 0;
}
| [
"1683358846@qq.com"
] | 1683358846@qq.com |
536621ad3cd910b5921049b6c775df0865f02322 | d07861e12659237e1e2c76cd8240a38112bf11a9 | /hardware/light_sensor/TSL2561.cpp | 20ed06e0f896641384c714574979a8d9881c48ff | [] | no_license | NetBurner/CloudSensors | 9d8efdb631479fcfffb6da72053d90fd92454caa | 60a70d403d91dae9f0b4196fb361257000709474 | refs/heads/master | 2016-09-05T19:02:05.871218 | 2015-04-17T21:21:52 | 2015-04-17T21:21:52 | 34,140,194 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,467 | cpp |
/*
* TSL2561.cpp
*
* Created on: Mar 31, 2014
* Author: forreststanley
*/
#include "TSL2561.h"
TSL2561::TSL2561() {
_initialized = false;
}
TSL2561::~TSL2561() {
}
void TSL2561::init() {
I2CInit();
_addr = 0x39;
_integration = TSL2561_INTEGRATIONTIME_13MS;
_gain = TSL2561_GAIN_16X;
I2CInit();
int x = read8(0x0A);
if (x & 0x0A) {
iprintf("Found TSL2561\r\n");
} else {
iprintf("Device not found\r\n");
//return false;
}
_initialized = true;
// Set default integration time and gain
setTiming(_integration);
setGain(_gain);
// Note: by default, the device is in power down mode on bootup
disable();
//return true;
}
void TSL2561::enable(void) {
if (!_initialized)
init();
// Enable the device by setting the control bit to 0x03
write8(TSL2561_COMMAND_BIT | TSL2561_REGISTER_CONTROL,
TSL2561_CONTROL_POWERON);
}
void TSL2561::disable(void) {
if (!_initialized)
init();
// Disable the device by setting the control bit to 0x03
write8(TSL2561_COMMAND_BIT | TSL2561_REGISTER_CONTROL,
TSL2561_CONTROL_POWEROFF);
}
void TSL2561::setGain(tsl2561Gain_t gain) {
if (!_initialized)
init();
enable();
_gain = gain;
write8(TSL2561_COMMAND_BIT | TSL2561_REGISTER_TIMING, _integration | _gain);
disable();
}
void TSL2561::setTiming(tsl2561IntegrationTime_t integration) {
if (!_initialized)
init();
enable();
_integration = integration;
write8(TSL2561_COMMAND_BIT | TSL2561_REGISTER_TIMING, _integration | _gain);
disable();
}
int TSL2561::getSensorAverage(uint seconds) {
int samples = 0;
int avg = 0;
uint timeNow = Secs;
while ((Secs-timeNow) < seconds) {
uint16_t x = getLuminosity(TSL2561_VISIBLE);
int a = x >> 8;
int b = x & 0xFF;
int c = b << 8;
c += a;
avg += c;
samples++;
OSTimeDly(1);
}
return (avg / samples);
}
uint32_t TSL2561::getFullLuminosity(void) {
HiResTimer *timer = HiResTimer::getHiResTimer();
if (!_initialized)
init();
// Enable the device by setting the control bit to 0x03
enable();
// Wait x ms for ADC to complete
switch (_integration) {
case TSL2561_INTEGRATIONTIME_13MS:
//delay(14);
timer->delay(0.014);
break;
case TSL2561_INTEGRATIONTIME_101MS:
//delay(102);
timer->delay(0.102);
break;
default:
//delay(403);
timer->delay(0.403);
break;
}
uint32_t x;
x = read16( //TSL2561_REGISTER_CHAN1_LOW );
TSL2561_COMMAND_BIT | TSL2561_WORD_BIT
| TSL2561_REGISTER_CHAN1_LOW);
x <<= 16;
x |= read16( //TSL2561_REGISTER_CHAN1_LOW );
TSL2561_COMMAND_BIT | TSL2561_WORD_BIT
| TSL2561_REGISTER_CHAN0_LOW);
disable();
timer->releaseTimer();
return x;
}
uint16_t TSL2561::getLuminosity(uint8_t channel) {
uint32_t x = getFullLuminosity();
if (channel == 0) {
// Reads two byte value from channel 0 (visible + infrared)
return (x & 0xFFFF);
} else if (channel == 1) {
// Reads two byte value from channel 1 (infrared)
return (x >> 16);
} else if (channel == 2) {
// Reads all and subtracts out just the visible!
return ((x & 0xFFFF) - (x >> 16));
}
// unknown channel!
return 0;
}
uint16_t TSL2561::read16(uint8_t reg) {
uint16_t rx = 0;
I2CSendBuf(_addr, ®, 1);
I2CReadBuf(_addr, (BYTE*) &rx, 2);
return rx;
}
uint8_t TSL2561::read8(uint8_t reg) {
uint8_t rx = 0;
I2CSendBuf(_addr, ®, 1);
I2CReadBuf(_addr, &rx, 1);
return rx;
}
void TSL2561::write8(uint8_t reg, uint8_t value) {
I2CSendBuf(_addr, ®, 1);
I2CSendBuf(_addr, &value, 1);
}
| [
"tkenney@netburner.com"
] | tkenney@netburner.com |
ef11a85a3f42473b7daf68aa46749fee46b222dc | 45aa7709816a59f06e2522924a9ace155f8074b4 | /15.3sum.cpp | f60dd108a7b39f727f00233bd23ce62e014b529d | [] | no_license | dodouwang/leetcode | 012fecf739708565432e022ed5bf11563792c9e8 | d703832e2030ddefa3748d6056364c374b750fbf | refs/heads/master | 2021-04-12T03:40:35.499102 | 2018-09-14T02:21:15 | 2018-09-14T02:21:15 | 125,962,020 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,285 | cpp | /*
* [15] 3Sum
*
* https://leetcode.com/problems/3sum/description/
*
* algorithms
* Medium (21.79%)
* Total Accepted: 306.9K
* Total Submissions: 1.4M
* Testcase Example: '[-1,0,1,2,-1,-4]'
*
* Given an array S of n integers, are there elements a, b, c in S such that a
* + b + c = 0? Find all unique triplets in the array which gives the sum of
* zero.
*
* Note: The solution set must not contain duplicate triplets.
*
*
* For example, given array S = [-1, 0, 1, 2, -1, -4],
*
* A solution set is:
* [
* [-1, 0, 1],
* [-1, -1, 2]
* ]
*
*/
class Solution {
public:
/*
注意如果一定要做,那就do while,如果还用的是while,就需要变成
while (b < c - 1 && nums[c] == nums[c-1]) {
c--;
}
c--; // 最后还需要做一次,比较笨拙。
*/
vector<vector<int>> threeSum(vector<int>& nums) {
vector<vector<int>> ret;
int sz = nums.size();
vector<int> tmp(3, 0);
sort(nums.begin(), nums.end());
for (int a = 0; a < sz - 2; ++a) {
if (a > 0 && nums[a] == nums[a-1]) {
continue;
}
int b = a + 1, c = sz - 1;
while (b < c) { // b和c在此循环中相向而行,寻找和为0的情况
if (nums[a] + nums[b] + nums[c] > 0) { // 超了,需要在内部找到下一个c,以再入外层while验证
c--;
} else if (nums[a] + nums[b] + nums[c] < 0) {
b++;
} else {
tmp[0] = nums[a];
tmp[1] = nums[b];
tmp[2] = nums[c];
ret.push_back(tmp);
do {
c--;
} while (b < c && nums[c] == nums[c+1]);
do {
b++;
} while (b < c && nums[b] == nums[b-1]);
}
}
// 需要跳过相同的a,在循环头部条件中
}
return ret;
}
};
static int x=[](){
std::ios::sync_with_stdio(false);
cin.tie(NULL);
return 0;
}();
| [
"wangdong.08@gmail.com"
] | wangdong.08@gmail.com |
37e463c8e279c6e39ea4b15e632105d22bfaaa1b | 5298705370c757d8846d409382f7dcb8450d48b8 | /wbsTools/HourlyEditor/WeatherSpreadSheetWnd.h | 6749153620cb9dc83dc432cebd8de02aca4adf42 | [
"MIT"
] | permissive | RNCan/WeatherBasedSimulationFramework | 3d63b6a5fd1548cc5e5bac840f9e7c5f442dcdb0 | 05719614d2460a8929066fb920517f75a6a3ed04 | refs/heads/master | 2023-07-19T21:37:08.139215 | 2023-07-13T02:29:11 | 2023-07-13T02:29:11 | 51,245,634 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,924 | h |
// BioSIMView.h : interface of the CWeatherSpreadsheetWnd class
//
#pragma once
#include "UI/WeatherDataGridCtrl.h"
#include "UI/Common/CommonCtrl.h"
class CResultToolBar : public CSplittedToolBar
{
public:
DECLARE_SERIAL(CResultToolBar)
virtual void OnUpdateCmdUI(CFrameWnd* /*pTarget*/, BOOL bDisableIfNoHndler)
{
CSplittedToolBar::OnUpdateCmdUI((CFrameWnd*)GetOwner(), bDisableIfNoHndler);
}
virtual BOOL LoadState(LPCTSTR lpszProfileName = NULL, int nIndex = -1, UINT uiID = (UINT)-1) { return TRUE; }
virtual BOOL SaveState(LPCTSTR lpszProfileName = NULL, int nIndex = -1, UINT uiID = (UINT)-1) { return TRUE; }
virtual BOOL AllowShowOnList() const { return FALSE; }
virtual BOOL LoadToolBarEx(UINT uiToolbarResID, CMFCToolBarInfo& params, BOOL bLocked = FALSE);
DECLARE_MESSAGE_MAP()
};
//**************************************************************************************************************************************
class CWeatherSpreadsheetWnd : public CDockablePane
{
DECLARE_DYNCREATE(CWeatherSpreadsheetWnd)
public:
static CHourlyEditorDoc* GetDocument();
CWeatherSpreadsheetWnd();
virtual ~CWeatherSpreadsheetWnd();
void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
void AdjustLayout();
void CreateToolBar();
bool SaveData();
void ExportToExcel();
virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
protected:
DECLARE_MESSAGE_MAP()
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnToolbarCommand(UINT ID);
afx_msg void OnUpdateToolbar(CCmdUI *pCmdUI);
afx_msg void OnWindowPosChanged(WINDOWPOS* lpwndpos);
afx_msg void OnDateChange(UINT ID);
CResultToolBar m_wndToolBar;
WBSF::CWeatherDataGridCtrl m_grid;
bool m_bMustBeUpdated;
bool m_bEnableMessage;
};
| [
"Tigroux74@hotmail.com"
] | Tigroux74@hotmail.com |
41ee44c96e644b87e66ce4bccec492cf2d8d0114 | 8c7af9fedd99d385089aa13d9cfb6c932a64aac1 | /MFC11-1/MFC11-1/MyDlg0.h | eb089500ce0b34a12db45076d69c5e828351d12b | [] | no_license | zhang1-meili/Test2 | 9355592fc11ec75ebfc863e2d92a791ee813031c | 676db7f31192bbaa74a3bd8bd60350dcf004e294 | refs/heads/master | 2021-05-23T20:00:20.265851 | 2020-05-26T07:47:48 | 2020-06-02T06:21:23 | 253,441,721 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 522 | h | #pragma once
#include "stdafx.h"
//#ifndef SHARED_HANDLERS
#include "MFC11-1.h"
#include "MFC11-1Doc.h"
#include "MFC11-1View.h"
#include"MyDlg0.h"
// MyDlg0 对话框
class MyDlg0 : public CDialogEx
{
DECLARE_DYNAMIC(MyDlg0)
public:
MyDlg0(CWnd* pParent = NULL); // 标准构造函数
virtual ~MyDlg0();
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_DIALOG1 };
#include "MyDlg0.h"
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
};
| [
"1031601344@qq.com"
] | 1031601344@qq.com |
37e031d37ebc593c11fa2977c7a1629ce2751d1e | 39506fb038cea3e4c20ebb6c965a4dc772044cd9 | /fox/server/serial.h | 1c8bfc96967da54bc9c69582b446b59958c06521 | [] | no_license | rhelmus/rp6cntrl | cf4d18995ca52bf4ccbb0111eeabdd1f72f37178 | 63a01ffb9f77467a24b8ee8e6897acd83862897b | refs/heads/master | 2020-05-31T00:25:29.478544 | 2011-12-16T17:07:48 | 2011-12-16T17:07:48 | 32,215,318 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 750 | h | #ifndef SERIAL_H
#define SERIAL_H
#include <QObject>
#include <QQueue>
#include "shared.h"
class QTimer;
class QextSerialPort;
class CSerialPort: public QObject
{
Q_OBJECT
QextSerialPort *serialPort;
QByteArray msgBuffer, textBuffer;
QQueue<QString> commandQueue;
QTimer *commandProcessTimer;
private slots:
void onReadyRead(void);
void disableRTS(void);
void processCommandQueue(void);
public:
CSerialPort(QObject *parent, const QString &port);
void resetRP6(void);
void sendCommand(const QString &command);
void launchRP6(void) { sendCommand("s"); }
signals:
void textAvailable(const QByteArray &text);
void msgAvailable(ESerialMessage msg, const QByteArray &data);
};
#endif
| [
"rhelmus@65e67326-18ad-11df-8672-ad638f41b1de"
] | rhelmus@65e67326-18ad-11df-8672-ad638f41b1de |
f496530236ae2c213260264351d89cc9e817867a | 22df0b6ae8bf9177d56d98e654ff7af9eeec8759 | /L3_WinApi/CashMachine/CashMachine/cashmachine.cpp | 02a1eccc12ebdf5fa0234c307b6b22c6ce232330 | [] | no_license | Ant0Kr/SPO_LAbs | 6871c416755b2c471742190da372e512c64d6bc9 | b66422afd0dd808713ab784a89483f888fcdac41 | refs/heads/master | 2021-01-19T10:10:58.684430 | 2017-05-08T07:16:15 | 2017-05-08T07:16:15 | 87,833,108 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,357 | cpp | #include "cashmachine.h"
cMachine::cMachine()
{
if(!restore_state())
{
BYR = 1000;
USD = 150;
EUR = 100;
}
}
bool cMachine::restore_state()
{
fstream file;
file.open("CashMashine.txt",ios::in|ios::out);
if(!file.is_open())
return false;
file.ignore(5);
file >> BYR;
file.ignore(5);
file >> USD;
file.ignore(5);
file >> EUR;
return true;
}
string cMachine::transaction_request(string request)
{
time_t seconds = time(NULL);
string time(asctime(localtime(&seconds)));
time.erase(time.size()-1);
stringstream buf(request);
buf.ignore(6);
string usr_name;
buf >> usr_name;
buf.ignore(10);
string currency;
buf >> currency;
int money_request;
buf >> money_request;
cout << '[' << time << "]" <<endl<<
"User: " << usr_name <<endl<<
"Currency: " << money_request << ' ' << currency ;
string transaction_state;
if(currency == "BYR")
{
if(money_request <= BYR)
{
BYR -= money_request;
transaction_state = "Transaction is confirmed!";
}
else transaction_state = "Transaction is declined!";
}
else
if(currency == "USD")
{
if(money_request <= USD)
{
USD -= money_request;
transaction_state = "Transaction is confirmed!";
}
else transaction_state = "Transaction is declined!";
}
else
if(currency == "EUR")
{
if(money_request <= EUR)
{
EUR -= money_request;
transaction_state = "Transaction is confirmed!";
}
else transaction_state = "Transaction is declined!";
}
cout << endl << transaction_state << endl;
cout << "**************************"<<endl;
return transaction_state;
}
void cMachine::save_state()
{
fstream file;
file.open("CashMashine.txt",ios::in | ios::out | ios::trunc);
file << "BYR: " << BYR << endl;
file << "USD: " << USD << endl;
file << "EUR: " << EUR << endl;
return;
}
string cMachine::status()
{
stringstream buf;
buf << "BYR: " << BYR << " USD: " << USD << " EUR: " << EUR;
return buf.str();
}
| [
"antoha54785485@mail.ru"
] | antoha54785485@mail.ru |
1e0ae3e490e064d2fa5494e1b238838dce73ec36 | 11f462871e9655afb2b62b6bf6eb1cb31bdf928f | /Programmers/level2/level2_JadenCase-문자열-만들기.cpp | 7659932a298e2b916f3a4ea48ed7afdeae07029b | [] | no_license | gashe-soo/Algorithm | e1ebfad4a00bbb3652c999322d9695cf182d9328 | 087932cf96b621e325ae71aa7e5a734012f1d079 | refs/heads/master | 2023-05-01T10:47:14.974113 | 2021-05-15T13:24:55 | 2021-05-15T13:24:55 | 263,251,573 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 405 | cpp | #include <string>
#include <vector>
//프로그래머스 level2_JadenCase-문자열-만들기
using namespace std;
string solution(string s) {
int c=0;
for(int i=0; i<s.length();i++)
{
if(s[i]==' '){
c=0; continue;
}
else if(c==0){
s[i]=toupper(s[i]);
}
else
s[i]=tolower(s[i]);
c++;
}
return s;
} | [
"gashe7@gmail.com"
] | gashe7@gmail.com |
906163054ea8c51b1d13bfdee8b89ee911815d86 | 4c93ca76318969f1624a0e77749bcdea3e7809d3 | /10000~/14490_백대열.cpp | 93639280ac165d4023fbdfadf16128859e53d5e2 | [] | no_license | root-jeong/BOJ | 080925f6cfbb5dcbdf13c4c3a3c7e0a444908e6e | ec1ef5ad322597883b74d276078da8a508f164a8 | refs/heads/master | 2022-04-03T22:33:44.866564 | 2020-01-08T12:21:19 | 2020-01-08T12:21:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 504 | cpp | #include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
string str;
cin >> str;
string tmp = "";
unsigned long long A, B;
for (int i = 0; i < str.size(); i++) {
if (str.at(i) == ':') {
A = stoll(tmp);
tmp = "";
}
else {
tmp += str.at(i);
}
}
B = stoll(tmp);
unsigned long long mini = min(A, B);
int M;
for (int i = mini; i >= 1; i--) {
if (A % i == 0 && B % i == 0) {
M = i;
break;
}
}
cout << A / M << ":" << B / M << endl;
} | [
"gjek136@naver.com"
] | gjek136@naver.com |
2f72032141ba42f123d81b55ad607faf33a200ae | 549b0608b7a950ebddd07210fc8675b9cda4fcd0 | /CSC8503/Common/Quaternion.cpp | 45842afc31ec0ee27f73d9ae32ee5513a83e3a00 | [] | no_license | caelumenn/GameTech | b9f69b57bab4d7b18f814834c7dd3cb2fad19bac | b84ed7b89651ebf1286023b5fee3577de33d8c6a | refs/heads/master | 2022-09-08T01:10:34.008875 | 2019-12-13T13:25:20 | 2019-12-13T13:25:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,488 | cpp | /*
Part of Newcastle University's Game Engineering source code.
Use as you see fit!
Comments and queries to: richard-gordon.davison AT ncl.ac.uk
https://research.ncl.ac.uk/game/
*/
#include "Quaternion.h"
#include "Matrix4.h"
#include "Matrix3.h"
#include "Vector3.h"
#include "Maths.h"
#include <algorithm>
#include <cmath>
using namespace NCL;
using namespace NCL::Maths;
Quaternion::Quaternion(void)
{
x = y = z = 0.0f;
w = 1.0f;
}
Quaternion::Quaternion(float x, float y, float z, float w)
{
this->x = x;
this->y = y;
this->z = z;
this->w = w;
}
Quaternion::Quaternion(const Vector3& vector, float w) {
this->x = vector.x;
this->y = vector.y;
this->z = vector.z;
this->w = w;
}
Quaternion::Quaternion(const Matrix4 &m) {
w = sqrt(std::max(0.0f, (1.0f + m.array[0] + m.array[5] + m.array[10]))) * 0.5f;
if (abs(w) < 0.0001f) {
x = sqrt(std::max(0.0f, (1.0f + m.array[0] - m.array[5] - m.array[10]))) / 2.0f;
y = sqrt(std::max(0.0f, (1.0f - m.array[0] + m.array[5] - m.array[10]))) / 2.0f;
z = sqrt(std::max(0.0f, (1.0f - m.array[0] - m.array[5] + m.array[10]))) / 2.0f;
x = (float)copysign(x, m.array[9] - m.array[6]);
y = (float)copysign(y, m.array[2] - m.array[8]);
z = (float)copysign(z, m.array[4] - m.array[1]);
}
else {
float qrFour = 4.0f * w;
float qrFourRecip = 1.0f / qrFour;
x = (m.array[6] - m.array[9]) * qrFourRecip;
y = (m.array[8] - m.array[2]) * qrFourRecip;
z = (m.array[1] - m.array[4]) * qrFourRecip;
}
}
Quaternion::Quaternion(const Matrix3 &m) {
w = sqrt(std::max(0.0f, (1.0f + m.array[0] + m.array[4] + m.array[8]))) * 0.5f;
float qrFour = 4.0f * w;
float qrFourRecip = 1.0f / qrFour;
x = (m.array[5] - m.array[7]) * qrFourRecip;
y = (m.array[6] - m.array[2]) * qrFourRecip;
z = (m.array[1] - m.array[3]) * qrFourRecip;
}
Quaternion::~Quaternion(void)
{
}
float Quaternion::Dot(const Quaternion &a,const Quaternion &b){
return (a.x * b.x) + (a.y * b.y) + (a.z * b.z) + (a.w * b.w);
}
void Quaternion::Normalise(){
float magnitude = sqrt(x*x + y*y + z*z + w*w);
if(magnitude > 0.0f){
float t = 1.0f / magnitude;
x *= t;
y *= t;
z *= t;
w *= t;
}
}
void Quaternion::CalculateW() {
w = 1.0f - (x*x)-(y*y)-(z*z);
if(w < 0.0f) {
w = 0.0f;
}
else{
w = - sqrt(w);
}
}
Quaternion Quaternion::Conjugate() const
{
return Quaternion(-x,-y,-z,w);
}
Quaternion Quaternion::Lerp(const Quaternion &from, const Quaternion &to, float by) {
Quaternion temp = to;
float dot = Quaternion::Dot(from,to);
if(dot < 0.0f) {
temp = -to;
}
return (from * (1.0f - by)) + (temp * by);
}
Quaternion Quaternion::Slerp(const Quaternion &from, const Quaternion &to, float by) {
Quaternion temp = to;
float dot = Quaternion::Dot(from,to);
if(dot < 0.0f) {
temp = -to;
}
return (from * (cos(by))) + (to * (1.0f - cos(by)));
}
//http://en.wikipedia.org/wiki/Conversion_between_quaternions_and_Euler_angles
//Verified! Different values to above, due to difference between x/z being 'forward'
Vector3 Quaternion::ToEuler() const {
Vector3 euler;
float t = x*y + z*w;
if (t > 0.4999) {
euler.z = Maths::RadiansToDegrees(Maths::PI / 2.0f);
euler.y = Maths::RadiansToDegrees(2.0f * atan2(x, w));
euler.x = 0.0f;
return euler;
}
if (t < -0.4999) {
euler.z = -Maths::RadiansToDegrees(Maths::PI / 2.0f);
euler.y = -Maths::RadiansToDegrees(2.0f * atan2(x, w));
euler.x = 0.0f;
return euler;
}
float sqx = x*x;
float sqy = y*y;
float sqz = z*z;
euler.z = Maths::RadiansToDegrees(asin(2 * t));
euler.y = Maths::RadiansToDegrees(atan2(2 * y*w - 2 * x*z, 1.0f - 2 * sqy - 2 * sqz));
euler.x = Maths::RadiansToDegrees(atan2(2 * x*w - 2 * y*z, 1.0f - 2 * sqx - 2.0f*sqz));
return euler;
}
//http://www.euclideanspace.com/maths/geometry/rotations/conversions/eulerToQuaternion/
//VERIFIED AS CORRECT - Pitch and roll are changed around as the above uses x as 'forward', whereas we use -z
Quaternion Quaternion::EulerAnglesToQuaternion(float roll, float yaw, float pitch) {
float cos1 = (float)cos(Maths::DegreesToRadians(yaw * 0.5f));
float cos2 = (float)cos(Maths::DegreesToRadians(pitch * 0.5f));
float cos3 = (float)cos(Maths::DegreesToRadians(roll * 0.5f));
float sin1 = (float)sin(Maths::DegreesToRadians(yaw * 0.5f));
float sin2 = (float)sin(Maths::DegreesToRadians(pitch * 0.5f));
float sin3 = (float)sin(Maths::DegreesToRadians(roll * 0.5f));
Quaternion q;
q.x = (sin1 * sin2 * cos3) + (cos1 * cos2 * sin3);
q.y = (sin1 * cos2 * cos3) + (cos1 * sin2 * sin3);
q.z = (cos1 * sin2 * cos3) - (sin1 * cos2 * sin3);
q.w = (cos1 * cos2 * cos3) - (sin1 * sin2 * sin3);
return q;
};
Quaternion Quaternion::AxisAngleToQuaterion(const Vector3& vector, float degrees) {
float theta = (float)Maths::DegreesToRadians(degrees);
float result = (float)sin(theta / 2.0f);
return Quaternion((float)(vector.x * result), (float)(vector.y * result), (float)(vector.z * result), (float)cos(theta / 2.0f));
}
//Vector3 Quaternion::operator *(const Vector3 &a) const {
// Vector3 uv, uuv;
// Vector3 qvec(x, y, z);
// uv = -Vector3::Cross(a, qvec);
// uuv = -Vector3::Cross(qvec, uv);
// uv *= (2.0f * w);
// uuv *= 2.0f;
//
// return a + (uv + uuv);
//}
Vector3 Quaternion::operator *(const Vector3& a) const {
Quaternion newVec = *this * Quaternion(a.x, a.y, a.z, 0.0f) * Conjugate();
return Vector3(newVec.x, newVec.y, newVec.z);
}
Matrix3 Quaternion::ToMatrix3() const {
Matrix3 mat;
float yy = y * y;
float zz = z * z;
float xy = x * y;
float zw = z * w;
float xz = x * z;
float yw = y * w;
float xx = x * x;
float yz = y * z;
float xw = x * w;
mat.array[0] = 1 - 2 * yy - 2 * zz;
mat.array[1] = 2 * xy - 2 * zw;
mat.array[2] = 2 * xz + 2 * yw;
mat.array[3] = 2 * xy + 2 * zw;
mat.array[4] = 1 - 2 * xx - 2 * zz;
mat.array[5] = 2 * yz - 2 * xw;
mat.array[6] = 2 * xz - 2 * yw;
mat.array[7] = 2 * yz + 2 * xw;
mat.array[8] = 1 - 2 * xx - 2 * yy;
return mat;
}
Matrix4 Quaternion::ToMatrix4() const {
Matrix4 mat;
float yy = y * y;
float zz = z * z;
float xy = x * y;
float zw = z * w;
float xz = x * z;
float yw = y * w;
float xx = x * x;
float yz = y * z;
float xw = x * w;
mat.array[0] = 1 - 2 * yy - 2 * zz;
mat.array[1] = 2 * xy - 2 * zw;
mat.array[2] = 2 * xz + 2 * yw;
mat.array[4] = 2 * xy + 2 * zw;
mat.array[5] = 1 - 2 * xx - 2 * zz;
mat.array[6] = 2 * yz - 2 * xw;
mat.array[8] = 2 * xz - 2 * yw;
mat.array[9] = 2 * yz + 2 * xw;
mat.array[10] = 1 - 2 * xx - 2 * yy;
return mat;
}
| [
"destinydy1213@gmail.com"
] | destinydy1213@gmail.com |
fba0aed601f4b188adef30b3fa4341db6d6c483b | 0d5a29efe0c04c22e6b6db74109a576ab9c8c5e2 | /LinkedList.h | a9248c4a5e4562dfa81807fbd5dde8534f186fb7 | [] | no_license | bmsiegel/Polynomial | 32ac4a93ecc7d077497e3bc47033feed71ac2bda | 3a7cd4c4fbd05ae5eb59019762cbd33b015e98c6 | refs/heads/master | 2020-04-25T05:20:44.014023 | 2019-02-25T16:15:47 | 2019-02-25T16:15:47 | 172,539,522 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 564 | h | #ifndef LINKEDLIST_H
#define LINKEDLIST_H
#include "Node.hpp"
#include "ListInterface.h"
template<typename T>
class LinkedList : public ListInterface<T>
{
private:
Node<T>* head;
int count;
public:
LinkedList(const LinkedList<T> &L);
LinkedList& operator=(LinkedList L);
bool isEmpty() const;
int getLength() const;
bool insert(int newPosition, const T &newEntry);
bool remove(int position);
void clear();
T getEntry(int position) const;
T replace(int loc, const T &newEntry);
void swap(LinkedList<T> &lhs, LinkedList<T> &rhs)
};
#endif
| [
"bmsiegel@vt.edu"
] | bmsiegel@vt.edu |
4362684dad478b6258508473a71630ae9197cae3 | 66286815cc5aa5e2598056060cc3a14d6bf297ef | /src/app/core/constants/MsaBuilderIds.cpp | bb17d7b91b81bfce291c32699c34e083002bd797 | [] | no_license | lukeulrich/alignshop-qt | 07b022d8b15a75a7474e13f7c0ef3c0e43275577 | 030614f8fcc6c5bb4f6ed7f10987b5e5d11fe764 | refs/heads/master | 2020-07-28T03:06:04.528197 | 2016-11-10T21:19:41 | 2016-11-10T21:19:41 | 73,421,548 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 475 | cpp | /****************************************************************************
**
** Copyright (C) 2012 Agile Genomics, LLC
** All rights reserved.
** Author: Luke Ulrich
**
****************************************************************************/
#include <QtCore/QString>
#include "MsaBuilderIds.h"
namespace constants
{
namespace MsaBuilder
{
const QString kClustalWBuilderId = "ClustalW";
const QString kKalignBuilderId = "Kalign";
}
}
| [
"lukeulrich@users.github.noreply.com"
] | lukeulrich@users.github.noreply.com |
62e0379911580b9e4a9de17ce206d02852645190 | 3d232018a25f15042164aa7726b73f71e3165252 | /indra/test/llpermissions_tut.cpp | 0f53b980ab2571be5ab457fe361d94e8e4ed4183 | [] | no_license | OS-Development/VW.Meerkat | ee8dae5b077a709a618ed6550f157797fe577dcf | 00645a93b672dd3ce5e02bd620a90b8e275aba01 | refs/heads/master | 2021-01-19T18:08:40.932912 | 2015-04-04T23:20:08 | 2015-04-04T23:20:08 | 33,423,332 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,368 | cpp | /**
* @file llpermissions_tut.cpp
* @author Adroit
* @date March 2007
* @brief llpermissions test cases.
*
* $LicenseInfo:firstyear=2007&license=viewergpl$
*
* Copyright (c) 2007-2008, Linden Research, Inc.
*
* Second Life Viewer Source Code
* The source code in this file ("Source Code") is provided by Linden Lab
* to you under the terms of the GNU General Public License, version 2.0
* ("GPL"), unless you have obtained a separate licensing agreement
* ("Other License"), formally executed by you and Linden Lab. Terms of
* the GPL can be found in doc/GPL-license.txt in this distribution, or
* online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
*
* There are special exceptions to the terms and conditions of the GPL as
* it is applied to this Source Code. View the full text of the exception
* in the file doc/FLOSS-exception.txt in this software distribution, or
* online at http://secondlifegrid.net/programs/open_source/licensing/flossexception
*
* By copying, modifying or distributing this software, you acknowledge
* that you have read and understood your obligations described above,
* and agree to abide by those obligations.
*
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
* COMPLETENESS OR PERFORMANCE.
* $/LicenseInfo$
*/
#include <tut/tut.h>
#include "linden_common.h"
#include "lltut.h"
#include "message.h"
#include "llpermissions.h"
namespace tut
{
struct permission
{
};
typedef test_group<permission> permission_t;
typedef permission_t::object permission_object_t;
tut::permission_t tut_permission("permission");
template<> template<>
void permission_object_t::test<1>()
{
LLPermissions permissions;
LLUUID uuid = permissions.getCreator();
LLUUID uuid1 = permissions.getOwner();
LLUUID uuid2 = permissions.getGroup();
LLUUID uuid3 = permissions.getLastOwner();
ensure("LLPermission Get Functions failed", (uuid == LLUUID::null && uuid1 == LLUUID::null &&
uuid2 == LLUUID::null && uuid3 == LLUUID::null));
ensure("LLPermission Get Functions failed", (permissions.getMaskBase() == PERM_ALL && permissions.getMaskOwner() == PERM_ALL &&
permissions.getMaskGroup() == PERM_ALL && permissions.getMaskEveryone() == PERM_ALL && permissions.getMaskNextOwner() == PERM_ALL));
ensure("Ownership functions failed", (permissions.isGroupOwned() == FALSE && permissions.isOwned() == FALSE));
}
template<> template<>
void permission_object_t::test<2>()
{
LLPermissions permissions;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
permissions.init(creator, owner, lastOwner, group);
ensure_equals("init/getCreator():failed to return the creator ", creator, permissions.getCreator());
ensure_equals("init/getOwner():failed to return the owner ", owner, permissions.getOwner());
ensure_equals("init/getLastOwner():failed to return the group ", lastOwner, permissions.getLastOwner());
ensure_equals("init/getGroup():failed to return the group ", group, permissions.getGroup());
}
template<> template<>
void permission_object_t::test<3>()
{
LLPermissions permissions;
U32 base = PERM_ALL;
U32 owner = PERM_ITEM_UNRESTRICTED; //PERM_ITEM_UNRESTRICTED = PERM_MODIFY | PERM_COPY | PERM_TRANSFER;
U32 group = PERM_TRANSFER | PERM_MOVE | PERM_COPY|PERM_MODIFY;
U32 everyone = PERM_TRANSFER | PERM_MOVE | PERM_MODIFY;
U32 next = PERM_NONE;
U32 fixedbase = base;
U32 fixedowner = PERM_ITEM_UNRESTRICTED; //owner & fixedbase
U32 fixedgroup = PERM_ITEM_UNRESTRICTED; // no PERM_MOVE as owner does not have that perm either
U32 fixedeveryone = PERM_TRANSFER; // no PERM_MOVE. Everyone can never modify.
U32 fixednext = PERM_NONE;
permissions.initMasks(base, owner, everyone, group, next); // will fix perms if not allowed.
ensure_equals("initMasks/getMaskBase():failed to return the MaskBase ", fixedbase, permissions.getMaskBase());
ensure_equals("initMasks/getMaskOwner():failed to return the MaskOwner ", fixedowner, permissions.getMaskOwner());
ensure_equals("initMasks/getMaskEveryone():failed to return the MaskGroup ", fixedgroup, permissions.getMaskGroup());
ensure_equals("initMasks/getMaskEveryone():failed to return the MaskEveryone ", fixedeveryone, permissions.getMaskEveryone());
ensure_equals("initMasks/getMaskNextOwner():failed to return the MaskNext ", fixednext, permissions.getMaskNextOwner());
// explictly set should maintain the values
permissions.setMaskBase(base); //no fixing
ensure_equals("setMaskBase/getMaskBase():failed to return the MaskBase ", base, permissions.getMaskBase());
permissions.setMaskOwner(owner);
ensure_equals("setMaskOwner/getMaskOwner():failed to return the MaskOwner ", owner, permissions.getMaskOwner());
permissions.setMaskEveryone(everyone);
ensure_equals("setMaskEveryone/getMaskEveryone():failed to return the MaskEveryone ", everyone, permissions.getMaskEveryone());
permissions.setMaskGroup(group);
ensure_equals("setMaskGroup/getMaskEveryone():failed to return the MaskGroup ", group, permissions.getMaskGroup());
permissions.setMaskNext(next);
ensure_equals("setMaskNext/getMaskNextOwner():failed to return the MaskNext ", next, permissions.getMaskNextOwner());
// further tests can be added to ensure perms for owner/group/everyone etc. get properly fixed.
// code however suggests that there is no explict check if the perms are correct and the user of this
// class is expected to know how to use them correctly. skipping further test cases for now for various
// perm combinations.
}
template<> template<>
void permission_object_t::test<4>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm1.init(creator,owner,lastOwner,group);
perm.set(perm1);
ensure("set():failed to set ", (creator == perm.getCreator()) && (owner == perm.getOwner())&&
(lastOwner == perm.getLastOwner())&& (group == perm.getGroup()));
}
template<> template<>
void permission_object_t::test<5>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm1.init(creator,owner,lastOwner,group);
U32 base = PERM_TRANSFER;
U32 ownerp = PERM_TRANSFER;
U32 groupp = PERM_TRANSFER;
U32 everyone = PERM_TRANSFER;
U32 next = PERM_NONE;
perm1.initMasks(base, ownerp, everyone, groupp, next);
base = PERM_ALL;
ownerp = PERM_ITEM_UNRESTRICTED; //PERM_ITEM_UNRESTRICTED = PERM_MODIFY | PERM_COPY | PERM_TRANSFER;
groupp = PERM_TRANSFER | PERM_COPY|PERM_MODIFY;
everyone = PERM_TRANSFER;
next = PERM_NONE;
perm.init(creator,owner,lastOwner,group);
perm.initMasks(base, ownerp, everyone, groupp, next);
// restrict permissions by accumulation
perm.accumulate(perm1);
U32 fixedbase = PERM_TRANSFER | PERM_MOVE;
U32 fixedowner = PERM_TRANSFER;
U32 fixedgroup = PERM_TRANSFER;
U32 fixedeveryone = PERM_TRANSFER;
U32 fixednext = PERM_NONE;
ensure_equals("accumulate failed ", fixedbase, perm.getMaskBase());
ensure_equals("accumulate failed ", fixedowner, perm.getMaskOwner());
ensure_equals("accumulate failed ", fixedgroup, perm.getMaskGroup());
ensure_equals("accumulate failed ", fixedeveryone, perm.getMaskEveryone());
ensure_equals("accumulate failed ", fixednext, perm.getMaskNextOwner());
}
template<> template<>
void permission_object_t::test<6>()
{
LLPermissions perm;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
ensure_equals("getSafeOwner:failed ", owner,perm.getSafeOwner());
///NULL Owner
perm.init(creator,LLUUID::null,lastOwner,group);
ensure_equals("getSafeOwner:failed ", group, perm.getSafeOwner());
}
template<> template<>
void permission_object_t::test<7>()
{
LLPermissions perm1;
LLUUID uuid;
BOOL is_group_owned = FALSE;
ensure("1:getOwnership:failed ", (FALSE == perm1.getOwnership(uuid,is_group_owned)));
LLPermissions perm;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
perm.getOwnership(uuid,is_group_owned);
ensure("2:getOwnership:failed ", ((uuid == owner) && (FALSE == is_group_owned)));
perm.init(creator,LLUUID::null,lastOwner,group);
perm.getOwnership(uuid,is_group_owned);
ensure("3:getOwnership:failed ", ((uuid == group) && (TRUE == is_group_owned)));
}
template<> template<>
void permission_object_t::test<8>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
perm1.init(creator,owner,lastOwner,group);
ensure_equals("getCRC32:failed ", perm.getCRC32(),perm1.getCRC32());
}
template<> template<>
void permission_object_t::test<9>()
{
LLPermissions perm;
LLUUID agent("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
bool is_atomic = TRUE;
ensure("setOwnerAndGroup():failed ", (TRUE == perm.setOwnerAndGroup(agent,owner,group,is_atomic)));
LLUUID owner2("68edcf47-ccd7-45b8-9f90-1649d7f12807");
LLUUID group2("9c8eca51-53d5-42a7-bb58-cef070395db9");
// cant change - agent need to be current owner
ensure("setOwnerAndGroup():failed ", (FALSE == perm.setOwnerAndGroup(agent,owner2,group2,is_atomic)));
// should be able to change - agent and owner same as current owner
ensure("setOwnerAndGroup():failed ", (TRUE == perm.setOwnerAndGroup(owner,owner,group2,is_atomic)));
}
template<> template<>
void permission_object_t::test<10>()
{
LLPermissions perm;
LLUUID agent;
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
ensure("deedToGroup():failed ", (TRUE == perm.deedToGroup(agent,group)));
}
template<> template<>
void permission_object_t::test<11>()
{
LLPermissions perm;
LLUUID agent;
BOOL set = 1;
U32 bits = PERM_TRANSFER | PERM_MODIFY;
ensure("setBaseBits():failed ", (TRUE == perm.setBaseBits(agent, set, bits)));
ensure("setOwnerBits():failed ", (TRUE == perm.setOwnerBits(agent, set, bits)));
LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8");
ensure("setBaseBits():failed ", (FALSE == perm.setBaseBits(agent1, set, bits)));
ensure("setOwnerBits():failed ", (FALSE == perm.setOwnerBits(agent1, set, bits)));
}
template<> template<>
void permission_object_t::test<12>()
{
LLPermissions perm;
LLUUID agent;
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
BOOL set = 1;
U32 bits = 10;
ensure("setGroupBits():failed ", (TRUE == perm.setGroupBits(agent,group, set, bits)));
ensure("setEveryoneBits():failed ", (TRUE == perm.setEveryoneBits(agent,group, set, bits)));
ensure("setNextOwnerBits():failed ", (TRUE == perm.setNextOwnerBits(agent,group, set, bits)));
LLUUID agent1("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
ensure("setGroupBits():failed ", (FALSE == perm.setGroupBits(agent1,group, set, bits)));
ensure("setEveryoneBits():failed ", (FALSE == perm.setEveryoneBits(agent1,group, set, bits)));
ensure("setNextOwnerBits():failed ", (FALSE == perm.setNextOwnerBits(agent1,group, set, bits)));
}
template<> template<>
void permission_object_t::test<13>()
{
LLPermissions perm;
LLUUID agent;
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
U32 bits = 10;
ensure("allowOperationBy():failed ", (TRUE == perm.allowOperationBy(bits,agent,group)));
LLUUID agent1("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
perm.init(creator,owner,lastOwner,group);
ensure("allowOperationBy():failed ", (TRUE == perm.allowOperationBy(bits,agent1,group)));
}
template<> template<>
void permission_object_t::test<14>()
{
LLPermissions perm;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner;
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
LLUUID agent;
ensure("1:allowModifyBy():failed ", (TRUE == perm.allowModifyBy(agent)));
ensure("2:allowModifyBy():failed ", (TRUE == perm.allowModifyBy(agent,group)));
U32 val1 = 0x7FFFFFFF;
S32 sVal = 1 << 14;
sVal = val1 & sVal;
LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8");
ensure("3:allowModifyBy():failed ", (sVal == perm.allowModifyBy(agent1)));
ensure("4:allowModifyBy():failed ", (sVal == perm.allowModifyBy(agent1,group)));
}
template<> template<>
void permission_object_t::test<15>()
{
LLPermissions perm;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner;
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
LLUUID agent;
ensure("1:allowCopyBy():failed ", (TRUE == perm.allowModifyBy(agent)));
ensure("2:allowCopyBy():failed ", (TRUE == perm.allowModifyBy(agent,group)));
U32 val1 = 0x7FFFFFFF;
S32 sVal = 1 << 15;
sVal = val1 & sVal;
LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8");
ensure("3:allowCopyBy():failed ", (sVal == perm.allowCopyBy(agent1)));
ensure("4:allowCopyBy():failed ", (sVal == perm.allowCopyBy(agent1,group)));
}
template<> template<>
void permission_object_t::test<16>()
{
LLPermissions perm;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner;
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
LLUUID agent;
ensure("1:allowMoveBy():failed ", (TRUE == perm.allowMoveBy(agent)));
ensure("2:allowMoveBy():failed ", (TRUE == perm.allowMoveBy(agent,group)));
U32 val1 = 0x7FFFFFFF;
S32 sVal = 1 << 19;
sVal = val1 & sVal;
LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8");
ensure("3:allowMoveBy():failed ", (sVal == perm.allowMoveBy(agent1)));
ensure("4:allowMoveBy():failed ", (sVal == perm.allowMoveBy(agent1,group)));
}
template<> template<>
void permission_object_t::test<17>()
{
LLPermissions perm;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner;
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
LLUUID agent;
ensure("1:allowMoveBy():failed ", (TRUE == perm.allowTransferTo(agent)));
perm.init(creator,owner,lastOwner,group);
U32 val1 = 0x7FFFFFFF;
S32 sVal = 1 << 13;
sVal = val1 & sVal;
ensure("2:allowMoveBy():failed ", (sVal == perm.allowTransferTo(agent)));
}
template<> template<>
void permission_object_t::test<18>()
{
LLPermissions perm,perm1;
ensure("1:Operator==:failed ", perm == perm1);
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
perm = perm1;
ensure("2:Operator==:failed ", perm == perm1);
}
template<> template<>
void permission_object_t::test<19>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
ensure("2:Operator==:failed ", perm != perm1);
}
template<> template<>
void permission_object_t::test<20>()
{
LLFILE* fp = LLFile::fopen("linden_file.dat","w+");
if(!fp)
{
llerrs << "file coudnt be opened\n" << llendl;
return;
}
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
U32 base = PERM_TRANSFER | PERM_COPY;
U32 ownerp = PERM_TRANSFER;
U32 groupp = PERM_TRANSFER;
U32 everyone = PERM_TRANSFER;
U32 next = PERM_NONE;
perm.initMasks(base, ownerp, everyone, groupp, next);
perm.exportFile(fp);
fclose(fp);
fp = LLFile::fopen("linden_file.dat","r+");
if(!fp)
{
llerrs << "file coudnt be opened\n" << llendl;
return;
}
perm1.importFile(fp);
fclose(fp);
ensure("exportFile()/importFile():failed to export and import the data ", perm1 == perm);
}
template<> template<>
void permission_object_t::test<21>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
U32 base = PERM_TRANSFER | PERM_COPY;
U32 ownerp = PERM_TRANSFER;
U32 groupp = PERM_TRANSFER;
U32 everyone = PERM_TRANSFER;
U32 next = PERM_NONE;
perm.initMasks(base, ownerp, everyone, groupp, next);
std::ostringstream ostream;
perm.exportLegacyStream(ostream);
std::istringstream istream(ostream.str());
perm1.importLegacyStream(istream);
ensure("exportLegacyStream()/importLegacyStream():failed to export and import the data ", perm1 == perm);
}
template<> template<>
void permission_object_t::test<22>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
LLXMLNode* xml_node = perm.exportFileXML();
perm1.importXML(xml_node);
ensure("exportFileXML()/importXML():failed to export and import the data ", perm1 == perm);
}
template<> template<>
void permission_object_t::test<23>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
std::ostringstream stream1, stream2;
stream1 << perm;
perm1.init(creator,owner,lastOwner,group);
stream2 << perm1;
ensure("1:operator << failed",(stream1.str() == stream2.str()));
}
template<> template<>
void permission_object_t::test<24>()
{
LLPermissions perm,perm1;
LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e");
LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806");
LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d");
LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8");
perm.init(creator,owner,lastOwner,group);
U32 base = PERM_TRANSFER | PERM_COPY;
U32 ownerp = PERM_TRANSFER;
U32 groupp = PERM_TRANSFER;
U32 everyone = PERM_TRANSFER;
U32 next = PERM_NONE;
perm.initMasks(base, ownerp, everyone, groupp, next);
LLSD sd = ll_create_sd_from_permissions(perm);
perm1 = ll_permissions_from_sd(sd);
ensure_equals("ll_permissions_from_sd() and ll_create_sd_from_permissions()functions failed", perm, perm1);
}
template<> template<>
void permission_object_t::test<25>()
{
LLAggregatePermissions AggrPermission;
LLAggregatePermissions AggrPermission1;
ensure("getU8() function failed", (AggrPermission.getU8() == 0));
ensure("isEmpty() function failed", (AggrPermission.isEmpty() == TRUE));
AggrPermission.getValue(PERM_TRANSFER);
ensure_equals("getValue() function failed", AggrPermission.getValue(PERM_TRANSFER), 0x00);
AggrPermission.aggregate(PERM_ITEM_UNRESTRICTED);
ensure("aggregate() function failed", (AggrPermission.isEmpty() == FALSE));
AggrPermission1.aggregate(AggrPermission);
ensure("aggregate() function failed", (AggrPermission1.isEmpty() == FALSE));
std::ostringstream stream1;
stream1 << AggrPermission;
ensure("operator<< failed", (stream1.str() == "{PI_COPY=All, PI_MODIFY=All, PI_TRANSFER=All}"));
}
}
| [
"?@?.?"
] | ?@?.? |
bcb8867aa8915ab6340f29bbde7e11ff3c955f36 | 42fe29a1560f285242fbd0fd28fe3a30b9361aed | /indigo_inc/stdr_msgs/SonarSensorMsg.h | 5e71699cce5148d3ea2e65abd84fca98c3c43862 | [] | no_license | TuZZiX/ROS_IDE_inc | 953e11705ecf767f43b3cbd7c36dd9708cfa345a | c4405eb981cbe80c0822125c6456c61d18f3597f | refs/heads/master | 2016-08-12T10:39:18.403406 | 2016-02-10T07:07:32 | 2016-02-10T07:07:32 | 44,894,013 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,607 | h | // Generated by gencpp from file stdr_msgs/SonarSensorMsg.msg
// DO NOT EDIT!
#ifndef STDR_MSGS_MESSAGE_SONARSENSORMSG_H
#define STDR_MSGS_MESSAGE_SONARSENSORMSG_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
#include <stdr_msgs/Noise.h>
#include <geometry_msgs/Pose2D.h>
namespace stdr_msgs
{
template <class ContainerAllocator>
struct SonarSensorMsg_
{
typedef SonarSensorMsg_<ContainerAllocator> Type;
SonarSensorMsg_()
: maxRange(0.0)
, minRange(0.0)
, coneAngle(0.0)
, frequency(0.0)
, noise()
, frame_id()
, pose() {
}
SonarSensorMsg_(const ContainerAllocator& _alloc)
: maxRange(0.0)
, minRange(0.0)
, coneAngle(0.0)
, frequency(0.0)
, noise(_alloc)
, frame_id(_alloc)
, pose(_alloc) {
}
typedef float _maxRange_type;
_maxRange_type maxRange;
typedef float _minRange_type;
_minRange_type minRange;
typedef float _coneAngle_type;
_coneAngle_type coneAngle;
typedef float _frequency_type;
_frequency_type frequency;
typedef ::stdr_msgs::Noise_<ContainerAllocator> _noise_type;
_noise_type noise;
typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _frame_id_type;
_frame_id_type frame_id;
typedef ::geometry_msgs::Pose2D_<ContainerAllocator> _pose_type;
_pose_type pose;
typedef boost::shared_ptr< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> const> ConstPtr;
}; // struct SonarSensorMsg_
typedef ::stdr_msgs::SonarSensorMsg_<std::allocator<void> > SonarSensorMsg;
typedef boost::shared_ptr< ::stdr_msgs::SonarSensorMsg > SonarSensorMsgPtr;
typedef boost::shared_ptr< ::stdr_msgs::SonarSensorMsg const> SonarSensorMsgConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace stdr_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False}
// {'nav_msgs': ['/opt/ros/indigo/share/nav_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/indigo/share/geometry_msgs/cmake/../msg'], 'actionlib_msgs': ['/opt/ros/indigo/share/actionlib_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/indigo/share/std_msgs/cmake/../msg'], 'stdr_msgs': ['/tmp/buildd/ros-indigo-stdr-msgs-0.2.0-0trusty-20151111-0403/msg', '/tmp/buildd/ros-indigo-stdr-msgs-0.2.0-0trusty-20151111-0403/obj-x86_64-linux-gnu/devel/share/stdr_msgs/msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> const>
: FalseType
{ };
template <class ContainerAllocator>
struct IsMessage< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> const>
: FalseType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
{
static const char* value()
{
return "e8b8bd75b2e357572ea0c9ee72ed58c1";
}
static const char* value(const ::stdr_msgs::SonarSensorMsg_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0xe8b8bd75b2e35757ULL;
static const uint64_t static_value2 = 0x2ea0c9ee72ed58c1ULL;
};
template<class ContainerAllocator>
struct DataType< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
{
static const char* value()
{
return "stdr_msgs/SonarSensorMsg";
}
static const char* value(const ::stdr_msgs::SonarSensorMsg_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
{
static const char* value()
{
return "# Rfid sensor description\n\
float32 maxRange\n\
float32 minRange\n\
float32 coneAngle\n\
\n\
float32 frequency\n\
stdr_msgs/Noise noise\n\
\n\
string frame_id\n\
geometry_msgs/Pose2D pose # sensor pose, relative to robot center\n\
\n\
================================================================================\n\
MSG: stdr_msgs/Noise\n\
bool noise\n\
float32 noiseMean\n\
float32 noiseStd\n\
\n\
================================================================================\n\
MSG: geometry_msgs/Pose2D\n\
# This expresses a position and orientation on a 2D manifold.\n\
\n\
float64 x\n\
float64 y\n\
float64 theta\n\
";
}
static const char* value(const ::stdr_msgs::SonarSensorMsg_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.maxRange);
stream.next(m.minRange);
stream.next(m.coneAngle);
stream.next(m.frequency);
stream.next(m.noise);
stream.next(m.frame_id);
stream.next(m.pose);
}
ROS_DECLARE_ALLINONE_SERIALIZER;
}; // struct SonarSensorMsg_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::stdr_msgs::SonarSensorMsg_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::stdr_msgs::SonarSensorMsg_<ContainerAllocator>& v)
{
s << indent << "maxRange: ";
Printer<float>::stream(s, indent + " ", v.maxRange);
s << indent << "minRange: ";
Printer<float>::stream(s, indent + " ", v.minRange);
s << indent << "coneAngle: ";
Printer<float>::stream(s, indent + " ", v.coneAngle);
s << indent << "frequency: ";
Printer<float>::stream(s, indent + " ", v.frequency);
s << indent << "noise: ";
s << std::endl;
Printer< ::stdr_msgs::Noise_<ContainerAllocator> >::stream(s, indent + " ", v.noise);
s << indent << "frame_id: ";
Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.frame_id);
s << indent << "pose: ";
s << std::endl;
Printer< ::geometry_msgs::Pose2D_<ContainerAllocator> >::stream(s, indent + " ", v.pose);
}
};
} // namespace message_operations
} // namespace ros
#endif // STDR_MSGS_MESSAGE_SONARSENSORMSG_H
| [
"tianshipei5@126.com"
] | tianshipei5@126.com |
c8c3f1ab25372157ee1dba437a4f7f814d5e2628 | 503d046692640e6d4d43cbef589835275ce7cfd5 | /topcoder_marathon_match/RoadsAndJunctions/submits/RoadsAndJunctions_m4.cpp | 44f9d51b1e20115dde4f849e2686400e499b8120 | [] | no_license | ebicochineal/marathon_match | 62fc2c90df6d57f89efcdd9e26bc0aed46d920dc | 6c2c323690a2ec7c59eb58d103ea3f5d68f1cc91 | refs/heads/master | 2023-03-09T20:49:20.169600 | 2023-03-05T04:15:35 | 2023-03-05T04:15:35 | 134,235,055 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,824 | cpp | // C++11
#include <algorithm>
#include <cmath>
#include <iostream>
#include <vector>
#include <time.h>
#include <sys/timeb.h>
#include <string>
#include <array>
#include <cstdlib>
#include <sstream>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <random>
using namespace std;
string in_v_to_str (const char v) { return "'" + string{v} + "'"; }
string in_v_to_str (const char *v) { return '"' + v + '"'; }
string in_v_to_str (const string v) { return '"' + v + '"'; }
template<class T> string in_v_to_str (const T v) { stringstream ss; ss << v; return ss.str(); }
template<class T> string v_to_str (const T v) { stringstream ss; ss << v; return ss.str(); }
template<class T, size_t N> string v_to_str (const array<T, N> &v) {
stringstream ss;
if (v.size() > 0) {
ss << "[";
for (int i = 0; i < v.size() - 1; ++i) { ss << in_v_to_str(v[i]) << ", "; }
ss << in_v_to_str(v[v.size() - 1]) << "]";
} else {
ss << "[]";
}
return ss.str();
}
template<class T, size_t N> string v_to_str (const array< array<T, N>, N > &v) {
stringstream ss;
if (v.size() > 0) {
ss << "[";
for (int i = 0; i < v.size() - 1; ++i) { ss << v_to_str(v[i]) << ", "; }
ss << v_to_str(v[v.size() - 1]) << "]";
} else {
ss << "[-]";
}
return ss.str();
}
template<class T> string v_to_str (const vector<T> &v) {
stringstream ss;
if (v.size() > 0) {
ss << "[";
for (int i = 0; i < v.size() - 1; ++i) { ss << in_v_to_str(v[i]) << ", "; }
ss << in_v_to_str(v[v.size() - 1]) << "]";
} else {
ss << "[]";
}
return ss.str();
}
template<class T> string v_to_str (const vector< vector<T> > &v) {
stringstream ss;
if (v.size() > 0) {
ss << "[";
for (int i = 0; i < v.size() - 1; ++i) { ss << v_to_str(v[i]) << ", "; }
ss << v_to_str(v[v.size() - 1]) << "]";
} else {
ss << "[-]";
}
return ss.str();
}
template<class T> string v_to_str (const set<T> &v) {
stringstream ss;
int len = v.size();
ss << (v.size() > 0 ? "{" : "{}");
for (auto& i : v) { ss << in_v_to_str(i) << (len-- > 1 ? ", " : "}"); }
return ss.str();
}
template<class K, class V> string v_to_str (const map<K, V> &v) {
stringstream ss;
int len = v.size();
ss << (v.size() > 0 ? "{" : "{}");
for (auto& i : v) { ss << in_v_to_str(i.first) << " : " << in_v_to_str(i.second) << (len-- > 1 ? ", " : "}"); }
return ss.str();
}
template<class T> string v_to_str (const unordered_set<T> &v) {
stringstream ss;
int len = v.size();
ss << (v.size() > 0 ? "{" : "{}");
for (auto& i : v) { ss << in_v_to_str(i) << (len-- > 1 ? ", " : "}"); }
return ss.str();
}
template<class K, class V> string v_to_str (const unordered_map<K, V> &v) {
stringstream ss;
int len = v.size();
ss << (v.size() > 0 ? "{" : "{}");
for (auto& i : v) { ss << in_v_to_str(i.first) << " : " << in_v_to_str(i.second) << (len-- > 1 ? ", " : "}"); }
return ss.str();
}
string print () { return ""; }
template<typename F, typename... R> string print (const F &f, const R &...r) {
stringstream ss;
ss << v_to_str(f);
if (sizeof...(r) > 0) { ss << " " << print(r...); }
return ss.str();
}
class StopWatch {
public:
int starts;
int startm;
struct timeb timebuffer;
StopWatch () {
ftime(&this->timebuffer);
this->starts = this->timebuffer.time;
this->startm = this->timebuffer.millitm;
}
inline int get_milli_time () {
ftime(&this->timebuffer);
return (this->timebuffer.time - this->starts) * 1000 + (this->timebuffer.millitm - this->startm);
}
};
inline uint32_t xrnd() {
static uint32_t y = 2463534242;
y = y ^ (y << 13);
y = y ^ (y >> 17);
return y = y ^ (y << 5);
}
//////
inline double distance (const double &ax, const double &ay, const double &bx, const double &by) {
return hypot(ax - bx, ay - by);
}
inline double distance (const int &ax, const int &ay, const int &bx, const int &by) {
return hypot(ax - bx, ay - by);
}
class RoadsAndJunctions {
public:
int NC;
int S;
vector< pair<int, int> > bp;// blank x, y
StopWatch sw;
vector< pair<int, int> > junctions;// index, pos
vector< pair<int, int> > ip_cities;
vector<int> cities;
vector<int> rcnts;
vector<bool> graph_or_near;// 0 1
vector< pair<int, int> > cities_graph;
vector<int> buildJunctions(int S, vector<int> cities, double junctionCost, double failureProbability) {
S += 1;
//this->sw = StopWatch();
this->S = S;
this->NC = cities.size() / 2;
this->cities = cities;
this->ip_cities = this->init_cities();
vector<int> v(S * S, 1);// city 0
vector<int> ret;
for (int i = 0; i < this->NC; ++i) {
const int x = cities[2 * i];
const int y = cities[2 * i + 1];
v[x + y * S] = 0;
}
vector<int> blank = v;
vector<int> dx = {-1, 1, 0, 0};
vector<int> dy = {0, 0, -1, 1};
for (int i = 0; i < S * S; ++i) {
if (v[i] == 1) { this->bp.emplace_back(i % S, i / S); }
}
this->cities_graph = this->ip_to_graph(this->ip_cities);
this->rcnts = this->road_cnt_pos(this->cities_graph);
for (auto &i : this->ip_cities) {
if (rcnts[i.first] < 3) { continue; }
const int x = i.second % S;
const int y = i.second / S;
int cnt = 2;
for (int j = 0; j < 4; ++j) {
const int px = x + dx[j];
const int py = y + dy[j];
if (px > -1 && px < S && py > -1 && py < S) {
if (blank[px + py * S] == 1) {
ret.emplace_back(px);
ret.emplace_back(py);
blank[px + py * S] = 0;
cnt -= 1;
if (cnt < 1) { break; }
}
}
}
}
for (int k = 0; k < 3; ++k) {
for (auto &i : this->ip_cities) {
if (failureProbability < 0.2) { break; };
if (this->rcnts[i.first] < 3) { continue; }
const int x = i.second % S;
const int y = i.second / S;
for (int j = 0; j < 4; ++j) {
if (ret.size()/4 >= this->NC) { break; }
const int px = x + dx[j];
const int py = y + dy[j];
if (px > -1 && px < S && py > -1 && py < S) {
if (blank[px + py * S] == 1) {
ret.emplace_back(px);
ret.emplace_back(py);
blank[px + py * S] = 0;
break;
}
}
}
}
}
this->junctions = this->ret_to_junctions(ret);
cerr << print("S", S, "Co", junctionCost, "Pr", failureProbability, "Ci", this->NC, "J", ret.size()/2) << endl;
return ret;
}
vector< pair<int, int> > cities_graph2;
void init_graph_or_near () {
unordered_set<int> nears;
for (auto &i : this->ip_cities) {
this->graph_or_near.emplace_back(false);
if (this->rcnts[i.first] > 2) {
this->graph_or_near[i.first] = true;
nears.emplace(i.first);
}
}
for (auto &i : this->cities_graph) {
if (nears.find(i.first) != nears.end()) {
this->graph_or_near[i.second] = true;
}
if (nears.find(i.second) != nears.end()) {
this->graph_or_near[i.first] = true;
}
if (nears.find(i.first) == nears.end() && nears.find(i.second) == nears.end()) {
this->cities_graph2.emplace_back(i);
}
}
}
// args index, index
// return index cnt
vector<int> road_cnt_pos (vector< pair<int, int> > &road) {
vector<int> r(this->NC, 0);
for (auto &i : road) {
r[i.first] += 1;
r[i.second] += 1;
}
return r;
}
vector< pair<int, int> > init_cities () {
vector< pair<int, int> > j;
for(int i = 0; i < this->cities.size() / 2; i++) {
const int cx = this->cities[2 * i];
const int cy = this->cities[2 * i + 1];
j.emplace_back(i, cx + cy * this->S);
}
return j;
}
vector< pair<int, int> > ret_to_junctions (const vector<int> &ret) {
vector< pair<int, int> > j;
for(int i = 0; i < ret.size() / 2; i++) {
const int cx = ret[2 * i];
const int cy = ret[2 * i + 1];
j.emplace_back(i, cx + cy * this->S);
}
return j;
}
vector< pair<int, int> > x_junctions (const vector< pair<int, int> > &junctions, const vector<int> &junctionStatus) {
vector< pair<int, int> > j;
for (int i = 0; i < junctionStatus.size(); ++i) {
if (junctionStatus[i] == 0) { continue; }
j.emplace_back(junctions[i]);
}
return j;
}
int min_dint_junc (int cx, int cy, const vector< pair<int, int> > &juncs) {
int r = -1;
double dist = 2000;
for (auto &i : juncs) {
const double tdist = distance(cx, cy, i.second % this->S, i.second / this->S);
if (tdist < dist) {
dist = tdist;
r = i.first;
}
}
return r;
}
// args pair<index, pos> x = pos%this->S, y = pos/this->S
// return pair<index, index>
vector< pair<int, int> > ip_to_graph (vector< pair<int, int> > ip) {
vector< pair<int, int> > r;
vector< pair<int, int> > s;
s.emplace_back(ip[0]);
ip[0].first = -1;
int S = this->S;
while (s.size() < ip.size()) {
int ii = -1;
int ji = -1;
int jj = -1;
double dist = 2000;
for (int i = 0; i < s.size(); ++i) {
const int sx = s[i].second % S;
const int sy = s[i].second / S;
for (int j = 1; j < ip.size(); ++j) {
if (ip[j].first < 0) { continue; }
const int px = ip[j].second % S;
const int py = ip[j].second / S;
const double tdist = distance(sx, sy, px, py);
if (tdist < dist) {
dist = tdist;
ii = s[i].first;
ji = ip[j].first;
jj = j;
}
}
}
if (ii < 0) { return r; }
r.emplace_back(ii, ji);
s.emplace_back(ip[jj]);
ip[jj].first = -1;
}
return r;
}
vector< pair<int, int> > ips (const vector< pair<int, int> > &junctions, const vector<int> &junctionStatus) {
vector< pair<int, int> > j = this->ip_cities;
for (int i = 0; i < junctionStatus.size(); ++i) {
if (junctionStatus[i] == 0) { continue; }
j.emplace_back(junctions[i].first+this->NC, junctions[i].second);
}
return j;
}
vector<int> buildRoads(vector<int> junctionStatus) {
this->init_graph_or_near();
vector<int> ret;
vector< pair<int, int> > juncs = this->ips(this->junctions, junctionStatus);
// for(int i = 0; i < this->NC; i++) {
// if (this->graph_or_near[i] == true) {
// const int cx = this->cities[2 * i];
// const int cy = this->cities[2 * i + 1];
// ret.emplace_back(i);
// ret.emplace_back(this->NC + this->min_dint_junc(cx, cy, juncs));
// } else {
// // const int cx = this->cities[2 * i];
// // const int cy = this->cities[2 * i + 1];
// // ret.emplace_back(i);
// // ret.emplace_back(this->NC + this->min_dint_junc(cx, cy, juncs));
// }
// }
// for (auto &i : this->cities_graph) {
// ret.emplace_back(i.first);
// ret.emplace_back(i.second);
// }
vector< pair<int, int> > jp = ip_to_graph (juncs);
for (auto &i : jp) {
ret.emplace_back(i.first);
ret.emplace_back(i.second);
}
cerr << print("Time", sw.get_milli_time()) << endl;
return ret;
}
};
// -------8<------- end of solution submitted to the website -------8<-------
template<class T> void getVector(vector<T>& v) {
for (int i = 0; i < v.size(); ++i)
cin >> v[i];
}
int main() {
RoadsAndJunctions rj;
int S, C;
cin >> S >> C;
vector<int> cities(C);
getVector(cities);
double junctionCost, failureProbability;
cin >> junctionCost >> failureProbability;
vector<int> ret = rj.buildJunctions(S, cities, junctionCost, failureProbability);
cout << ret.size() << endl;
for (int i = 0; i < (int)ret.size(); ++i)
cout << ret[i] << endl;
cout.flush();
int J;
cin >> J;
vector<int> junctionStatus(J);
getVector(junctionStatus);
ret = rj.buildRoads(junctionStatus);
cout << ret.size() << endl;
for (int i = 0; i < (int)ret.size(); ++i)
cout << ret[i] << endl;
cout.flush();
}
| [
"yz94588@gmail.com"
] | yz94588@gmail.com |
7f329b6cb1b0f98bfcdbffe169a31a7148ed19aa | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /DP/2783.cpp | 46b26e47ced12e9c6d35d50a16f067e7b1065178 | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 707 | cpp | #include <iostream>
#include <cstdio>
#include <cmath>
#include <string>
#include <cstring>
#include <algorithm>
#include <set>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
int ans = 0;
for (int num = n; num; num /= 10) {
ans = max(ans, num % 10);
}
cout << ans << '\n';
while (ans--) {
int res = 0;
for (int dec = 1; dec <= n; dec *= 10) {
if (n / dec % 10) {
n -= dec;
res += dec;
}
}
cout << res << ' ';
}
return 0;
}
| [
"mukeshchugani10@gmail.com"
] | mukeshchugani10@gmail.com |
4a2bf4c50c7547e921366f91b32ba7ba350053df | b6607ecc11e389cc56ee4966293de9e2e0aca491 | /codeforces.com/Contests/151 div 2/C/test.cpp | 0c4ff182d51593c8840b25644c2823f5a9ea4e84 | [] | no_license | BekzhanKassenov/olymp | ec31cefee36d2afe40eeead5c2c516f9bf92e66d | e3013095a4f88fb614abb8ac9ba532c5e955a32e | refs/heads/master | 2022-09-21T10:07:10.232514 | 2021-11-01T16:40:24 | 2021-11-01T16:40:24 | 39,900,971 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 210 | cpp | #include <iostream>
#include <cstdio>
using namespace std;
int main()
{
freopen("in" , "w", stdout);
cout << 50 << ' ' << (50 * 51) / 2;
for (int i = 1; i <= 50; i++)
cout << i << ' ';
return 0;
}
| [
"bekzhan.kassenov@nu.edu.kz"
] | bekzhan.kassenov@nu.edu.kz |
c9b7d02db0b36c53bd235486b61352117f6ed732 | bb7645bab64acc5bc93429a6cdf43e1638237980 | /Official Windows Platform Sample/Windows 8.1 desktop samples/99647-Windows 8.1 desktop samples/DPI Tutorial sample/C++/stdafx.cpp | fb4488dfe813edb484cda9bf7e101aa7787884bd | [
"MIT"
] | permissive | Violet26/msdn-code-gallery-microsoft | 3b1d9cfb494dc06b0bd3d509b6b4762eae2e2312 | df0f5129fa839a6de8f0f7f7397a8b290c60ffbb | refs/heads/master | 2020-12-02T02:00:48.716941 | 2020-01-05T22:39:02 | 2020-01-05T22:39:02 | 230,851,047 | 1 | 0 | MIT | 2019-12-30T05:06:00 | 2019-12-30T05:05:59 | null | UTF-8 | C++ | false | false | 202 | cpp | // stdafx.cpp : source file that includes just the standard includes
// DPITutorial.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
| [
"v-tiafe@microsoft.com"
] | v-tiafe@microsoft.com |
f9d17ea4949693b46170a164c963f41dd7bffa70 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /third_party/WebKit/Source/modules/sensor/MagnetometerReading.cpp | 38fdc6a31e294bcf44d178bd47616daf132bc6ae | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 1,477 | cpp | // Copyright 2016 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 "modules/sensor/MagnetometerReading.h"
#include "modules/sensor/MagnetometerReadingInit.h"
#include "wtf/CurrentTime.h"
namespace blink {
namespace {
device::SensorReading ToReadingData(const MagnetometerReadingInit& init) {
device::SensorReading result;
result.timestamp = WTF::monotonicallyIncreasingTime();
if (init.hasX())
result.values[0] = init.x();
if (init.hasY())
result.values[1] = init.y();
if (init.hasZ())
result.values[2] = init.z();
return result;
}
} // namespace
MagnetometerReading::MagnetometerReading(const MagnetometerReadingInit& init)
: SensorReading(ToReadingData(init)) {}
MagnetometerReading::MagnetometerReading(const device::SensorReading& data)
: SensorReading(data) {}
MagnetometerReading::~MagnetometerReading() = default;
double MagnetometerReading::x() const {
return data().values[0];
}
double MagnetometerReading::y() const {
return data().values[1];
}
double MagnetometerReading::z() const {
return data().values[2];
}
bool MagnetometerReading::isReadingUpdated(
const device::SensorReading& previous) const {
return previous.values[0] != x() && previous.values[1] != y() &&
previous.values[2] != z();
}
DEFINE_TRACE(MagnetometerReading) {
SensorReading::trace(visitor);
}
} // namespace blink
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
428fea2570b64633c56a1e8cda94d14772361a49 | 0a4541e219bbfe9296cc659618dd4a91c81e0d56 | /KR3/js/news.h | 8e1636c10506a874fea17f86e83632e879ea67b1 | [] | no_license | karikera/ken | e07b8858f63d839ac1cc9b69c648897644d5bfe2 | c41bee5f2da2b8e99d0b9284a53404218c4a6869 | refs/heads/master | 2023-04-27T17:48:03.681745 | 2023-04-17T09:20:50 | 2023-04-17T09:20:50 | 182,513,850 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 711 | h | #pragma once
#include "type.h"
#include "rawdata.h"
namespace kr
{
size_t getElementSize(JsTypedType type) noexcept;
class JsNewSymbol
{
public:
JsNewSymbol() noexcept;
JsNewSymbol(JsRawData desc) noexcept;
const JsRawData description;
};
class JsNewArray
{
public:
JsNewArray(size_t size = 0) noexcept;
const size_t size;
};
class JsNewArrayBuffer
{
public:
JsNewArrayBuffer(size_t bytes) noexcept;
const size_t bytes;
};
class JsNewTypedArray
{
public:
JsNewTypedArray(JsRawData arrayBuffer, JsTypedType type, size_t size = 0) noexcept;
JsNewTypedArray(JsTypedType type, size_t size = 0) noexcept;
JsRawData arrayBuffer;
JsTypedType type;
const size_t size;
};
} | [
"karikera3@hotmail.com"
] | karikera3@hotmail.com |
7f3fff0a504c94a9a6273585c0cadbd7694c91cf | 12033d319441d9fe6914ae05e1efd06800735983 | /cpp-multithreading/1.cpp | d519898741438fff1b9ba54b8e10f05e751c565e | [] | no_license | houxinjie/cplusplus | ba57ca8da47e9202d00b2c3726fcc50330c468df | 77ad2ee14d8dacf2dcdf8aaca3aedbab81946f7e | refs/heads/master | 2020-08-30T21:11:05.133276 | 2016-09-08T12:37:53 | 2016-09-08T12:37:53 | 67,701,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 463 | cpp | #include <iostream>
#include <pthread.h>
using namespace std;
#define NUM_THREADS 5
void* say_hello(void* args){
cout << "Hello Runoob!" << endl;
return NULL;
}
int main(){
pthread_t tids[NUM_THREADS];
for(int i = 0; i < NUM_THREADS; ++i){
int ret = pthread_create(&tids[i], NULL, say_hello, NULL);
if(ret != 0){
cout << "pthread_create error: error_code=" << ret << endl;
}
}
pthread_exit(NULL);
}
| [
"houxinjie@gmail.com"
] | houxinjie@gmail.com |
049d3efeaca2b4933f7d4c998b488699a29f328f | 63da3a98d7f7527f47ab1971f792da1b5784d867 | /Lec25_Code/include/Quick.h | c654ad3c660c5d4ec8ca7a9e3fa4f2e69dd07f02 | [] | no_license | cding2/f21-cse20312 | 5c85222a9dbed0d7551bff6745574e57c4494998 | 1084f9d3a20a1b5de4971625f28b322898465d1f | refs/heads/main | 2023-08-25T04:52:13.738586 | 2021-10-25T11:55:25 | 2021-10-25T11:55:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,476 | h | #ifndef FUNCTIONS_H
#define FUNCTIONS_H
#include <iostream>
#include <cstdlib>
#include <vector>
#include <algorithm> // std::random_shuffle
#define COUT std::cout
#define ENDL std::endl
/********************************************
* Function Name : printArray
* Pre-conditions : T* array, const int& length
* Post-conditions: none
*
* Prints in order the array
********************************************/
template<typename T>
void printArray(std::vector<T>& theArray){
for (int iter = 0; iter < theArray.size(); iter++){
COUT << theArray.at(iter) << " ";
}
}
/********************************************
* Function Name : swap
* Pre-conditions : T* array, int i, int j
* Post-conditions: none
*
* This function swaps two elements at i and j
********************************************/
template<typename T>
void swap (std::vector<T>& theArray, int i, int j){
T temp = theArray[i];
theArray[i] = theArray[j];
theArray[j] = temp;
}
/********************************************
* Function Name : partition
* Pre-conditions : T* array, int min, int max
* Post-conditions: int
*
* Performs the partitioning for the Quick Sort
* and returns the next partition point
********************************************/
template<typename T>
int partition(std::vector<T>& array, int min, int max){
// Select Scan references
int left = min + 1;
int right = max;
T reference = array[min];
// We scan the elements
// Break the loop when one of three cases arises
while (true){
while( left < max ){
// Case 1: If the left element is greater than reference
if (array[left] > reference){
break;
}
left++;
}
while( right > min ){
// Case 2: If the right element is less than reference
if(array[right] < reference){
break;
}
right--;
}
// If left and right indicies cross
if (left >= right){
break;
}
// Swap the values
swap(array, left, right);
}
// put reference at the crossing point
swap(array, min, right);
// Return the right index
return right;
}
// Function: sort
// Sort the subarray from min to max
template<typename T>
void QuickSort(std::vector<T>& array, int min, int max){
if (min >= max){
return;
}
int j = partition(array, min, max);
// Perform QuickSort to the left of the partition
QuickSort(array, min, j-1);
// Perform QuickSort to the right of the partition
QuickSort(array,j + 1, max);
}
#endif | [
"mmorri22@nd.edu"
] | mmorri22@nd.edu |
c9f29b4b1fb8bb3a2276034ead750f3e636d1188 | 85d3be2edc096883d5992e5ad1ed8f2242ff6f8e | /Test/main.cpp | bed1c8cb8d79993df762d0031c5e40520ffdd1c1 | [] | no_license | akemimadoka/Reflection | d4cc63b194a78e9d9268d10318bc3ed7b52f0787 | a4981c69b42454d9a1f1c6a77ceba72c67faa7c7 | refs/heads/master | 2021-01-12T13:25:20.919234 | 2017-12-25T10:58:50 | 2017-12-25T10:58:59 | 69,806,025 | 22 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,095 | cpp | #include <iostream>
#include <chrono>
#include <Reflection.h>
#include <natStream.h>
/*DECLARE_REFLECTABLE_INTERFACE(ISerializable)
{
GENERATE_METADATA(ISerializable);
DECLARE_PURE_VIRTUAL_MEMBER_METHOD(public, ISerializable, , Serialize, , size_t, );
DECLARE_PURE_VIRTUAL_MEMBER_METHOD(public, ISerializable, , Deserialize, , size_t, );
};
GENERATE_METADATA_DEFINITION(ISerializable);
DEFINE_PURE_VIRTUAL_MEMBER_METHOD(public, ISerializable, , Serialize, , size_t, );
DEFINE_PURE_VIRTUAL_MEMBER_METHOD(public, ISerializable, , Deserialize, , size_t, );*/
DECLARE_REFLECTABLE_CLASS_WITH_BASE_CLASSES(TestAttribute, IAttribute)
{
GENERATE_METADATA_WITH_BASE_CLASSES(TestAttribute, WITH(AttributeUsage(AttributeTarget::Class)), IAttribute);
DECLARE_CONST_MEMBER_METHOD(public, TestAttribute, , Test, , int);
};
GENERATE_METADATA_DEFINITION_WITH_BASE_CLASSES(TestAttribute, WITH(AttributeUsage(AttributeTarget::Class)), IAttribute);
DEFINE_CONST_MEMBER_METHOD(public, TestAttribute, , Test, , int)() const
{
return 1;
}
DECLARE_REFLECTABLE_CLASS(Foo)
{
GENERATE_METADATA(Foo, WITH(TestAttribute()))
DECLARE_CONSTRUCTOR(public, Foo, explicit, , int);
DECLARE_DEFAULT_COPYCONSTRUCTOR(public, Foo);
DECLARE_DEFAULT_MOVECONSTRUCTOR(public, Foo);
DECLARE_CONST_MEMBER_METHOD(public, Foo, , GetTest, 0, int const&);
DECLARE_CONST_MEMBER_METHOD(public, Foo, , GetTest, 1, int, int const&);
DECLARE_VIRTUAL_MEMBER_METHOD(public, Foo, , Test, , int);
DECLARE_MEMBER_METHOD(public, Foo, , Test1, , void);
DECLARE_MEMBER_FIELD(private, Foo, int, m_Test);
};
GENERATE_METADATA_DEFINITION(Foo, WITH(TestAttribute()));
DEFINE_CONSTRUCTOR(public, Foo, , , int)(int value)
: m_Test{ value }
{
}
DEFINE_DEFAULT_COPYCONSTRUCTOR(public, Foo)
DEFINE_DEFAULT_MOVECONSTRUCTOR(public, Foo)
DEFINE_CONST_MEMBER_METHOD(public, Foo, , GetTest, 0, int const&)() const
{
return m_Test;
}
DEFINE_CONST_MEMBER_METHOD(public, Foo, , GetTest, 1, int, int const&)(int const& arg) const
{
return m_Test + arg;
}
DEFINE_VIRTUAL_MEMBER_METHOD(public, Foo, , Test, , int)()
{
return ++m_Test;
}
DEFINE_MEMBER_METHOD(public, Foo, , Test1, , void)()
{
std::cout << m_Test << std::endl;
}
DEFINE_MEMBER_FIELD(private, Foo, int, m_Test);
REGISTER_BOXED_REFOBJECT(natStream);
REGISTER_BOXED_REFOBJECT_DEF(natStream);
DECLARE_REFLECTABLE_CLASS_WITH_BASE_CLASS(Bar, Foo)
{
GENERATE_METADATA_WITH_BASE_CLASSES(Bar, WITH(), Foo);
DECLARE_CONSTRUCTOR(public, Bar, explicit, , int);
DECLARE_VIRTUAL_MEMBER_METHOD(public, Bar, , Test, , int);
DECLARE_MEMBER_METHOD(public, Bar, , BoxedTest, , natRefPointer<Object>, natStream&);
};
GENERATE_METADATA_DEFINITION_WITH_BASE_CLASSES(Bar, WITH(), Foo);
DEFINE_CONSTRUCTOR(public, Bar, explicit, , int)(int arg)
: Foo(arg)
{
}
DEFINE_VIRTUAL_MEMBER_METHOD(public, Bar, , Test, , int)()
{
return Foo::Test() + 1;
}
DEFINE_MEMBER_METHOD(public, Bar, , BoxedTest, , natRefPointer<Object>, natStream&)(natStream& stream)
{
static_cast<void>(stream);
return Box();
}
struct haha
{
int a;
};
REGISTER_BOXED_OBJECT(haha);
REGISTER_BOXED_OBJECT_DEF(haha);
int main()
{
try
{
for (auto&& item : Reflection::GetInstance().GetTypes())
{
std::wcout << item->GetName() << std::endl;
}
std::wcout << typeof(int)->GetName() << std::endl;
auto type = typeofname("Foo"_nv);
std::wcout << type->GetAttribute<TestAttribute>()->Test() << std::endl;
auto pFoo = type->Construct({ 1 });
std::wcout << pFoo->ToString() << std::endl << type->InvokeMember(pFoo, "GetTest"_nv, {})->ToString() << std::endl << type->InvokeMember(pFoo, "GetTest"_nv, { 1 })->ToString() << std::endl;
std::wcout << type->InvokeMember(pFoo, "Test"_nv, {})->ToString() << std::endl;
std::wcout << type->ReadMemberField(pFoo, "m_Test"_nv)->ToString() << std::endl;
decltype(auto) UnboxedFoo = pFoo->Unbox<Foo>();
std::wcout << UnboxedFoo.GetTest() << std::endl;
auto type2 = typeofname("Bar"_nv);
auto pBar = type2->Construct({ 1 });
std::wcout << type2->InvokeMember(pBar, "Test"_nv, {})->ToString() << std::endl << std::endl;
natFileStream a{ "main.cpp"_nv, false, false };
type2->InvokeMember(pBar, "BoxedTest"_nv, { natRefPointer<natStream>{ &a } });
for (auto&& item : type2->GetBaseClasses())
{
std::wcout << item->GetName() << std::endl;
}
std::wcout << std::endl;
for (auto&& item : type2->GetMemberMethods()
.where([](std::pair<const nString, natRefPointer<IMemberMethod>> const& method)
{
return method.second->GetAccessSpecifier() == AccessSpecifier::AccessSpecifier_public;
}))
{
std::wcout << item.first << std::endl;
}
std::wcout << std::endl;
std::vector<std::tuple<bool, nString, natRefPointer<IType>>> members{};
type2->EnumMember(true, [&members](nStrView name, bool isMethod, natRefPointer<IType> objectType)
{
members.emplace_back(isMethod, name, objectType);
return false;
});
for (auto&& item : members)
{
if (std::get<0>(item))
{
std::wcout << "Method : " << std::get<1>(item) << std::endl;
}
else
{
std::wcout << "Field : " << std::get<1>(item) << " (" << std::get<2>(item)->GetName() << ")" << std::endl;
}
}
std::wcout << std::boolalpha << type2->IsExtendFrom(type) << std::endl << type2->IsBoxed() << std::endl << (*type2->GetMemberFields().where([](auto&& pair) { return pair.first == "m_Test"_nv; }).begin()).second->GetType()->IsBoxed() << std::endl;
std::wcout << typeof(RefString)->Construct({ "Test!"_nv })->ToString() << std::endl;
// Benchmark
/*auto Test = type2->GetMemberMethod("Test"_nv, {});
ArgumentPack args{};
auto time = std::chrono::high_resolution_clock::now();
for (size_t i = 0; i < 1000000; ++i)
{
Test->Invoke(pBar, args);
}
std::wcout << std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - time).count() << std::endl;
auto bar = static_cast<natRefPointer<Bar>>(pBar);
time = std::chrono::high_resolution_clock::now();
for (size_t i = 0; i < 1000000; ++i)
{
bar->Test();
}
std::wcout << std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - time).count() << std::endl;*/
}
catch (ReflectionException& e)
{
std::wcerr << natUtil::FormatString("Exception caught from {0}, file \"{1}\" line {2},\nDescription: {3}"_nv, e.GetSource(), e.GetFile(), e.GetLine(), e.GetDesc()) << std::endl;
#ifdef EnableExceptionStackTrace
std::wcerr << "Call stack:"_nv << std::endl;
for (size_t i = 0; i < e.GetStackWalker().GetFrameCount(); ++i)
{
auto&& symbol = e.GetStackWalker().GetSymbol(i);
std::wcerr << natUtil::FormatString("{3}: (0x%p) {4} at address 0x%p (file {5}:{6} at address 0x%p)"_nv, symbol.OriginalAddress, reinterpret_cast<const void*>(symbol.SymbolAddress), reinterpret_cast<const void*>(symbol.SourceFileAddress), i, symbol.SymbolName, symbol.SourceFileName, symbol.SourceFileLine) << std::endl;
}
#endif
}
catch (std::exception& e)
{
std::cout << nStrView{ e.what() } << std::endl;
}
#ifdef _WIN32
system("pause");
#else
std::cin.get();
#endif
}
| [
"jxhzq1996@126.com"
] | jxhzq1996@126.com |
74e4e9a8b1e22f937ce89b32a2bc7ed21cedb319 | f057bd23443d1684ac3212d8e392e53668401a1a | /sample/another_mod_int.hpp | 3b363d49dbf0dc93384a942b5c277e68e810d7dd | [
"MIT"
] | permissive | mmarkeloff/mm | 9fcbd8f02d93aa049f6b589368044cb6e78003e0 | eaaa97966249ad2676aa335b4650a34bc4fc3074 | refs/heads/master | 2023-05-08T10:54:02.558715 | 2021-06-07T16:34:03 | 2021-06-07T16:34:03 | 372,493,740 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,631 | hpp | /**
* @file another_mod_int.hpp
* @authors Max Markeloff (https://github.com/mmarkeloff)
*/
// MIT License
//
// Copyright (c) 2021 Max
//
// 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 __MM_ANOTHER_MOD_INT_HPP
#define __MM_ANOTHER_MOD_INT_HPP
#include <memory>
#include "mod_int.hpp"
#include "another_mod_impl.hpp"
class AnotherModInterface: public mm::BaseModInterface {
private:
std::shared_ptr<AnotherModImpl> m_ModImpl;
public:
AnotherModInterface();
void* getImpl() const noexcept override;
};
__MM_INSTANCE_TMPL(AnotherModInterface)
#endif // __MM_ANOTHER_MOD_INT_HPP | [
"mmarkelov@icloud.com"
] | mmarkelov@icloud.com |
3c8fcecb839a75da1f4f7f562d5b068e25ad601d | 2277375bd4a554d23da334dddd091a36138f5cae | /ThirdParty/CUDA/include/thrust/system/tbb/detail/for_each.inl | 57629e8dba80e94cc82c3d94420900b74760a6fc | [] | no_license | kevinmore/Project-Nebula | 9a0553ccf8bdc1b4bb5e2588fc94516d9e3532bc | f6d284d4879ae1ea1bd30c5775ef8733cfafa71d | refs/heads/master | 2022-10-22T03:55:42.596618 | 2020-06-19T09:07:07 | 2020-06-19T09:07:07 | 25,372,691 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 2,923 | inl | /*
* Copyright 2008-2013 NVIDIA Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in ctbbliance 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 <thrust/detail/config.h>
#include <thrust/detail/static_assert.h>
#include <thrust/distance.h>
#include <thrust/iterator/iterator_traits.h>
#include <thrust/distance.h>
#include <thrust/system/detail/internal/scalar/for_each.h>
#include <tbb/blocked_range.h>
#include <tbb/parallel_for.h>
namespace thrust
{
namespace system
{
namespace tbb
{
namespace detail
{
namespace for_each_detail
{
template<typename RandomAccessIterator,
typename Size,
typename UnaryFunction>
struct body
{
RandomAccessIterator m_first;
UnaryFunction m_f;
body(RandomAccessIterator first, UnaryFunction f)
: m_first(first), m_f(f)
{}
void operator()(const ::tbb::blocked_range<Size> &r) const
{
// we assume that blocked_range specifies a contiguous range of integers
thrust::system::detail::internal::scalar::for_each_n(m_first + r.begin(), r.size(), m_f);
} // end operator()()
}; // end body
template<typename Size, typename RandomAccessIterator, typename UnaryFunction>
body<RandomAccessIterator,Size,UnaryFunction>
make_body(RandomAccessIterator first, UnaryFunction f)
{
return body<RandomAccessIterator,Size,UnaryFunction>(first, f);
} // end make_body()
} // end for_each_detail
template<typename DerivedPolicy,
typename RandomAccessIterator,
typename Size,
typename UnaryFunction>
RandomAccessIterator for_each_n(execution_policy<DerivedPolicy> &,
RandomAccessIterator first,
Size n,
UnaryFunction f)
{
::tbb::parallel_for(::tbb::blocked_range<Size>(0,n), for_each_detail::make_body<Size>(first,f));
// return the end of the range
return first + n;
} // end for_each_n
template<typename DerivedPolicy,
typename RandomAccessIterator,
typename UnaryFunction>
RandomAccessIterator for_each(execution_policy<DerivedPolicy> &s,
RandomAccessIterator first,
RandomAccessIterator last,
UnaryFunction f)
{
return tbb::detail::for_each_n(s, first, thrust::distance(first,last), f);
} // end for_each()
} // end namespace detail
} // end namespace tbb
} // end namespace system
} // end namespace thrust
| [
"dingfengyu@gmail.com"
] | dingfengyu@gmail.com |
d8367ae9e68e28576587020e98bd2672ffe187c6 | 57aafe42f8a16df341e5370fd0ecbedea9e7287f | /FirstPerson/Plugins/VoxelMate/Source/VoxelMate/Public/VoxelDatabase.h | 97473344b31aaee6284513fa36bf284c700341a4 | [] | no_license | primezeta/turbo-enigma | c3460199d17840daba65a4693537ddd098ef6c9a | 8a16e36abc73fcf1703e6a4c7898c507fbd005d5 | refs/heads/master | 2021-03-24T11:53:32.870873 | 2017-01-17T22:08:08 | 2017-01-17T22:08:08 | 64,702,133 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,802 | h | #pragma once
#include "EngineMinimal.h"
#include "VoxelDatabaseCommon.h"
#include "UnrealNetwork.h"
#include "Runtime/Engine/Classes/Engine/ActorChannel.h"
#include "VoxelValueSources.h"
#include "VoxelDatabase.generated.h"
////TODO: See UWorldProxy which has checks for access from non-game threads. Might need to do the same for AVoxelDatabase
//struct FGridBaseValuesGeneratorArray;
//
//USTRUCT()
//struct FGridBaseValuesGeneratorItem : public FFastArraySerializerItem
//{
// GENERATED_BODY()
//
// FGridBaseValuesGeneratorItem()
// {}
//
// FGridBaseValuesGeneratorItem(const FText& GridText, AGridSource* Source)
// : DisplayText(GridText), GridSource(Source)
// {
// GridId = GridSource->GridIndex;
// }
//
// friend FArchive& operator<<(FArchive& Ar, FGridBaseValuesGeneratorItem& Item)
// {
// Item.Serialize(Ar);
// return Ar;
// }
//
// UPROPERTY()
// FIntVector GridId;
// UPROPERTY()
// FText DisplayText;
// UPROPERTY()
// AGridSource* GridSource;
//
// void Serialize(FArchive& Ar)
// {
// Ar << GridId;
// Ar << DisplayText;
// GridSource->Serialize(Ar);
// }
//
// void PreReplicatedRemove(const FGridBaseValuesGeneratorArray& InArraySerializer)
// {
// }
//
// void PostReplicatedChange(const FGridBaseValuesGeneratorArray& InArraySerializer)
// {
// }
//
// void PostReplicatedAdd(const FGridBaseValuesGeneratorArray& InArraySerializer)
// {
// }
//};
//
//USTRUCT()
//struct FGridBaseValuesGeneratorArray : public FFastArraySerializer
//{
// GENERATED_BODY()
//
// UPROPERTY()
// TArray<FGridBaseValuesGeneratorItem> Items;
//
// void Serialize(FArchive& Ar)
// {
// Items.BulkSerialize(Ar);
// MarkArrayDirty();
// }
//
// bool NetDeltaSerialize(FNetDeltaSerializeInfo& DeltaParms)
// {
// return FFastArraySerializer::FastArrayDeltaSerialize<FGridBaseValuesGeneratorItem, FGridBaseValuesGeneratorArray>(Items, DeltaParms, *this);
// }
//
// const FGridBaseValuesGeneratorItem& AddItem(FGridBaseValuesGeneratorItem&& Item)
// {
// const int32 Index = Items.Add(Item);
// MarkItemDirty(Items[Index]);
// return Items[Index];
// }
//
// void RemoveItem(const FIntVector& GridId)
// {
// for (auto i = Items.CreateIterator(); i; ++i)
// {
// if (i->GridId == GridId)
// {
// Items.RemoveAt(i.GetIndex());
// MarkArrayDirty();
// return;
// }
// }
// }
//};
//
//template<>
//struct TStructOpsTypeTraits<FGridBaseValuesGeneratorArray> : public TStructOpsTypeTraitsBase
//{
// enum
// {
// WithNetDeltaSerializer = true,
// };
//};
//USTRUCT(ClassGroup = VoxelMate, NotBlueprintable, NotPlaceable)
//struct FVoxelChange
//{
//
//};
UCLASS(ClassGroup = VoxelMate, NotPlaceable)
class AVoxelDatabase : public AActor
{
GENERATED_BODY()
public:
AVoxelDatabase(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
SetReplicates(true);
SetReplicateMovement(false);
SetActorEnableCollision(false);
bNetTemporary = 0;
bCanBeDamaged = 0;
bAlwaysRelevant = 1;
bNetLoadOnClient = 1;
}
UPROPERTY(ReplicatedUsing=OnRep_GridSource)
UGridSource* GridSource;
UFUNCTION(Category = VoxelDatabase, BlueprintCallable)
void InitializeAuthGridSource(UGridSource* GridSourceTemplate, TSubclassOf<UGridSource> GridSourceType);
UFUNCTION(Category = VoxelDatabase)
void OnRep_GridSource();
UFUNCTION(Category = VoxelDatabase, BlueprintCallable)
void GenerateGridValues(const FGuid& GridId, const FVector& Location);
virtual bool ReplicateSubobjects(UActorChannel *Channel, FOutBunch *Bunch, FReplicationFlags *RepFlags) override;
virtual void Serialize(FArchive& Ar) override;
//UPROPERTY(ReplicatedUsing=OnRep_ServerDatabaseIsInitialized)
// bool ServerDatabaseIsInitialized;
//UPROPERTY(ReplicatedUsing=OnRep_GridBaseValuesGeneratorArray)
// FGridBaseValuesGeneratorArray GridBaseValuesGenerators;
//UFUNCTION()
// void ServerInitializeDatabase(const FString& Filename);
//UFUNCTION()
// void OnRep_ServerDatabaseIsInitialized();
//UFUNCTION()
// void OnRep_GridBaseValuesGeneratorArray();
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable, WithValidation)
// void ChangeVoxel(const FIntVector& GridId, const FIntVector& IndexCoord, const FVoxel& Voxel, bool IsActive);
//bool ChangeVoxel_Validate(const FIntVector& GridId, const FIntVector& IndexCoord, const FVoxel& Voxel, bool IsActive);
//void ChangeVoxel_Implementation(const FIntVector& GridId, const FIntVector& IndexCoord, const FVoxel& Voxel, bool IsActive);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformAffine(const FIntVector& GridId, const FAffineCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformAffine_Implementation(const FIntVector& GridId, const FAffineCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformUnitary(const FIntVector& GridId, const FUnitaryCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformUnitary_Implementation(const FIntVector& GridId, const FUnitaryCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformScale(const FIntVector& GridId, const FScaleCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformScale_Implementation(const FIntVector& GridId, const FScaleCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformUniformScale(const FIntVector& GridId, const FUniformScaleCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformUniformScale_Implementation(const FIntVector& GridId, const FUniformScaleCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformTranslation(const FIntVector& GridId, const FTranslationCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformTranslation_Implementation(const FIntVector& GridId, const FTranslationCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformScaleTranslation(const FIntVector& GridId, const FScaleTranslationCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformScaleTranslation_Implementation(const FIntVector& GridId, const FScaleTranslationCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformUniformScaleTranslation(const FIntVector& GridId, const FUniformScaleTranslationCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformUniformScaleTranslation_Implementation(const FIntVector& GridId, const FUniformScaleTranslationCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void SetCoordinateTransformNonlinearFrustum(const FIntVector& GridId, const FNonlinearFrustumCoordinateTransform& InCoordinateTransform);
//void SetCoordinateTransformNonlinearFrustum_Implementation(const FIntVector& GridId, const FNonlinearFrustumCoordinateTransform& InCoordinateTransform);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void InsertCoordinateRotation(const FIntVector& GridId, ETransformOp Op, float Radians, EAxis::Type Axis);
//void InsertCoordinateRotation_Implementation(const FIntVector& GridId, ETransformOp Op, float Radians, EAxis::Type Axis);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void InsertCoordinateTranslation(const FIntVector& GridId, ETransformOp Op, const FVector &InTranslation);
//void InsertCoordinateTranslation_Implementation(const FIntVector& GridId, ETransformOp Op, const FVector &InTranslation);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void InsertCoordinateScale(const FIntVector& GridId, ETransformOp Op, const FVector &InScale);
//void InsertCoordinateScale_Implementation(const FIntVector& GridId, ETransformOp Op, const FVector &InScale);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void InsertCoordinateUniformScale(const FIntVector& GridId, ETransformOp Op, float Scale);
//void InsertCoordinateUniformScale_Implementation(const FIntVector& GridId, ETransformOp Op, float Scale);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void InsertCoordinateShear(const FIntVector& GridId, ETransformOp Op, float Shear, EAxis::Type Axis0, EAxis::Type Axis1);
//void InsertCoordinateShear_Implementation(const FIntVector& GridId, ETransformOp Op, float Shear, EAxis::Type Axis0, EAxis::Type Axis1);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void InsertCoordinateMatrix4dMultiply(const FIntVector& GridId, ETransformOp Op, const FPlane &InX, const FPlane &InY, const FPlane &InZ, const FPlane &InW);
//void InsertCoordinateMatrix4dMultiply_Implementation(const FIntVector& GridId, ETransformOp Op, const FPlane &InX, const FPlane &InY, const FPlane &InZ, const FPlane &InW);
//UFUNCTION(Category = VoxelDatabase, BlueprintCallable, NetMulticast, Reliable)
// void InsertCoordinateMatrix3dMultiply(const FIntVector& GridId, ETransformOp Op, const FVector& InX, const FVector& InY, const FVector& InZ);
//void InsertCoordinateMatrix3dMultiply_Implementation(const FIntVector& GridId, ETransformOp Op, const FVector& InX, const FVector& InY, const FVector& InZ);
private:
//FString SourceFilename;
};
| [
"zachary.ladlie@gmail.com"
] | zachary.ladlie@gmail.com |
952d6c83db5c0cbc800603702553a6e7737e893f | e9d5870d9f520436307deca766b831d5b39a1838 | /Source/BuildingEscape/PositionReport.cpp | d20fd5ab0d4716dfc6beddc14876c8c51c47c330 | [] | no_license | byornikke/BuildingEscape | e9820eacf464a5483a37b06064de268dec4a42a9 | 2f636f0bb954bcc1a054e0951b97fe5904a5170c | refs/heads/master | 2020-05-25T10:53:08.899130 | 2019-05-21T05:40:59 | 2019-05-21T05:40:59 | 187,768,273 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,040 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "PositionReport.h"
#include "BuildingEscape.h"
#include "Gameframework/Actor.h"
// Sets default values for this component's properties
UPositionReport::UPositionReport()
{
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features
// off to improve performance if you don't need them.
PrimaryComponentTick.bCanEverTick = true;
// ...
}
// Called when the game starts
void UPositionReport::BeginPlay()
{
Super::BeginPlay();
FString ObjectName = GetOwner()->GetName();
FString ObjectPos = GetOwner()->GetTransform().GetLocation().ToString();
UE_LOG(LogTemp, Warning, TEXT("%s is at %s"), *ObjectName, *ObjectPos);
}
// Called every frame
void UPositionReport::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
// ...
}
| [
"noreply@github.com"
] | noreply@github.com |
0e53e7291838b8194a0f6c6a9c8a460515755c69 | 50a56ae2412be295b074dfea324c9dc5fba6de30 | /codeforces/729A.cpp | a62c092dcc19ae88ee986c9c1319dc4d5698e7c0 | [] | no_license | xbhoneybee/ACM_ICPC | f92f8cace72935de285d84a4bfb42cc402bdcc5e | 1bb892e5a4cf0cc1e9f9511e768b99fba7a639eb | refs/heads/master | 2020-12-04T02:30:35.005974 | 2018-05-03T12:00:09 | 2018-05-03T12:00:09 | 66,524,703 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,502 | cpp | #include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>
#include <cmath>
#include <cstring>
#include <set>
#include <queue>
#include <cctype>
#include <map>
#include <stack>
#include<cstdlib>
#include <sstream>
#include <deque>
#include<list>
#include<time.h>
#define ll long long
#define LL long long
#define inf 1000000009
#define iosfalse ios::sync_with_stdio(false);
#define INF 1e8
#define lowbit(x) x&-x
using namespace std;
//CF20161120
//A
int main()
{
int n;
cin>>n;
string s;
cin>>s;
int a[200]={0};
int pre=0;
int st=1;
for(int i=0;i<n;)
{
if(pre==0)
{
if(i+2<n&&s[i]=='o'&&s[i+1]=='g'&&s[i+2]=='o')
{
a[i]=st;a[i+1]=st;a[i+2]=st;
pre=1;i+=3;
}
else i++;
}
else if(pre==1)
{
if(i+1<n&&s[i]=='g'&&s[i+1]=='o')
{
a[i]=st;a[i+1]=st;
i+=2;
}else{
if(i+2<n&&s[i]=='o'&&s[i+1]=='g'&&s[i+2]=='o')
{
st++;
a[i]=st;a[i+1]=st;a[i+2]=st;
pre=1;i+=3;
}
else i++,pre=0;
}
}
}
for(int i=0;i<n;)
{
if(a[i]!=0)
{
int tmp=a[i];
cout<<"***";
while(i<n&&a[i]==tmp)
i++;
}
else cout<<s[i++];
}
cout<<endl;
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
28b8a457a56b326f2aaea5180db314df84ca8e3a | 3a9958147415bb7355fc4e43c9e16e7b95db8b76 | /src/tecgraf/iup/srcmglplot/src/exec.cpp | e91e1ac4050bbd8b2c576a48cb2fda8ea9f074c8 | [
"MIT"
] | permissive | sanikoyes/lua-tools | 4bd8d4ce1b77e3c811616894cd86cb17bcf32a8c | 513b3bbc316d8a35896528253415bbe189ede665 | refs/heads/master | 2021-01-21T05:02:52.642050 | 2016-05-30T10:24:38 | 2016-05-30T10:24:38 | 37,987,656 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 167,305 | cpp | /***************************************************************************
* exec.cpp is part of Math Graphic Library
* Copyright (C) 2007-2014 Alexey Balakin <mathgl.abalakin@gmail.ru> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library 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 Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifdef WIN32
#include <io.h>
#include <direct.h>
#else
#include <unistd.h>
#endif
#include "mgl2/base.h"
#include "mgl2/parser.h"
inline long iint(mreal x) {return long(x+0.5);}
wchar_t *mgl_str_copy(const char *s);
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_addlegend(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"ss")) gr->AddLegend(a[0].w.c_str(),a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_addto(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dd")) *d += *(a[1].d);
else if(!strcmp(k,"dn"))*d += a[1].v;
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_sort(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dn")) d->Sort(a[1].v, -1);
else if(!strcmp(k,"dnn")) d->Sort(a[1].v, a[2].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_alpha(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->Alpha(true);
else if(!strcmp(k,"n")) gr->Alpha(a[0].v!=0);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_plotid(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s")) gr->SetPlotId(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_mask(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"sn")) gr->SetMask(a[0].s[0],a[1].v);
else if(!strcmp(k,"ss")) gr->SetMask(a[0].s[0],a[1].s.c_str());
else if(!strcmp(k,"n")) gr->SetMaskAngle(iint(a[0].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_alphadef(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetAlphaDef(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ambient(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetAmbient(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_diffuse(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetDiffuse(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_area(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Area(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Area(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Area(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Area(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Area(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Area(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_aspect(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nn")) gr->Aspect(a[0].v, a[1].v, 1);
else if(!strcmp(k,"nnn")) gr->Aspect(a[0].v, a[1].v, a[2].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_axial(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Axial(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Axial(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Axial(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Axial(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_axis(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"")) gr->Axis("xyz","",opt);
else if(!strcmp(k,"s")) gr->Axis(a[0].s.c_str(), "",opt);
else if(!strcmp(k,"ss")) gr->Axis(a[0].s.c_str(), a[1].s.c_str(),opt);
else if(!strcmp(k,"sss")) gr->SetFunc(a[0].s.c_str(),a[1].s.c_str(),a[2].s.c_str(),"");
else if(!strcmp(k,"ssss")) gr->SetFunc(a[0].s.c_str(),a[1].s.c_str(),a[2].s.c_str(),a[3].s.c_str());
else if(!strcmp(k,"n")) gr->SetCoor(iint(a[0].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ball(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nn")) gr->Mark(mglPoint(a[0].v,a[1].v,NAN),"r.");
else if(!strcmp(k,"nns")) gr->Mark(mglPoint(a[0].v,a[1].v,NAN),a[2].s.c_str());
else if(!strcmp(k,"nnn")) gr->Mark(mglPoint(a[0].v,a[1].v,a[2].v),"r.");
else if(!strcmp(k,"nnns")) gr->Mark(mglPoint(a[0].v,a[1].v,a[2].v),a[3].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_box(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"")) gr->Box();
else if(!strcmp(k,"s")) gr->Box(a[0].s.c_str());
else if(!strcmp(k,"sn")) gr->Box(a[0].s.c_str(), a[1].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ohlc(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dddd")) gr->OHLC(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->OHLC(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddd")) gr->OHLC(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d), "",opt);
else if(!strcmp(k,"ddddds")) gr->OHLC(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d), a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_bars(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Bars(*(a[0].d), "",opt);
else if(!strcmp(k,"ds")) gr->Bars(*(a[0].d), a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Bars(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->Bars(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Bars(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Bars(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_barh(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Barh(*(a[0].d), "",opt);
else if(!strcmp(k,"ds")) gr->Barh(*(a[0].d), a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Barh(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->Barh(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cones(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Cones(*(a[0].d), "",opt);
else if(!strcmp(k,"ds")) gr->Cones(*(a[0].d), a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Cones(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->Cones(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Cones(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Cones(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_belt(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Belt(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Belt(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Belt(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Belt(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_boxs(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Boxs(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Boxs(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Boxs(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Boxs(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_beam(mglGraph *gr, long , mglArg *a, const char *k, const char *) // NOTE beam can be made obsolete ???
{
int res=0;
if(!strcmp(k,"ddddn"))
gr->Beam(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].v,"",0, 3);
else if(!strcmp(k,"ddddns"))
gr->Beam(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].v,a[5].s.c_str(),0, 3);
else if(!strcmp(k,"ddddnsn"))
gr->Beam(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].v,a[5].s.c_str(),iint(a[6].v), 3);
else if(!strcmp(k,"ddddnsnn"))
gr->Beam(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].v,a[5].s.c_str(),iint(a[6].v), iint(a[7].v));
else if(!strcmp(k,"nddddn"))
gr->Beam(a[0].v,*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].v,"",0);
else if(!strcmp(k,"nddddns"))
gr->Beam(a[0].v,*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].v,a[6].s.c_str(),0);
else if(!strcmp(k,"nddddnsn"))
gr->Beam(a[0].v,*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].v,a[6].s.c_str(),iint(a[7].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_clearlegend(mglGraph *gr, long , mglArg *, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->ClearLegend();
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_rasterize(mglGraph *gr, long , mglArg *, const char *, const char *)
{
gr->Rasterize(); return 0;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_background(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s")) gr->LoadBackground(a[0].s.c_str());
else if(!strcmp(k,"sn")) gr->LoadBackground(a[0].s.c_str(),a[1].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_clf(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->Clf();
else if(!strcmp(k,"s")) gr->Clf(a[0].s.c_str());
else if(!strcmp(k,"nnn")) gr->Clf(a[0].v,a[1].v,a[2].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_reset(mglGraph *gr, long , mglArg *, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->DefaultPlotParam();
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_chart(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Chart(*(a[0].d), "",opt);
else if(!strcmp(k,"ds")) gr->Chart(*(a[0].d), a[1].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cloud(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Cloud(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Cloud(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Cloud(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Cloud(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_crange(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"d")) gr->SetRange('c',*(a[0].d));
else if(!strcmp(k,"dn")) gr->SetRange('c',*(a[0].d),a[1].v);
else if(!strcmp(k,"nn")) gr->SetRange('c', a[0].v, a[1].v);
else if(!strcmp(k,"nnn"))
{
if(a[2].v) gr->AddRange('c', a[0].v, a[1].v);
else gr->SetRange('c', a[0].v, a[1].v);
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_crop(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dnns")) d->Crop(iint(a[1].v),iint(a[2].v),a[3].s.c_str()[0]);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_clean(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dn")) d->Clean(iint(a[1].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cumsum(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->CumSum(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_curve(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnnnnnnn"))
gr->Curve(mglPoint(a[0].v,a[1].v,NAN),
mglPoint(a[2].v,a[3].v),
mglPoint(a[4].v,a[5].v,NAN),
mglPoint(a[6].v,a[7].v));
else if(!strcmp(k,"nnnnnnnns"))
gr->Curve(mglPoint(a[0].v,a[1].v,NAN),
mglPoint(a[2].v,a[3].v),
mglPoint(a[4].v,a[5].v,NAN),
mglPoint(a[6].v,a[7].v), a[8].s.c_str());
else if(!strcmp(k,"nnnnnnnnnnnn"))
gr->Curve(mglPoint(a[0].v,a[1].v,a[2].v),
mglPoint(a[3].v,a[4].v,a[5].v),
mglPoint(a[6].v,a[7].v,a[8].v),
mglPoint(a[9].v,a[10].v,a[11].v));
else if(!strcmp(k,"nnnnnnnnnnnns"))
gr->Curve(mglPoint(a[0].v,a[1].v,a[2].v),
mglPoint(a[3].v,a[4].v,a[5].v),
mglPoint(a[6].v,a[7].v,a[8].v),
mglPoint(a[9].v,a[10].v,a[11].v), a[12].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cut(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetCut(a[0].v != 0);
else if(!strcmp(k,"nnnnnn"))
gr->SetCutBox(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v));
else if(!strcmp(k,"s")) gr->CutOff(a[0].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_crust(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ddd")) gr->Crust(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Crust(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_colorbar(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"")) gr->Colorbar();
else if(!strcmp(k,"s")) gr->Colorbar(a[0].s.c_str());
else if(!strcmp(k,"d")) gr->Colorbar(*(a[0].d));
else if(!strcmp(k,"ds")) gr->Colorbar(*(a[0].d), a[1].s.c_str());
else if(!strcmp(k,"snn")) gr->Colorbar(a[0].s.c_str(), a[1].v, a[2].v);
else if(!strcmp(k,"snnn")) gr->Colorbar(a[0].s.c_str(), a[1].v, a[2].v, a[3].v,1);
else if(!strcmp(k,"snnnn")) gr->Colorbar(a[0].s.c_str(), a[1].v, a[2].v, a[3].v,a[4].v);
else if(!strcmp(k,"dsnn")) gr->Colorbar(*(a[0].d), a[1].s.c_str(), a[2].v, a[3].v);
else if(!strcmp(k,"dsnnn")) gr->Colorbar(*(a[0].d), a[1].s.c_str(), a[2].v, a[3].v, a[4].v,1);
else if(!strcmp(k,"dsnnnn"))
gr->Colorbar(*(a[0].d), a[1].s.c_str(), a[2].v, a[3].v, a[4].v,a[5].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_copy(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dd")) d->Set(*(a[1].d));
else if(!strcmp(k,"dds"))
{ d->Set(*(a[1].d)); gr->Fill(*d, a[2].s.c_str()); }
else if(!strcmp(k,"dn")) *d = a[1].v;
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cont(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Cont(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Cont(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Cont(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->Cont(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Cont(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Cont(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Cont(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->Cont(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contv(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContV(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->ContV(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->ContV(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->ContV(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->ContV(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->ContV(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->ContV(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->ContV(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contf(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContF(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->ContF(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->ContF(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->ContF(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->ContF(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->ContF(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->ContF(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->ContF(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contd(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContD(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->ContD(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->ContD(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->ContD(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->ContD(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->ContD(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->ContD(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->ContD(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cont3(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Cont3(*(a[0].d), "", -1,opt);
else if(!strcmp(k,"ds")) gr->Cont3(*(a[0].d), a[1].s.c_str(), -1,opt);
else if(!strcmp(k,"dsn")) gr->Cont3(*(a[0].d), a[1].s.c_str(), iint(a[2].v),opt);
else if(!strcmp(k,"dd")) gr->Cont3(*(a[0].d), *(a[1].d), "", -1,opt);
else if(!strcmp(k,"dds")) gr->Cont3(*(a[0].d), *(a[1].d), a[2].s.c_str(),-1,opt);
else if(!strcmp(k,"ddsn")) gr->Cont3(*(a[0].d), *(a[1].d), a[2].s.c_str(),iint(a[3].v),opt);
else if(!strcmp(k,"dddd")) gr->Cont3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), "", -1,opt);
else if(!strcmp(k,"dddds")) gr->Cont3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),-1,opt);
else if(!strcmp(k,"ddddsn")) gr->Cont3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),iint(a[5].v),opt);
else if(!strcmp(k,"ddddd")) gr->Cont3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), "", -1,opt);
else if(!strcmp(k,"ddddds")) gr->Cont3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(),-1,opt);
else if(!strcmp(k,"dddddsn"))gr->Cont3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(),iint(a[6].v),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contf3(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContF3(*(a[0].d), "", -1,opt);
else if(!strcmp(k,"ds")) gr->ContF3(*(a[0].d), a[1].s.c_str(), -1,opt);
else if(!strcmp(k,"dsn")) gr->ContF3(*(a[0].d), a[1].s.c_str(), iint(a[2].v),opt);
else if(!strcmp(k,"dd")) gr->ContF3(*(a[0].d), *(a[1].d), "", -1,opt);
else if(!strcmp(k,"dds")) gr->ContF3(*(a[0].d), *(a[1].d), a[2].s.c_str(),-1,opt);
else if(!strcmp(k,"ddsn")) gr->ContF3(*(a[0].d), *(a[1].d), a[2].s.c_str(),iint(a[3].v),opt);
else if(!strcmp(k,"dddd")) gr->ContF3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), "", -1,opt);
else if(!strcmp(k,"dddds")) gr->ContF3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),-1,opt);
else if(!strcmp(k,"ddddsn")) gr->ContF3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(),iint(a[5].v),opt);
else if(!strcmp(k,"ddddd")) gr->ContF3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), "", -1,opt);
else if(!strcmp(k,"ddddds")) gr->ContF3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(),-1,opt);
else if(!strcmp(k,"dddddsn"))gr->ContF3(*(a[0].d), *(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(),iint(a[6].v),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contx(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContX(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->ContX(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->ContX(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contfx(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContFX(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->ContFX(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->ContFX(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_conty(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContY(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->ContY(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->ContY(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contfy(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContFY(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->ContFY(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->ContFY(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contz(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContZ(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->ContZ(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->ContZ(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_contfz(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->ContFZ(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->ContFZ(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->ContFZ(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cone(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnnnn")) gr->Cone(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v);
else if(!strcmp(k,"nnnnnnns")) gr->Cone(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v,-1, a[7].s.c_str());
else if(!strcmp(k,"nnnnnnnn")) gr->Cone(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v, a[7].v);
else if(!strcmp(k,"nnnnnnnns")) gr->Cone(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v, a[7].v, a[8].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ellipse(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn"))
gr->Ellipse(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].v);
else if(!strcmp(k,"nnnnns"))
gr->Ellipse(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].v, a[5].s.c_str());
else if(!strcmp(k,"nnnnnnn"))
gr->Ellipse(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v);
else if(!strcmp(k,"nnnnnnns"))
gr->Ellipse(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v, a[7].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_circle(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnn")) gr->Circle(mglPoint(a[0].v,a[1].v, NAN), a[2].v);
else if(!strcmp(k,"nnns")) gr->Circle(mglPoint(a[0].v,a[1].v, NAN), a[2].v, a[3].s.c_str());
else if(!strcmp(k,"nnnn")) gr->Circle(mglPoint(a[0].v,a[1].v,a[2].v), a[3].v);
else if(!strcmp(k,"nnnns")) gr->Circle(mglPoint(a[0].v,a[1].v,a[2].v), a[3].v, a[4].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_rhomb(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn"))
gr->Rhomb(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].v);
else if(!strcmp(k,"nnnnns"))
gr->Rhomb(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].v, a[5].s.c_str());
else if(!strcmp(k,"nnnnnnn"))
gr->Rhomb(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v);
else if(!strcmp(k,"nnnnnnns"))
gr->Rhomb(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v, a[7].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_polygon(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn"))
gr->Polygon(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), iint(a[4].v));
else if(!strcmp(k,"nnnnns"))
gr->Polygon(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), iint(a[4].v), a[5].s.c_str());
else if(!strcmp(k,"nnnnnnn"))
gr->Polygon(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), iint(a[6].v));
else if(!strcmp(k,"nnnnnnns"))
gr->Polygon(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), iint(a[6].v), a[7].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_arc(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn"))
gr->Arc(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].v);
else if(!strcmp(k,"nnnnns"))
gr->Arc(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].v, a[5].s.c_str());
else if(!strcmp(k,"nnnnnn"))
gr->Arc(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v), a[5].v);
else if(!strcmp(k,"nnnnnns"))
gr->Arc(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v), a[5].v, a[6].s.c_str());
else if(!strcmp(k,"nnnnnnnnnn"))
gr->Arc(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v, a[5].v), mglPoint(a[6].v,a[7].v, a[8].v), a[9].v);
else if(!strcmp(k,"nnnnnnnnnns"))
gr->Arc(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v, a[5].v), mglPoint(a[6].v,a[7].v, a[8].v), a[9].v, a[10].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_dens(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Dens(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Dens(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Dens(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Dens(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_dens3(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Dens3(*(a[0].d),"",-1,opt);
else if(!strcmp(k,"ds")) gr->Dens3(*(a[0].d),a[1].s.c_str(),-1,opt);
else if(!strcmp(k,"dsn")) gr->Dens3(*(a[0].d),a[1].s.c_str(),iint(a[2].v),opt);
else if(!strcmp(k,"dddd")) gr->Dens3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"", -1,opt);
else if(!strcmp(k,"dddds")) gr->Dens3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),-1,opt);
else if(!strcmp(k,"ddddsn")) gr->Dens3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),iint(a[5].v),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_densx(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->DensX(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->DensX(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->DensX(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_densy(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->DensY(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->DensY(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->DensY(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_densz(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->DensZ(*(a[0].d),"",NAN,opt);
else if(!strcmp(k,"ds")) gr->DensZ(*(a[0].d),a[1].s.c_str(),NAN,opt);
else if(!strcmp(k,"dsn")) gr->DensZ(*(a[0].d),a[1].s.c_str(),a[2].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_divto(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dd")) *d /= *(a[1].d);
else if(!strcmp(k,"dn")) *d /= a[1].v;
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_multo(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dd")) *d *= *(a[1].d);
else if(!strcmp(k,"dn")) *d *= a[1].v;
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_subto(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dd")) *d -= *(a[1].d);
else if(!strcmp(k,"dn")) *d -= a[1].v;
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_dots(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ddd")) gr->Dots(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Dots(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Dots(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Dots(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddd")) gr->Dots(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"ddddds"))gr->Dots(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_diff(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->Diff(a[1].s.c_str());
else if(!strcmp(k,"ddd")) d->Diff(*(a[1].d), *(a[2].d));
else if(!strcmp(k,"dddd")) d->Diff(*(a[1].d), *(a[2].d), *(a[3].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_diff2(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->Diff2(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_drop(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn"))
gr->Drop(mglPoint(a[0].v,a[1].v), mglPoint(a[2].v,a[3].v), a[4].v);
else if(!strcmp(k,"nnnnns"))
gr->Drop(mglPoint(a[0].v,a[1].v), mglPoint(a[2].v,a[3].v), a[4].v, a[5].s.c_str());
else if(!strcmp(k,"nnnnnsn"))
gr->Drop(mglPoint(a[0].v,a[1].v), mglPoint(a[2].v,a[3].v), a[4].v, a[5].s.c_str(), a[6].v);
else if(!strcmp(k,"nnnnnsnn"))
gr->Drop(mglPoint(a[0].v,a[1].v), mglPoint(a[2].v,a[3].v), a[4].v, a[5].s.c_str(), a[6].v, a[7].v);
else if(!strcmp(k,"nnnnnnn"))
gr->Drop(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v);
else if(!strcmp(k,"nnnnnnns"))
gr->Drop(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v, a[7].s.c_str());
else if(!strcmp(k,"nnnnnnnsn"))
gr->Drop(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v, a[7].s.c_str(), a[8].v);
else if(!strcmp(k,"nnnnnnnsnn"))
gr->Drop(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].v, a[7].s.c_str(), a[8].v, a[9].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_dew(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Dew(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Dew(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Dew(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Dew(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fall(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Fall(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Fall(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Fall(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Fall(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_mesh(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Mesh(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Mesh(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Mesh(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Mesh(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_surf(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Surf(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Surf(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Surf(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Surf(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_surfc(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->SurfC(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->SurfC(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->SurfC(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->SurfC(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_surfa(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->SurfA(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->SurfA(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->SurfA(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->SurfA(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_flow(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Flow(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Flow(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Flow(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Flow(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Flow(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Flow(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"dddddd"))
gr->Flow(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"dddddds"))
gr->Flow(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else if(!strcmp(k,"nndd"))
gr->FlowP(mglPoint(a[0].v,a[1].v,NAN), *(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"nndds"))
gr->FlowP(mglPoint(a[0].v,a[1].v,NAN), *(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"nndddd"))
gr->FlowP(mglPoint(a[0].v,a[1].v,NAN), *(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"nndddds"))
gr->FlowP(mglPoint(a[0].v,a[1].v,NAN), *(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else if(!strcmp(k,"nnnddd"))
gr->FlowP(mglPoint(a[0].v,a[1].v,a[2].v), *(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"nnnddds"))
gr->FlowP(mglPoint(a[0].v,a[1].v,a[2].v), *(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else if(!strcmp(k,"nnndddddd"))
gr->FlowP(mglPoint(a[0].v,a[1].v,a[2].v), *(a[3].d),*(a[4].d),*(a[5].d),*(a[6].d),*(a[7].d),*(a[8].d),"",opt);
else if(!strcmp(k,"nnndddddds"))
gr->FlowP(mglPoint(a[0].v,a[1].v,a[2].v), *(a[3].d),*(a[4].d),*(a[5].d),*(a[6].d),*(a[7].d),*(a[8].d),a[9].s.c_str(),opt);
else res = 1;
return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_grad(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Grad(*(a[0].d), "",opt);
else if(!strcmp(k,"ds")) gr->Grad(*(a[0].d), a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Grad(*(a[0].d),*(a[1].d),*(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Grad(*(a[0].d),*(a[1].d),*(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Grad(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->Grad(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fill(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dnn")) d->Fill(a[1].v,a[2].v);
else if(!strcmp(k,"dnns")) d->Fill(a[1].v,a[2].v,a[3].s.c_str()[0]);
else if(!strcmp(k,"ds")) gr->Fill(*d,a[1].s.c_str(),opt);
else if(!strcmp(k,"dsd")) gr->Fill(*d,a[1].s.c_str(), *(a[2].d),opt);
else if(!strcmp(k,"dsdd")) gr->Fill(*d,a[1].s.c_str(), *(a[2].d), *(a[3].d),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_refill(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddd")) gr->Refill(*d,*(a[1].d),*(a[2].d),-1,opt);
else if(!strcmp(k,"dddn")) gr->Refill(*d,*(a[1].d),*(a[2].d),iint(a[3].v),opt);
else if(!strcmp(k,"dddd")) gr->Refill(*d,*(a[1].d),*(a[2].d),*(a[3].d),-1,opt);
else if(!strcmp(k,"ddddn")) gr->Refill(*d,*(a[1].d),*(a[2].d),*(a[3].d),iint(a[4].v),opt);
else if(!strcmp(k,"ddddd")) gr->Refill(*d,*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_gspline(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddd")) d->RefillGS(*(a[1].d),*(a[2].d),gr->Self()->Min.x,gr->Self()->Max.x,-1);
else if(!strcmp(k,"dddn")) d->RefillGS(*(a[1].d),*(a[2].d),gr->Self()->Min.x,gr->Self()->Max.x,iint(a[3].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fillsample(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->FillSample(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fog(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->Fog(a[0].v);
else if(!strcmp(k,"nn")) gr->Fog(a[0].v,a[1].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_font(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s")) gr->SetFontDef(a[0].s.c_str());
else if(!strcmp(k,"sn"))
{ gr->SetFontDef(a[0].s.c_str()); gr->SetFontSize(a[1].v); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_loadfont(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"") || (!strcmp(k,"s") && a[0].s[0]==0)) gr->RestoreFont();
else if(!strcmp(k,"s")) gr->LoadFont(a[0].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_grid(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"")) gr->Grid("xyzt", "B",opt);
else if(!strcmp(k,"s")) gr->Grid(a[0].s.c_str(), "B",opt);
else if(!strcmp(k,"ss"))gr->Grid(a[0].s.c_str(), a[1].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_grid2(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Grid(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Grid(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Grid(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Grid(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_grid3(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Grid3(*(a[0].d),"",-1,opt);
else if(!strcmp(k,"ds")) gr->Grid3(*(a[0].d),a[1].s.c_str(),-1,opt);
else if(!strcmp(k,"dsn")) gr->Grid3(*(a[0].d),a[1].s.c_str(),iint(a[2].v),opt);
else if(!strcmp(k,"dddd")) gr->Grid3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",-1,opt);
else if(!strcmp(k,"dddds")) gr->Grid3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),-1,opt);
else if(!strcmp(k,"ddddsn"))gr->Grid3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),iint(a[5].v),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_light(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->Light(true);
else if(!strcmp(k,"n")) gr->Light(a[0].v!=0);
else if(!strcmp(k,"nn")) gr->Light(iint(a[0].v),a[1].v!=0);
else if(!strcmp(k,"nnnn")) gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v));
else if(!strcmp(k,"nnnns")) gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v), a[4].s.c_str()[0]);
else if(!strcmp(k,"nnnnsn"))gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v), a[4].s.c_str()[0],a[5].v);
else if(!strcmp(k,"nnnnsnn"))
gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v), a[4].s.c_str()[0],a[5].v,a[6].v);
else if(!strcmp(k,"nnnnnnn"))
gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v),mglPoint(a[4].v,a[5].v,a[6].v));
else if(!strcmp(k,"nnnnnnns"))
gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v),mglPoint(a[4].v,a[5].v,a[6].v), a[7].s.c_str()[0]);
else if(!strcmp(k,"nnnnnnnsn"))
gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v),mglPoint(a[4].v,a[5].v,a[6].v), a[7].s.c_str()[0],a[8].v);
else if(!strcmp(k,"nnnnnnnsnn"))
gr->AddLight(iint(a[0].v),mglPoint(a[1].v,a[2].v,a[3].v),mglPoint(a[4].v,a[5].v,a[6].v), a[7].s.c_str()[0],a[8].v,a[9].v);
return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_line(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnn"))
gr->Line(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN));
else if(!strcmp(k,"nnnns"))
gr->Line(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].s.c_str());
else if(!strcmp(k,"nnnnnn"))
gr->Line(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v));
else if(!strcmp(k,"nnnnnns"))
gr->Line(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_errbox(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnn"))
gr->Error(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN));
else if(!strcmp(k,"nnnns"))
gr->Error(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN), a[4].s.c_str());
else if(!strcmp(k,"nnnnnn"))
gr->Error(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v));
else if(!strcmp(k,"nnnnnns"))
gr->Error(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_legend(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"")) gr->Legend(3, "#", opt);
else if(!strcmp(k,"n")) gr->Legend(iint(a[0].v), "#", opt);
else if(!strcmp(k,"ns")) gr->Legend(iint(a[0].v), a[1].s.c_str(), opt);
else if(!strcmp(k,"nn")) gr->Legend(a[0].v, a[1].v, "#", opt);
else if(!strcmp(k,"nns")) gr->Legend(a[0].v, a[1].v, a[2].s.c_str(), opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_barwidth(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetBarWidth(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_legendmarks(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetLegendMarks(iint(a[0].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_modify(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->Modify(a[1].s.c_str());
else if(!strcmp(k,"dsn")) d->Modify(a[1].s.c_str(), iint(a[2].v));
else if(!strcmp(k,"dsd")) d->Modify(a[1].s.c_str(),*(a[2].d));
else if(!strcmp(k,"dsdd")) d->Modify(a[1].s.c_str(),*(a[2].d),*(a[3].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_max(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dds")) *d = mglData(true,mgl_data_max_dir(a[1].d,a[2].s.c_str()));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_min(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dds")) *d = mglData(true,mgl_data_min_dir(a[1].d,a[2].s.c_str()));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_sum(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dds")) *d = mglData(true,mgl_data_sum(a[1].d,a[2].s.c_str()));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_meshnum(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetMeshNum(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_facenum(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetFaceNum(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_quality(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->SetQuality();
else if(!strcmp(k,"n")) gr->SetQuality(iint(a[0].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_marksize(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetMarkSize(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_mark(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Mark(*(a[0].d), *(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->Mark(*(a[0].d), *(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Mark(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Mark(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Mark(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->Mark(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_map(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Map(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Map(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Map(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Map(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_read(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
bool rr=true;
mglData *d = dynamic_cast<mglData *>(a[0].d);
mglData *f = dynamic_cast<mglData *>(a[1].d);
if(!d) return 1;
mglDataC c;
if(!strcmp(k,"ds"))
{ rr=c.Read(a[1].s.c_str()); *d = c.Real(); }
else if(!strcmp(k,"dsn"))
{ rr=c.Read(a[1].s.c_str(), iint(a[2].v)); *d = c.Real(); }
else if(!strcmp(k,"dsnn"))
{ rr=c.Read(a[1].s.c_str(), iint(a[2].v),iint(a[3].v)); *d = c.Real(); }
else if(!strcmp(k,"dsnnn"))
{ rr=c.Read(a[1].s.c_str(), iint(a[2].v),iint(a[3].v),iint(a[4].v)); *d = c.Real(); }
if(!strcmp(k,"dds") && f)
{ rr=c.Read(a[2].s.c_str()); *d = c.Real(); *f = c.Imag(); }
if(!strcmp(k,"ddsn") && f)
{ rr=c.Read(a[2].s.c_str(), iint(a[3].v)); *d = c.Real(); *f = c.Imag(); }
if(!strcmp(k,"ddsnn") && f)
{ rr=c.Read(a[2].s.c_str(), iint(a[3].v),iint(a[4].v)); *d = c.Real(); *f = c.Imag(); }
if(!strcmp(k,"ddsnnn") && f)
{ rr=c.Read(a[2].s.c_str(), iint(a[3].v),iint(a[4].v),iint(a[5].v)); *d = c.Real(); *f = c.Imag(); }
if(!rr) gr->SetWarn(mglWarnFile,"Read");
return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_readmat(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
bool rr=true;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) rr=d->ReadMat(a[1].s.c_str());
else if(!strcmp(k,"dsn")) rr=d->ReadMat(a[1].s.c_str(), iint(a[2].v));
else res = 1;
if(!rr) gr->SetWarn(mglWarnFile,"ReadMat");
return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_readall(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
bool rr=true;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) rr=d->ReadAll(a[1].s.c_str());
else if(!strcmp(k,"dsn")) rr=d->ReadAll(a[1].s.c_str(), a[2].v);
else if(!strcmp(k,"dsnn")) rr=d->ReadRange(a[1].s.c_str(), a[2].v, a[3].v);
else if(!strcmp(k,"dsnnn")) rr=d->ReadRange(a[1].s.c_str(), a[2].v, a[3].v, a[4].v);
else if(!strcmp(k,"dsnnnn"))rr=d->ReadRange(a[1].s.c_str(), a[2].v, a[3].v, a[4].v, a[5].v);
else res = 1;
if(!rr) gr->SetWarn(mglWarnFile,"ReadMat");
return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_readhdf(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dss")) d->ReadHDF(a[1].s.c_str(), a[2].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_savehdf(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"dss")) a[0].d->SaveHDF(a[1].s.c_str(), a[2].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_rect(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnn"))
gr->Face(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[0].v,a[3].v,NAN),
mglPoint(a[2].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN));
else if(!strcmp(k,"nnnns"))
gr->Face(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[0].v,a[3].v,NAN),
mglPoint(a[2].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN),a[4].s.c_str());
else if(!strncmp(k,"nnnnnn",6))
{
if(a[0].v==a[3].v) gr->Face(mglPoint(a[0].v,a[1].v,a[2].v),
mglPoint(a[0].v,a[4].v,a[2].v),
mglPoint(a[3].v,a[1].v,a[5].v),
mglPoint(a[3].v,a[4].v,a[5].v),
k[6]=='s' ? a[6].s.c_str() : 0);
else gr->Face(mglPoint(a[0].v,a[1].v,a[2].v),
mglPoint(a[0].v,a[4].v,a[5].v),
mglPoint(a[3].v,a[1].v,a[2].v),
mglPoint(a[3].v,a[4].v,a[5].v),
k[6]=='s' ? a[6].s.c_str() : 0);
}
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_face(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnnnnn"))
gr->Face(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN),
mglPoint(a[4].v,a[5].v,NAN), mglPoint(a[6].v,a[7].v,NAN));
else if(!strcmp(k,"nnnnnnnns"))
gr->Face(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v,NAN),
mglPoint(a[4].v,a[5].v,NAN), mglPoint(a[6].v,a[7].v,NAN), a[8].s.c_str());
else if(!strcmp(k,"nnnnnnnnnnnn"))
gr->Face(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v),
mglPoint(a[6].v,a[7].v,a[8].v), mglPoint(a[9].v,a[10].v,a[11].v));
else if(!strcmp(k,"nnnnnnnnnnnns"))
gr->Face(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v),
mglPoint(a[6].v,a[7].v,a[8].v), mglPoint(a[9].v,a[10].v,a[11].v), a[12].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_logo(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"s")) gr->Logo(a[0].s.c_str(),false,opt);
else if(!strcmp(k,"sn")) gr->Logo(a[0].s.c_str(),iint(a[1].v),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_resize(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddn")) *d = mglData(true,mgl_data_resize_box(a[1].d, iint(a[2].v),0,0, 0,1, 0,1, 0,1));
else if(!strcmp(k,"ddnn")) *d = mglData(true,mgl_data_resize_box(a[1].d, iint(a[2].v),iint(a[3].v),0, 0,1, 0,1, 0,1));
else if(!strcmp(k,"ddnnn")) *d = mglData(true,mgl_data_resize_box(a[1].d, iint(a[2].v),iint(a[3].v),iint(a[4].v), 0,1, 0,1, 0,1));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_rotate(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nn")) gr->Rotate(a[0].v, a[1].v, 0);
else if(!strcmp(k,"nnn")) gr->Rotate(a[0].v, a[1].v, a[2].v);
else if(!strcmp(k,"nnnn")) gr->RotateN(a[0].v, a[1].v, a[2].v, a[3].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_rotatetext(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetRotatedText(a[0].v!=0);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tuneticks(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetTuneTicks(iint(a[0].v));
else if(!strcmp(k,"nn")) gr->SetTuneTicks(iint(a[0].v),a[1].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ticktime(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s")) gr->SetTicksTime(a[0].s[0]);
else if(!strcmp(k,"sn")) gr->SetTicksTime(a[0].s[0],a[1].v);
else if(!strcmp(k,"sns")) gr->SetTicksTime(a[0].s[0],a[1].v,a[2].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_save(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"ds")) a[0].d->Save(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_smooth(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"d")) d->Smooth();
else if(!strcmp(k,"ds")) d->Smooth(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_swap(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->Swap(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_idset(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
mglDataC *c = dynamic_cast<mglDataC *>(a[0].d);
if(!strcmp(k,"ds") && d) d->SetColumnId(a[1].s.c_str());
else if(!strcmp(k,"ds") && c) c->SetColumnId(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_stem(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Stem(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Stem(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Stem(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Stem(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Stem(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Stem(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_step(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Step(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Step(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Step(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Step(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Step(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Step(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_plot(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Plot(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Plot(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Plot(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Plot(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Plot(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Plot(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tape(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Tape(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Tape(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Tape(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Tape(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Tape(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Tape(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_boxplot(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->BoxPlot(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->BoxPlot(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->BoxPlot(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->BoxPlot(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_candle(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Candle(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Candle(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dd")) gr->Candle(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Candle(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Candle(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Candle(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Candle(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Candle(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddd")) gr->Candle(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"ddddds"))gr->Candle(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_radar(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Radar(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Radar(*(a[0].d),a[1].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_squeeze(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dn")) d->Squeeze(iint(a[1].v));
else if(!strcmp(k,"dnn")) d->Squeeze(iint(a[1].v), iint(a[2].v));
else if(!strcmp(k,"dnnn")) d->Squeeze(iint(a[1].v), iint(a[2].v),iint(a[3].v));
else if(!strcmp(k,"dnnnn")) d->Squeeze(iint(a[1].v), iint(a[2].v),iint(a[3].v), a[4].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_stfad(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dddn"))
*d = mglSTFA(*(a[1].d),*(a[2].d), iint(a[3].v));
else if(!strcmp(k,"dddns"))
*d = mglSTFA(*(a[1].d),*(a[2].d), iint(a[3].v), a[4].s.c_str()[0]);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_setsize(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nn") && a[1].v>1 && a[0].v>1)
gr->SetSize(iint(a[0].v), iint(a[1].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_sphere(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnn")) gr->Sphere(mglPoint(a[0].v,a[1].v), a[2].v);
else if(!strcmp(k,"nnns")) gr->Sphere(mglPoint(a[0].v,a[1].v), a[2].v, a[3].s.c_str());
else if(!strcmp(k,"nnnn")) gr->Sphere(mglPoint(a[0].v,a[1].v,a[2].v), a[3].v);
else if(!strcmp(k,"nnnns")) gr->Sphere(mglPoint(a[0].v,a[1].v,a[2].v), a[3].v, a[4].s.c_str());
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_stfa(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ddn"))
gr->STFA(*(a[0].d),*(a[1].d), iint(a[2].v), "",opt);
else if(!strcmp(k,"ddns"))
gr->STFA(*(a[0].d),*(a[1].d), iint(a[2].v), a[3].s.c_str(),opt);
else if(!strcmp(k,"ddddn"))
gr->STFA(*(a[0].d),*(a[1].d), *(a[2].d),*(a[3].d), iint(a[4].v), "",opt);
else if(!strcmp(k,"ddddns"))
gr->STFA(*(a[0].d),*(a[1].d), *(a[2].d),*(a[3].d), iint(a[4].v), a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_surf3(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Surf3(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Surf3(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"dn")) gr->Surf3(a[1].v,*(a[0].d),"",opt);
else if(!strcmp(k,"dns")) gr->Surf3(a[1].v,*(a[0].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Surf3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->Surf3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddn")) gr->Surf3(a[4].v,*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"ddddns"))gr->Surf3(a[4].v,*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_surf3c(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Surf3C(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Surf3C(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddn")) gr->Surf3C(a[2].v,*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"ddns")) gr->Surf3C(a[2].v,*(a[0].d),*(a[1].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"ddddd"))
gr->Surf3C(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d), "",opt);
else if(!strcmp(k,"ddddds"))
gr->Surf3C(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d), a[5].s.c_str(),opt);
else if(!strcmp(k,"dddddn"))
gr->Surf3C(a[5].v,*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"dddddns"))
gr->Surf3C(a[5].v,*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[6].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_surf3a(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Surf3A(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Surf3A(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddn")) gr->Surf3A(a[2].v,*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"ddns")) gr->Surf3A(a[2].v,*(a[0].d),*(a[1].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"ddddd"))
gr->Surf3A(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d), "",opt);
else if(!strcmp(k,"ddddds"))
gr->Surf3A(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d), a[5].s.c_str(),opt);
else if(!strcmp(k,"dddddn"))
gr->Surf3A(a[5].v,*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"dddddns"))
gr->Surf3A(a[5].v,*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[6].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_subplot(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnn")) gr->SubPlot(iint(a[0].v), iint(a[1].v), iint(a[2].v));
else if(!strcmp(k,"nnns")) gr->SubPlot(iint(a[0].v), iint(a[1].v), iint(a[2].v), a[3].s.c_str());
else if(!strcmp(k,"nnnsnn")) gr->SubPlot(iint(a[0].v), iint(a[1].v), iint(a[2].v), a[3].s.c_str(), a[4].v,a[5].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_multiplot(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnnnn"))
gr->MultiPlot(iint(a[0].v), iint(a[1].v), iint(a[2].v), iint(a[3].v), iint(a[4].v));
else if(!strcmp(k,"nnnnns"))
gr->MultiPlot(iint(a[0].v), iint(a[1].v), iint(a[2].v), iint(a[3].v), iint(a[4].v), a[5].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_title(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"s")) gr->Title(a[0].w.c_str());
else if(!strcmp(k,"ss")) gr->Title(a[0].w.c_str(), a[1].s.c_str());
else if(!strcmp(k,"ssn")) gr->Title(a[0].w.c_str(), a[1].s.c_str(),a[2].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_column(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dds")) *d = mglData(true,mgl_data_column(a[1].d,a[2].s.c_str()));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_subdata(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddn")) *d = mglData(true,mgl_data_subdata(a[1].d, iint(a[2].v), -1, -1));
else if(!strcmp(k,"ddnn")) *d = mglData(true,mgl_data_subdata(a[1].d, iint(a[2].v), iint(a[3].v), -1));
else if(!strcmp(k,"ddnnn")) *d = mglData(true,mgl_data_subdata(a[1].d, iint(a[2].v), iint(a[3].v), iint(a[4].v)));
else if(!strcmp(k,"ddd")) *d = mglSubData(*(a[1].d), *(a[2].d));
else if(!strcmp(k,"dddd")) *d = mglSubData(*(a[1].d), *(a[2].d), *(a[3].d));
else if(!strcmp(k,"ddddd")) *d = mglSubData(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d));
else res = 1;
return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_trace(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dd")) *d = mglData(true,mgl_data_trace(a[1].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tile(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Tile(*(a[0].d),"",opt);
else if(!strcmp(k,"ds")) gr->Tile(*(a[0].d),a[1].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Tile(*(a[0].d), *(a[1].d), *(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Tile(*(a[0].d), *(a[1].d), *(a[2].d), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tiles(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->TileS(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->TileS(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->TileS(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->TileS(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_text(mglGraph *gr, long , mglArg *a, const char *k, const char *opt) // NOTE don't use options -- Puts can be part of group
{
int res=0;
if(k[0]=='n')
{
gr->Self()->SaveState(opt);
if(!strcmp(k,"nns")) gr->Putsw(mglPoint(a[0].v,a[1].v,NAN),a[2].w.c_str());
else if(!strcmp(k,"nnss")) gr->Putsw(mglPoint(a[0].v,a[1].v,NAN),a[2].w.c_str(), a[3].s.c_str());
else if(!strcmp(k,"nnssn")) gr->Putsw(mglPoint(a[0].v,a[1].v,NAN),a[2].w.c_str(), a[3].s.c_str(),a[4].v);
else if(!strcmp(k,"nnns")) gr->Putsw(mglPoint(a[0].v,a[1].v,a[2].v),a[3].w.c_str());
else if(!strcmp(k,"nnnss")) gr->Putsw(mglPoint(a[0].v,a[1].v,a[2].v),a[3].w.c_str(), a[4].s.c_str());
else if(!strcmp(k,"nnnssn")) gr->Putsw(mglPoint(a[0].v,a[1].v,a[2].v),a[3].w.c_str(), a[4].s.c_str(),a[5].v);
else if(!strcmp(k,"nnnns")) gr->Putsw(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v), a[4].w.c_str());
else if(!strcmp(k,"nnnnss")) gr->Putsw(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v), a[4].w.c_str(), a[5].s.c_str());
else if(!strcmp(k,"nnnnssn")) gr->Putsw(mglPoint(a[0].v,a[1].v,NAN), mglPoint(a[2].v,a[3].v), a[4].w.c_str(), a[5].s.c_str(),a[6].v);
else if(!strcmp(k,"nnnnnns")) gr->Putsw(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].w.c_str());
else if(!strcmp(k,"nnnnnnss")) gr->Putsw(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].w.c_str(), a[7].s.c_str());
else if(!strcmp(k,"nnnnnnssn")) gr->Putsw(mglPoint(a[0].v,a[1].v,a[2].v), mglPoint(a[3].v,a[4].v,a[5].v), a[6].w.c_str(), a[7].s.c_str(),a[8].v);
else res=1;
gr->Self()->LoadState();
}
else if(!strcmp(k,"ds")) gr->Text(*(a[0].d),a[1].w.c_str(),"",opt);
else if(!strcmp(k,"dss")) gr->Text(*(a[0].d),a[1].w.c_str(),a[2].s.c_str(),opt);
else if(!strcmp(k,"dds")) gr->Text(*(a[0].d),*(a[1].d),a[2].w.c_str(),"",opt);
else if(!strcmp(k,"ddss")) gr->Text(*(a[0].d),*(a[1].d),a[2].w.c_str(),a[3].s.c_str(),opt);
else if(!strcmp(k,"ddds")) gr->Text(*(a[0].d),*(a[1].d),*(a[2].d),a[3].w.c_str(),"",opt);
else if(!strcmp(k,"dddss")) gr->Text(*(a[0].d),*(a[1].d),*(a[2].d),a[3].w.c_str(),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_torus(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Torus(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Torus(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_transptype(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetTranspType(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fourier(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *re = dynamic_cast<mglData *>(a[0].d), *im = dynamic_cast<mglData *>(a[1].d);
if(!strcmp(k,"dds") && re && im) mglFourier(*re,*im,a[2].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_transform(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"dsdd") && d) *d = mglTransform(*(a[2].d),*(a[3].d),a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_transforma(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"dsdd") && d) *d = mglTransformA(*(a[2].d),*(a[3].d),a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tube(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dn"))
gr->Tube(*(a[0].d),a[1].v,"",opt);
else if(!strcmp(k,"dns"))
gr->Tube(*(a[0].d),a[1].v,a[2].s.c_str(),opt);
else if(!strcmp(k,"dd"))
gr->Tube(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds"))
gr->Tube(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddn"))
gr->Tube(*(a[0].d),*(a[1].d),a[2].v,"",opt);
else if(!strcmp(k,"ddns"))
gr->Tube(*(a[0].d),*(a[1].d),a[2].v,a[3].s.c_str(),opt);
else if(!strcmp(k,"ddd"))
gr->Tube(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds"))
gr->Tube(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddn"))
gr->Tube(*(a[0].d),*(a[1].d),*(a[2].d),a[3].v,"",opt);
else if(!strcmp(k,"dddns"))
gr->Tube(*(a[0].d),*(a[1].d),*(a[2].d),a[3].v,a[4].s.c_str(),opt);
else if(!strcmp(k,"dddd"))
gr->Tube(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds"))
gr->Tube(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_textmark(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ds")) gr->TextMark(*(a[0].d),a[1].w.c_str(),"",opt);
else if(!strcmp(k,"dss")) gr->TextMark(*(a[0].d),a[1].w.c_str(),a[2].s.c_str(),opt);
else if(!strcmp(k,"dds")) gr->TextMark(*(a[0].d),*(a[1].d),a[2].w.c_str(),"",opt);
else if(!strcmp(k,"ddss")) gr->TextMark(*(a[0].d),*(a[1].d),a[2].w.c_str(),a[3].s.c_str(),opt);
else if(!strcmp(k,"ddds")) gr->TextMark(*(a[0].d),*(a[1].d),*(a[2].d),a[3].w.c_str(),"",opt);
else if(!strcmp(k,"dddss")) gr->TextMark(*(a[0].d),*(a[1].d),*(a[2].d),a[3].w.c_str(),a[4].s.c_str(),opt);
else if(!strcmp(k,"dddds")) gr->TextMark(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].w.c_str(),"",opt);
else if(!strcmp(k,"ddddss"))gr->TextMark(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].w.c_str(),a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_triplot(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ddd")) gr->TriPlot(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->TriPlot(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->TriPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->TriPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddd")) gr->TriPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"ddddds"))gr->TriPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_quadplot(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ddd")) gr->QuadPlot(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->QuadPlot(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->QuadPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->QuadPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddd")) gr->QuadPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"ddddds"))gr->QuadPlot(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tricont(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dddd"))
gr->TriCont(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds"))
gr->TriCont(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddd"))
gr->TriContV(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"ddddds"))
gr->TriContV(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].s.c_str(),opt);
else if(!strcmp(k,"dddddd"))
gr->TriCont(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"dddddds"))
gr->TriCont(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tricontv(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dddd"))
gr->TriContVt(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds"))
gr->TriContVt(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"ddddd"))
gr->TriContVt(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),"",opt);
else if(!strcmp(k,"ddddds"))
gr->TriContVt(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),a[5].s.c_str(),opt);
else if(!strcmp(k,"dddddd"))
gr->TriContVt(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"dddddds"))
gr->TriContVt(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ternary(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->Ternary(int(a[0].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_transpose(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"d")) d->Transpose();
else if(!strcmp(k,"ds")) d->Transpose(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_vect(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Vect(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Vect(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Vect(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Vect(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Vect(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Vect(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"dddddd")) gr->Vect(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"dddddds")) gr->Vect(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_vect3(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ddd"))
gr->Vect3(*(a[0].d),*(a[1].d),*(a[2].d),"",-1,opt);
else if(!strcmp(k,"ddds"))
gr->Vect3(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),-1,opt);
else if(!strcmp(k,"dddsn"))
gr->Vect3(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),a[4].v,opt);
else if(!strcmp(k,"dddddd"))
gr->Vect3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",-1,opt);
else if(!strcmp(k,"dddddds"))
gr->Vect3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),-1,opt);
else if(!strcmp(k,"ddddddsn"))
gr->Vect3(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),a[7].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_traj(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dddd"))
gr->Traj(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds"))
gr->Traj(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"dddddd"))
gr->Traj(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"dddddds"))
gr->Traj(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_xlabel(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"s")) gr->Label('x', a[0].w.c_str(), 1, opt);
else if(!strcmp(k,"sn")) gr->Label('x', a[0].w.c_str(), a[1].v, opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ylabel(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"s")) gr->Label('y', a[0].w.c_str(), 1, opt);
else if(!strcmp(k,"sn")) gr->Label('y', a[0].w.c_str(), a[1].v, opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_zlabel(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"s")) gr->Label('z', a[0].w.c_str(), 1, opt);
else if(!strcmp(k,"sn")) gr->Label('z', a[0].w.c_str(), a[1].v, opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tlabel(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"s")) gr->Label('t', a[0].w.c_str(), 1, opt);
else if(!strcmp(k,"sn")) gr->Label('t', a[0].w.c_str(), a[1].v, opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_label(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"ds")) gr->Label(*(a[0].d), a[1].w.c_str(), "",opt);
else if(!strcmp(k,"dss")) gr->Label(*(a[0].d), a[1].w.c_str(), a[2].s.c_str(),opt);
else if(!strcmp(k,"dds")) gr->Label(*(a[0].d), *(a[1].d), a[2].w.c_str(), "",opt);
else if(!strcmp(k,"ddss")) gr->Label(*(a[0].d), *(a[1].d), a[2].w.c_str(), a[3].s.c_str(),opt);
else if(!strcmp(k,"ddds")) gr->Label(*(a[0].d), *(a[1].d), *(a[2].d), a[3].w.c_str(), "",opt);
else if(!strcmp(k,"dddss")) gr->Label(*(a[0].d), *(a[1].d), *(a[2].d), a[3].w.c_str(), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_table(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"d")) gr->Table(*(a[0].d), L"", "#|",opt);
else if(!strcmp(k,"ds")) gr->Table(*(a[0].d), a[1].w.c_str(), "#|",opt);
else if(!strcmp(k,"dss")) gr->Table(*(a[0].d), a[1].w.c_str(), a[2].s.c_str(),opt);
else if(!strcmp(k,"nnd")) gr->Table(a[0].v, a[1].v, *(a[2].d), L"", "#|",opt);
else if(!strcmp(k,"nnds")) gr->Table(a[0].v, a[1].v, *(a[2].d), a[3].w.c_str(), "#|",opt);
else if(!strcmp(k,"nndss")) gr->Table(a[0].v, a[1].v, *(a[2].d), a[3].w.c_str(), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_xrange(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"d")) gr->SetRange('x',*(a[0].d));
else if(!strcmp(k,"dn")) gr->SetRange('x',*(a[0].d),a[1].v);
else if(!strcmp(k,"nn")) gr->SetRange('x', a[0].v, a[1].v);
else if(!strcmp(k,"nnn"))
{
if(a[2].v) gr->AddRange('x', a[0].v, a[1].v);
else gr->SetRange('x', a[0].v, a[1].v);
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_yrange(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"d")) gr->SetRange('y',*(a[0].d));
else if(!strcmp(k,"dn")) gr->SetRange('y',*(a[0].d),a[1].v);
else if(!strcmp(k,"nn")) gr->SetRange('y', a[0].v, a[1].v);
else if(!strcmp(k,"nnn"))
{
if(a[2].v) gr->AddRange('y', a[0].v, a[1].v);
else gr->SetRange('y', a[0].v, a[1].v);
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_zrange(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"d")) gr->SetRange('z',*(a[0].d));
else if(!strcmp(k,"dn")) gr->SetRange('z',*(a[0].d),a[1].v);
else if(!strcmp(k,"nn")) gr->SetRange('z', a[0].v, a[1].v);
else if(!strcmp(k,"nnn"))
{
if(a[2].v) gr->AddRange('z', a[0].v, a[1].v);
else gr->SetRange('z', a[0].v, a[1].v);
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ctick(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s")) gr->SetTickTempl('c',a[0].w.c_str());
else if(!strcmp(k,"n")) gr->SetTicks('c',a[0].v,0,0);
else if(!strcmp(k,"ns")) gr->SetTicks('c',a[0].v,0,0,a[1].w.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_xtick(mglGraph *gr, long n, mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetTicks('x', a[0].v);
else if(!strcmp(k,"ns")) gr->SetTicks('x', a[0].v, 0, NAN, a[1].w.c_str());
else if(!strcmp(k,"nn")) gr->SetTicks('x', a[0].v, iint(a[1].v));
else if(!strcmp(k,"nns")) gr->SetTicks('x', a[0].v, iint(a[1].v), NAN, a[2].w.c_str());
else if(!strcmp(k,"nnn")) gr->SetTicks('x', a[0].v, iint(a[1].v), a[2].v);
else if(!strcmp(k,"nnns")) gr->SetTicks('x', a[0].v, iint(a[1].v), a[2].v, a[3].w.c_str());
else if(!strcmp(k,"s")) gr->SetTickTempl('x',a[0].w.c_str());
else if(!strcmp(k,"ds")) gr->SetTicksVal('x', *(a[0].d), a[1].w.c_str());
else if(!strcmp(k,"dsn")) gr->SetTicksVal('x', *(a[0].d), a[1].w.c_str(), a[2].v);
else if(!strncmp(k,"ns",2))
{
mreal v[50]; std::wstring s; int i;
for(i=0;i<50 && i<n/2;i++)
{
if(a[2*i].type==2 && a[2*i+1].type==1)
{ v[i] = a[2*i].v; s += a[2*i+1].w+L"\n"; }
else break;
}
gr->SetTicksVal('x',mglData(i,v),s.c_str(),a[2*i].type==2?a[2*i].v:0);
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ytick(mglGraph *gr, long n, mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetTicks('y', a[0].v);
else if(!strcmp(k,"ns")) gr->SetTicks('y', a[0].v, 0, NAN, a[1].w.c_str());
else if(!strcmp(k,"nn")) gr->SetTicks('y', a[0].v, iint(a[1].v));
else if(!strcmp(k,"nns")) gr->SetTicks('y', a[0].v, iint(a[1].v), NAN, a[2].w.c_str());
else if(!strcmp(k,"nnn")) gr->SetTicks('y', a[0].v, iint(a[1].v), a[2].v);
else if(!strcmp(k,"nnns")) gr->SetTicks('y', a[0].v, iint(a[1].v), a[2].v, a[3].w.c_str());
else if(!strcmp(k,"s")) gr->SetTickTempl('y',a[0].w.c_str());
else if(!strcmp(k,"ds")) gr->SetTicksVal('y', *(a[0].d), a[1].w.c_str());
else if(!strcmp(k,"dsn")) gr->SetTicksVal('y', *(a[0].d), a[1].w.c_str(), a[2].v);
else if(!strncmp(k,"ns",2))
{
mreal v[50]; std::wstring s; int i;
for(i=0;i<50 && i<n/2;i++)
{
if(a[2*i].type==2 && a[2*i+1].type==1)
{ v[i] = a[2*i].v; s += a[2*i+1].w+L"\n"; }
else break;
}
gr->SetTicksVal('y',mglData(i,v),s.c_str());
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ztick(mglGraph *gr, long n, mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetTicks('z', a[0].v);
else if(!strcmp(k,"ns")) gr->SetTicks('z', a[0].v, 0, NAN, a[1].w.c_str());
else if(!strcmp(k,"nn")) gr->SetTicks('z', a[0].v, iint(a[1].v));
else if(!strcmp(k,"nns")) gr->SetTicks('z', a[0].v, iint(a[1].v), NAN, a[2].w.c_str());
else if(!strcmp(k,"nnn")) gr->SetTicks('z', a[0].v, iint(a[1].v), a[2].v);
else if(!strcmp(k,"nnns")) gr->SetTicks('z', a[0].v, iint(a[1].v), a[2].v, a[3].w.c_str());
else if(!strcmp(k,"s")) gr->SetTickTempl('z',a[0].w.c_str());
else if(!strcmp(k,"ds")) gr->SetTicksVal('z', *(a[0].d), a[1].w.c_str());
else if(!strcmp(k,"dsn")) gr->SetTicksVal('z', *(a[0].d), a[1].w.c_str(), a[2].v);
else if(!strncmp(k,"ns",2))
{
mreal v[50]; std::wstring s; int i;
for(i=0;i<50 && i<n/2;i++)
{
if(a[2*i].type==2 && a[2*i+1].type==1)
{ v[i] = a[2*i].v; s += a[2*i+1].w+L"\n"; }
else break;
}
gr->SetTicksVal('z',mglData(i,v),s.c_str());
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_error(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Error(*(a[0].d),*(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->Error(*(a[0].d),*(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Error(*(a[0].d),*(a[1].d),*(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Error(*(a[0].d),*(a[1].d),*(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Error(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->Error(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_extend(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dn")) d->Extend(iint(a[1].v));
else if(!strcmp(k,"dnn")) d->Extend(iint(a[1].v),iint(a[2].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_join(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"dd") && d) d->Join(*(a[1].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_datas(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s"))
{
char *buf=new char[1024];
mgl_datas_hdf(a[0].s.c_str(),buf,1024);
gr->SetWarn(-1,buf);
delete []buf;
}
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_info(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"d")) gr->SetWarn(-1,a[0].d->PrintInfo());
else if(!strcmp(k,"s")) gr->SetWarn(-1,a[0].s.c_str());
else if(!strcmp(k,"n"))
{ char buf[128]; snprintf(buf,128,"value = %g",a[0].v); buf[127]=0; gr->SetWarn(-1,buf); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_integrate(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"ds") && d) d->Integral(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_inplot(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnnn")) gr->InPlot(a[0].v, a[1].v, a[2].v, a[3].v);
else if(!strcmp(k,"nnnnn")) gr->InPlot(a[0].v, a[1].v, a[2].v, a[3].v, a[4].v!=0);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_columnplot(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nn")) gr->ColumnPlot(iint(a[0].v), iint(a[1].v));
else if(!strcmp(k,"nnn")) gr->ColumnPlot(iint(a[0].v), iint(a[1].v), a[2].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_gridplot(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnn")) gr->GridPlot(iint(a[0].v), iint(a[1].v), iint(a[2].v));
else if(!strcmp(k,"nnnn")) gr->GridPlot(iint(a[0].v), iint(a[1].v), iint(a[2].v), a[3].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_stickplot(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnnn")) gr->StickPlot(iint(a[0].v), iint(a[1].v), a[2].v, a[3].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_pipe(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Pipe(*(a[0].d),*(a[1].d),"",0.05,opt);
else if(!strcmp(k,"dds")) gr->Pipe(*(a[0].d),*(a[1].d),a[2].s.c_str(),0.05,opt);
else if(!strcmp(k,"ddsn")) gr->Pipe(*(a[0].d),*(a[1].d),a[2].s.c_str(),a[3].v,opt);
else if(!strcmp(k,"dddd"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",0.05,opt);
else if(!strcmp(k,"dddds"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),0.05,opt);
else if(!strcmp(k,"ddddsn"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),a[5].v,opt);
else if(!strcmp(k,"ddd"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),"",0.05,opt);
else if(!strcmp(k,"ddds"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),0.05,opt);
else if(!strcmp(k,"dddsn"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),a[4].v,opt);
else if(!strcmp(k,"dddddd"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",0.05,opt);
else if(!strcmp(k,"dddddds"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),0.05,opt);
else if(!strcmp(k,"ddddddsn"))
gr->Pipe(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),a[7].v,opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_origin(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nn")) gr->SetOrigin(a[0].v,a[1].v,NAN);
else if(!strcmp(k,"nnn")) gr->SetOrigin(a[0].v,a[1].v,a[2].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_norm(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dnn")) d->Norm(a[1].v,a[2].v);
else if(!strcmp(k,"dnnn")) d->Norm(a[1].v,a[2].v,a[3].v!=0);
else if(!strcmp(k,"dnnnn")) d->Norm(a[1].v,a[2].v,a[3].v!=0,iint(a[4].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_hist(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddd")) *d = gr->Hist(*(a[1].d), *(a[2].d),opt);
else if(!strcmp(k,"dddd")) *d = gr->Hist(*(a[1].d), *(a[2].d), *(a[3].d),opt);
else if(!strcmp(k,"ddddd")) *d = gr->Hist(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d),opt);
else if(!strcmp(k,"ddnnn")) *d = mglData(true,mgl_data_hist(a[1].d,int(a[2].v+0.5), a[3].v, a[4].v, 0));
else if(!strcmp(k,"ddnnnn")) *d = mglData(true,mgl_data_hist(a[1].d,int(a[2].v+0.5), a[3].v, a[4].v, int(a[5].v+0.5)));
else if(!strcmp(k,"dddnnn")) *d = mglData(true,mgl_data_hist_w(a[1].d,a[2].d, int(a[3].v+0.5), a[4].v, a[5].v, 0));
else if(!strcmp(k,"dddnnnn")) *d = mglData(true,mgl_data_hist_w(a[1].d,a[2].d, int(a[3].v+0.5), a[4].v, a[5].v, int(a[6].v+0.5)));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_mirror(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"ds") && d) d->Mirror(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_hankel(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"ds") && d) d->Hankel(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_sinfft(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"ds") && d) d->SinFFT(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_cosfft(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"ds") && d) d->CosFFT(a[1].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_new(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dn")) d->Create(iint(a[1].v));
else if(!strcmp(k,"dns"))
{ d->Create(iint(a[1].v));
d->Fill(gr->Self(),a[2].s.c_str(),opt); }
else if(!strcmp(k,"dnn")) d->Create(iint(a[1].v),iint(a[2].v));
else if(!strcmp(k,"dnns"))
{ d->Create(iint(a[1].v),iint(a[2].v));
d->Fill(gr->Self(),a[3].s.c_str(),opt); }
else if(!strcmp(k,"dnnn")) d->Create(iint(a[1].v),iint(a[2].v),iint(a[3].v));
else if(!strcmp(k,"dnnns"))
{ d->Create(iint(a[1].v),iint(a[2].v),iint(a[3].v));
d->Fill(gr->Self(),a[4].s.c_str(),opt); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_var(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d); // TODO use mglDataV here?!
if(!d) return 1;
if(!strcmp(k,"dnn"))
{ d->Create(iint(a[1].v)); d->Fill(a[2].v, NAN); }
else if(!strcmp(k,"dnnn"))
{ d->Create(iint(a[1].v)); d->Fill(a[2].v, a[3].v); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_chdir(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s"))
{ if(chdir(a[0].s.c_str())) gr->SetWarn(mglWarnFile,"chdir"); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_perspective(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->Perspective(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_facex(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn")) gr->FaceX(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v);
else if(!strcmp(k,"nnnnns")) gr->FaceX(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v, a[5].s.c_str());
else if(!strcmp(k,"nnnnnsnn")) gr->FaceX(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v, a[5].s.c_str(),a[6].v,a[7].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_facey(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn")) gr->FaceY(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v);
else if(!strcmp(k,"nnnnns")) gr->FaceY(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v, a[5].s.c_str());
else if(!strcmp(k,"nnnnnsnn")) gr->FaceY(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v, a[5].s.c_str(),a[6].v,a[7].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_facez(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nnnnn")) gr->FaceZ(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v);
else if(!strcmp(k,"nnnnns")) gr->FaceZ(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v, a[5].s.c_str());
else if(!strcmp(k,"nnnnnsnn")) gr->FaceZ(mglPoint(a[0].v, a[1].v, a[2].v), a[3].v, a[4].v, a[5].s.c_str(),a[6].v,a[7].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_normsl(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dnn")) d->NormSl(a[1].v, a[2].v);
else if(!strcmp(k,"dnns")) d->NormSl(a[1].v, a[2].v, a[3].s.c_str()[0]);
else if(!strcmp(k,"dnnsn")) d->NormSl(a[1].v, a[2].v, a[3].s.c_str()[0],a[4].v);
else if(!strcmp(k,"dnnsnn"))d->NormSl(a[1].v, a[2].v, a[3].s.c_str()[0],a[4].v,a[5].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_momentum(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dds")) *d = mglData(true,mgl_data_momentum(a[1].d,'z', a[2].s.c_str()));
else if(!strcmp(k,"ddss")) *d = mglData(true,mgl_data_momentum(a[1].d,a[3].s.c_str()[0], a[2].s.c_str()));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fit(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dddddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[7].d);
if(i) *d = gr->Fit(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(), a[6].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"dddddss"))
*d = gr->Fit(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(), a[6].s.c_str(),opt);
else if(!strcmp(k,"ddddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[6].d);
if(i) *d = gr->Fit(*(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(), a[5].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"ddddss"))
*d = gr->Fit(*(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(), a[5].s.c_str(),opt);
else if(!strcmp(k,"dddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[5].d);
if(i) *d = gr->Fit(*(a[1].d), *(a[2].d), a[3].s.c_str(), a[4].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"dddss"))
*d = gr->Fit(*(a[1].d), *(a[2].d), a[3].s.c_str(), a[4].s.c_str(),opt);
else if(!strcmp(k,"ddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[4].d);
if(i) *d = gr->Fit(*(a[1].d), a[2].s.c_str(), a[3].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"ddss"))
*d = gr->Fit(*(a[1].d), a[2].s.c_str(), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fits(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddddddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[8].d);
if(i) *d = gr->FitS(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), *(a[5].d), a[6].s.c_str(), a[7].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"ddddddss"))
*d = gr->FitS(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), *(a[5].d), a[6].s.c_str(), a[7].s.c_str(),opt);
else if(!strcmp(k,"dddddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[7].d);
if(i) *d = gr->FitS(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(), a[6].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"dddddss"))
*d = gr->FitS(*(a[1].d), *(a[2].d), *(a[3].d), *(a[4].d), a[5].s.c_str(), a[6].s.c_str(),opt);
else if(!strcmp(k,"ddddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[6].d);
if(i) *d = gr->FitS(*(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(), a[5].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"ddddss"))
*d = gr->FitS(*(a[1].d), *(a[2].d), *(a[3].d), a[4].s.c_str(), a[5].s.c_str(),opt);
else if(!strcmp(k,"dddssd"))
{
mglData *i = dynamic_cast<mglData *>(a[5].d);
if(i) *d = gr->FitS(*(a[1].d), *(a[2].d), a[3].s.c_str(), a[4].s.c_str(), *i,opt);
else res = 1;
}
else if(!strcmp(k,"dddss"))
*d = gr->FitS(*(a[1].d), *(a[2].d), a[3].s.c_str(), a[4].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_putsfit(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0; gr->Self()->SaveState(opt);
if(!strcmp(k,"nn")) gr->PutsFit(mglPoint(a[0].v,a[1].v));
else if(!strcmp(k,"nns")) gr->PutsFit(mglPoint(a[0].v,a[1].v), a[2].s.c_str());
else if(!strcmp(k,"nnss")) gr->PutsFit(mglPoint(a[0].v,a[1].v), a[2].s.c_str(),a[3].s.c_str());
else if(!strcmp(k,"nnssn")) gr->PutsFit(mglPoint(a[0].v,a[1].v), a[2].s.c_str(),a[3].s.c_str(),a[4].v);
else if(!strcmp(k,"nnn")) gr->PutsFit(mglPoint(a[0].v,a[1].v,a[2].v));
else if(!strcmp(k,"nnns")) gr->PutsFit(mglPoint(a[0].v,a[1].v,a[2].v), a[3].s.c_str());
else if(!strcmp(k,"nnnss")) gr->PutsFit(mglPoint(a[0].v,a[1].v,a[2].v), a[3].s.c_str(),a[4].s.c_str());
else if(!strcmp(k,"nnnssn"))gr->PutsFit(mglPoint(a[0].v,a[1].v,a[2].v), a[3].s.c_str(),a[4].s.c_str(),a[5].v);
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_arrowsize(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetArrowSize(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_rearrange(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dn")) d->Rearrange(iint(a[1].v));
else if(!strcmp(k,"dnn")) d->Rearrange(iint(a[1].v), iint(a[2].v));
else if(!strcmp(k,"dnnn")) d->Rearrange(iint(a[1].v), iint(a[2].v), iint(a[3].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fplot(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"s")) gr->FPlot(a[0].s.c_str(), "",opt);
else if(!strcmp(k,"ss")) gr->FPlot(a[0].s.c_str(), a[1].s.c_str(),opt);
else if(!strcmp(k,"sss")) gr->FPlot(a[0].s.c_str(), a[1].s.c_str(), a[2].s.c_str(), "",opt);
else if(!strcmp(k,"ssss")) gr->FPlot(a[0].s.c_str(), a[1].s.c_str(), a[2].s.c_str(), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fsurf(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"s")) gr->FSurf(a[0].s.c_str(), "",opt);
else if(!strcmp(k,"ss")) gr->FSurf(a[0].s.c_str(), a[1].s.c_str(),opt);
else if(!strcmp(k,"sss")) gr->FSurf(a[0].s.c_str(), a[1].s.c_str(), a[2].s.c_str(), "",opt);
else if(!strcmp(k,"ssss")) gr->FSurf(a[0].s.c_str(), a[1].s.c_str(), a[2].s.c_str(), a[3].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_fgets(mglGraph *gr, long , mglArg *a, const char *k, const char *opt) // NOTE don't use options -- Puts can be part of group
{
int res=0; gr->Self()->SaveState(opt);
char buf[1024];
FILE *fp;
if(!strncmp(k,"nns",3))
{
int i, n = (k[3]=='n'?iint(a[3].v):0);
fp = fopen(a[2].s.c_str(),"rt");
if(!fp)
{
gr->SetWarn(mglWarnOpen,a[2].s.c_str());
return res;
}
for(i=0;i<n;i++) if(!fgets(buf,1024,fp)) continue;
memset(buf,0,1024);
if(!fgets(buf,1024,fp))
{
char b[32]; snprintf(b,32,"%d",n); b[31]=0;
gr->SetWarn(mglWarnOpen,(a[2].s+" - line "+b).c_str());
fclose(fp); return res;
}
fclose(fp);
gr->Puts(mglPoint(a[0].v,a[1].v,NAN),buf, (k[4]=='s')?a[4].s.c_str():"", k[5]=='n'?a[5].v:-1);
}
else if(!strncmp(k,"nnns",4))
{
int i, n = (k[4]=='n'?iint(a[4].v):0);
fp = fopen(a[3].s.c_str(),"rt");
if(!fp)
{
gr->SetWarn(mglWarnOpen,a[3].s.c_str());
return res;
}
for(i=0;i<n;i++) if(!fgets(buf,1024,fp)) continue;
memset(buf,0,1024);
if(!fgets(buf,1024,fp))
{
char b[32]; snprintf(b,32,"%d",n); b[31]=0;
gr->SetWarn(mglWarnOpen,(a[3].s+" - line "+b).c_str());
fclose(fp); return res;
}
fclose(fp);
gr->Puts(mglPoint(a[0].v,a[1].v,a[2].v),buf, (k[5]=='s')?a[5].s.c_str():"", k[6]=='n'?a[6].v:-1);
}
else res = 1; gr->Self()->LoadState(); return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_import(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dss")) d->Import(a[1].s.c_str(), a[2].s.c_str());
else if(!strcmp(k,"dssnn")) d->Import(a[1].s.c_str(), a[2].s.c_str(), a[3].v,a[4].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_export(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"dss")) a[0].d->Export(a[1].s.c_str(), a[2].s.c_str());
else if(!strcmp(k,"dssnn")) a[0].d->Export(a[1].s.c_str(), a[2].s.c_str(), a[3].v,a[4].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_write(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->WriteFrame("", "MathGL");
else if(!strcmp(k,"s")) gr->WriteFrame(a[0].s.c_str(), "MathGL");
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_region(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Region(*(a[0].d),*(a[1].d),"",opt);
else if(!strcmp(k,"dds")) gr->Region(*(a[0].d),*(a[1].d),a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Region(*(a[0].d),*(a[1].d),*(a[2].d),"",opt);
else if(!strcmp(k,"ddds")) gr->Region(*(a[0].d),*(a[1].d),*(a[2].d),a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Region(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),"",opt);
else if(!strcmp(k,"dddds")) gr->Region(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),a[4].s.c_str(),opt);
else if(!strcmp(k,"dddddd")) gr->Region(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),"",opt);
else if(!strcmp(k,"dddddds")) gr->Region(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d),*(a[4].d),*(a[5].d),a[6].s.c_str(),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_envelop(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"d")) d->Envelop();
else if(!strcmp(k,"ds")) d->Envelop(a[1].s.c_str()[0]);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_sew(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"d")) d->Sew();
else if(!strcmp(k,"ds")) d->Sew(a[1].s.c_str());
else if(!strcmp(k,"dsn")) d->Sew(a[1].s.c_str(), a[2].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_evaluate(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddd")) *d = mglData(true,mgl_data_evaluate(a[1].d,a[2].d,0,0,true));
else if(!strcmp(k,"dddn")) *d = mglData(true,mgl_data_evaluate(a[1].d,a[2].d,0,0, a[3].v!=0));
else if(!strcmp(k,"dddd")) *d = mglData(true,mgl_data_evaluate(a[1].d,a[2].d,a[3].d,0,true));
else if(!strcmp(k,"ddddn")) *d = mglData(true,mgl_data_evaluate(a[1].d,a[2].d,a[3].d,0, a[4].v!=0));
else if(!strcmp(k,"ddddd")) *d = mglData(true,mgl_data_evaluate(a[1].d,a[2].d,a[3].d,a[4].d,true));
else if(!strcmp(k,"dddddn"))*d = mglData(true,mgl_data_evaluate(a[1].d,a[2].d,a[3].d,a[4].d, a[5].v!=0));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_solve(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddns")) *d = mglData(true,mgl_data_solve(a[1].d, a[2].v, a[3].s[0], 0, true));
else if(!strcmp(k,"ddnsn")) *d = mglData(true,mgl_data_solve(a[1].d, a[2].v, a[3].s[0], 0, a[4].v!=0));
else if(!strcmp(k,"ddnsd")) *d = mglData(true,mgl_data_solve(a[1].d, a[2].v, a[3].s[0], a[4].d, true));
else if(!strcmp(k,"ddnsdn"))*d = mglData(true,mgl_data_solve(a[1].d, a[2].v, a[3].s[0], a[4].d, a[5].v!=0));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_put(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dn")) d->Put(a[1].v);
else if(!strcmp(k,"dnn")) d->Put(a[1].v, iint(a[2].v));
else if(!strcmp(k,"dnnn")) d->Put(a[1].v, iint(a[2].v),iint(a[3].v));
else if(!strcmp(k,"dnnnn")) d->Put(a[1].v, iint(a[2].v),iint(a[3].v),iint(a[4].v));
else if(!strcmp(k,"dd")) d->Put(*(a[1].d));
else if(!strcmp(k,"ddn")) d->Put(*(a[1].d), iint(a[2].v));
else if(!strcmp(k,"ddnn")) d->Put(*(a[1].d), iint(a[2].v),iint(a[3].v));
else if(!strcmp(k,"ddnnn")) d->Put(*(a[1].d), iint(a[2].v),iint(a[3].v),iint(a[4].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_palette(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"s")) gr->SetPalette(a[0].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_combine(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"ddd") && d) *d = mglData(true,mgl_data_combine(a[1].d, a[2].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_correl(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"ddds") && d) *d = mglData(true,mgl_data_correl(a[1].d, a[2].d, a[3].s.c_str()));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_roots(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dsds")) *d = mglData(true,mgl_data_roots(a[1].s.c_str(), a[2].d, a[3].s[0]));
else if(!strcmp(k,"dsns")) d->a[0] = mgl_find_root_txt(a[1].s.c_str(), a[2].v, a[3].s[0]);
else if(!strcmp(k,"dsd")) *d = mglData(true,mgl_data_roots(a[1].s.c_str(), a[2].d, 'x'));
else if(!strcmp(k,"dsn")) d->a[0] = mgl_find_root_txt(a[1].s.c_str(), a[2].v, 'x');
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ode(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dssd"))
*d = mglODE(a[1].s.c_str(), a[2].s.c_str(), *(a[3].d));
else if(!strcmp(k,"dssdnn"))
*d = mglODE(a[1].s.c_str(), a[2].s.c_str(), *(a[3].d), a[4].v, a[5].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_pde(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d), *c = dynamic_cast<mglData *>(a[1].d);
if(!d) return 1;
if(!strcmp(k,"dsdd")) // TODO mglDataC can be used here
*d = gr->PDE(a[1].s.c_str(), *(a[2].d), *(a[3].d), 0.1,100,opt);
else if(!strcmp(k,"dsddn"))
*d = gr->PDE(a[1].s.c_str(), *(a[2].d), *(a[3].d), a[4].v,100,opt);
else if(!strcmp(k,"dsddnn"))
*d = gr->PDE(a[1].s.c_str(), *(a[2].d), *(a[3].d), a[4].v,a[5].v,opt);
else if(!strcmp(k,"ddsdd") && c)
{ mglDataC res = mglDataC(true, mgl_pde_solve_c(gr->Self(),a[2].s.c_str(), a[3].d, a[4].d, 0.1,100,opt));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsddn") && c)
{ mglDataC res = mglDataC(true, mgl_pde_solve_c(gr->Self(),a[2].s.c_str(), a[3].d, a[4].d, a[5].v,100,opt));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsddnn") && c)
{ mglDataC res = mglDataC(true, mgl_pde_solve_c(gr->Self(),a[2].s.c_str(), a[3].d, a[4].d, a[5].v,a[6].v,opt));
*d = res.Abs(); *c = res.Arg(); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_qo2d(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d), *c = dynamic_cast<mglData *>(a[1].d);
if(!d) return 1;
if(!strcmp(k,"dsddd"))
*d = mglData(true, mgl_qo2d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, 1,100, 0,0));
else if(!strcmp(k,"dsdddn"))
*d = mglData(true, mgl_qo2d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, a[5].v,100, 0,0));
else if(!strcmp(k,"dsdddnn"))
*d = mglData(true, mgl_qo2d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, a[5].v,a[6].v, 0,0));
else if(!strcmp(k,"dsdddnndd"))
*d = mglData(true, mgl_qo2d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, a[5].v,a[6].v, dynamic_cast<mglData *>(a[7].d),dynamic_cast<mglData *>(a[8].d)));
else if(!strcmp(k,"ddsddd") && c)
{ mglDataC res = mglDataC(true, mgl_qo2d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, 1,100, 0,0));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsdddn") && c)
{ mglDataC res = mglDataC(true, mgl_qo2d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, a[6].v,100, 0,0));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsdddnn") && c)
{ mglDataC res = mglDataC(true, mgl_qo2d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, a[6].v,a[7].v, 0,0));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsdddnndd") && c)
{ mglDataC res = mglDataC(true, mgl_qo2d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, a[6].v,a[7].v, dynamic_cast<mglData *>(a[8].d),dynamic_cast<mglData *>(a[9].d)));
*d = res.Abs(); *c = res.Arg(); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_qo3d(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d), *c = dynamic_cast<mglData *>(a[1].d);
if(!d) return 1;
if(!strcmp(k,"dsddd"))
*d = mglData(true, mgl_qo3d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, 1,100, 0,0,0));
else if(!strcmp(k,"dsdddn"))
*d = mglData(true, mgl_qo3d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, a[5].v,100, 0,0,0));
else if(!strcmp(k,"dsdddnn"))
*d = mglData(true, mgl_qo3d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, a[5].v,a[6].v, 0,0,0));
else if(!strcmp(k,"dsdddnnddd"))
*d = mglData(true, mgl_qo3d_solve(a[1].s.c_str(), a[2].d, a[3].d, a[4].d, a[5].v,a[6].v, dynamic_cast<mglData *>(a[7].d),dynamic_cast<mglData *>(a[8].d),dynamic_cast<mglData *>(a[9].d)));
else if(!strcmp(k,"ddsddd") && c)
{ mglDataC res = mglDataC(true, mgl_qo3d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, 1,100, 0,0,0));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsdddn") && c)
{ mglDataC res = mglDataC(true, mgl_qo3d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, a[6].v,100, 0,0,0));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsdddnn") && c)
{ mglDataC res = mglDataC(true, mgl_qo3d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, a[6].v,a[7].v, 0,0,0));
*d = res.Abs(); *c = res.Arg(); }
else if(!strcmp(k,"ddsdddnnddd") && c)
{ mglDataC res = mglDataC(true, mgl_qo3d_solve_c(a[2].s.c_str(), a[3].d, a[4].d, a[5].d, a[6].v,a[7].v, dynamic_cast<mglData *>(a[8].d),dynamic_cast<mglData *>(a[9].d),dynamic_cast<mglData *>(a[10].d)));
*d = res.Abs(); *c = res.Arg(); }
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ray(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"dsnnnn"))
*d = mglRay(a[1].s.c_str(), mglPoint(a[2].v, a[3].v), mglPoint(a[4].v, a[5].v));
else if(!strcmp(k,"dsnnnnnn"))
*d = mglRay(a[1].s.c_str(), mglPoint(a[2].v, a[3].v, a[4].v), mglPoint(a[5].v, a[6].v, a[7].v));
else if(!strcmp(k,"dsnnnnnnn"))
*d = mglRay(a[1].s.c_str(), mglPoint(a[2].v, a[3].v, a[4].v), mglPoint(a[5].v, a[6].v, a[7].v), a[8].v);
else if(!strcmp(k,"dsnnnnnnnn"))
*d = mglRay(a[1].s.c_str(), mglPoint(a[2].v, a[3].v, a[4].v), mglPoint(a[5].v, a[6].v, a[7].v), a[8].v,a[9].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_jacobian(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddd")) *d = mglJacobian(*(a[1].d), *(a[2].d));
else if(!strcmp(k,"dddd")) *d = mglJacobian(*(a[1].d), *(a[2].d), *(a[3].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tens(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
if(!strcmp(k,"dd")) gr->Tens(*(a[0].d),*(a[1].d), "",opt);
else if(!strcmp(k,"dds")) gr->Tens(*(a[0].d),*(a[1].d), a[2].s.c_str(),opt);
else if(!strcmp(k,"ddd")) gr->Tens(*(a[0].d),*(a[1].d),*(a[2].d), "",opt);
else if(!strcmp(k,"ddds")) gr->Tens(*(a[0].d),*(a[1].d),*(a[2].d), a[3].s.c_str(),opt);
else if(!strcmp(k,"dddd")) gr->Tens(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), "",opt);
else if(!strcmp(k,"dddds")) gr->Tens(*(a[0].d),*(a[1].d),*(a[2].d),*(a[3].d), a[4].s.c_str(),opt);
return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ticklen(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetTickLen(a[0].v);
else if(!strcmp(k,"nn")) gr->SetTickLen(a[0].v, a[1].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_tickshift(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetTickShift(mglPoint(a[0].v));
else if(!strcmp(k,"nn")) gr->SetTickShift(mglPoint(a[0].v, a[1].v));
else if(!strcmp(k,"nnn")) gr->SetTickShift(mglPoint(a[0].v, a[1].v, a[2].v));
else if(!strcmp(k,"nnnn")) gr->SetTickShift(mglPoint(a[0].v, a[1].v, a[2].v, a[3].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_origintick(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"n")) gr->SetOriginTick(a[0].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_axisstl(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->SetAxisStl();
else if(!strcmp(k,"s")) gr->SetAxisStl(a[0].s.c_str());
else if(!strcmp(k,"ss")) gr->SetAxisStl(a[0].s.c_str(), a[1].s.c_str());
else if(!strcmp(k,"sss")) gr->SetAxisStl(a[0].s.c_str(), a[1].s.c_str(), a[2].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_ranges(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnnn")) gr->SetRanges(a[0].v,a[1].v, a[2].v,a[3].v);
else if(!strcmp(k,"nnnnnn"))gr->SetRanges(a[0].v,a[1].v,a[2].v, a[3].v,a[4].v,a[5].v);
else if(!strcmp(k,"dd")) gr->SetRanges(*(a[0].d),*(a[1].d));
else if(!strcmp(k,"ddd")) gr->SetRanges(*(a[0].d),*(a[1].d), *(a[2].d));
else if(!strcmp(k,"dddd")) gr->SetRanges(*(a[0].d),*(a[1].d), *(a[2].d),*(a[3].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_adjust(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->Adjust();
else if(!strcmp(k,"s")) gr->Adjust(a[0].s.c_str());
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_insert(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->Insert(a[1].s.c_str()[0]);
else if(!strcmp(k,"dsn")) d->Insert(a[1].s.c_str()[0], iint(a[2].v));
else if(!strcmp(k,"dsnn")) d->Insert(a[1].s.c_str()[0], iint(a[2].v), iint(a[3].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_delete(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ds")) d->Delete(a[1].s.c_str()[0]);
else if(!strcmp(k,"dsn")) d->Delete(a[1].s.c_str()[0], iint(a[2].v));
else if(!strcmp(k,"dsnn")) d->Delete(a[1].s.c_str()[0], iint(a[2].v), iint(a[3].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_roll(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"dsn") && d) d->Roll(a[1].s.c_str()[0], iint(a[2].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_datagrid(mglGraph *gr, long , mglArg *a, const char *k, const char *opt)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!strcmp(k,"dddd") && d) gr->DataGrid(*d, *(a[1].d), *(a[2].d), *(a[3].d),opt);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_triangulate(mglGraph *, long , mglArg *a, const char *k, const char *)
{
int res=0;
mglData *d = dynamic_cast<mglData *>(a[0].d);
if(!d) return 1;
if(!strcmp(k,"ddd")) *d = mglTriangulation(*(a[1].d), *(a[2].d));
else if(!strcmp(k,"dddd")) *d = mglTriangulation(*(a[1].d), *(a[2].d), *(a[3].d));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_view(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nn")) gr->View(a[0].v, a[1].v);
else if(!strcmp(k,"nnn")) gr->View(a[0].v, a[1].v, a[2].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_zoom(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nnnn")) gr->Zoom(a[0].v, a[1].v, a[2].v, a[3].v);
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_zoomaxis(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"nn")) gr->ZoomAxis(mglPoint(a[0].v), mglPoint(a[1].v));
else if(!strcmp(k,"nnnn")) gr->ZoomAxis(mglPoint(a[0].v, a[1].v), mglPoint(a[2].v, a[3].v));
else if(!strcmp(k,"nnnnnn")) gr->ZoomAxis(mglPoint(a[0].v, a[1].v, a[2].v), mglPoint(a[3].v, a[4].v, a[5].v));
else if(!strcmp(k,"nnnnnnnn")) gr->ZoomAxis(mglPoint(a[0].v, a[1].v, a[2].v, a[3].v), mglPoint(a[4].v, a[5].v, a[6].v, a[7].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_drawreg(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
if(!strcmp(k,"")) gr->SetDrawReg();
else if(!strcmp(k,"nnn")) gr->SetDrawReg(iint(a[0].v), iint(a[1].v), iint(a[2].v));
else res = 1; return res;
}
//-----------------------------------------------------------------------------
int MGL_NO_EXPORT mgls_version(mglGraph *gr, long , mglArg *a, const char *k, const char *)
{
int res=0;
char buf[32]; sprintf(buf,"MathGL version is 2.%g",MGL_VER2);
if(!strcmp(k,"")) gr->SetWarn(-1,buf);
else if(!strcmp(k,"s")) res = mgl_check_version(a[0].s.c_str())?1:0;
else res = 1; return res;
}
//-----------------------------------------------------------------------------
mglCommand mgls_base_cmd[] = {
{"addlegend","Add legend entry","addlegend 'txt' 'fmt'", mgls_addlegend,15},
{"addto","Add data or number","addto Var Dat|Var num", mgls_addto ,3},
{"adjust","Adjust ticks for best view","adjust ['dir']", mgls_adjust ,14},
{"alpha","Switch on/off transparency","alpha [val]", mgls_alpha ,2},
{"alphadef","Set default transparency","alphadef val", mgls_alphadef ,2},
{"ambient","Set ambient light brightness","ambient val", mgls_ambient ,2},
{"arc","Draw angle arc","arc x0 y0 x1 y1 a ['fmt']|x0 y0 z0 x1 y1 a ['fmt']|x0 y0 z0 xr yr zr x1 y1 z1 a ['fmt']", mgls_arc ,13},
{"area","Draw area plot for 1D data","area Ydat ['fmt']|Xdat Ydat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_area ,7},
{"arrowsize","Set size of arrows","arrowsize val", mgls_arrowsize ,2},
{"ask","Define parameter from user input","ask $N 'question'", 0, 6},
{"aspect","Set aspect ration","aspect valx valy [valz]", mgls_aspect ,5},
{"axial","Draw surfaces of contour lines rotation","axial Zdat ['fmt' num]|Xdat Ydat Zdat ['fmt' num]", mgls_axial ,8},
{"axis","Setup or draw axis","axis ['dir' 'fmt']|'fx' 'fy' 'fz' ['fc']|how", mgls_axis ,12},
{"axisstl","Set axis and tick style","axisstl 'stl' ['sub']", mgls_axisstl ,14},
{"background","Load image for background","background 'fname'", mgls_background ,12},
{"ball","Draw point (ball)","ball posx posy ['fmt']|posx posy posz ['fmt']", mgls_ball ,13},
{"barh","Draw horizontal bars for 1D data", "barh Ydat ['fmt' above]|Xdat Ydat ['fmt' above]", mgls_barh ,7},
{"bars","Draw bars for 1D data","bars Ydat ['fmt' above]|Xdat Ydat ['fmt' above]|Xdat Ydat Zdat ['fmt' above]", mgls_bars ,7},
{"barwidth","Set default bars width","barwidth val", mgls_barwidth ,2},
{"beam","Draw quasioptical beam","beam Tr G1 G2 Adat r ['sch' flag num] ", mgls_beam ,9},
{"belt","Draw belts","belt Zdat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_belt ,8},
{"box","Draw bounding box","box ['fmt' ticks]", mgls_box ,12},
{"boxplot","Draw boxplot for 2D data","boxplot Ydat ['fmt']|Xdat Ydat ['fmt']", mgls_boxplot ,7},
{"boxs","Draw boxes","boxs Zdat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_boxs ,8},
{"break","Break for-cycle","break", 0, 6},
{"call","Execute script in external file","call 'name' [args]", 0, 6},
{"candle","Draw candlestick chart","candle candle Vdat1 ['fmt']|Vdat1 Vdat2 ['fmt']|Vdat1 Ydat1 Ydat2 ['fmt']||Vdat1 Vdat2 Ydat1 Ydat2 ['fmt']|Xdat Vdat1 Vdat2 Ydat1 Ydat2 ['fmt']", mgls_candle ,7},
{"chart","Draw chart","chart Dat ['fmt']", mgls_chart ,7},
{"chdir","Change current directory","chdir 'path'", mgls_chdir ,2},
{"circle","Draw circle","circle x y r ['fmt']|x y z r ['fmt']", mgls_circle ,13},
{"clean","Remove duplicate rows","clean Dat id", mgls_clean ,3},
{"clearlegend","Clear legend antries","clearlegend", mgls_clearlegend ,15},
{"clf","Clear picture","clf|'col'|r g b", mgls_clf ,12},
{"cloud","Draw cloud","cloud Adat ['fmt']|Xdat Ydat Zdat Adat ['fmt']", mgls_cloud ,9},
{"colorbar","Draw colorbar","colorbar ['fmt' pos]|Vdat ['fmt' pos]|'sch' pos x y [w h]|Vdat 'sch' pos x y [w h]", mgls_colorbar ,12},
{"column","Get data column filled by formula on column ids","column Res Dat 'eq'", mgls_column ,4},
{"columnplot","Set position of plot inside cell of column", "columnplot num ind [d]", mgls_columnplot ,5},
{"combine", "Direct multiplication of arrays", "combine Res Adat Bdat", mgls_combine ,4},
{"cone","Draw cone","cone x1 y1 z1 x2 y2 z2 r1 [r2 'fmt' edge]", mgls_cone ,13},
{"cones","Draw cones for 1D data","cones Ydat ['fmt' above]|Xdat Ydat ['fmt' above]|Xdat Ydat Zdat ['fmt' above]", mgls_cones ,7},
{"cont","Draw contour lines","cont Zdat ['fmt' num zpos]|Vdat Zdat ['fmt' zpos]|Xdat Ydat Zdat ['fmt' num zpos]|Vdat Xdat Ydat Zdat ['fmt' zpos]", mgls_cont ,8},
{"cont3","Draw contour lines for 3D data","cont3 Adat 'dir' [val 'fmt' num]|Vdat Adat 'dir' [val 'fmt']|Xdat Ydat Zdat Adat 'dir' [val 'fmt' num]|Vdat Xdat Ydat Zdar Adat 'dir' [val 'fmt']", mgls_cont3 ,9},
{"contd","Draw solid contours with manual colors","contd Zdat ['fmt' num zpos]|Vdat Zdat ['fmt' zpos]|Xdat Ydat Zdat ['fmt' num zpos]|Vdat Xdat Ydat Zdat ['fmt' zpos]", mgls_contd ,8},
{"contf","Draw solid contours","contf Zdat ['fmt' num zpos]|Vdat Zdat ['fmt' zpos]|Xdat Ydat Zdat ['fmt' num zpos]|Vdat Xdat Ydat Zdat ['fmt' zpos]", mgls_contf ,8},
{"contf3","Draw solid contour lines for 3D data","contf3 Adat 'dir' [val 'fmt' num]|Vdat Adat 'dir' [val 'fmt']|Xdat Ydat Zdat Adat 'dir' [val 'fmt' num]|Vdat Xdat Ydat Zdar Adat 'dir' [val 'fmt']", mgls_contf3 ,9},
{"contfx","Draw solid contour lines at x-slice (or x-plane)","contfx Dat ['fmt' pos num]", mgls_contfx ,0},
{"contfy","Draw solid contour lines at y-slice (or y-plane)","contfy Dat ['fmt' pos num]", mgls_contfy ,0},
{"contfz","Draw solid contour lines at z-slice (or z-plane)","contfz Dat ['fmt' pos num]", mgls_contfz ,0},
{"continue","Skip commands and iterate for-cycle again","continue", 0, 6},
{"contv","Draw contour tubes","contv Zdat ['fmt' num zpos]|Vdat Zdat ['fmt' zpos]|Xdat Ydat Zdat ['fmt' num zpos]|Vdat Xdat Ydat Zdat ['fmt' zpos]", mgls_contv ,0},
{"contx","Draw contour lines at x-slice (or x-plane)","contx Dat ['fmt' pos num]", mgls_contx ,0},
{"conty","Draw contour lines at y-slice (or y-plane)","conty Dat ['fmt' pos num]", mgls_conty ,0},
{"contz","Draw contour lines at z-slice (or z-plane)","contz Dat ['fmt' pos num]", mgls_contz ,0},
{"copy","Copy data from another variable","copy Dat1 Dat2 ['eq' onaxis]", mgls_copy ,4},
{"correl", "Find correlation between data arrays", "correl Res Adat Bdat 'dir'", mgls_correl ,4},
{"cosfft","Cos-Fourier transform at some direction","cosfft Dat 'dir'", mgls_cosfft ,16},
{"crange","Set color range","crange Dat [add] | c1 c2 [add]", mgls_crange ,14},
{"crop","Crop edge of data","crop Dat n1 n2 'dir'", mgls_crop ,16},
{"crust","Draw reconstructed surface for arbitrary data points","crust Xdat Ydat Zdat ['fmt']", mgls_crust ,0},
{"ctick","Set ticks for colorbar","ctick 'tmpl' | dc ['factor']", mgls_ctick ,14},
{"cumsum","Cumulative summation","cumsum Dat 'dir'", mgls_cumsum ,16},
{"curve","Draw curve","curve x1 y1 dx1 dy1 x2 y2 dx2 dy2 ['fmt']|x1 y1 z1 dx1 dy1 dz1 x2 y2 z2 dx2 dy2 dz2 ['fmt']", mgls_curve ,13},
{"cut","Setup plot points cutting","cut val|x1 y1 z1 x2 y2 z2|'cond'", mgls_cut ,2},
{"datagrid","Fill data by triangulated values","datagrid Var Xdat Ydat Zdat", mgls_datagrid ,3},
{"datas","Print list of data names in HDF file","datas 'fname'", mgls_datas ,3},
{"defchr","Define parameter as character","defchr $N val", 0, 6},
{"define","Define constant or parameter","define $N sth | Var val", 0, 6},
{"defnum","Define parameter as numerical value","defnum $N val", 0, 6},
{"defpal","Define parameter as palette color","defpal $N val", 0, 6},
{"delete","Delete slice of data","delete Dat 'dir' [pos=0 num=1]", mgls_delete ,3},
{"dens","Draw density plot","dens Zdat ['fmt' zpos]|Xdat Ydat Zdat ['fmt' zpos]", mgls_dens ,8},
{"dens3","Draw density plot at slices of 3D data","dens3 Adat 'dir' [pos 'fmt']|Xdat Ydat Zdat Adat 'dir' [pos 'fmt']", mgls_dens3 ,9},
{"densx","Draw density plot at x-slice (or x-plane)","densx Dat ['fmt' pos]", mgls_densx ,0},
{"densy","Draw density plot at y-slice (or y-plane)","densy Dat ['fmt' pos]", mgls_densy ,0},
{"densz","Draw density plot at z-slice (or z-plane)","densz Dat ['fmt' pos]", mgls_densz ,0},
{"dew","Draw dew plot","dew Udat Vdat ['fmt']|Xdat Ydat Udat Vdat ['fmt']", mgls_dew ,11},
{"diff","Numerically differentiate data","diff Var 'dir'", mgls_diff ,16},
{"diff2","Numerically double differentiate data","diff2 Var 'dir'", mgls_diff2 ,16},
{"diffuse","Set diffusive light brightness","diffuse val", mgls_diffuse ,2},
{"divto","Divide by data or number","divto Var Dat|Var num", mgls_divto ,3},
{"dots","Draw dots for arbitrary data points","dots Xdat Ydat Zdat ['fmt']|Xdat Ydat Zdat Adat ['fmt']|Xdat Ydat Zdat Cdat Adat ['fmt']", mgls_dots ,9},
{"drawreg","Set draw region for quality&4","drawreg|nx ny m", mgls_drawreg ,2},
{"drop","Draw drop","drop x0 y0 dx dy r ['col' sh asp]|x0 y0 z0 dx dy dz r ['col' sh asp]", mgls_drop ,13},
{"ellipse","Draw ellipse","ellipse x1 y1 x2 y2 r ['fmt']|x1 y1 z1 x2 y2 z2 r ['fmt']", mgls_ellipse ,13},
{"else","Execute if condition is false","else", 0, 6},
{"elseif","Conditional operator","elseif val|Dat ['cond']", 0, 6},
{"endif","Finish if/else block","endif", 0, 6},
{"envelop","Find envelop for the data","envelop Dat ['dir']", mgls_envelop ,16},
{"errbox","Draw error box","errbox x y ex ey ['fmt']|x y z ex ey ez ['fmt']", mgls_errbox ,13},
{"error","Draw error boxes","error Ydat Yerr ['fmt']|Xdat Ydat Yerr ['fmt']|Xdat Ydat Xerr Yerr ['fmt']", mgls_error ,7},
{"evaluate","Evaluate (interpolate) values of array Dat at points i=idat,j=jdat,k=kdat","evaluate Res Dat Idat [norm]|Res Dat Idat Jdat [norm]|Res Dat Idat Jdat Kdat [norm]", mgls_evaluate ,4},
{"export","Export data to PNG picture","export Dat 'fname' 'sch' [v1 v2]", mgls_export ,3},
{"extend","Extend data array","extend Dat dim1 [dim2]", mgls_extend ,3},
{"face","Draw face (quadrangle)","face x1 y1 x2 y2 x3 y3 x4 y4 ['fmt']|x1 y1 z1 x2 y2 z2 x3 y3 z3 x4 y4 z4 ['fmt']", mgls_face ,13},
{"facenum","Set number of visible faces","facenum val", mgls_facenum ,2},
{"facex","Draw face perpendicular to x-axis","facex x0 y0 z0 wy wz ['fmt' d1 d2]", mgls_facex ,13},
{"facey","Draw face perpendicular to y-axis","facex x0 y0 z0 wx wz ['fmt' d1 d2]", mgls_facey ,13},
{"facez","Draw face perpendicular to z-axis","facex x0 y0 z0 wy wz ['fmt' d1 d2]", mgls_facez ,13},
{"fall","Draw waterfalls","fall Zdat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_fall ,8},
{"fgets","Print string from file","fgets x y z 'fname' [pos=0 'fmt' size]|x y z 'fname' [pos=0 'fmt' size]", mgls_fgets ,15},
{"fill","Fill data linearly in range [v1, v2]","fill Var v1 v2 ['dir'] | Var 'eq' [Vdat Wdat]", mgls_fill ,3},
{"fillsample","Fill x-,k-samples for transforms","fillsample Var 'how'", mgls_fillsample ,3},
{"fit","Fit data to formula","fit Res A 'eq' 'var' [Ini]|Res X A 'eq' 'var' [Ini]|Res X Y A 'eq' 'var' [Ini]|Res X Y Z A 'eq' 'var' [Ini]", mgls_fit ,4},
{"fits","Fit data to formula","fits Res A S 'eq' 'var' [Ini]|Res X A S 'eq' 'var' [Ini]|Res X Y A S 'eq' 'var' [Ini]|Res X Y Z A S 'eq' 'var' [Ini]", mgls_fits ,4},
{"flow","Draw flow threads for vector field","flow Udat Vdat ['fmt' num]|Xdat Ydat Udat Vdat ['fmt' num]|Udat Vdat Wdat ['fmt' num]|Xdat Ydat Zdat Udat Vdat ['fmt' num]|\
x0 y0 Udat Vdat ['fmt']|x0 y0 Xdat Ydat Udat Vdat ['fmt']|x0 y0 z0 Udat Vdat Wdat ['fmt']|x0 y0 z0 Xdat Ydat Zdat Udat Vdat Wdat ['fmt']", mgls_flow ,11},
{"fog","Switch on/off fog","fog val [pos]", mgls_fog ,2},
{"font","Setup font","font 'fmt' [size]", mgls_font ,15},
{"for","For cycle","for $N v1 v2 [dv] | $N Dat", 0, 6},
{"fourier","In-place Fourier transform","fourier ReDat ImDat 'dir'", mgls_fourier , 16},
{"fplot","Plot curve by formula","fplot 'y_x' ['fmt']|'x_t' 'y_t' 'z_t' ['fmt']", mgls_fplot ,1},
{"fsurf","Plot surface by formula","fsurf 'z_xy' ['fmt']|'x_uv' 'y_uv' 'z_uv' ['fmt']", mgls_fsurf ,1},
{"func","Start function definition and stop execution of main script","func 'name' [narg]", 0, 6},
{"grad","Draw gradient lines for scalar field","grad Phi ['fmt' num]|Xdat Ydat Phi ['fmt' num]|Xdat Ydat Zdat Phi ['fmt' num]", mgls_grad ,8},
{"grid","Draw grid","grid ['dir' 'fmt']", mgls_grid ,12},
{"grid2","Draw grid for data array(s)","grid Zdat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_grid2 ,8},
{"grid3","Draw grid at slices of 3D data","grid3 Adat 'dir' [pos 'fmt']|Xdat Ydat Zdat Adat 'dir' [pos 'fmt']", mgls_grid3 ,9},
{"gridplot","Set position of plot inside cell of matrix", "gridplot nx ny ind [d]", mgls_gridplot ,5},
{"gspline","Fill data by global spline of Vdat","gspline Dat Xdat Vdat [sl]", mgls_gspline ,3},
{"hankel","Hankel transform at some direction","hankel Dat 'dir'", mgls_hankel ,16},
{"hist","Create histogram (distribution) of data values","hist Res Dat num v1 v2 [nsub]|Res Dat Wdat num v1 v2 [nsub]", mgls_hist ,4},
{"idset","Set column id for data","idset Dat 'ids'", mgls_idset ,3},
{"if","Conditional operator","if val|Dat ['cond']", 0, 6},
{"import","Import data from PNG picture","import Dat 'fname' 'scheme' [v1 v2]", mgls_import ,4},
{"info","Print information about data","info Dat [detail]|'message'", mgls_info ,3},
{"inplot","Set position of plot in picture","x1 x2 y1 y2 [rel]", mgls_inplot ,5},
{"insert","Insert slice of data","insert Dat 'dir' [pos=0 num=1]", mgls_insert ,3},
{"integrate","Integrate data","integrate Dat 'dir'", mgls_integrate ,16},
{"jacobian","Get Jacobian","jacobian Res Xdat Ydat [Zdat]", mgls_jacobian ,4},
{"join","Join data arrays","join Dat Add", mgls_join ,3},
{"label","Draw label at arbitrary position","label Ydat 'txt' ['fmt'='']|Xdat Ydat 'txt' ['fmt'='']|Xdat Ydat Zdat 'txt' ['fmt'='']", mgls_label ,7},
{"legend","Draw legend","legend [pos 'fmt']|x y ['fmt']", mgls_legend ,15},
{"legendmarks","Set number of marks in the legend","legendmarks val", mgls_legendmarks ,15},
{"light","Setup light","light [val] | val num | num xpos ypos zpos ['fmt' br]", mgls_light ,2},
{"line","Draw line","line x1 y1 x2 y2 ['fmt']|x1 y1 z1 x2 y2 z2 ['fmt']", mgls_line ,13},
{"list","Creates new variable from list of numbers or data","list Var v1 ...|Var D1 ...", 0, 4},
{"load","Load commands from external DLL","load 'fname'", 0, 6},
{"loadfont","Load fontfaces","loadfont ['face']", mgls_loadfont ,15},
{"logo","Draw bitmap (logo) along axis range","logo 'fname' [smooth]", mgls_logo ,13},
{"map","Draw mapping plot","map Udat Vdat ['fmt']|Xdat Ydat Udat Vdat ['fmt']", mgls_map ,10},
{"mark","Draw mark plot for 1D data","mark Ydat Rdat ['fmt']|Xdat Ydat Rdat ['fmt']|Xdat Ydat Zdat Rdat ['fmt']", mgls_mark ,7},
{"marksize","Set size of markers","marksize val", mgls_marksize ,2},
{"mask","Set brush for given mask","mask 'id' 'val'|'id' val|angle", mgls_mask ,2},
{"max","Find maximal value over direction","max Res Dat 'dir'", mgls_max ,4},
{"mesh","Draw mesh surface","mesh Zdat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_mesh ,8},
{"meshnum","Set number of lines in mesh/fall/vect and so on","meshnum val", mgls_meshnum ,2},
{"min","Find minimal value over direction","min Res Dat 'dir'", mgls_min ,4},
{"mirror","Mirror data at some direction","mirror Dat 'dir'", mgls_mirror ,16},
{"modify","Modify data values by formula","modify Dat 'eq' [num] | Dat 'eq' Vdat [Wdat]", mgls_modify ,3},
{"momentum","Get momentum along direction","momentum Res Dat 'how' ['dir']", mgls_momentum ,4},
{"multiplot","Set position of plot","multiplot m n pos dx dy 'style'", mgls_multiplot ,5},
{"multo","Multiply by data or number","multo Var Dat|Var num", mgls_multo ,3},
{"new","Create new data","new Dat nx ny nz ['eq']|new Dat nx ny ['eq']|new Dat nx ['eq']", mgls_new ,4},
{"next","Start next for-cycle iteration","next", 0, 6},
{"norm","Normalize data","norm Dat v1 v2 [sym dim]", mgls_norm ,16},
{"normsl","Normalize data slice by slice","normsl Dat v1 v2 ['dir' keep sym] ", mgls_normsl ,16},
{"ode","Solve ODE","ode Res 'df' 'var' Ini [dt tmax]", mgls_ode ,4},
{"ohlc","Draw Open-High-Low-Close (OHLC) diagram","ohlc Odat Hdat Ldat Cdat ['fmt']|Xdat Odat Hdat Ldat Cdat ['fmt']", mgls_ohlc ,7},
{"once","Start/close commands which should executed only once","once val", 0, 6},
{"origin","Set axis origin","origin x0 y0 [z0]", mgls_origin ,14},
{"origintick","Set tick labels drawing at origin","origintick val", mgls_origintick ,14},
{"palette","Set palette for 1D plots","palette 'colors'", mgls_palette ,2},
{"pde","Solve PDE","pde Res 'ham' IniRe IniIm [dz k0]", mgls_pde ,4},
{"perspective","Set perspective","perspective val", mgls_perspective ,2},
{"pipe","Draw flow pipes for vector field","pipe Udat Vdat ['fmt' rad num]|Xdat Ydat Udat Vdat ['fmt' rad num]|Udat Vdat Wdat ['fmt' rad num]|Xdat Ydat Zdat Udat Vdat Wdat ['fmt' rad num]", mgls_pipe ,11},
{"plot","Draw usual plot for 1D data","plot Ydat ['fmt']|Xdat Ydat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_plot ,7},
{"plotid","Set default filename","plotid 'name'", mgls_plotid ,2},
{"polygon","Draw polygon","polygon x1 y1 x2 y2 num ['fmt']|x1 y1 z1 x2 y2 z2 num ['fmt']", mgls_polygon ,13},
{"put","Put value (numeric or array) to given data element","put Dat val [i j k] | Dat Val [i j k]", mgls_put ,3},
{"putsfit","Print fitted formula","putsfit x y ['pre' 'font' size]|x y z ['pre' 'font' size]", mgls_putsfit ,15},
{"qo2d","Solve PDE in accompanied coordinates for 2d case","qo2d Res 'ham' IniRe IniIm Ray [r k0 Xout Yout]", mgls_qo2d ,4},
{"qo3d","Solve PDE in accompanied coordinates for 3d case","qo3d Res 'ham' IniRe IniIm Ray [r k0 Xout Yout Zout]", mgls_qo3d ,4},
{"quadplot","Draw surface of quadrangles","quadplot Idat Xdat Ydat ['fmt']|Idat Xdat Ydat Zdat ['fmt']|Idat Xdat Ydat Zdat Cdat ['fmt'] ", mgls_quadplot ,0},
{"quality","Set plot quality","quality [val]", mgls_quality ,2},
{"radar","Draw radar chart","radar Rdat ['fmt']", mgls_radar ,7},
{"ranges","Set axis ranges","ranges x1 x2 y1 y2 [z1 z2]", mgls_ranges ,14},
{"rasterize","Rasterize and save to background","rasterize", mgls_rasterize ,12},
{"ray","Solve Hamiltonian ODE (find GO ray or trajectory)","ray Res 'ham' x0 y0 z0 px0 py0 pz0 [dz=0.1 tmax=10]", mgls_ray ,4},
{"read","Read data from file","read Dat 'file' [nx ny nz] | ReDat ImDat 'file' [nx ny nz]", mgls_read ,4},
{"readall","Read and join data from several files","readall Dat 'templ' [slice]", mgls_readall ,4},
{"readhdf","Read data from HDF5 file","readhdf Dat 'file' 'id'", mgls_readhdf ,4},
{"readmat","Read data from file with sizes specified in first row","readmat Dat 'file' [dim]", mgls_readmat ,4},
{"rearrange","Rearrange data dimensions","rearrange Dat mx [my mz]", mgls_rearrange ,3},
{"rect","Draw rectangle","rect x1 y1 x2 y2 ['fmt']|x1 y1 z1 x2 y2 z2 ['fmt']", mgls_rect ,13},
{"refill","Fill data by interpolation of Vdat","refill Dat Xdat Vdat [sl] | Dat Xdat Ydat Vdat [sl] | Dat Xdat Ydat Zdat Vdat", mgls_refill ,3},
{"region","Draw filled region (ribbon) between 2 curves","region Ydat1 Ydat2 ['fmt']|Xdat Ydat1 Ydat2 ['fmt']||Xdat1 Ydat1 Xdat2 Ydat2 ['fmt']|Xdat1 Ydat1 Zdat1 Xdat2 Ydat2 Zdat2 ['fmt']", mgls_region ,7},
{"reset","Reset settings and clear picture","reset", mgls_reset ,12},
{"resize","Resize data","resize Res Dat mx [my mz]", mgls_resize ,4},
{"return","Return from function","return", 0, 6},
{"rhomb","Draw rhombus","rhomb x1 y1 x2 y2 r ['fmt']|x1 y1 z1 x2 y2 z2 r ['fmt']", mgls_rhomb ,13},
{"roll","Roll data along direction","roll Dat 'dir' num", mgls_roll ,16},
{"roots", "Find roots using data as initial values", "roots Res 'func' Ini ['var']|Res 'func' ini ['var']", mgls_roots ,4},
{"rotate","Rotate plot","rotate tetz tetx [tety] | tet x y z", mgls_rotate ,5},
{"rotatetext","Set to auto rotate text or not","rotatetext val", mgls_rotatetext ,15},
{"save","Save data to file","save Dat 'file'", mgls_save ,3},
{"savehdf","Save data to HDF5 file","savehdf Dat 'file' 'id'", mgls_savehdf ,3},
{"setsize","Set picture size","setsize width height", mgls_setsize ,2},
{"sew","Remove jump into the data, like phase jumps","sew Dat ['dir' da]", mgls_sew ,16},
{"sinfft","Sin-Fourier transform at some direction","sinfft Dat 'dir'", mgls_sinfft ,16},
{"smooth","Smooth data","smooth Dat [kind 'dir']", mgls_smooth ,16},
{"solve","Find root Dat_{i,j,k}=val (inverse evaluate)","solve Res Dat val 'dir' [Idat norm]", mgls_solve ,4},
{"sort","Sort data by values in column","sort Dat idx [idy]", mgls_sort ,3},
{"sphere","Draw sphere","sphere x0 y0 r ['fmt']|x0 y0 z0 r ['fmt']", mgls_sphere ,13},
{"squeeze","Squeeze data","squeeze Dat kx [ky kz]", mgls_squeeze ,3},
{"stem","Draw stem plot for 1D data","stem Ydat ['fmt']|Xdat Ydat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_stem ,7},
{"step","Draw step plot for 1D data","step Ydat ['fmt']|Xdat Ydat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_step ,7},
{"stfa","Draw STFA diagram","stfa Udat Vdat dn ['fmt']|Xdat Ydat Udat Vdat dn ['fmt']", mgls_stfa ,10},
{"stfad","Do STFA transform","stfad Res Real Imag dn ['dir']", mgls_stfad ,4},
{"stickplot","Set position of plot inside cell of stick", "stickplot num ind tet phi", mgls_stickplot ,5},
{"stop","Stop execution","stop", 0, 6},
{"subdata","Extract sub-array","subdata Res Dat nx [ny nz]", mgls_subdata ,4},
{"subplot","Set position of plot","subplot m n pos ['style' dx dy]", mgls_subplot ,5},
{"subto","Subtract data or number","subto Var Dat|Var num", mgls_subto ,3},
{"sum","Find summation over direction","sum Res Dat 'dir'", mgls_sum ,4},
{"surf","Draw solid surface","surf Zdat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_surf ,8},
{"surf3","Draw isosurface for 3D data","surf3 Adat ['fmt' num]|Xdat Ydat Zdat Adat ['fmt' num]|Adat val ['fmt']|Xdat Ydat Zdat Adat val ['fmt']", mgls_surf3 ,9},
{"surf3a","Draw isosurface for 3D data transpared by other data","surf3a Adat Cdat ['fmt' num]|Xdat Ydat Zdat Adat Cdat ['fmt' num]|Adat Cdat val ['fmt']|Xdat Ydat Zdat Adat Cdat val ['fmt']", mgls_surf3a ,10},
{"surf3c","Draw isosurface for 3D data colored by other data","surf3c Adat Cdat ['fmt' num]|Xdat Ydat Zdat Adat Cdat ['fmt' num]|Adat Cdat val ['fmt']|Xdat Ydat Zdat Adat Cdat val ['fmt']", mgls_surf3c ,10},
{"surfa","Draw solid surface transpared by other data","surfa Zdat Cdat ['fmt']|Xdat Ydat Zdat Cdat ['fmt']", mgls_surfa ,10},
{"surfc","Draw solid surface colored by other data","surfc Zdat Cdat ['fmt']|Xdat Ydat Zdat Cdat ['fmt']", mgls_surfc ,10},
{"swap","Swap data (usefull after Fourier transform)","swap Dat 'dir'", mgls_swap ,16},
{"table","Draw table with data values","table Dat ['txt' 'fmt']|x y Dat ['txt' 'fmt']", mgls_table ,7},
{"tape","Draw binormales for 1D data","tape Ydat ['fmt']|Xdat Ydat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_tape ,7},
{"tens","Draw tension plot for 1D data","tens Ydat Cdat ['fmt']|Xdat Ydat Cdat ['fmt']|Xdat Ydat Zdat Cdat ['fmt']", mgls_tens ,7},
{"ternary","Switch on/off to use ternary axis","ternary val", mgls_ternary ,14},
{"text","Draw text at some position or along curve","text x y 'txt' ['fmt' size]|x y z 'txt' ['fmt' size]|x y dx dy 'txt' ['fmt' size]|x y z dx dy dz 'txt' ['fmt' size]|Ydat 'txt' ['font' sise]|Xdat Ydat 'txt' ['font' sise]", mgls_text ,15},
{"textmark","Draw TeX mark at point position","textmark Ydat Rdat 'text' ['fmt']|Xdat Ydat Rdat 'text' ['fmt']|Xdat Ydat Zdat Rdat 'text' ['fmt']", mgls_textmark ,7},
{"ticklen","Set tick length","ticklen val [stt]", mgls_ticklen ,14},
{"tickshift","Set additional tick and axis labels shift","tickshift dx [dy dz dc]", mgls_tickshift ,14},
{"ticktime","Set ticks in time format","ticktime 'dir' [dv 'tmpl']", mgls_ticktime ,14},
{"tile","Draw horizontal tiles","tile Zdat ['fmt']|Xdat Ydat Zdat ['fmt']", mgls_tile ,8},
{"tiles","Draw horizontal tiles with variable size","tiles Zdat Rdat ['fmt']|Xdat Ydat Zdat Rdat ['fmt']", mgls_tiles ,10},
{"title","Add title for current subplot/inplot","title 'txt' ['fmt' size]", mgls_title ,5},
{"tlabel","Draw label for t-axis","tlabel 'txt' [pos]", mgls_tlabel ,12},
{"torus","Draw surface of curve rotation","torus Rdat ['fmt']|Zdat Rdat ['fmt']", mgls_torus ,7},
{"trace","Get trace of array","trace Res Dat", mgls_trace ,4},
{"traj","Draw vectors along a curve","traj Xdat Ydat Udat Vdat ['fmt' len]|Xdat Ydat Zdat Udat Vdat Wdat ['fmt' len]", mgls_traj ,11},
{"transform","Do integral transform of data","transform Res 'how' Rdat Idat", mgls_transform ,4},
{"transforma","Do integral transform of data","transforma Res 'how' Adat Pdat", mgls_transforma ,4},
{"transpose","Transpose data array","transpose Dat ['dir']", mgls_transpose ,16},
{"transptype","Set type transparency","transptype val", mgls_transptype ,2},
{"triangulate","Find triangles of randomly placed points","triangulate Res Xdat Ydat [er]|Res Xdat Ydat Zdat [er]", mgls_triangulate ,4},
{"tricont","Draw contour lines for surface of triangles","tricont Idat Xdat Ydat Cdat ['fmt']|Idat Xdat Ydat Zdat Cdat ['fmt']|Vdat Idat Xdat Ydat Cdat ['fmt']|Vdat Idat Xdat Ydat Zdat Cdat ['fmt']", mgls_tricont ,0},
{"tricontv","Draw contour tubes for surface of triangles","tricontv Idat Xdat Ydat Cdat ['fmt']|Idat Xdat Ydat Zdat Cdat ['fmt']|Vdat Idat Xdat Ydat Cdat ['fmt']|Vdat Idat Xdat Ydat Zdat Cdat ['fmt']", mgls_tricontv ,0},
{"triplot","Draw surface of triangles","triplot Idat Xdat Ydat ['fmt']|Idat Xdat Ydat Zdat ['fmt']|Idat Xdat Ydat Zdat Cdat ['fmt'] ", mgls_triplot ,0},
{"tube","Draw curve by tube","tube Ydat Rdat ['fmt']|Ydat rval ['fmt']|Xdat Ydat Rdat ['fmt']|Xdat Ydat rval ['fmt']|Xdat Ydat Zdat Rdat ['fmt']|Xdat Ydat Zdat rval ['fmt']", mgls_tube ,7},
{"tuneticks","Set ticks tuning","tuneticks val [fctr]", mgls_tuneticks ,14},
{"var","Create new 1D data and fill it in range","var Dat nx x1 [x2]", mgls_var ,4},
{"vect","Draw vector field","vect Udat Vdat ['fmt']|Xdat Ydat Udat Vdat ['fmt']|Udat Vdat Wdat ['fmt']|Xdat Ydat Zdat Udat Vdat Wdat ['fmt']", mgls_vect ,11},
{"vect3","Draw vector field at slices of 3D data","vect Udat Vdat Wdat ['fmt' sval]|Xdat Ydat Zdat Udat Vdat Wdat ['fmt' sval]", mgls_vect3 ,11},
{"version","Print MathGL version or check if it is valid","version |'ver'", mgls_version, 2},
{"view","Change view angles - use 'rotate' for plot rotation","view tetz tetx [tety]", mgls_view ,5},
{"write","Write current image to graphical file","write ['fname']", mgls_write ,2},
{"xlabel","Draw label for x-axis","xlabel 'txt' [pos]", mgls_xlabel ,12},
{"xrange","Set range for x-axis","xrange Dat [add] | x1 x2 [add]", mgls_xrange ,14},
{"xtick","Set ticks for x-axis","xtick dx ['factor'] | dx sx ['factor'] | dx sx tx ['factor'] | 'tmpl' | Xdat 'lbl' [add] | v1 'lbl1' ...", mgls_xtick,14},
{"ylabel","Draw label for y-axis","ylabel 'txt' [pos]", mgls_ylabel,12},
{"yrange","Set range for y-axis","yrange Dat [add] | y1 y2 [add]", mgls_yrange,14},
{"ytick","Set ticks for y-axis","ytick dy ['factor'] | dy sy ['factor'] | dy sy ty ['factor'] | 'tmpl' | Ydat 'lbl' [add] | v1 'lbl1' ...", mgls_ytick,14},
{"zlabel","Draw label for z-axis","zlabel 'txt' [pos]", mgls_zlabel,12},
{"zoom","Zoom plot region","zoom x1 x2 y1 y2", mgls_zoom,5},
{"zoomaxis","Zoom axis range","zoomaxis x1 x2|x1 x2 y1 y2|x1 x2 y1 y2 z1 z2|x1 x2 y1 y2 z1 z2 c1 c2", mgls_zoomaxis,14},
{"zrange","Set range for z-axis","yrange Dat [add] | z1 z2 [add]", mgls_zrange ,14},
{"ztick","Set ticks for z-axis","ztick dz ['factor'] | dz sz ['factor'] | dz sz tz ['factor'] | 'tmpl' | Zdat 'lbl' [add] | v1 'lbl1' ...", mgls_ztick,14},
{"","","",NULL,0}};
//-----------------------------------------------------------------------------
| [
"sanikoyes@163.com"
] | sanikoyes@163.com |
12dfbd881cbf80ba4a773cc17b5c75f024bed9b0 | 33217c930b24e283e6f2332dedff6fa074b03f07 | /solve.cpp | 81ac58c607fa6c61e099424b06dfb51a9cb04b3b | [] | no_license | leotms/IA-III | f686664c91f02845cff36fdba7839be35aa890eb | 83fa96f0e68cd18ab24775e40193b28247302311 | refs/heads/master | 2021-05-01T04:58:59.465628 | 2017-01-08T01:02:11 | 2017-01-08T01:02:11 | 75,941,336 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,951 | cpp | /* UNIVERSIDAD SIMON BOLIVAR
INTRODUCTION TO AI I (CI-5437)
AUTHORS:
LEONARDO MARTINEZ #11-10576
NICOLAS MAÑAN #06-39883
JOEL RIVAS #11-10866
LAST UPDATED: 10/10/2016.
*/
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <stdio.h>
#include <string>
#include <sstream>
#include <vector>
using namespace std;
int N, M, T_SEG, N_CLAUSES;
int N_INST, N_SAT, N_UNSAT;
//*****************************************************************************/
// takes a string and line to separate its elements using a separator char and
// pushes the result into a vector
void split(const string &s, char separator, vector<string> &elems) {
stringstream ss;
ss.str(s);
string item;
while (getline(ss, item, separator)) {
elems.push_back(item);
}
}
// returns a vector containing the elements of a string s, separated by the
// separator
vector<string> split(const string &s, char separator) {
vector<string> elems;
split(s, separator, elems);
return elems;
}
//*****************************************************************************/
// returns the value of the variable that represents a segment for point (i,j)
int q(int i, int j, char side) {
int box = (i - 1)*M + j;
if (side == 'n'){
return box;
} else if (side == 's') {
return (i*M) + j;
} else if (side == 'w') {
return N*(M + 1) + box + i -1;
} else if (side == 'e') {
return N*(M + 1) + box + i;
}
}
// matches a box into an unique value depending on i y j
// for differing inner or outer perimeter box.
int z(int i, int j) {
int box = (i - 1)*M + j;
return T_SEG + box;
}
// matches a box into a unique value depending on m and n
// for stablishing reachability for box c and box c'
int r(int ci, int cj, int cpi, int cpj) {
int box_c = (ci - 1)*M + cj;
int box_cp = (cpi - 1)*M + cpj;
int box = (box_c - 1)*M*N + box_cp;
return (N*M) + T_SEG + box;
}
//*****************************************************************************/
int main(int argc, char ** argv) {
FILE * inputfile; // will point to the input file with the instances
FILE * resfile; // will point to the file where minsat stores the solution
ofstream outfile; // points to the clauses.cnf
ofstream answerfile; // points to the file containing all the solutions for instances.
if (argc < 2) {
cout << "ERROR: Missing input file with problem instances." << "\n";
}
inputfile = fopen(argv[1],"r");
answerfile.open("output.txt");
char * line = NULL;
size_t len = 0;
ssize_t read;
// message for user
cout << "Solving instances of " << argv[1] << "\n";
N_INST = 0; // total number of instances in the file
N_SAT = 0; // number of satisfiable instances
N_UNSAT = 0; // number of unsatisfiable instances
// reads each line of the input file. Each file is intended to cointan only
// one instance of the problem.
while ((read = getline(&line, &len, inputfile)) != -1) {
outfile << "c " << line;
vector<string> info = split(line, ' ');
outfile.open("clauses.cnf");
N = stoi(info[0]);
M = stoi(info[1]);
N_CLAUSES = 0;
// number of vertical segments + horizontal segments
int SEG_HOR = (N+1)*M;
int SEG_VER = (M+1)*N;
T_SEG = SEG_VER + SEG_HOR;
// we extract the info from the line
vector<string> values(info.end() - N, info.end());
// we calculate the number of variables including T_SEG, Z and R.
int T_VARIABLES = N*N*M*M + N*M + (T_SEG);
for(int i = 1; i <= N; i++){
string row = values[i-1];
for( int j = 1; j <= M; j++) {
// CHECK FOR TYPE 1 CLAUSES
outfile << "c TYPE 1 CLAUSES: for (i,j) = (" << i << "," << j << "):\n";
// the box has no segments
if (row[j-1] =='0'){
outfile << "-" << q(i,j,'n') << " 0\n";
outfile << "-" << q(i,j,'s') << " 0\n";
outfile << "-" << q(i,j,'e') << " 0\n";
outfile << "-" << q(i,j,'w') << " 0\n";
N_CLAUSES += 4;
} // the box has only one segment
else if (row[j-1] =='1'){
outfile << q(i,j,'n') << " " << q(i,j,'e') << " " << q(i,j,'s') << " " << q(i,j,'w') << " 0\n";
outfile << "-" << q(i,j,'s') << " -" << q(i,j,'w') << " 0\n";
outfile << "-" << q(i,j,'e') << " -" << q(i,j,'s') << " 0\n";
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'w') << " 0\n";
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'e') << " 0\n";
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'s') << " 0\n";
outfile << "-" << q(i,j,'e') << " -" << q(i,j,'w') << " 0\n";
N_CLAUSES += 7;
} // the box has two segments
else if (row[j-1] =='2'){
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'e') << " -" << q(i,j,'s') << " -" << q(i,j,'w') << " 0\n";
// when north and south segments are true
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'s') << " -" << q(i,j,'e') << " 0\n";
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'s') << " -" << q(i,j,'w') << " 0\n";
outfile << q(i,j,'w') << " " << q(i,j,'e') << " " << q(i,j,'s') << " 0\n";
outfile << q(i,j,'w') << " " << q(i,j,'e') << " " << q(i,j,'n') << " 0\n";
// when nort and west segments are true
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'w') << " -" << q(i,j,'e') << " 0\n";
outfile << q(i,j,'n') << " " << q(i,j,'e') << " " << q(i,j,'s') << " 0\n";
// when nort and east segments are true
outfile << q(i,j,'w') << " " << q(i,j,'n') << " " << q(i,j,'s') << " 0\n";
// when south and west segments are true
outfile << "-" << q(i,j,'s') << " -" << q(i,j,'w') << " -" << q(i,j,'e') << " 0\n";
outfile << q(i,j,'w') << " " << q(i,j,'n') << " " << q(i,j,'e') << " 0\n";
N_CLAUSES += 10;
} // the box has three segments
else if (row[j-1] =='3'){
outfile << "-" << q(i,j,'n') << " -" << q(i,j,'e') << " -" << q(i,j,'s') << " -" << q(i,j,'w') << " 0\n";
// when nort, south and west segments are true
outfile << q(i,j,'w') << " " << q(i,j,'e') << " 0\n";
outfile << q(i,j,'s') << " " << q(i,j,'e') << " 0\n";
outfile << q(i,j,'n') << " " << q(i,j,'e') << " 0\n";
// north, south and west segments are true
outfile << q(i,j,'n') << " " << q(i,j,'w') << " 0\n";
outfile << q(i,j,'s') << " " << q(i,j,'w') << " 0\n";
// north, south and west segments are true
outfile << q(i,j,'n') << " " << q(i,j,'s') << " 0\n";
N_CLAUSES += 7;
} // the box has all four segments
else if (row[j-1] =='4'){
outfile << q(i,j,'n') << " 0\n";
outfile << q(i,j,'s') << " 0\n";
outfile << q(i,j,'e') << " 0\n";
outfile << q(i,j,'w') << " 0\n";
N_CLAUSES += 4;
}
// CHECK FOR TYPE 2 CLAUSES
outfile << "c TYPE 2 CLAUSES: for (i,j) = (" << i << "," << j << "):\n";
// left border of the board
if (j == 1) {
outfile << q(i,1,'w') << " -" << z(i,1) << " 0\n";
outfile << "-" << q(i,1,'w') << " " << z(i,1) << " 0\n";
N_CLAUSES += 2;
} // right border of the board
else if (j == N) {
outfile << q(i,M,'e') << " -" << z(i,M) << " 0\n";
outfile << "-" << q(i,M,'e') << " " << z(i,M) << " 0\n";
N_CLAUSES += 2;
} // upper border of the board
else if (i == 1) {
outfile << q(i,j,'n') << " -" << z(1,j) << " 0\n";
outfile << "-" << q(i,j,'n') << " " << z(1,j) << " 0\n";
N_CLAUSES += 2;
} // lower border of the board
else if (i == N){
outfile << q(N,j,'s') << " -" << z(N,j) << " 0\n";
outfile << "-" << q(N,j,'s') << " " << z(N,j) << " 0\n";
N_CLAUSES += 2;
} // all the non-border boxes of the board
else {
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " -" << q(i,j,'n') << " -" << q(i,j,'s') << " -" << q(i,j,'w') << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " -" << q(i,j,'n') << " -" << q(i,j,'s') << " " << z(i-1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " -" << q(i,j,'n') << " " << z(i,j-1) << " -" << q(i,j,'w') << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " -" << q(i,j,'n') << " " << z(i,j-1) << " " << z(i-1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'n') << " -" << q(i,j,'s') << " -" << q(i,j,'w') << " " << z(i+1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'n') << " -" << q(i,j,'s') << " " << z(i-1,j) << " " << z(i+1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'n') << " -" << q(i,j,'w') << " " << z(i,j-1) << " " << z(i+1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'n') << " " << z(i,j-1) << " " << z(i-1,j) << " " << z(i+1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " -" << q(i,j,'s') << " -" << q(i,j,'w') << " " << z(i,j+1) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " -" << q(i,j,'s') << " " << z(i,j+1) << " " << z(i-1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " -" << q(i,j,'w') << " " << z(i,j+1) << " " << z(i,j-1) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'e') << " " << z(i,j-1) << " " << z(i,j+1) << " " << z(i-1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'s') << " -" << q(i,j,'w') << " " << z(i,j+1) << " " << z(i+1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'s') << " " << z(i,j+1) << " " << z(i+1,j) << " " << z(i-1,j) << " 0\n";
outfile << "-" << z(i,j) << " -" << q(i,j,'w') << " " << z(i,j+1) << " " << z(i+1,j) << " " << z(i,j-1) << " 0\n";
outfile << "-" << z(i,j) << " " << z(i-1,j) << " " << z(i,j+1) << " " << z(i+1,j) << " " << z(i,j-1) << " 0\n";
outfile << " " << z(i,j) << " " << q(i,j,'n') << " -" << z(i,j+1) << " 0\n"; // CHECK
outfile << " " << z(i,j) << " " << q(i,j,'e') << " -" << z(i+1,j) << " 0\n";
outfile << " " << z(i,j) << " " << q(i,j,'s') << " -" << z(i,j-1) << " 0\n";
outfile << " " << z(i,j) << " " << q(i,j,'w') << " -" << z(i-1,j) << " 0\n";
N_CLAUSES += 20;
}
// CHECK FOR TYPE 3 CLAUSES
outfile << "c TYPE 3 CLAUSES: for (i,j) = (" << i << "," << j << "):\n";
// Every box can reach itself
outfile << r(i,j,i,j) << " 0\n";
N_CLAUSES += 1;
for (int ip = 1; ip <= N; ip++) {
for (int jp = 1; jp <= M; jp++) {
// check adjacent boxes for the corners
// every line except the last one
if (ip + 1 < N) {
//bottom adjacent
outfile << "-" << r(i,j,ip,jp) << " " << q(ip,jp,'s') << " " << r(i,j, ip+1,jp) << " 0\n";
N_CLAUSES += 1;
} // every line except the first one
if (ip - 1 > 1) {
//top adjacent
outfile << "-" << r(i,j, ip,jp) << " " << q(ip,jp,'n') << " " << r(i,j, ip - 1,jp) << " 0\n";
N_CLAUSES += 1;
} // every column except the first one
if (jp - 1 > 1) {
//left adjacent
outfile << "-" << r(i,j, ip,jp) << " " << q(ip,jp,'w') << " " << r(i,j, ip,jp-1) << " 0\n";
N_CLAUSES += 1;
} // every column except the last one
if (jp + 1 < M) {
//right adjacent
outfile << "-" << r(i,j, ip,jp) << " " << q(ip,jp,'e') << " " << r(i,j, ip, jp+1) << " 0\n";
N_CLAUSES += 1;
}
}
}
// Check for type 4 clauses
// we iterate over every box
outfile << "c TYPE 4 CLAUSES: for (i,j) = (" << i << "," << j << "):\n";
for (int ip = 1; ip <= N; ip++) {
for(int jp = 1; jp <=M; jp++){
outfile << z(i,j) << " " << z(ip,jp) << " " << r(i,j,ip,jp) << " 0\n";
N_CLAUSES += 1;
}
}
}
}
// OTHER CLAUSES
// makes restrictions for adjacency of segments
// upper-left corner
outfile << "-" << q(1,1,'n') << " " << q(1,1,'w') << " 0\n";
outfile << "-" << q(1,1,'w') << " " << q(1,1,'n') << " 0\n";
N_CLAUSES += 2;
// upper-right corner
outfile << "-" << q(1,M,'n') << " " << q(1,M,'e') << " 0\n";
outfile << "-" << q(1,M,'e') << " " << q(1,M,'n') << " 0\n";
N_CLAUSES += 2;
// lower-left corner
outfile << "-" << q(N,1,'s') << " " << q(N,1,'w') << " 0\n";
outfile << "-" << q(N,1,'w') << " " << q(N,1,'s') << " 0\n";
N_CLAUSES += 2;
// lower-right corner
outfile << "-" << q(N,M,'s') << " " << q(N,M,'e') << " 0\n";
outfile << "-" << q(N,M,'e') << " " << q(N,M,'s') << " 0\n";
N_CLAUSES += 2;
// now check the borders without the corners
for (int i = 0; i <= N; i++) {
for (int j = 0; j <= M; j++) {
// upper border
if (i == 0 && j != 0 && j != M) {
outfile << "-" << q(1,j,'n') << " " << q(1,j+1,'n') << " " << q(1,j,'e') << " 0\n";
outfile << q(1,j,'n') << " -" << q(1,j+1,'n') << " " << q(1,j,'e') << " 0\n";
outfile << q(1,j,'n') << " " << q(1,j+1,'n') << " -" << q(1,j,'e') << " 0\n";
outfile << "-" << q(1,j,'n') << " -" << q(1,j+1,'n') << " -" << q(1,j,'e') << " 0\n";
N_CLAUSES += 4;
}
// lower border
else if (i == N && j != 0 && j != M) {
outfile << "-" << q(N,j,'s') << " " << q(N,j+1,'s') << " " << q(N,j,'e') << " 0\n";
outfile << q(N,j,'s') << " -" << q(N,j+1,'s') << " " << q(N,j,'e') << " 0\n";
outfile << q(N,j,'s') << " " << q(N,j+1,'s') << " -" << q(N,j,'e') << " 0\n";
outfile << "-" << q(N,j,'s') << " -" << q(N,j+1,'s') << " -" << q(N,j,'e') << " 0\n";
N_CLAUSES += 4;
}
// left border
if (j == 0 && i != 0 && i != N ){
outfile << "-" << q(i,1,'w') << " " << q(i+1,1,'w') << " " << q(i,1,'s') << " 0\n";
outfile << q(i,1,'w') << " -" << q(i+1,1,'w') << " " << q(i,1,'s') << " 0\n";
outfile << q(i,1,'w') << " " << q(i+1,1,'w') << " -" << q(i,1,'s') << " 0\n";
outfile << "-" << q(i,1,'w') << " -" << q(i+1,1,'w') << " -" << q(i,1,'s') << " 0\n";
N_CLAUSES += 4;
}
// right border
else if (j == M && i != 0 && i != N){
outfile << "-" << q(i,M,'e') << " " << q(i+1,M,'e') << " " << q(i,M,'s') << " 0\n";
outfile << q(i,M,'e') << " -" << q(i+1,M,'e') << " " << q(i,M,'s') << " 0\n";
outfile << q(i,M,'e') << " " << q(i+1,M,'e') << " -" << q(i,M,'s') << " 0\n";
outfile << "-" << q(i,M,'e') << " -" << q(i+1,M,'e') << " -" << q(i,M,'s') << " 0\n";
N_CLAUSES += 4;
}
// inside cases
if (i > 0 && i < N && j > 0 && j < M) {
// when a segment is adjacent to (i,j), there is another segment adjacent to (i,j)
outfile << "-" << q(i,j,'e') << " " << q(i,j,'s') << " " << q(i+1,j+1,'w') << " " << q(i+1,j+1,'n') << " 0\n";
outfile << q(i,j,'e') << " -" << q(i,j,'s') << " " << q(i+1,j+1,'w') << " " << q(i+1,j+1,'n') << " 0\n";
outfile << q(i,j,'e') << " " << q(i,j,'s') << " -"<< q(i+1,j+1,'w') << " " << q(i+1,j+1,'n') << " 0\n";
outfile << q(i,j,'e') << " " << q(i,j,'s') << " " << q(i+1,j+1,'w') << " -"<< q(i+1,j+1,'n') << " 0\n";
// there are only two adjacent segments for (i,j)
outfile << "-" << q(i,j,'e') << " -" << q(i,j,'s') << " -" << q(i+1,j+1,'w') << " 0\n";
outfile << "-" << q(i,j,'e') << " -" << q(i,j,'s') << " -" << q(i+1,j+1,'n') << " 0\n";
outfile << "-" << q(i,j,'e') << " -" << q(i+1,j+1,'w') << " -" << q(i,j,'s') << " 0\n";
outfile << "-" << q(i,j,'e') << " -" << q(i+1,j+1,'w') << " -" << q(i+1,j+1,'n') << " 0\n";
outfile << "-" << q(i,j,'e') << " -" << q(i+1,j+1,'n') << " -" << q(i,j,'s') << " 0\n";
outfile << "-" << q(i,j,'e') << " -" << q(i+1,j+1,'n') << " -" << q(i+1,j+1,'w') << " 0\n";
outfile << "-" << q(i,j,'s') << " -" << q(i+1,j+1,'w') << " -" << q(i,j,'e') << " 0\n";
outfile << "-" << q(i,j,'s') << " -" << q(i+1,j+1,'w') << " -" << q(i+1,j+1,'n') << " 0\n";
outfile << "-" << q(i,j,'s') << " -" << q(i+1,j+1,'n') << " -" << q(i,j,'e') << " 0\n";
outfile << "-" << q(i,j,'s') << " -" << q(i+1,j+1,'n') << " -" << q(i+1,j+1,'w') << " 0\n";
outfile << "-" << q(i+1,j+1,'w') << " -" << q(i+1,j+1,'n') << " -" << q(i,j,'e') << " 0\n";
outfile << "-" << q(i+1,j+1,'w') << " -" << q(i+1,j+1,'n') << " -" << q(i,j,'s') << " 0\n";
N_CLAUSES += 16;
}
}
}
outfile << "p cnf "<< T_VARIABLES << " " << N_CLAUSES << "\n";
outfile.close();
// we excecute minisat and redirect the output to the file sat.log
int status = system("./minisat/core/minisat clauses.cnf res.out >> sat.log");
resfile = fopen("res.out","r");
N_INST++;
// we read the file with the results for extracting and formatting the answer
char * line_res = NULL;
size_t len_res = 0;
ssize_t read_res;
read_res = getline(&line_res, &len_res, resfile);
// means the problem is satisfiable
if (line_res[0] == 'S') {
N_SAT++;
answerfile << line;
answerfile << N << " " << M << " ";
// we read the line containing the answer
read_res = getline(&line_res, &len_res, resfile);
vector<string> answer = split(line_res, ' ');
// formatting the answer:
// first we separate the corresponding binary representations for
// both horizontal and vertical segments.
string binary_horizontal = "";
string binary_vertical = "";
for(int i = 0; i < T_SEG; i++) {
string var = answer[i];
//check if the variable matches an horizontal segment
if (i < SEG_HOR) {
if(var[0] == '-') {
binary_horizontal += '0';
} else {
binary_horizontal += '1';
}
} else {
if(var[0] == '-') {
binary_vertical += '0';
} else {
binary_vertical += '1';
}
}
}
// then we separate those binary srings into two vectors.
vector<string> horizontal_vector;
vector<string> vertical_vector;
int h_i = 0;
int v_i = 0;
string aux = "";
for (int i = 0; i < SEG_HOR; i++){
aux += binary_horizontal[i];
h_i++;
if (h_i == M) {
horizontal_vector.push_back(aux);
aux = "";
h_i = 0;
}
}
for (int i = 0; i < SEG_VER; i++){
aux += binary_vertical[i];
v_i++;
if (v_i == M + 1) {
vertical_vector.push_back(aux);
aux = "";
v_i = 0;
}
}
// finaly, we mix the solution to match the one given as example
// (ROW SEGMENTS) (COLUMN SEGMENTS) (ROW SEGMENTS) ...
string final_binary = "";
for (int i = 0; i < N + 1; i++) {
final_binary += horizontal_vector[i];
final_binary += " ";
if (i < N) {
final_binary += vertical_vector[i];
final_binary += " ";
}
}
answerfile << final_binary << '\n';
} // if it was unsatisfiable:
else {
N_UNSAT++;
answerfile << "UNSAT: ";
answerfile << line;
}
}
answerfile.close();
int rem = system("rm *.out *.cnf");
// message for user
cout << "Done solving instances."<< "\n";
cout << "Answer is contained in output.txt"<< "\n";
cout << "--------------------------"<< "\n";
cout << "SUMMARY:";
cout << "Number of instances: " << N_INST<< "\n";
cout << "Satisfiable Instances: " << N_SAT<< "\n";
cout << "Unsatisfiable Instances: " << N_UNSAT<< "\n";
cout << "Minisat output for all instances can be found at sat.log"<< "\n";
return 0;
}
| [
"martinezazuaje@gmail.com"
] | martinezazuaje@gmail.com |
a84ca19dfa9aec0b85e7f134d7d349e23ff1d961 | d698370bf198aa549b20f1e270d54020be603f88 | /inc/behaviac/common/meta/metatypes.h | b96f1f4269d1a11d3a24628ce44ad570e0a02c4f | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"BSD-2-Clause",
"MIT",
"Zlib"
] | permissive | BantamJoe/behaviac-1 | ace17211a736c83827a50e7c62c0123d0abbf751 | 426fbac954d7c1db00eb842d6e0b9390fda82dd3 | refs/heads/master | 2020-03-27T23:09:56.571496 | 2016-11-18T12:23:17 | 2016-11-18T12:23:17 | 147,296,766 | 1 | 0 | null | 2018-09-04T06:13:30 | 2018-09-04T06:13:30 | null | UTF-8 | C++ | false | false | 4,223 | h | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Tencent is pleased to support the open source community by making behaviac available.
//
// Copyright (C) 2015 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the BSD 3-Clause 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/BSD-3-Clause
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and limitations under the License.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _BEHAVIAC_COMMON_META_METATYPES_H_
#define _BEHAVIAC_COMMON_META_METATYPES_H_
#include "behaviac/common/base.h"
#include "behaviac/common/assert.h"
#include "behaviac/common/staticassert.h"
#include "behaviac/common/meta/metabase.h"
#include "behaviac/common/meta/removeconst.h"
#include "behaviac/common/meta/removeref.h"
#include "behaviac/common/meta/removeptr.h"
#include "behaviac/common/meta/removeall.h"
#include "behaviac/common/meta/pointertype.h"
#include "behaviac/common/meta/reftype.h"
#include "behaviac/common/meta/isenum.h"
#include "behaviac/common/meta/isvector.h"
#include "behaviac/common/meta/ismap.h"
#include "behaviac/common/meta/isstruct.h"
#include "behaviac/common/meta/ifthenelse.h"
#include "behaviac/common/meta/hasfunction.h"
#define _BASETYPE_(T) typename behaviac::Meta::RemovePtr<typename behaviac::Meta::RemoveRef<T>::Result>::Result
#define REAL_BASETYPE(T) typename behaviac::Meta::RemoveConst<_BASETYPE_(T)>::Result
#define VALUE_TYPE(T) typename behaviac::Meta::RemoveConst<typename behaviac::Meta::RemoveRef<T>::Result>::Result
#define POINTER_TYPE(T) typename behaviac::Meta::PointerType<T>::Result
namespace behaviac
{
class Agent;
namespace Meta
{
template <typename T, bool bPtr>
class ParamTypeConverter
{
public:
typedef REAL_BASETYPE(T) BaseType;
typedef POINTER_TYPE(T) PointerType;
};
template <>
class ParamTypeConverter<const char*, true>
{
public:
typedef behaviac::string BaseType;
typedef const char** PointerType;
};
template<typename T>
struct ParamCalledType
{
private:
//can't remove const
typedef typename behaviac::Meta::RefType<T>::Result RefType_t;
public:
typedef typename behaviac::Meta::IfThenElse<behaviac::Meta::IsPtr<T>::Result, RefType_t, T>::Result Result;
};
template <typename T>
struct IsAgent
{
typedef REAL_BASETYPE(T) TBaseType;
enum
{
Result = behaviac::Meta::IsSame<behaviac::Agent, TBaseType>::Result || behaviac::Meta::IsDerived<behaviac::Agent, TBaseType>::Result
};
};
template <typename T>
struct TypeMapper
{
typedef T Type;
};
template <typename T, bool bHasFromString>
class IsRefTypeStruct
{
public:
enum
{
Result = 0
};
};
template <typename T>
class IsRefTypeStruct<T, true>
{
public:
enum
{
Result = T::ms_bIsRefType
};
};
template <typename T>
struct IsRefType
{
typedef REAL_BASETYPE(T) TBaseType;
typedef typename TypeMapper<TBaseType>::Type MappedType;
enum
{
Result = behaviac::Meta::IsAgent<TBaseType>::Result || behaviac::Meta::IsRefTypeStruct<MappedType, behaviac::Meta::HasFromString<MappedType>::Result>::Result
};
};
}//namespace Meta
}//namespace behaviac
#define PARAM_BASETYPE(T) typename behaviac::Meta::ParamTypeConverter<T, behaviac::Meta::IsPtr<T>::Result>::BaseType
#define PARAM_POINTERTYPE(T) typename behaviac::Meta::ParamTypeConverter<T, behaviac::Meta::IsPtr<T>::Result>::PointerType
#define PARAM_CALLEDTYPE(T) typename behaviac::Meta::ParamCalledType<T>::Result
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
#endif//_BEHAVIAC_COMMON_META_METATYPES_H_
| [
"jonli@tencent.com"
] | jonli@tencent.com |
d710f92ca1ecd93466f8828e74d323ee20027e45 | c59f29343f69453198550f9654f2840bd6dc672e | /카카오/2018카카오블라인드_6.cpp | 93f7ecc0d197cf4250d52f23b8d8346a3f62138d | [] | no_license | ydh6226/ps | 6cba3d57586cbe7507e361d15c087f711a7358f6 | 7a099f915faaf2097dc2a055470ea0c6016334c0 | refs/heads/master | 2023-06-19T05:19:51.814875 | 2021-07-18T11:16:58 | 2021-07-18T11:16:58 | 321,310,132 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,333 | cpp | #include<bits/stdc++.h>
using namespace std;
int solution(int m, int n, vector<string> board) {
int answer = 0;
vector<string> b(n);
for (int i = 0; i < n; i++)
for (int j = m - 1; j >= 0; j--)
b[i].push_back(board[j][i]);
while (true) {
vector<set<int>> forErase(n);
int count = 0;
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < m - 1; j++) {
char x = b[i][j];
char y = b[i][j + 1];
char z = b[i + 1][j];
char w = b[i + 1][j + 1];
if (x != '0' && x == y && y == z && z == w) {
forErase[i].insert(j);
forErase[i].insert(j + 1);
forErase[i + 1].insert(j);
forErase[i + 1].insert(j + 1);
count++;
}
}
}
if (count == 0)
break;
for (int i = 0; i < n; i++) {
int error = 0;
for (int j : forErase[i]) {
b[i].erase(j - error, 1);
b[i] += "0";
error++;
answer++;
}
}
}
return answer;
}
int main() {
cout << solution(6, 6, { "TTTANT", "RRFACC", "RRRFCC", "TRRRAA", "TTMMMF", "TMMTTJ" });
} | [
"ydh6226@naver.com"
] | ydh6226@naver.com |
a1ff0ce498e94ab865e107e3563378b627cb9035 | e0cd22a3dbf1589cee37c33374607ed2ce66e95e | /cpp/opensourcesrcs/vcf/VCFBuilder2/SelectionGripper.cpp | 61bad95824c32353798c713b9bf4111035d8c39f | [] | no_license | CodeOpsTech/DesignPatternsCpp | 1335402e2c88a4b8715430210ec153af7bb733be | 2c67495ffdc65443fae98b2879f7b608e3562876 | refs/heads/master | 2021-01-11T19:19:48.498940 | 2017-07-19T02:52:56 | 2017-07-19T02:52:56 | 79,355,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 776 | cpp | //SelectionGripper.h
#include "ApplicationKit.h"
#include "SelectionGripper.h"
#include "SelectionGripperHandle.h"
using namespace VCF;
using namespace VCFBuilder;
SelectionGripper::SelectionGripper()
{
}
SelectionGripper::~SelectionGripper()
{
}
void SelectionGripper::clearSelectionGripper()
{
if ( false == m_gripperHandles.empty() ) {
SelectionGripperHandle* handle = m_gripperHandles[0];
Control* parent = handle->getParent();
Container* container = dynamic_cast<Container*>(parent);
std::vector<SelectionGripperHandle*>::iterator it = m_gripperHandles.begin();
while (it != m_gripperHandles.end() ) {
handle = *it;
container->remove( handle );
delete handle;
handle = NULL;
it++;
}
m_gripperHandles.clear();
}
} | [
"ganesh@codeops.tech"
] | ganesh@codeops.tech |
94a613c0b99a1c95f9eed8046186121ab35ba51b | d8074ba52c7d1ea7fd2e17ff2a5401b7c6132842 | /Resuming coro on another thread/main.cpp | 899857cf96e2f184702b84b939d617688fb15ca8 | [] | no_license | IDragnev/Coroutines | 885142612b6fa483a594185d5269041d712bffa6 | 1af3e7e656d4af3c7c1a41a96618ef8a1a496b1c | refs/heads/master | 2020-09-02T11:54:37.707749 | 2019-12-07T19:59:01 | 2019-12-07T19:59:01 | 219,215,508 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,654 | cpp | #include <iostream>
#include <experimental/coroutine>
#include <thread>
#include <future>
#include <chrono>
#include <assert.h>
using namespace std::chrono_literals;
struct thread_pool {
template <typename T>
static void launch_task(T&& task) {
auto t = std::thread{ std::move(task) };
t.detach();
}
};
struct suspend_background {
bool await_ready() const noexcept { return false; }
void await_suspend(std::experimental::coroutine_handle<> h) const {
thread_pool::launch_task([coro = std::move(h)] {
coro.resume();
});
}
void await_resume() const noexcept { }
};
struct my_coro {
struct promise_type;
using coro_handle = std::experimental::coroutine_handle<promise_type>;
struct promise_type {
auto initial_suspend() {
return std::experimental::suspend_never{};
}
auto final_suspend() {
return std::experimental::suspend_always{};
}
auto get_return_object() {
return coro_handle::from_promise(*this);
}
void unhandled_exception() { std::terminate(); }
void return_value(int x) { value = x; }
auto stored_val() const noexcept { return value; }
private:
int value = 0;
};
my_coro() = default;
my_coro(my_coro&&) = default;
my_coro(const my_coro&) = delete;
~my_coro() {
if (coro) {
coro.destroy();
}
}
my_coro(std::experimental::coroutine_handle<promise_type>&& h) : coro(std::move(h)) { assert(coro); }
my_coro& operator=(my_coro&&) = default;
my_coro& operator=(const my_coro&) = delete;
bool resume() {
if (!coro.done()) {
coro.resume();
}
return !coro.done();
}
auto ret_val() const noexcept { return coro.promise().stored_val(); }
private:
std::experimental::coroutine_handle<promise_type> coro;
};
auto thread_id() {
return std::this_thread::get_id();
}
my_coro coro() {
std::cout << "entering coro...";
std::cout << "thread id: " << thread_id() << "\n";
std::cout << "suspending...\n";
co_await suspend_background{};
std::cout << "resuming in coro...";
std::cout << "(thread id: " << thread_id() << ")\n";
std::cout << "leaving coro by returning 2\n";
co_return 2;
}
int main() {
std::cout << "launching the coroutine in main...\n";
auto fun = coro();
std::cout << "waiting for the coroutine to finish in main...";
std::cout << "(tid: " << thread_id() << ")\n";
std::this_thread::sleep_for(5s);
std::cout << "\nin main -> return value: " << fun.ret_val() << "\n";
} | [
"iddragnev@gmail.com"
] | iddragnev@gmail.com |
71fe6ba93c2597a2e7a4312379ad19f9110d7fc5 | 8b1ec196378d8a3aa950351fa6590d07ff05323b | /app/sterile/sterile/Messenger.h | a1f29975bef6d079b0a29264d8180bebc02152ef | [] | no_license | SasanMatinfar/Sonification-for-Sterility-Zones-in-the-OR-MARSS2019 | 4ddb4d51a20a754ad816b344e4f3e666cbfde3e2 | 16e22e6d67d64484ac0214ceab2716ecc4356f22 | refs/heads/master | 2020-11-23T22:08:44.500651 | 2019-12-13T13:04:26 | 2019-12-13T13:04:26 | 227,841,309 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 362 | h | #pragma once
#include "osc/OscOutboundPacketStream.h"
#include "ip/UdpSocket.h"
#include<string>
#define OUTPUT_BUFFER_SIZE 1024;
class Messenger
{
private:
const char *address;
int port;
UdpTransmitSocket * transmitSocket;
public:
Messenger(const char * address, int port);
~Messenger();
void Transmit(const char *, float body_id, float data);
};
| [
"sasan.matinfar@lmu.de"
] | sasan.matinfar@lmu.de |
e8dea53dd3c435bfbbad6b02fd4b11851dfbd059 | 7ec03cfce7269d7532f6d10a7d2e5acbc82d71cc | /Hardware/Attiny/Sensor/PotSensorModule/trackSensorModule.ino | 75051b5e104817dd99ec8e0ada385fd5d536d898 | [] | no_license | MatthijsBlankevoort/ModularEducationalIoTTool | aa8d2c44873499eff20596b595c35ef64f46a4a5 | 18ea2820d21a17c3408ecbf318500e66484283e6 | refs/heads/master | 2021-01-23T23:02:37.162492 | 2017-07-13T09:36:21 | 2017-07-13T09:36:21 | 97,990,216 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,164 | ino | /*
Attiny code slave module
SETUP:
ATtiny Pin 1 = (RESET) N/U ATtiny Pin 2 = (D3) N/U
ATtiny Pin 3 = (D4) to LED1 ATtiny Pin 4 = GND
ATtiny Pin 5 = I2C SDA on DS1621 & GPIO ATtiny Pin 6 = (D1) to LED2
ATtiny Pin 7 = I2C SCL on DS1621 & GPIO ATtiny Pin 8 = VCC (2.7-5.5V)
NOTE! - It's very important to use pullups on the SDA & SCL lines!
*/
#include "TinyWireS.h" // wrapper class for I2C slave routines
#include "usiTwiSlave.h"
#define I2C_SLAVE_ADDR 0x04
#define trackerPin 4
uint16_t sensorWaarde = 0;
byte byteRcvd = 0;
void setup() {
TinyWireS.begin(I2C_SLAVE_ADDR); // init I2C Slave mode
pinMode(trackerPin, INPUT);
}
void loop() {
if(digitalRead(trackerPin) == HIGH){
sensorWaarde = 10;
}
else {
sensorWaarde = 5;
}
TinyWireS.send(sensorWaarde); //lichtsensor waarde
if (TinyWireS.available()) { // got I2C input!
byteRcvd = TinyWireS.receive(); // get the byte from master
TinyWireS.send(byteRcvd); //check
TinyWireS.send(I2C_SLAVE_ADDR); //ID
}
delay(1000);
}
| [
"filmon.berhane@hva.nl"
] | filmon.berhane@hva.nl |
13fe204dc39858c60bb0205054f9ee812dcc1ada | d6fe49c08eff2e4f4d22bad38117934b258c70f2 | /CPE400-Project/NodeManager.h | 2ac3b69881475c466f03723990b216dad4482147 | [] | no_license | Scors4/CPE400-Project | 5fa8309ccc7e604b67ac56cc39db90012b9e3361 | 79cf3d5f3bba17027c8d506eead1be00d08b6d19 | refs/heads/master | 2020-04-05T02:04:09.356958 | 2018-12-05T17:15:04 | 2018-12-05T17:15:04 | 156,462,288 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 299 | h | #pragma once
#ifndef _NODEMANAGER_H
#define _NODEMANAGER_H
#include "Node.h"
class NodeManager
{
public:
NodeManager();
~NodeManager();
void init(int num_nodes, bool random);
void terminate();
void printNodeData(int id);
Node* getNode(int id);
int number_of_nodes;
private:
};
#endif | [
"scorpioman819@msn.com"
] | scorpioman819@msn.com |
7b98223ac3c35800c6c0cf3a0c6702bfd304428e | 7234180696b4829ce11aa551a1a6d91336ff3a98 | /programming-dimigo/bs/main.cpp | f048b38fcf8e3a8ba678758be4a6e31dd5d4c5e1 | [] | no_license | sqine/algorithm | b4fc272017f976764322b8b2ed790140ed5fcf82 | 9d1d48768e067e1c2b7258b28de6bbdd5dec9eb7 | refs/heads/master | 2022-01-04T16:13:37.407153 | 2019-07-10T00:39:44 | 2019-07-10T00:39:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 976 | cpp | #include <stdio.h>
int N, board[20][20], check[20]={0}, ans=0, f=0;
void bishop(int r, int cnt)
{
int i;
f=0;
if(r>=N*2){
if(cnt>ans)ans=cnt;
return;
}
if(r<=N){
for(i=0; i<r; i++){
if(board[r-i][1+i]==1&&check[N-r+1+i*2]==0){
check[N-r+1+i*2]=1;
bishop(r+1, cnt+1);
check[N-r+1+i*2]=0;
f=1;
}
}
if(f==0)bishop(r+1, cnt);
}
else{
for(i=0; i<N*2-r; i++){
if(board[N-i][r-N+1+i]==1&&check[-N+r+1+i*2]==0){
check[-N+r+1+i*2]=1;
bishop(r+1, cnt+1);
check[-N+r+1+i*2]=0;
f=1;
}
}
if(f==0)bishop(r+1, cnt);
}
}
int main()
{
scanf("%d", &N);
int i, j;
for(i=1; i<=N; i++)
for(j=1; j<=N; j++)
scanf("%d", &board[i][j]);
bishop(1, 0);
printf("%d", ans);
return 0;
}
| [
"amgkd9@naver.com"
] | amgkd9@naver.com |
22de4a955494b836921dffbe42ac7fd118b31457 | 772ffec6ae9891423bf03ad92eb654e45bb7580a | /vendor/bundle/ruby/2.1.0/gems/passenger-5.0.25/src/cxx_supportlib/Utils/StrIntUtils.cpp | 584e12e6833f1a0b482f8e3731cceae765ad3980 | [
"MIT"
] | permissive | quotto/fc2search | dc04dc3416b36b89e6b218016e017f7e161a2a95 | 1f575755c5ec9f3c36113abdb344d43610bf2a74 | refs/heads/master | 2021-01-10T04:51:14.317425 | 2016-04-02T11:49:13 | 2016-04-02T11:49:13 | 52,667,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,490 | cpp | /*
* Phusion Passenger - https://www.phusionpassenger.com/
* Copyright (c) 2010-2015 Phusion Holding B.V.
*
* "Passenger", "Phusion Passenger" and "Union Station" are registered
* trademarks of Phusion Holding B.V.
*
* 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 <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <utf8.h>
#include <algorithm>
#include <Exceptions.h>
#include <Utils/SystemTime.h>
#include <Utils/StrIntUtils.h>
namespace Passenger {
string
fillInMiddle(unsigned int max, const string &prefix, const string &middle, const string &postfix) {
if (max <= prefix.size() + postfix.size()) {
throw ArgumentException("Impossible to build string with the given size constraint.");
}
unsigned int fillSize = max - (prefix.size() + postfix.size());
if (fillSize > middle.size()) {
return prefix + middle + postfix;
} else {
return prefix + middle.substr(0, fillSize) + postfix;
}
}
bool
startsWith(const StaticString &str, const StaticString &substr) {
if (str.size() >= substr.size()) {
return memcmp(str.c_str(), substr.c_str(), substr.size()) == 0;
} else {
return false;
}
}
template<typename OutputString>
static void
_split(const StaticString &str, char sep, vector<OutputString> &output) {
output.clear();
if (!str.empty()) {
string::size_type start, pos;
start = 0;
while ((pos = str.find(sep, start)) != string::npos) {
output.push_back(str.substr(start, pos - start));
start = pos + 1;
}
output.push_back(str.substr(start));
}
}
void
split(const StaticString &str, char sep, vector<string> &output) {
_split(str, sep, output);
}
void
split(const StaticString &str, char sep, vector<StaticString> &output) {
_split(str, sep, output);
}
template<typename OutputString>
static void
_splitIncludeSep(const StaticString &str, char sep, vector<OutputString> &output) {
output.clear();
if (!str.empty()) {
string::size_type start, pos;
start = 0;
while ((pos = str.find(sep, start)) != string::npos) {
output.push_back(str.substr(start, pos - start + 1));
start = pos + 1;
}
if (start != str.size()) {
output.push_back(str.substr(start));
}
}
}
void
splitIncludeSep(const StaticString &str, char sep, vector<string> &output) {
_splitIncludeSep(str, sep, output);
}
void
splitIncludeSep(const StaticString &str, char sep, vector<StaticString> &output) {
_splitIncludeSep(str, sep, output);
}
void
truncateBeforeTokens(const char *str, const StaticString &tokens, int maxBetweenTokens, ostream &sstream) {
StaticString source(str);
if (source.empty()) {
return;
}
string::size_type copyStart, findStart, pos;
copyStart = 0; // for copying including the last found token
findStart = 0;
while ((pos = source.find_first_of(tokens, findStart)) != string::npos) {
// Determine & limit how many chars between two tokens (or start and first token)
int copyLen = pos - findStart;
if (copyLen > maxBetweenTokens) {
copyLen = maxBetweenTokens;
}
// Include token from the previous find (first iteration has no previous)
if (findStart > 0) {
copyLen++;
}
sstream << source.substr(copyStart, copyLen);
copyStart = pos;
findStart = pos + 1;
}
// Copy anything remaining (e.g. when no tokens at all)
if (copyStart < source.size()) {
sstream << source.substr(copyStart);
}
}
string
replaceString(const StaticString &str, const StaticString &toFind, const StaticString &replaceWith) {
string::size_type pos = str.find(toFind);
if (pos == string::npos) {
return str;
} else {
string result(str.data(), str.size());
return result.replace(pos, toFind.size(), replaceWith);
}
}
string
replaceAll(const StaticString &str, const StaticString &toFind, const StaticString &replaceWith) {
string result = str;
while (result.find(toFind) != string::npos) {
result = replaceString(result, toFind, replaceWith);
}
return result;
}
string
strip(const StaticString &str) {
const char *data = str.data();
const char *end = str.data() + str.size();
while (data < end && (*data == ' ' || *data == '\n' || *data == '\t')) {
data++;
}
while (end > data && (end[-1] == ' ' || end[-1] == '\n' || end[-1] == '\t')) {
end--;
}
return string(data, end - data);
}
string
toString(const vector<string> &vec) {
vector<StaticString> vec2;
vec2.reserve(vec.size());
for (vector<string>::const_iterator it = vec.begin(); it != vec.end(); it++) {
vec2.push_back(*it);
}
return toString(vec2);
}
string
toString(const vector<StaticString> &vec) {
string result = "[";
vector<StaticString>::const_iterator it;
unsigned int i;
for (it = vec.begin(), i = 0; it != vec.end(); it++, i++) {
result.append("'");
result.append(it->data(), it->size());
if (i == vec.size() - 1) {
result.append("'");
} else {
result.append("', ");
}
}
result.append("]");
return result;
}
string
pointerToIntString(void *pointer) {
// Use wierd union construction to avoid compiler warnings.
if (sizeof(void *) == sizeof(unsigned int)) {
union {
void *pointer;
unsigned int value;
} u;
u.pointer = pointer;
return toString(u.value);
} else if (sizeof(void *) == sizeof(unsigned long long)) {
union {
void *pointer;
unsigned long long value;
} u;
u.pointer = pointer;
return toString(u.value);
} else {
fprintf(stderr, "Pointer size unsupported...\n");
abort();
}
}
template<typename Numeric>
static Numeric
stringToUnsignedNumeric(const StaticString &str) {
Numeric result = 0;
string::size_type i = 0;
const char *data = str.data();
while (i < str.size() && data[i] == ' ') {
i++;
}
while (i < str.size() && data[i] >= '0' && data[i] <= '9') {
result *= 10;
result += data[i] - '0';
i++;
}
return result;
}
unsigned long long
stringToULL(const StaticString &str) {
return stringToUnsignedNumeric<unsigned long long>(str);
}
unsigned int
stringToUint(const StaticString &str) {
return stringToUnsignedNumeric<unsigned int>(str);
}
template<typename Numeric>
static Numeric
stringToSignedNumeric(const StaticString &str) {
Numeric result = 0;
string::size_type i = 0;
const char *data = str.data();
bool minus = false;
while (i < str.size() && data[i] == ' ') {
i++;
}
if (data[i] == '-') {
minus = true;
i++;
}
while (i < str.size() && data[i] >= '0' && data[i] <= '9') {
result *= 10;
result += data[i] - '0';
i++;
}
if (minus) {
return -result;
} else {
return result;
}
}
long long
stringToLL(const StaticString &str) {
return stringToSignedNumeric<long long>(str);
}
int
stringToInt(const StaticString &str) {
return stringToSignedNumeric<int>(str);
}
template<typename Numeric>
static Numeric
hexToUnsignedNumeric(const StaticString &hex) {
const char *pos = hex.data();
const char *end = hex.data() + hex.size();
Numeric result = 0;
bool done = false;
while (pos < end && !done) {
char c = *pos;
if (c >= '0' && c <= '9') {
result *= 16;
result += c - '0';
} else if (c >= 'a' && c <= 'f') {
result *= 16;
result += 10 + (c - 'a');
} else if (c >= 'A' && c <= 'F') {
result *= 16;
result += 10 + (c - 'A');
} else {
done = true;
}
pos++;
}
return result;
}
unsigned long long
hexToULL(const StaticString &hex) {
return hexToUnsignedNumeric<unsigned long long>(hex);
}
unsigned int
hexToUint(const StaticString &hex) {
return hexToUnsignedNumeric<unsigned int>(hex);
}
unsigned long long
hexatriToULL(const StaticString &str) {
unsigned long long result = 0;
string::size_type i = 0;
bool done = false;
while (i < str.size() && !done) {
char c = str[i];
if (c >= '0' && c <= '9') {
result *= 36;
result += c - '0';
} else if (c >= 'a' && c <= 'z') {
result *= 36;
result += 10 + (c - 'a');
} else if (c >= 'A' && c <= 'Z') {
result *= 36;
result += 10 + (c - 'A');
} else {
done = true;
}
i++;
}
return result;
}
string
toHex(const StaticString &data) {
string result(data.size() * 2, '\0');
toHex(data, (char *) result.data());
return result;
}
void
reverseString(char *str, unsigned int size) {
char *end = str + size - 1;
char aux;
while (str < end) {
aux = *end;
*end = *str;
*str = aux;
end--;
str++;
}
}
static const char hex_chars[] = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
'u', 'v', 'w', 'x', 'y', 'z'
};
static const char upcase_hex_chars[] = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
'U', 'V', 'W', 'X', 'Y', 'Z'
};
void
toHex(const StaticString &data, char *output, bool upperCase) {
const char *data_buf = data.c_str();
string::size_type i;
if (upperCase) {
for (i = 0; i < data.size(); i++) {
output[i * 2] = upcase_hex_chars[(unsigned char) data_buf[i] / 16];
output[i * 2 + 1] = upcase_hex_chars[(unsigned char) data_buf[i] % 16];
}
} else {
for (i = 0; i < data.size(); i++) {
output[i * 2] = hex_chars[(unsigned char) data_buf[i] / 16];
output[i * 2 + 1] = hex_chars[(unsigned char) data_buf[i] % 16];
}
}
}
unsigned int
uintSizeAsString(unsigned int value) {
return integerSizeInOtherBase<unsigned int, 10>(value);
}
unsigned int
uintToString(unsigned int value, char *output, unsigned int outputSize) {
return integerToOtherBase<unsigned int, 10>(value, output, outputSize);
}
string
integerToHex(long long value) {
char buf[sizeof(long long) * 2 + 1];
integerToHex(value, buf);
return string(buf);
}
string
integerToHexatri(long long value) {
char buf[sizeof(long long) * 2 + 1];
integerToHexatri(value, buf);
return string(buf);
}
bool
looksLikePositiveNumber(const StaticString &str) {
if (str.empty()) {
return false;
} else {
bool result = true;
const char *data = str.data();
const char *end = str.data() + str.size();
while (result && data != end) {
result = result && (*data >= '0' && *data <= '9');
data++;
}
return result;
}
}
int
atoi(const string &s) {
return ::atoi(s.c_str());
}
long
atol(const string &s) {
return ::atol(s.c_str());
}
#if !defined(__x86_64__) && !defined(__x86__)
// x86 and x86_64 optimized version is implemented in StrIntUtilsNoStrictAliasing.cpp.
void
convertLowerCase(const unsigned char * restrict data,
unsigned char * restrict output,
size_t len)
{
static const boost::uint8_t gsToLowerMap[256] = {
'\0', 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, '\t',
'\n', 0x0b, 0x0c, '\r', 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13,
0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,
0x1e, 0x1f, ' ', '!', '"', '#', '$', '%', '&', '\'',
'(', ')', '*', '+', ',', '-', '.', '/', '0', '1',
'2', '3', '4', '5', '6', '7', '8', '9', ':', ';',
'<', '=', '>', '?', '@', 'a', 'b', 'c', 'd', 'e',
'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y',
'z', '[', '\\', ']', '^', '_', '`', 'a', 'b', 'c',
'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z', '{', '|', '}', '~', 0x7f, 0x80, 0x81,
0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,
0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,
0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,
0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3,
0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd,
0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1,
0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb,
0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,
0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9,
0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff
};
const unsigned char *end = data + len;
const size_t imax = len / 4;
size_t i;
for (i = 0; i < imax; i++, data += 4, output += 4) {
output[0] = (unsigned char) gsToLowerMap[data[0]];
output[1] = (unsigned char) gsToLowerMap[data[1]];
output[2] = (unsigned char) gsToLowerMap[data[2]];
output[3] = (unsigned char) gsToLowerMap[data[3]];
}
while (data < end) {
*output = (unsigned char) gsToLowerMap[*data];
data++;
output++;
}
}
#endif
bool
constantTimeCompare(const StaticString &a, const StaticString &b) {
// http://blog.jasonmooberry.com/2010/10/constant-time-string-comparison/
// See also ActiveSupport::MessageVerifier#secure_compare.
if (a.size() != b.size()) {
return false;
} else {
const char *x = a.data();
const char *y = b.data();
const char *end = a.data() + a.size();
int result = 0;
while (x < end) {
result |= *x ^ *y;
x++;
y++;
}
return result == 0;
}
}
string
distanceOfTimeInWords(time_t fromTime, time_t toTime) {
time_t seconds;
stringstream result;
if (toTime == 0) {
toTime = SystemTime::get();
}
if (fromTime < toTime) {
seconds = toTime - fromTime;
} else {
seconds = fromTime - toTime;
}
if (seconds >= 60) {
time_t minutes = seconds / 60;
if (minutes >= 60) {
time_t hours = minutes / 60;
if (hours >= 24) {
time_t days = hours / 24;
hours = hours % 24;
result << days << "d ";
}
minutes = minutes % 60;
result << hours << "h ";
}
seconds = seconds % 60;
result << minutes << "m ";
}
result << seconds << "s";
return result.str();
}
char *
appendData(char *pos, const char *end, const char *data, size_t size) {
size_t maxToCopy = std::min<size_t>(end - pos, size);
memcpy(pos, data, maxToCopy);
return pos + size;
}
char *
appendData(char *pos, const char *end, const StaticString &data) {
return appendData(pos, end, data.data(), data.size());
}
string
cEscapeString(const StaticString &input) {
string result;
const char *current = input.c_str();
const char *end = current + input.size();
result.reserve(input.size());
while (current < end) {
char c = *current;
if (c >= 32 && c <= 126) {
// Printable ASCII.
if (c == '"') {
result.append("\"");
} else {
result.append(1, c);
}
} else {
char buf[sizeof("000")];
unsigned int size;
switch (c) {
case '\t':
result.append("\\t");
break;
case '\n':
result.append("\\n");
break;
case '\r':
result.append("\\r");
break;
case '\e':
result.append("\\e");
break;
default:
size = integerToOtherBase<unsigned char, 8>(
*current, buf, sizeof(buf));
result.append("\\", 1);
result.append(3 - size, '0');
result.append(buf, size);
break;
}
}
current++;
}
return result;
}
string
escapeHTML(const StaticString &input) {
string result;
result.reserve((int) ceil(input.size() * 1.25));
const char *current = (const char *) input.c_str();
const char *end = current + input.size();
while (current < end) {
char ch = *current;
if (ch & 128) {
// Multibyte UTF-8 character.
const char *prev = current;
utf8::advance(current, 1, end);
result.append(prev, current - prev);
} else {
// ASCII character <= 127.
if (ch == '<') {
result.append("<");
} else if (ch == '>') {
result.append(">");
} else if (ch == '&') {
result.append("&");
} else if (ch == '"') {
result.append(""");
} else if (ch == '\'') {
result.append("'");
} else if (ch >= 0x21 || ch == ' ' || ch == '\n' || ch == '\r' || ch == '\t') {
result.append(1, ch);
} else {
result.append("&#");
result.append(toString((int) ((unsigned char) ch)));
result.append(";");
}
current++;
}
}
return result;
}
string
urldecode(const StaticString &url) {
const char *pos = url.data();
const char *end = url.data() + url.size();
string result;
result.reserve(url.size());
while (pos < end) {
switch (*pos) {
case '%':
if (end - pos >= 3) {
unsigned int ch = hexToUint(StaticString(pos + 1, 2));
result.append(1, ch);
pos += 3;
} else {
throw SyntaxError("Invalid URL encoded string");
}
break;
case '+':
result.append(1, ' ');
pos++;
break;
default:
result.append(1, *pos);
pos++;
break;
}
}
return result;
}
} // namespace Passenger
| [
"rhyme.and.rhyme@gmail.com"
] | rhyme.and.rhyme@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.