blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
264
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 5
140
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 905
values | visit_date
timestamp[us]date 2015-08-09 11:21:18
2023-09-06 10:45:07
| revision_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-17 19:19:19
| committer_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-06 06:22:19
| github_id
int64 3.89k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us]date 2012-06-07 00:51:45
2023-09-14 21:58:39
⌀ | gha_created_at
timestamp[us]date 2008-03-27 23:40:48
2023-08-21 23:17:38
⌀ | gha_language
stringclasses 141
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
10.4M
| extension
stringclasses 115
values | content
stringlengths 3
10.4M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
158
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c729ab833a45b837e81704fcb79ff7e332d53119 | 631ac917e8d5318aefc1764e3dde5b6bbd2302c1 | /Misc/Constants.h | 54bfea70c6dcdf662c2db70a720a86f65ec13507 | [] | no_license | jjheaton99/PlatformGameSDL2 | 0548fc606e14cf8f30e52b463d03a310e437d43d | c9b0a963c77fee50e988d9c77397f568db4cdbb6 | refs/heads/master | 2023-07-16T13:22:51.669405 | 2021-04-04T15:06:16 | 2021-04-04T15:06:16 | 259,125,961 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 750 | h | #pragma once
#include "SDL.h"
#include "SDL_ttf.h"
namespace Constants
{
const double pi{ 3.14159265359 };
//g defines acceleration due to gravity for game objects
const double g{ 1.5 };
//the time between game logic updates
const double updateStep{ 1.0 / 60.0 };
const int tileSize{ 60 };
const int chunkWidth{ 35 };
const int chunkHeight{ 35 };
}
//global namespace for settings variables
namespace Settings
{
extern bool fullscreen;
extern bool vSync;
extern int masterVol;
extern int sfxVol;
extern int musicVol;
}
extern int g_screenWidth;
extern int g_screenHeight;
//convenient to have a global renderer that any object can use
extern SDL_Renderer* g_renderer;
extern TTF_Font* g_font;
| [
"[email protected]"
] | |
7a7c6f105fc61e645ad6e3a3d13274a25f98d245 | aa6cf9b3c48fb286ebea1adf519453ea62316fa9 | /boost/smart_ptr/detail/sp_counted_base_clang.hpp | a86f524a578ac18c2fb2fe26a1f4c038cf2b36aa | [
"BSL-1.0"
] | permissive | pingcap/boost-extra | 97feb3a261573c8087b2d7a13b024c3eb14fd158 | 2ae2ee2bbd49f95910481230105406a508d04e91 | refs/heads/master | 2023-08-24T17:58:23.738668 | 2019-01-28T07:02:47 | 2019-01-28T07:02:47 | 167,926,596 | 1 | 2 | BSL-1.0 | 2022-06-06T03:47:49 | 2019-01-28T08:33:08 | C++ | UTF-8 | C++ | false | false | 3,532 | hpp | #ifndef BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_CLANG_HPP_INCLUDED
#define BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_CLANG_HPP_INCLUDED
// MS compatible compilers support #pragma once
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
// detail/sp_counted_base_clang.hpp - __c11 clang intrinsics
//
// Copyright (c) 2007, 2013, 2015 Peter Dimov
//
// 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
#include <boost/detail/sp_typeinfo.hpp>
#include <boost/cstdint.hpp>
namespace boost
{
namespace detail
{
typedef _Atomic( boost::int_least32_t ) atomic_int_least32_t;
inline void atomic_increment( atomic_int_least32_t * pw )
{
__c11_atomic_fetch_add( pw, 1, __ATOMIC_RELAXED );
}
inline boost::int_least32_t atomic_decrement( atomic_int_least32_t * pw )
{
return __c11_atomic_fetch_sub( pw, 1, __ATOMIC_ACQ_REL );
}
inline boost::int_least32_t atomic_conditional_increment( atomic_int_least32_t * pw )
{
// long r = *pw;
// if( r != 0 ) ++*pw;
// return r;
boost::int_least32_t r = __c11_atomic_load( pw, __ATOMIC_RELAXED );
for( ;; )
{
if( r == 0 )
{
return r;
}
if( __c11_atomic_compare_exchange_weak( pw, &r, r + 1, __ATOMIC_RELAXED, __ATOMIC_RELAXED ) )
{
return r;
}
}
}
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wweak-vtables"
#endif
class sp_counted_base
{
private:
sp_counted_base( sp_counted_base const & );
sp_counted_base & operator= ( sp_counted_base const & );
atomic_int_least32_t use_count_; // #shared
atomic_int_least32_t weak_count_; // #weak + (#shared != 0)
public:
sp_counted_base()
{
__c11_atomic_init( &use_count_, 1 );
__c11_atomic_init( &weak_count_, 1 );
}
virtual ~sp_counted_base() // nothrow
{
}
// dispose() is called when use_count_ drops to zero, to release
// the resources managed by *this.
virtual void dispose() = 0; // nothrow
// destroy() is called when weak_count_ drops to zero.
virtual void destroy() // nothrow
{
delete this;
}
virtual void * get_deleter( sp_typeinfo const & ti ) = 0;
virtual void * get_local_deleter( sp_typeinfo const & ti ) = 0;
virtual void * get_untyped_deleter() = 0;
void add_ref_copy()
{
atomic_increment( &use_count_ );
}
bool add_ref_lock() // true on success
{
return atomic_conditional_increment( &use_count_ ) != 0;
}
void release() // nothrow
{
if( atomic_decrement( &use_count_ ) == 1 )
{
dispose();
weak_release();
}
}
void weak_add_ref() // nothrow
{
atomic_increment( &weak_count_ );
}
void weak_release() // nothrow
{
if( atomic_decrement( &weak_count_ ) == 1 )
{
destroy();
}
}
long use_count() const // nothrow
{
return __c11_atomic_load( const_cast< atomic_int_least32_t* >( &use_count_ ), __ATOMIC_ACQUIRE );
}
};
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
} // namespace detail
} // namespace boost
#endif // #ifndef BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_CLANG_HPP_INCLUDED
| [
"[email protected]"
] | |
b0ea5aaf212b7e8d4b41dfa550f51e1ba3324f72 | b9223502292a14f25e76d69214fd4e5c37b5fa9f | /WebServer/EventLoopThreadPool.h | af587eed414f6bc5761587e1d99cfc4bb7ee165e | [] | no_license | wang-wen-hao/WebServer | 9b3ea5038420c634a532d19321bd1f29a8518b6d | a7ff79a43d19a26df66e76c0c914a47f1fbdcda6 | refs/heads/main | 2023-03-05T09:31:37.075312 | 2021-02-16T15:24:14 | 2021-02-16T15:24:14 | 338,832,374 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | h | #pragma once
#include <memory>
#include <vector>
#include "EventLoopThread.h"
#include "base/Logging.h"
#include "base/noncopyable.h"
class EventLoopThreadPool : noncopyable {
public:
EventLoopThreadPool(EventLoop* baseLoop, int numThreads);
~EventLoopThreadPool() { LOG << "~EventLoopThreadPool()"; }
void start();
EventLoop* getNextLoop();
private:
EventLoop* baseLoop_;
bool started_;
int numThreads_;
int next_;
std::vector<std::shared_ptr<EventLoopThread>> threads_;
std::vector<EventLoop*> loops_;
}; | [
"[email protected]"
] | |
bc338ed801da6b3731d54f07abd5caab603a0204 | 8a5da8ba3268eecc62ba7638f40faf2c6e6357f3 | /TowerDefense/Player.hpp | 8689be071a6833f71299135b8d783b06809a48b8 | [] | no_license | ambroiseRabier/TowerDefense | e9d871ff331fee3904e444a33c7904c37f1d537b | 876a83614d59c5b77309c334c0f6a086e40f4402 | refs/heads/master | 2021-04-27T00:37:34.551576 | 2018-02-24T15:15:05 | 2018-02-24T15:15:05 | 122,655,104 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,902 | hpp | #pragma once
#ifndef PLAYER_HPP
#define PLAYER_HPP
#include "Tower.hpp"
#include "Castle.hpp"
#include "Phantom.hpp"
using namespace TowerDefense::Game;
namespace TowerDefense
{
namespace Managers
{
/**
* \brief
* Handle Castle, Hud.
* Would be best handled as instance instead of manager, make it easier to restart game from 0.
* Should contain info for hud.
* use Hud
* use MapManager::get_castle()
*/
class Player
{
public:
static Sharp::Event<void> on_money_change;
static void init();
static void set_initial_money(const float& value);
static void add_money(const float& value);
/**
* \brief
* \param tower_id
* \return if the tower can has been purchased
*/
static bool can_buy_tower(TowerId tower_id);
static bool can_upgrade_tower(TowerId tower_id, const unsigned int level);
/**
* \brief Buy a tower for you and place it where you need it.
* \param tower_id
* \param map_pos
*/
static void buy_tower(TowerId tower_id, const sf::Vector2u& map_pos);
static void buy_tower_upgrade(TowerId tower_id, const unsigned int level);
static float get_tower_price(TowerId tower_id, const unsigned int level=0);
static void set_castle(Castle* new_castle);
/**
* \brief When the player can start adding towers.
*/
static void start();
static void create_phantom_tower(TowerId tower_id);
static void on_game_over();
static void on_game_win();
/**
* \brief For Screens to display the score.
*/
static const int& get_score();
static void add_score(const unsigned int& add_value);
/**
* \brief Case when player lose his score, for KISS reason we do it this way.
* Player lose score in two cases:
* - Leave game_over state. (screen)
* - return to menu.
* - leave game_cleared state. (screen)
* A win do not reset the score, this is to promote playing the game from A to Z level.
* (make sense with a level selection)
*/
static void lose_score();
private:
static std::unique_ptr<Phantom> phantom;
static void create_tower(const TowerId tower_id, const sf::Vector2u& map_pos);
static Castle* castle;
static std::vector<std::unique_ptr<Tower>> tower_vector;
static int score;
// Might be hard to make it become part of the map gameplay (minions stealing money)
static float money;
static void on_castle_death();
static void on_destroy_level();
static void on_click_phantom();
static void on_click_cancel_phantom();
/**
* \brief Use this to change money value, it update HUD and send an event for upgrade btns.
* \param new_value
*/
static void set_money(const float& new_value);
/**
* \brief Assure that initial money is set only one time per map.
*/
static bool can_set_initial_money_flag;
static void set_score(const unsigned int& new_score);
};
}
}
#endif
| [
"[email protected]"
] | |
813e53fbd4a3d909f638317a1aa17ce4d0b38116 | a5ebe0ca2c254467ee58f0ca62f70843753b35d7 | /OutputBar.cpp | 0af9ea30582e9648710cc10a2bdca9ac689474bc | [] | no_license | code-mx/VisualVNC-1 | bc340aa1b8fe7a410c578bdabf93346813b829a0 | 8f18d639f547e0e07f86eb98c2a1362d7b56aabd | refs/heads/master | 2021-01-23T01:26:45.844783 | 2013-04-30T11:51:18 | 2013-04-30T11:51:18 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,273 | cpp | // OutputBar.cpp : implementation of the COutputBar class
//
#include "stdafx.h"
#include "VisualVNC.h"
#include "OutputBar.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
const int nBorderSize = 1;
/////////////////////////////////////////////////////////////////////////////
// COutputBar
BEGIN_MESSAGE_MAP(COutputBar, CBCGPDockingControlBar)
//{{AFX_MSG_MAP(COutputBar)
ON_WM_CREATE()
ON_WM_SIZE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COutputBar construction/destruction
COutputBar::COutputBar()
{
// TODO: add one-time construction code here
}
COutputBar::~COutputBar()
{
}
void COutputBar::initConsoleList()
{
LONG lStyle;
lStyle = GetWindowLong(m_listConsole.m_hWnd, GWL_STYLE); //获取当前窗口style
lStyle &= ~LVS_TYPEMASK; //清除显示方式位
lStyle |= LVS_REPORT; //设置style
SetWindowLong(m_listConsole.m_hWnd, GWL_STYLE, lStyle); //设置style
m_listConsole.SetExtendedStyle(m_listConsole.GetExtendedStyle() | LVS_EX_FULLROWSELECT);
m_listConsole.InsertColumn(0, _T("Line No."));
m_listConsole.InsertColumn(1, _T("Content"));
m_listConsole.SetColumnWidth(0, 70);
}
void COutputBar::insert2ConsoleList(CString strNo, CString strContent)
{
int iLimit = m_listConsole.GetScrollLimit(SB_VERT);
int iPos = m_listConsole.GetScrollPos(SB_VERT);
m_listConsole.InsertItem(m_listConsole.GetItemCount(), strNo);
m_listConsole.SetItemText(m_listConsole.GetItemCount() - 1, 1, strContent);
if (iLimit == iPos)
{
m_listConsole.EnsureVisible(m_listConsole.GetItemCount() - 1, FALSE);
}
}
void COutputBar::clearConsoleList()
{
m_listConsole.DeleteAllItems();
}
void COutputBar::initAList()
{
LONG lStyle;
lStyle = GetWindowLong(m_listA.m_hWnd, GWL_STYLE); //获取当前窗口style
lStyle &= ~LVS_TYPEMASK; //清除显示方式位
lStyle |= LVS_REPORT; //设置style
SetWindowLong(m_listA.m_hWnd, GWL_STYLE, lStyle); //设置style
m_listA.SetExtendedStyle(m_listA.GetExtendedStyle() | LVS_EX_FULLROWSELECT);
m_listA.InsertColumn(0, _T("Shellcode No."));
m_listA.InsertColumn(1, _T("Description"));
m_listA.SetColumnWidth(0, 90);
}
void COutputBar::insert2AList(CString strNo, CString strContent)
{
int iLimit = m_listA.GetScrollLimit(SB_VERT);
int iPos = m_listA.GetScrollPos(SB_VERT);
m_listA.InsertItem(m_listA.GetItemCount(), strNo);
m_listA.SetItemText(m_listA.GetItemCount() - 1, 1, strContent);
if (iLimit == iPos)
{
m_listA.EnsureVisible(m_listA.GetItemCount() - 1, FALSE);
}
}
void COutputBar::clearAList()
{
m_listA.DeleteAllItems();
}
void COutputBar::initBList()
{
LONG lStyle;
lStyle = GetWindowLong(m_listB.m_hWnd, GWL_STYLE); //获取当前窗口style
lStyle &= ~LVS_TYPEMASK; //清除显示方式位
lStyle |= LVS_REPORT; //设置style
SetWindowLong(m_listB.m_hWnd, GWL_STYLE, lStyle); //设置style
m_listB.SetExtendedStyle(m_listB.GetExtendedStyle() | LVS_EX_FULLROWSELECT);
m_listB.InsertColumn(0, _T("Shellcode No."));
m_listB.InsertColumn(1, _T("Description"));
m_listB.SetColumnWidth(0, 90);
}
void COutputBar::insert2BList(CString strNo, CString strContent)
{
int iLimit = m_listB.GetScrollLimit(SB_VERT);
int iPos = m_listB.GetScrollPos(SB_VERT);
m_listB.InsertItem(m_listB.GetItemCount(), strNo);
m_listB.SetItemText(m_listB.GetItemCount() - 1, 1, strContent);
if (iLimit == iPos)
{
m_listB.EnsureVisible(m_listB.GetItemCount() - 1, FALSE);
}
}
void COutputBar::clearBList()
{
m_listB.DeleteAllItems();
}
/////////////////////////////////////////////////////////////////////////////
// COutputBar message handlers
int COutputBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CBCGPDockingControlBar::OnCreate(lpCreateStruct) == -1)
return -1;
CRect rectDummy;
rectDummy.SetRectEmpty ();
// Create tabs window:
if (!m_wndTabs.Create (CBCGPTabWnd::STYLE_FLAT, rectDummy, this, 1))
{
TRACE0("Failed to create output tab window\n");
return -1; // fail to create
}
// Create list windows.
// TODO: create your own window here:
const DWORD dwViewStyle =
LBS_NOINTEGRALHEIGHT | WS_CHILD | WS_VISIBLE | WS_HSCROLL | WS_VSCROLL;
m_listConsole.m_bVisualManagerStyle = TRUE;
m_listA.m_bVisualManagerStyle = TRUE;
m_listB.m_bVisualManagerStyle = TRUE;
if (!m_listConsole.Create (dwViewStyle, rectDummy, &m_wndTabs, 2) ||
!m_listA.Create (dwViewStyle, rectDummy, &m_wndTabs, 3) ||
!m_listB.Create (dwViewStyle, rectDummy, &m_wndTabs, 4))
{
TRACE0("Failed to create output view\n");
return -1; // fail to create
}
// Attach list windows to tab:
m_wndTabs.AddTab (&m_listConsole, _T("Packets"), -1);
m_wndTabs.AddTab (&m_listA, _T("GetPC Location"), -1);
m_wndTabs.AddTab (&m_listB, _T("IA-32 Instruction Recognition"), -1);
initConsoleList();
initAList();
initBList();
return 0;
}
void COutputBar::OnSize(UINT nType, int cx, int cy)
{
CBCGPDockingControlBar::OnSize(nType, cx, cy);
// Tab control should cover a whole client area:
m_wndTabs.SetWindowPos (NULL, -1, -1, cx, cy,
SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER);
m_listConsole.SetColumnWidth(1, cx - 70 - 6);
m_listA.SetColumnWidth(1, cx - 90 - 6);
m_listB.SetColumnWidth(1, cx - 90 - 6);
}
| [
"[email protected]"
] | |
918a23809da3068527b453aea02375838d0e27db | 41e9eaa410050fe1b1abc315ed044f4b29971796 | /Panoramix's Prediction.cpp | b705324f4d7b89c821d45b2e31887a0118de54aa | [] | no_license | Raisul191491/Noob_C- | 32202ccf298de2915685b1a091fa5d7bf4cb80b3 | 3ce698ca763dab2a3d95f8dbfd1a755161e1857b | refs/heads/master | 2023-02-26T11:18:19.107628 | 2021-02-01T18:24:01 | 2021-02-01T18:24:01 | 240,031,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 623 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int n,m;
cin>>n>>m;
bool a[m];
for(int i=1; i<=m; i++)
{
a[i]=true;
}
a[2]=true;
a[3]=true;
for(int i=2; i<=m; i++)
{
if(a[i]==true)
for(int j=i*i; j<=m; j+=i)
{
a[j]=false;
}
}
for(int i=n+1; i<m; i++)
{
if(a[i]==true)
{
cout << "NO" <<endl;
return 0;
}
else
continue;
}
if(a[m]==true)
{
cout << "YES" <<endl;
}
else
cout << "NO" <<endl;
}
| [
"[email protected]"
] | |
dd471eaf83a63e658e166e3acc066dd83f2ffacb | f9b947ae6ea1c3ff1bd9ee03b1dc5352e764dd9b | /src/CameraFrameImageProvider.h | 92530f4269946e829ceec2767a0438c9ff0f0ee8 | [] | no_license | chili-epfl-cellulo/qml-plugin-DEPRECATED | 5408b85bc3f547e0a437df7b52a2303b2d51771e | b4651ae5c51672f168e93d40123606234af5cee5 | refs/heads/master | 2020-12-26T02:39:09.053742 | 2016-04-28T09:21:40 | 2016-04-28T09:22:02 | 56,758,148 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,383 | h | /*
* Copyright (C) 2015 EPFL
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
/**
* @file CameraFrameImageProvider.h
* @brief Header for converting the camera image in QByteBuffer to QImage
* @author Ayberk Özgür
* @version 1.0
* @date 2015-05-21
*/
#ifndef CAMERAFRAMEIMAGEPROVIDER_H
#define CAMERAFRAMEIMAGEPROVIDER_H
#include"CelluloBluetooth.h"
#include<QQuickImageProvider>
/**
* @brief QImage provider from QByteArray
*/
class CameraFrameImageProvider : public QQuickImageProvider {
public:
CameraFrameImageProvider();
QImage requestImage(QString const& id, QSize* size, QSize const& requestedSize);
private:
unsigned char frameCharBuffer[CelluloBluetooth::IMG_WIDTH*CelluloBluetooth::IMG_HEIGHT*4];
};
#endif // CAMERAFRAMEIMAGEPROVIDER_H
| [
"[email protected]"
] | |
5d207f815736cd6be1559f648fb0cad8792cd8f2 | cc63466d8a66bb8925508791c007c0054149ce5a | /msj_archives/code/MSJMar97.src/MFC Goodies, Part 2/DIBVIEW/MainFrm.h | e2f464565c30a71aefaee90778e8f02027844658 | [
"Unlicense"
] | permissive | liumorgan/misc-code | 9675cc258162064083126a22d97902dae36739c9 | d47a8d1cc41f19701ce628c9f15976bb5baa239d | refs/heads/master | 2022-06-29T20:41:54.288305 | 2020-05-13T00:20:05 | 2020-05-13T00:20:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 748 | h | ////////////////////////////////////////////////////////////////
// Copyright 1996 Microsoft Systems Journal.
// If this program works, it was written by Paul DiLascia.
// If not, I don't know who wrote it.
//
#include "PalHook.h"
#ifdef _MDI
#define CBaseFrameWnd CMDIFrameWnd
#else
#define CBaseFrameWnd CFrameWnd
#endif
////////////////
// Palette-handling main frame window
//
class CMainFrame : public CBaseFrameWnd {
public:
CMainFrame();
virtual ~CMainFrame();
protected:
DECLARE_DYNCREATE(CMainFrame)
CPalMsgHandler m_palMsgHandler; // handles palette messages
CStatusBar m_wndStatusBar; // status bar
CToolBar m_wndToolBar; // tool (button) bar
DECLARE_MESSAGE_MAP()
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
};
| [
"[email protected]"
] | |
90c2815766fe6ababa01ba7cdd94b775b12d1c54 | 04721d03a4bf0bdefcdd527d2d1c845af7850a14 | /Kattis/brackets.cpp | 8f3353159428174b42d06c6ec2e3ef4cab667aa3 | [] | no_license | ArielGarciaM/CompetitiveProgramming | 81e3808fdb14372f14e54d1e69c582be9ba44893 | c7115c38b988b6bc053850f1024a8005eb24fcee | refs/heads/master | 2020-03-28T15:19:55.788844 | 2019-08-09T20:54:25 | 2019-08-09T20:54:25 | 148,581,397 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 622 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll INF = 2e18;
ll dp[1005][1005];
int main() {
ll n, m;
cin >> n >> m;
n /= 2;
dp[n][n] = 1;
for(int y = n - 1; y >= 0; y--) {
for(int x = n; x >= y; x--) {
dp[x][y] = min(dp[x + 1][y] + dp[x][y + 1], INF);
}
}
string ans = "";
int x = 0, y = 0;
while(x < n || y < n) {
if(dp[x + 1][y] >= m) {
x++;
ans += '(';
}
else {
m -= dp[x + 1][y];
y++;
ans += ')';
}
}
cout << ans << endl;
} | [
"[email protected]"
] | |
281986d44839dfb479836b0d1b2bfc5afe0145f4 | 3a7cea52cbc6dd0394a2f164516f770e4bff818d | /components/exo/pointer.cc | 7f1d352bd13f2bbd033db9fde2afaf30d1d60eb6 | [
"BSD-3-Clause"
] | permissive | gyf821/chromium | d73b4219963b6827ecd9a8cf9995147dcf10cafd | 04968fe41e04b5f33305d9584561909760d9c3c7 | refs/heads/master | 2023-03-04T13:49:23.432721 | 2017-06-02T22:34:00 | 2017-06-02T22:34:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,145 | 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 "components/exo/pointer.h"
#include <utility>
#include "ash/public/cpp/shell_window_ids.h"
#include "cc/output/copy_output_request.h"
#include "cc/output/copy_output_result.h"
#include "components/exo/pointer_delegate.h"
#include "components/exo/pointer_stylus_delegate.h"
#include "components/exo/surface.h"
#include "components/exo/wm_helper.h"
#include "ui/aura/client/cursor_client.h"
#include "ui/aura/env.h"
#include "ui/aura/window.h"
#include "ui/base/cursor/cursor_util.h"
#include "ui/display/manager/display_manager.h"
#include "ui/display/manager/managed_display_info.h"
#include "ui/display/screen.h"
#include "ui/events/event.h"
#include "ui/gfx/geometry/vector2d_conversions.h"
#include "ui/gfx/transform_util.h"
#if defined(USE_OZONE)
#include "ui/ozone/public/cursor_factory_ozone.h"
#endif
#if defined(USE_X11)
#include "ui/base/cursor/cursor_loader_x11.h"
#endif
namespace exo {
namespace {
// TODO(oshima): Some accessibility features, including large cursors, disable
// hardware cursors. Ash does not support compositing for custom cursors, so it
// replaces them with the default cursor. As a result, this scale has no effect
// for now. See crbug.com/708378.
const float kLargeCursorScale = 2.8f;
// Scale at which cursor snapshot is captured. The resulting bitmap is scaled on
// displays whose DSF does not match this scale.
const float kCursorCaptureScale = 2.0f;
const double kLocatedEventEpsilonSquared = 1.0 / (2000.0 * 2000.0);
// Synthesized events typically lack floating point precision so to avoid
// generating mouse event jitter we consider the location of these events
// to be the same as |location| if floored values match.
bool SameLocation(const ui::LocatedEvent* event, const gfx::PointF& location) {
if (event->flags() & ui::EF_IS_SYNTHESIZED)
return event->location() == gfx::ToFlooredPoint(location);
// In general, it is good practice to compare floats using an epsilon.
// In particular, the mouse location_f() could differ between the
// MOUSE_PRESSED and MOUSE_RELEASED events. At MOUSE_RELEASED, it will have a
// targeter() already cached, while at MOUSE_PRESSED, it will have to
// calculate it passing through all the hierarchy of windows, and that could
// generate rounding error. std::numeric_limits<float>::epsilon() is not big
// enough to catch this rounding error.
gfx::Vector2dF offset = event->location_f() - location;
return offset.LengthSquared() < (2 * kLocatedEventEpsilonSquared);
}
} // namespace
////////////////////////////////////////////////////////////////////////////////
// Pointer, public:
Pointer::Pointer(PointerDelegate* delegate)
: delegate_(delegate),
cursor_(ui::CursorType::kNull),
cursor_capture_source_id_(base::UnguessableToken::Create()),
cursor_capture_weak_ptr_factory_(this) {
auto* helper = WMHelper::GetInstance();
helper->AddPreTargetHandler(this);
helper->AddCursorObserver(this);
}
Pointer::~Pointer() {
delegate_->OnPointerDestroying(this);
if (surface_)
surface_->RemoveSurfaceObserver(this);
if (focus_) {
focus_->RemoveSurfaceObserver(this);
focus_->UnregisterCursorProvider(this);
}
auto* helper = WMHelper::GetInstance();
helper->RemoveCursorObserver(this);
helper->RemovePreTargetHandler(this);
}
void Pointer::SetCursor(Surface* surface, const gfx::Point& hotspot) {
// Early out if the pointer doesn't have a surface in focus.
if (!focus_)
return;
// This is used to avoid unnecessary cursor changes.
bool cursor_changed = false;
// If surface is different than the current pointer surface then remove the
// current surface and add the new surface.
if (surface != surface_) {
if (surface && surface->HasSurfaceDelegate()) {
DLOG(ERROR) << "Surface has already been assigned a role";
return;
}
if (surface_) {
surface_->window()->SetTransform(gfx::Transform());
if (surface_->window()->parent())
surface_->window()->parent()->RemoveChild(surface_->window());
surface_->SetSurfaceDelegate(nullptr);
surface_->RemoveSurfaceObserver(this);
}
surface_ = surface;
if (surface_) {
surface_->SetSurfaceDelegate(this);
surface_->AddSurfaceObserver(this);
// Note: Surface window needs to be added to the tree so we can take a
// snapshot. Where in the tree is not important but we might as well use
// the cursor container.
WMHelper::GetInstance()
->GetPrimaryDisplayContainer(ash::kShellWindowId_MouseCursorContainer)
->AddChild(surface_->window());
}
cursor_changed = true;
}
if (hotspot != hotspot_)
cursor_changed = true;
// Early out if cursor did not change.
if (!cursor_changed)
return;
// If |surface_| is set then asynchronously capture a snapshot of cursor,
// otherwise cancel pending capture and immediately set the cursor to "none".
if (surface_) {
CaptureCursor(hotspot);
} else {
cursor_bitmap_.reset();
cursor_capture_weak_ptr_factory_.InvalidateWeakPtrs();
UpdateCursor();
}
}
gfx::NativeCursor Pointer::GetCursor() {
return cursor_;
}
////////////////////////////////////////////////////////////////////////////////
// ui::EventHandler overrides:
void Pointer::OnMouseEvent(ui::MouseEvent* event) {
Surface* target = GetEffectiveTargetForEvent(event);
// If target is different than the current pointer focus then we need to
// generate enter and leave events.
if (target != focus_) {
// First generate a leave event if we currently have a target in focus.
if (focus_) {
delegate_->OnPointerLeave(focus_);
focus_->RemoveSurfaceObserver(this);
// Require SetCursor() to be called and cursor to be re-defined in
// response to each OnPointerEnter() call.
focus_->UnregisterCursorProvider(this);
focus_ = nullptr;
cursor_ = ui::CursorType::kNull;
cursor_capture_weak_ptr_factory_.InvalidateWeakPtrs();
}
// Second generate an enter event if focus moved to a new target.
if (target) {
delegate_->OnPointerEnter(target, event->location_f(),
event->button_flags());
location_ = event->location_f();
focus_ = target;
focus_->AddSurfaceObserver(this);
focus_->RegisterCursorProvider(this);
}
delegate_->OnPointerFrame();
}
if (!focus_)
return;
if (event->IsMouseEvent() && event->type() != ui::ET_MOUSE_EXITED) {
// Generate motion event if location changed. We need to check location
// here as mouse movement can generate both "moved" and "entered" events
// but OnPointerMotion should only be called if location changed since
// OnPointerEnter was called.
if (!SameLocation(event, location_)) {
location_ = event->location_f();
delegate_->OnPointerMotion(event->time_stamp(), location_);
delegate_->OnPointerFrame();
}
}
switch (event->type()) {
case ui::ET_MOUSE_PRESSED:
case ui::ET_MOUSE_RELEASED: {
delegate_->OnPointerButton(event->time_stamp(),
event->changed_button_flags(),
event->type() == ui::ET_MOUSE_PRESSED);
delegate_->OnPointerFrame();
break;
}
case ui::ET_SCROLL: {
ui::ScrollEvent* scroll_event = static_cast<ui::ScrollEvent*>(event);
delegate_->OnPointerScroll(
event->time_stamp(),
gfx::Vector2dF(scroll_event->x_offset(), scroll_event->y_offset()),
false);
delegate_->OnPointerFrame();
break;
}
case ui::ET_MOUSEWHEEL: {
delegate_->OnPointerScroll(
event->time_stamp(),
static_cast<ui::MouseWheelEvent*>(event)->offset(), true);
delegate_->OnPointerFrame();
break;
}
case ui::ET_SCROLL_FLING_START: {
// Fling start in chrome signals the lifting of fingers after scrolling.
// In wayland terms this signals the end of a scroll sequence.
delegate_->OnPointerScrollStop(event->time_stamp());
delegate_->OnPointerFrame();
break;
}
case ui::ET_SCROLL_FLING_CANCEL: {
// Fling cancel is generated very generously at every touch of the
// touchpad. Since it's not directly supported by the delegate, we do not
// want limit this event to only right after a fling start has been
// generated to prevent erronous behavior.
if (last_event_type_ == ui::ET_SCROLL_FLING_START) {
// We emulate fling cancel by starting a new scroll sequence that
// scrolls by 0 pixels, effectively stopping any kinetic scroll motion.
delegate_->OnPointerScroll(event->time_stamp(), gfx::Vector2dF(),
false);
delegate_->OnPointerFrame();
delegate_->OnPointerScrollStop(event->time_stamp());
delegate_->OnPointerFrame();
}
break;
}
case ui::ET_MOUSE_MOVED:
case ui::ET_MOUSE_DRAGGED:
case ui::ET_MOUSE_ENTERED:
case ui::ET_MOUSE_EXITED:
case ui::ET_MOUSE_CAPTURE_CHANGED:
break;
default:
NOTREACHED();
break;
}
last_event_type_ = event->type();
}
void Pointer::OnScrollEvent(ui::ScrollEvent* event) {
OnMouseEvent(event);
}
////////////////////////////////////////////////////////////////////////////////
// WMHelper::CursorObserver overrides:
void Pointer::OnCursorSetChanged(ui::CursorSetType cursor_set) {
if (focus_)
UpdateCursor();
}
void Pointer::OnCursorDisplayChanged(const display::Display& display) {
if (focus_)
UpdateCursor();
}
////////////////////////////////////////////////////////////////////////////////
// SurfaceDelegate overrides:
void Pointer::OnSurfaceCommit() {
surface_->CheckIfSurfaceHierarchyNeedsCommitToNewSurfaces();
surface_->CommitSurfaceHierarchy();
// Capture new cursor to reflect result of commit.
if (focus_)
CaptureCursor(hotspot_);
}
bool Pointer::IsSurfaceSynchronized() const {
// A pointer surface is always desynchronized.
return false;
}
////////////////////////////////////////////////////////////////////////////////
// SurfaceObserver overrides:
void Pointer::OnSurfaceDestroying(Surface* surface) {
DCHECK(surface == surface_ || surface == focus_);
if (surface == surface_)
surface_ = nullptr;
if (surface == focus_)
focus_ = nullptr;
surface->RemoveSurfaceObserver(this);
}
////////////////////////////////////////////////////////////////////////////////
// Pointer, private:
Surface* Pointer::GetEffectiveTargetForEvent(ui::Event* event) const {
Surface* target =
Surface::AsSurface(static_cast<aura::Window*>(event->target()));
if (!target)
return nullptr;
return delegate_->CanAcceptPointerEventsForSurface(target) ? target : nullptr;
}
void Pointer::CaptureCursor(const gfx::Point& hotspot) {
DCHECK(surface_);
DCHECK(focus_);
// Surface size is in DIPs, while layer size is in pseudo-DIP units that
// depend on the DSF of the display mode. Scale the layer to capture the
// surface at a constant pixel size, regardless of the primary display's
// UI scale and display mode DSF.
display::Display display = display::Screen::GetScreen()->GetPrimaryDisplay();
auto* helper = WMHelper::GetInstance();
float scale = helper->GetDisplayInfo(display.id()).GetEffectiveUIScale() *
kCursorCaptureScale / display.device_scale_factor();
surface_->window()->SetTransform(gfx::GetScaleTransform(gfx::Point(), scale));
std::unique_ptr<cc::CopyOutputRequest> request =
cc::CopyOutputRequest::CreateBitmapRequest(
base::Bind(&Pointer::OnCursorCaptured,
cursor_capture_weak_ptr_factory_.GetWeakPtr(), hotspot));
request->set_source(cursor_capture_source_id_);
surface_->window()->layer()->RequestCopyOfOutput(std::move(request));
}
void Pointer::OnCursorCaptured(const gfx::Point& hotspot,
std::unique_ptr<cc::CopyOutputResult> result) {
if (!focus_)
return;
if (result->IsEmpty()) {
cursor_bitmap_.reset();
} else {
DCHECK(result->HasBitmap());
cursor_bitmap_ = *result->TakeBitmap();
hotspot_ = hotspot;
}
UpdateCursor();
}
void Pointer::UpdateCursor() {
DCHECK(focus_);
if (cursor_bitmap_.drawsNothing()) {
cursor_ = ui::CursorType::kNone;
} else {
SkBitmap bitmap = cursor_bitmap_;
gfx::Point hotspot =
gfx::ScaleToFlooredPoint(hotspot_, kCursorCaptureScale);
auto* helper = WMHelper::GetInstance();
const display::Display& display = helper->GetCursorDisplay();
float scale = helper->GetDisplayInfo(display.id()).device_scale_factor() /
kCursorCaptureScale;
if (helper->GetCursorSet() == ui::CURSOR_SET_LARGE)
scale *= kLargeCursorScale;
ui::ScaleAndRotateCursorBitmapAndHotpoint(scale, display.rotation(),
&bitmap, &hotspot);
ui::PlatformCursor platform_cursor;
#if defined(USE_OZONE)
// TODO(reveman): Add interface for creating cursors from GpuMemoryBuffers
// and use that here instead of the current bitmap API. crbug.com/686600
platform_cursor = ui::CursorFactoryOzone::GetInstance()->CreateImageCursor(
bitmap, hotspot, 0);
#elif defined(USE_X11)
XcursorImage* image = ui::SkBitmapToXcursorImage(&bitmap, hotspot);
platform_cursor = ui::CreateReffedCustomXCursor(image);
#endif
cursor_ = ui::CursorType::kCustom;
cursor_.SetPlatformCursor(platform_cursor);
#if defined(USE_OZONE)
ui::CursorFactoryOzone::GetInstance()->UnrefImageCursor(platform_cursor);
#elif defined(USE_X11)
ui::UnrefCustomXCursor(platform_cursor);
#endif
}
aura::Window* root_window = focus_->window()->GetRootWindow();
if (!root_window)
return;
aura::client::CursorClient* cursor_client =
aura::client::GetCursorClient(root_window);
if (cursor_client)
cursor_client->SetCursor(cursor_);
}
} // namespace exo
| [
"[email protected]"
] | |
88681575e10bb65a7ca8bdeea8f5e73efa2689aa | 1c1ec116ce31c5eef0df06d2aca182781ae17824 | /source/HIS/app/communication/SNMP/SNMPMib/Private/InterfaceGroup/CMibVcgGroup.h | 4f9d7ea3d45754c1d85a280f22027bc072df0ca9 | [] | no_license | Gloriacnb/ISAP300 | 0410462cbf76f82f6f21b911e899d6b64407fa10 | 9f36607ac21524ab16609ee2d0c39bb222cd7be3 | refs/heads/master | 2021-01-18T23:41:05.998369 | 2017-12-25T01:16:37 | 2017-12-25T01:16:37 | 100,565,892 | 0 | 0 | null | 2017-08-17T05:43:16 | 2017-08-17T05:43:16 | null | UTF-8 | C++ | false | false | 592 | h | /*
* CMibVcgGroup.h
*
* Created on: 2013-4-28
* Author: Administrator
*/
#ifndef CMIBVCGGROUP_H_
#define CMIBVCGGROUP_H_
#include "CMibGroup.h"
/*
*
*/
typedef enum {
table_vcg_config,
table_vcg_member,
table_chvc,
table_vcg_size
}Mib_VCG_Table_E;
class CMibVcgGroup : public CMibGroup {
CMibVcgGroup();
public:
CMibVcgGroup(uint32* oid, uint8 oidlen);
virtual ~CMibVcgGroup();
virtual CMibEntry* MakeTable(int sn, uint32* oid, uint32 oidLen);
private:
static table_info_T tableInfo[table_vcg_size];
};
#endif /* CMIBVCGGROUP_H_ */
| [
"[email protected]"
] | |
11e7d883bdec6c66e344bd250c7b182109102788 | c3c848ae6c90313fed11be129187234e487c5f96 | /VC6PLATSDK/samples/sysmgmt/mmc/mmc2.0/help/staticnode.h | 15cbeece46277a8fc8d29498fcf6059a3cda0a97 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | timxx/VC6-Platform-SDK | 247e117cfe77109cd1b1effcd68e8a428ebe40f0 | 9fd59ed5e8e25a1a72652b44cbefb433c62b1c0f | refs/heads/master | 2023-07-04T06:48:32.683084 | 2021-08-10T12:52:47 | 2021-08-10T12:52:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,265 | h | /////////////////////////////////////////////////////////////////////////////
//
// This source code is only intended as a supplement to existing
// Microsoft documentation.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
// PURPOSE.
//
// Copyright (C) 1999 - 2001 Microsoft Corporation. All Rights Reserved.
//
// Abstract: Defines the CStaticNode class. This is the Snap-in's
// top level node
//
#ifndef _CLASS_CSTATICNODE_
#define _CLASS_CSTATICNODE_
#include "Globals.h"
#include "BaseNode.h" // For NODE_PROPERTIES
#include "LListImpl.h"
class CDeviceNode; // References
class CComponentData;
//---------------------------------------------------------------------------
class CStaticNode : public CBaseNode
{
public:
CStaticNode();
virtual ~CStaticNode();
HRESULT Initialize( NODE_PROPERTIES* pNodeProps );
///////////////////////////////////////////////////////////////////////////
// Virtual methods
public:
ULONG GetNodeType() { return NODETYPE_STATIC; }
GUID& GetNodeGUID() { return thisGUID; }
HRESULT GetResultViewType2( MMC_COOKIE nCookie, PRESULT_VIEW_TYPE_INFO pRVTinfo );
HRESULT GetDisplayInfo( SCOPEDATAITEM* pSDI );
HRESULT GetDisplayInfo( RESULTDATAITEM* pRDI );
///////////////////////////////////////////////////////////////////////////
// Property Page methods
public:
HRESULT QueryForPropertyPage()
{ return E_NOTIMPL; }
HRESULT CreatePropertyPages( LPPROPERTYSHEETCALLBACK lpCallback, LONG_PTR Handle )
{ return E_NOTIMPL; }
HRESULT GetWatermarks( HBITMAP __RPC_FAR *lphWatermark,
HBITMAP __RPC_FAR *lphHeader,
HPALETTE __RPC_FAR *lphPalette,
BOOL __RPC_FAR *bStretch )
{ return E_NOTIMPL; }
///////////////////////////////////////////////////////////////////////////
// Notification handlers
public:
HRESULT OnSelect( LPDATAOBJECT ipDataObject, LPARAM nArg, LPARAM nParam, LONG_PTR pComponent );
HRESULT OnShow( LPDATAOBJECT ipDataObject, LPARAM nArg, LPARAM nParam, LONG_PTR pComponent );
HRESULT OnExpand( LPDATAOBJECT ipDataObject, LPARAM nArg, LPARAM nParam, LONG_PTR pCompData );
HRESULT OnRemoveChildren( LPDATAOBJECT ipDataObject, LPARAM nArg, LPARAM nParam, LONG_PTR pCompData );
HRESULT OnContextHelp( LPDATAOBJECT ipDataObject, LPARAM nArg, LPARAM nParam, LONG_PTR pComponent )
{ return E_NOTIMPL; }
HRESULT OnDelete( LPDATAOBJECT ipDataObject, LPARAM nArg, LPARAM nParam, LONG_PTR pComponent )
{ return E_NOTIMPL; }
/////////////////////////////////////////////////////////////////////////
// Context Menu methods
public:
HRESULT AddMenuItems( LPCONTEXTMENUCALLBACK ipCallback, long __RPC_FAR* pInsertionAllowed );
HRESULT Command( long lCommandID );
///////////////////////////////////////////////////////////////////////////
// Private helpers
private:
HRESULT DeleteScopeItems( LPCONSOLENAMESPACE2 ipCNS2 );
HRESULT InsertScopeItems( LPCONSOLENAMESPACE2 ipCNS2 );
HRESULT RefreshNodeList();
VOID RemoveNodes();
///////////////////////////////////////////////////////////////////////////
// Public helpers
public:
HRESULT AddDeviceNode( NODE_PROPERTIES* pProperties );
VOID ToggleStatus( LPDATAOBJECT ipDataObject );
HWND GetMessageWnd() { return m_hMessageWnd; }
static LRESULT CALLBACK StaticNodeWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
private:
static GUID thisGUID;
HSCOPEITEM m_hStaticNode;
CComponentData* m_pCompData;
HWND m_hMessageWnd; // Our message handler
CLListImpl<CDeviceNode*,CDeviceNode*> m_NodeList;
public:
HWND m_hAddDeviceDlg; // Instance of AddDeviceDlg
};
#endif //_CLASS_CSTATICNODE_
| [
"[email protected]"
] | |
fa375d0d56fa500537d812285e15b184434eae5e | d8e203eaf99631403739d22d2e19e12624fb044e | /climbStairs.cpp | 73af8425823868ff8615bfd885638928bb64eb79 | [] | no_license | xidianlina/leetcode | b6d19b5df2bf2e9c4e3a0b42b22e85b088c46b8f | a6d6557239653e859edb5100b2f0b5a1109927d6 | refs/heads/master | 2020-06-18T09:13:00.470769 | 2017-09-20T09:32:25 | 2017-09-20T09:32:25 | 94,164,780 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 466 | cpp | /*
Climbing Stairs
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
*/
#include <vector>
using namespace std;
class Solution {
public:
int climbStairs(int n) {
if (n <= 1) return 1;
vector<int> dp(n);
dp[0] = 1; dp[1] = 2;
for (int i = 2; i < n; ++i) {
dp[i] = dp[i - 1] + dp[i - 2];
}
return dp.back();
}
}; | [
"[email protected]"
] | |
fe2214d5f60a41d739e81baf8053d9cc41aeb0c2 | 0d4b0ed8d5a3d93d6d7287a9cbdb895bec8d1944 | /result/ecs2/ecs/ecs/predictVM.cpp | 64a4e3536ce9b4a9485bb6e7c2ddfd783066e880 | [] | no_license | LightCastlePro/2018-HUAWEI-software-elite-challenge | da92cd44f6e568a5a175ed77523d808724444bf4 | 232d41229c0cb6a17fd6c2057ff754d5b23d633f | refs/heads/master | 2020-03-17T05:03:32.315120 | 2018-05-14T03:40:26 | 2018-05-14T03:40:26 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 25,102 | cpp | #include "predictVM.h"
#include "readFile.h"
#include "selfTime.h"
#include "hashmapString.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <string>
#ifdef WIN32
#include <hash_map>
#else
#include <ext/hash_map>
using namespace __gnu_cxx;
#endif
using namespace std;
predictVM::predictVM(void)
{
cpu = mem = disk = 0;
predictType = -1;
startTime = endTime = 0;
initCandidates();
//初始化学习率,离预测日期近的,权值低(刚请求完VM不会再请求了,请求一段时间后再次请求VM)
for(int dayIndex = 0; dayIndex<maxDayNumber; dayIndex++){
error[dayIndex] = 1.0;
for(int i = candidatesNumber-1; i>=0;i--){
rates[dayIndex][i] = 0.1-(0.02*(candidatesNumber-i));
}
}
}
predictVM::~predictVM(void)
{
}
//初始化需要预测的信息
void predictVM::initPredictPurpose(char* info[MAX_INFO_NUM]) {
cout<<"Init input information..."<<endl;
readFile r;
//初始化需要物理服务器信息
//cout<<sizeof(info) / sizeof(info[0])<<endl;
string line = info[0];
line.erase(0,line.find_first_not_of(" \t\r\n")); //过滤头尾空白符
line.erase(line.find_last_not_of(" \t\r\n") + 1);
vector<string> fields = r.getSingleFields(line,' ');
this->cpu = atoi(r.Trim(fields[0]).c_str());
this->mem = atoi(r.Trim(fields[1]).c_str());
this->disk = atoi(r.Trim(fields[2]).c_str());
//初始化需要预测的虚拟机型号
int machineLine = 3;
for(; machineLine<MAX_INFO_NUM; machineLine++) { //读取需要预测的虚拟机型号
fields.clear();
line = info[machineLine];
line.erase(0,line.find_first_not_of(" \t\r\n")); //过滤头尾空白符
line.erase(line.find_last_not_of(" \t\r\n") + 1);
if(line.length()>0) {
fields = r.getSingleFields(line,' ');
if(fields.size()<3) cout<<"Invalid machine type line"<<endl;
else{
hash_map<int, int> inner;
inner[atoi(r.Trim(fields[1]).c_str())] = atoi(r.Trim(fields[2]).c_str());
machinesType[r.Trim(fields[0])] = inner;
//cout<<fields[0]<<" "<<fields[1]<<" "<<fields[2]<<endl;
}
}//endif init machine types
else //需要预测的虚拟机型号初始化结束,遇到空行
break;
}//endfor init machine types
//cout<<machineLine<<endl;
machineLine += 1;
//初始化需要优化的资源类型,type=0为CPU,type=1为内存
line = info[machineLine]; //空行的下一行
//cout<<line<<endl;
line.erase(0,line.find_first_not_of(" \t\r\n")); //过滤头尾空白符
line.erase(line.find_last_not_of(" \t\r\n") + 1);
if(line.compare("CPU") || line.compare("cpu")) this->predictType = 0;
else this->predictType = 1;
//初始化需要预测的起始、终止时间
machineLine+= 2; //过滤掉空行
line = info[machineLine];
//cout<<line<<endl;
selfTime t;
line.erase(0,line.find_first_not_of(" \t\r\n")); //过滤头尾空白符
line.erase(line.find_last_not_of(" \t\r\n") + 1);
this->startTime = t.StringToDatetime(line);
tm startTM = t.StringToTM(line);
line = info[machineLine+1];
//cout<<line<<endl;
line.erase(0,line.find_first_not_of(" \t\r\n")); //过滤头尾空白符
line.erase(line.find_last_not_of(" \t\r\n") + 1);
this->endTime = t.StringToDatetime(line);
tm endTM = t.StringToTM(line);
//总共要预计的天数
dayNumber = endTM.tm_mday - startTM.tm_mday;
cout<<"Input info Init END"<<endl;
}
//归一化线上测试数据的输入,反归一化线上测试数据的输出个数
//反归一公式:xi = yi *标准差 +均值
//type=0归一化data;type=1反归一化data
double predictVM::normalReverseTestData(double data, double mean, double deviation, int type){
//cout<<"aaa"<<endl;
double result = 0.0;
if(!type) //归一化输入数据
{
if(deviation == 0) return data;
result = fabs( (data - mean) / deviation);
}
else //反归一化网络输出结果
{
if( fabs(data)<1e-5 || fabs(data)>1e4) return 0;
else result = data * deviation + mean;
}
return result;
}
//归一化训练集数据:yi = (xi - 均值)/x的标准差
//对机型在距离n天时的个数进行归一化
void predictVM::normalTrainData(){
cout<<"Normalization Train Data Begin..."<<endl;
if(trainVM.size() == 0){
cout<<"Pls read TrainData First!"<<endl;
exit(1);
}
cout<<"Norm train INPUT begin......"<<endl;
//归一化训练数据的输入
hash_map<string, hash_map<int, int> >::iterator outIter;
outIter = trainVM.begin();
//记录机型下个数的总和、innerHash的个数、平均值、差平方和
int total, size;
double mean, subSquareSum;
while(outIter != trainVM.end()){ //对每一种机型
total = 0; mean = 0.0; subSquareSum = 0.0;
hash_map<int, int> temp = outIter->second;
size = temp.size(); //记录innerHash的个数
hash_map<int, int>::iterator innerIter = temp.begin();
while(innerIter!=temp.end()){
total += innerIter->second; //记录个数的总和
innerIter++;
}
//计算均值
mean = (double)total/size;
//计算差平方和
innerIter = temp.begin();
while(innerIter!= temp.end()){
subSquareSum += pow( (double)(innerIter->second-mean), 2);
innerIter++;
}
//计算标准差
double standDeviationTemp = sqrt( subSquareSum / size);
//归一化数据
hash_map<int, double> normInner;
innerIter = temp.begin();
while(innerIter!= temp.end()){
if(standDeviationTemp == 0.0) normInner[innerIter->first] = innerIter->second;
else normInner[innerIter->first] = fabs((innerIter->second - mean)/standDeviationTemp) ;
//cout<<innerIter->first<<" "<<normInner[innerIter->first]<<endl;
innerIter++;
}
norm_trainVM[outIter->first] = normInner;
input_mean[outIter->first] = mean;
input_standDeviation[outIter->first] = standDeviationTemp;
outIter++;
//cout<<normInner.size()<<" "<<mean<<" "<<standDeviationTemp<<endl;
}//endwhile each Machine Type
cout<<"Norm train INPUT end"<<endl;
cout<<"Norm train OUTPUT begin......"<<endl;
//归一化训练数据的期望输出
outIter = testVM.begin();
//记录机型下个数的总和、innerHash的个数、平均值、差平方和
while(outIter != testVM.end()){ //对每一种机型
total = 0; mean = 0.0; subSquareSum = 0.0;
hash_map<int, int> temp = outIter->second;
size = temp.size(); //记录innerHash的个数
hash_map<int, int>::iterator innerIter = temp.begin();
while(innerIter!=temp.end()){
total += innerIter->second; //记录个数的总和
innerIter++;
}
//计算均值
mean = (double)total/size;
//计算差平方和
innerIter = temp.begin();
while(innerIter!= temp.end()){
subSquareSum += pow( (double)(innerIter->second-mean), 2);
innerIter++;
}
//计算标准差
double standDeviationTemp = sqrt( subSquareSum / size);
//归一化数据
hash_map<int, double> normInner;
innerIter = temp.begin();
//cout<<temp.size()<<endl;
while(innerIter!= temp.end()){
if(standDeviationTemp == 0.0) normInner[innerIter->first] = innerIter->second;
else normInner[innerIter->first] = (innerIter->second - mean)/standDeviationTemp ;
//cout<<innerIter->first<<" "<<normInner[innerIter->first]<<endl;
innerIter++;
}
norm_testVM[outIter->first] = normInner;
output_mean[outIter->first] = mean;
output_standDeviation[outIter->first] = standDeviationTemp;
outIter++;
//cout<<normInner.size()<<" "<<mean<<" "<<standDeviationTemp<<endl;
}//endwhile each Machine Type
cout<<"Norm train OUTPUT end......"<<endl;
cout<<"Normalization END"<<endl;
}
//根据需要预测的机型,读取训练数据
void predictVM::readTrainData(char* data[MAX_DATA_NUM], int data_num) {
if(this->predictType <0){
cout<<"Pls initPredictPurpose FIRST!"<<endl;
exit(1);
}
if(data_num<=0) cout<<"Can NOT read Train Data!"<<endl;
cout<<"Read Train Data..."<<endl;
string line = "";
readFile r;
selfTime t;
vector<string> fields;
for(int lineNumber = 0; lineNumber<data_num; lineNumber++) {
if(! (data[lineNumber] == NULL) ) { //不是空行
line = data[lineNumber];
line.erase(0,line.find_first_not_of(" \t\r\n")); //过滤头尾空白符
line.erase(line.find_last_not_of(" \t\r\n") + 1);
fields = r.getSingleFields(line, '\t');
if(fields.size()<3) cout<<"Invalid Train Data Line"<<endl;
else{
//cout<<line<<endl;
hash_map<int, int> inner;
if(machinesType.find(fields[1]) != machinesType.end()){ //是需要预测的虚拟机型号才记录
inner.clear();
int day = (int)difftime(startTime, t.StringToDatetime(fields[2]))/60/60/24 +1;
//cout<<"))"<<day<<endl;
if(trainVM.find(fields[1])!= trainVM.end()){ //如果有这种型号的记录
inner = trainVM[fields[1]];
if(inner.find(day)!=inner.end()) //如果有这一天的记录,更新数量
{ inner[day] += 1; }
else
{ inner[day] = 1; } //否则,=1个
trainVM[fields[1]] = inner;
}
else{ //没有这种型号的数据,新增
inner[day] = 1;
trainVM[fields[1]] = inner;
}
}//endif find machine Type
}
}//endif readLine
}//endfor lineNumber
cout<<"Read Train END"<<endl;
}
//读取测试集
void predictVM::initTestData4Train(string path){
cout<<"Init Test Data....."<<endl;
ifstream fin(path);
readFile r;
selfTime t;
if(fin == NULL){
cout<<"Failuer to open FILE!"<<endl;
exit(1);
}
//cout<<path<<endl;
string line = "";
vector<string> fields;
while(getline(fin, line))
{
//cout<<line<<endl;
fields = r.getSingleFields(line, '\t');
if(fields.size()<3) cout<<"Invalid Test Data Line"<<line<<endl;
else{
hash_map<int, int> inner;
if(machinesType.find(fields[1]) != machinesType.end()){ //是需要预测的虚拟机型号才记录
inner.clear();
int day = -(int)difftime(startTime, t.StringToDatetime(fields[2]))/60/60/24; //共dayNumber天需要预测,从0开始计数
//cout<<day<<endl;
//cout<<startTime<<" "<<fields[2]<<" "<<day<<endl;
if(testVM.find(fields[1])!= trainVM.end()){ //如果有这种型号的记录
inner = testVM[fields[1]];
if(inner.find(day)!=inner.end()) //如果有这一天的记录,更新数量
{ inner[day] += 1; }
else
{ inner[day] = 1; } //否则,=1个
testVM[fields[1]] = inner;
}
else{ //没有这种型号的数据,新增
inner[day] = 1;
testVM[fields[1]] = inner;
}
}//endif find machine type
}
}//endwhile read file
fin.close();
cout<<"Init Test Data END"<<endl;
}
//初始化candidatesNumber个模型参数值
void predictVM::initCandidates(){
cout<<"Init Candidates..."<<endl;
std::default_random_engine random(time(NULL));
//std::uniform_real_distribution<double> dis(-(double)sqrt((double)0.5/(candidatesNumber+1)), (double)sqrt((double)0.5/(candidatesNumber+1)));
std::uniform_real_distribution<double> dis(-(double)1/(candidatesNumber+1), (double)1/(candidatesNumber+1));
for(int dayIndex = 0; dayIndex<maxDayNumber; dayIndex++)
for(int i = 0; i<candidatesNumber; i++){
nodes[dayIndex][i] = dis(random); //cout<<nodes[dayIndex][i]<<endl;
//nodes[dayIndex][i] = 0.1 - (0.02*i);
}
cout<<"Candidates init END"<<endl;
}
double round(double val)
{
return (val> 0.0) ? floor(val+ 0.5) : ceil(val- 0.5);
}
//将训练好的参数集写入文件中
//学习率自动初始化
//文件格式:型号,预测天数,各节点权值(共dayNumber*candidatesNumber个),输入均值,输入标准差,输出均值,输出标准差
void predictVM::writeWeights(string path){
ofstream in;
in.open(path,ios::app); //ios::app表示写入,文件不存在则创建,有则在尾部追加 //ios::trunc表示在打开文件前将文件清空,由于是写入,文件不存在则创建
hash_map<string, double>::iterator iter;
iter = input_mean.begin();
while(iter!=input_mean.end()){
in<<iter->first<<","<<dayNumber<<",";
for(int dayIndex = 0; dayIndex<dayNumber; dayIndex++){
for(int nodeIndex = 0; nodeIndex<candidatesNumber; nodeIndex++){
in<<nodes[dayIndex][nodeIndex]<<",";
}
}
in<<iter->second<<","<<input_standDeviation[iter->first]<<","<<output_mean[iter->first]<<","<<output_standDeviation[iter->first]<<"\n";
iter++;
}
in.close();
}
//读取训练好的参数
//文件格式:型号,预测天数,各节点权值(共dayNumber*candidatesNumber个),输入均值,输入标准差,输出均值,输出标准差
void predictVM::readWeights(string path){
readFile r;
ifstream fin(path);
if(fin == NULL) {
cout<<"Failure to open FILE!"<<endl;
exit(1);
}
if(this->predictType <0){
cout<<"Pls initPredictPurpose FIRST!"<<endl;
exit(1);
}
cout<<"Init Weights Begin......"<<endl;
string line = "";
while(getline(fin, line)){
vector<string> fields;
fields = r.getSingleFields(line, ',');
string machine = fields[0];
//cout<<machine<<endl;
if(machinesType.find(machine)!=machinesType.end()){ //是需要预测的机型
int maxDay = atoi(fields[1].c_str());
if(dayNumber >14) dayNumber = 14; //max predict day number is 14 days
if(dayNumber > maxDay) continue; //模型参数分机型+天数,7天的参数针对需要预测的天数<=7天的,>7天的预测需要使用14天的模型参数
//cout<<maxDay<<endl;
vector<double> nodesInfo;
int index = 2;
for( int count = 0; count<(maxDay*candidatesNumber); count++){
nodesInfo.push_back(atof(fields[index].c_str()));
index++;
}
machineNodesInfo[machine] = nodesInfo;
//cout<<nodesInfo.size()<<endl;
input_mean[machine] = atof(fields[index].c_str());
input_standDeviation[machine] = atof(fields[index+1].c_str());
output_mean[machine] = atof(fields[index+2].c_str());
output_standDeviation[machine] = atof(fields[index+3].c_str());
//cout<<fields[index+3]<<endl;
}
else continue; //下一行数据
}
fin.close();
cout<<"Weights init END"<<endl;
}
//训练各个参数
void predictVM::trainData(){
if(this->predictType <0){
cout<<"Pls initPredictPurpose FIRST!"<<endl;
exit(1);
}
cout<<"train Begin......"<<endl;
hash_map<string, hash_map<int, int> >::iterator machineTypeOutIter;
machineTypeOutIter = this->machinesType.begin();
while(machineTypeOutIter != this->machinesType.end()){ //遍历每一个机型计算dayNumber的预测值
double dayOutNumber[maxDayNumber] = {0.0}; //预测的每一种机型的输出值,预测跨度在1~2周,实际预测dayNumber天
//hash_map<int, int> typeTrainInfo;
hash_map<int, double> typeTrainInfo;
if(this->norm_trainVM.find(machineTypeOutIter->first) != this->norm_trainVM.end() )
typeTrainInfo = this->norm_trainVM[machineTypeOutIter->first];
//typeTrainInfo = this->trainVM[machineTypeOutIter->first]; //机型对应的训练集数据<距离startTime的天数,个数>
else continue;
hash_map<int, double>::iterator trainInnerIter = typeTrainInfo.begin();
//hash_map<int, int>::iterator trainInnerIter = typeTrainInfo.begin();
//预测每一种机型的未来每一天的输出值
while(trainInnerIter!=typeTrainInfo.end()){ //以60天/candidatesNumber为一组
for(int dayIndex = 0; dayIndex<dayNumber; dayIndex++){ //共dayNumber天需要预测,dayIndex为距离startTime的天数
error[dayIndex] = 0.0;
for(int groupIndex = 0; groupIndex< (60/candidatesNumber); groupIndex++){ //判断(day+dayIndex)属于第几组
if( ((60/candidatesNumber)*groupIndex) < (trainInnerIter->first+dayIndex)
&& (trainInnerIter->first+dayIndex) <=( (60/candidatesNumber)*(groupIndex+1) ) ){ //是否属于第groupIndex组
//cout<<"aa"<<dayIndex<<" "<<trainInnerIter->second<<" "<<nodes[dayIndex][groupIndex]<<endl;
//cout<<trainInnerIter->first<<" group"<<groupIndex<<" "<<dayOutNumber[dayIndex]<<" "<<nodes[dayIndex][groupIndex]<<" "<<trainInnerIter->second<<" ";
dayOutNumber[dayIndex] += nodes[dayIndex][groupIndex]*trainInnerIter->second;
//cout<<"dayOut="<<dayOutNumber[dayIndex]<<endl;
}
else continue;
}//endfor group
}//endfor dayNumber
trainInnerIter++;
}//endwhile trainInnerInfo
//根据测试集,计算当前机型的总误差值
hash_map<int, double> testInfo = this->norm_testVM[machineTypeOutIter->first]; //机型对应的测试集数据<距离startTime的天数,实际个数>
for(int dayIndex = 0; dayIndex<dayNumber; dayIndex++){
double eachErr; //每一天的误差值
double count = 0;
if(testInfo.find(dayIndex)!=testInfo.end()){ //测试集的那一天有这个机型
count = testInfo[dayIndex];
}
//cout<<"a "<<count<<" "<<dayOutNumber[dayIndex]<<endl;
//cout<<dayIndex<<" "<<dayOutNumber[dayIndex]<<endl;
//if(dayOutNumber[dayIndex]<0 || dayOutNumber[dayIndex] > count)
//eachErr = dayOutNumber[dayIndex] - count;
//else
eachErr = count - dayOutNumber[dayIndex];
//cout<<machineTypeOutIter->first<<" "<<"day"<<dayIndex<<" "<<dayOutNumber[dayIndex]<<"=(int)"<<fabs(round(dayOutNumber[dayIndex]))<<"\t";
cout<<machineTypeOutIter->first<<" "<<"day"<<dayIndex<<" "<<dayOutNumber[dayIndex]<<"=(int)"<<normalReverseTestData(dayOutNumber[dayIndex], output_mean[machineTypeOutIter->first], output_standDeviation[machineTypeOutIter->first], 1)<<"\t";
error[dayIndex] += eachErr;
cout<<"count="<<count<<" "<<eachErr<<" "<<error[dayIndex]<<endl;
}
//cout<<"error = "<<error<<" ";
//error = error/dayNumber;
//cout<<error<<endl;
//误差传递,修正各个参数
for(int dayIndex = 0; dayIndex<dayNumber; dayIndex++){
for(int i= 0; i <candidatesNumber; i++){
nodes[dayIndex][i] += rates[dayIndex][i] * error[dayIndex];
//cout<<"day="<<dayIndex<<" node="<<i<<" "<<nodes[dayIndex][i]<<endl;
}
}
machineTypeOutIter++;
}//endwhile machineType
cout<<"Train END"<<endl;
}
//线下训练模型,得到模型的各个参数值
void predictVM::trainUnderLine(char* info[MAX_INFO_NUM], char* data[MAX_DATA_NUM], int data_num){
initPredictPurpose(info);
readTrainData(data, data_num);
string path = "../data/test.txt";
//cout<<"Pls input test file path:";
//cin>>path;
initTestData4Train(path);
cout<<"!!"<<trainVM.size()<<endl;
normalTrainData();
int times = 0;
cout<<"Train UnderLine Begin..."<<endl;
while(times<600){
trainData();
cout<<"-----Times="<<times<<"------"<<endl;
times++;
}
cout<<"Train Underline END!"<<endl;
cout<<"Record model's informaiton: Weight & Bias etc. into File: (y/n) ";
string yORn = "";
cin>>yORn;
if(string(yORn) == string("y")) {
string outPath = "../model.txt";
//cout<<"Pls input output file path:";
//cin>>outPath;
writeWeights(outPath);
cout<<"Record Done!"<<endl;
}
}
//归一化线上测试的数据集
void predictVM::normalTestData(){
if(this->predictType <0){
cout<<"Pls initPredictPurpose FIRST!"<<endl;
exit(1);
}
if(trainVM.size() <=0){
cout<<"Pls read TrainData FIRST!"<<endl;
}
cout<<"Normal Data Input Begin......"<<endl;
hash_map<string, hash_map<int, int> >::iterator outIter;
outIter = trainVM.begin();
while(outIter != trainVM.end()){
hash_map<int, int>::iterator innerIter = trainVM[outIter->first].begin();
hash_map<int, double> normValues;
while(innerIter!= trainVM[outIter->first].end()){
normValues[innerIter->first] = normalReverseTestData(innerIter->second, input_mean[outIter->first], input_standDeviation[outIter->first], 0);
//cout<<input_mean[outIter->first]<<" "<<input_standDeviation[outIter->first]<<endl;
innerIter++;
}
norm_trainVM[outIter->first] = normValues;
outIter++;
}
cout<<"Normal Data Input END"<<endl;
}
//线上测试模型
hash_map<string, int> predictVM::testOnline(char* info[MAX_INFO_NUM], char* data[MAX_DATA_NUM],int data_num){
hash_map<string, int> resultAll;
string weightPath = "../ecs/averageWeights.txt";
//cout<<"Pls input weight file path:";
//cin>>weightPath;
initPredictPurpose(info); //初始化需要预测的信息
readWeights(weightPath); //读取训练好的模型参数信息
readTrainData(data, data_num); //读取训练数据
normalTestData(); //归一化线上测试的训练数据
hash_map<string, hash_map<int, int> >::iterator outIter = machinesType.begin(); //对每一种需要预测的机型,对需要预测每一天进行计算
while(outIter!= machinesType.end()){
//从权值信息map中读取这一机型每一天的candidatesNumber个权值信息
vector<double> machinetypeNodeInfo = machineNodesInfo[outIter->first];
int index = 0;
if(dayNumber > 14) dayNumber = 14; //max predict day number is 14 days
for(int dayIndex = 0; dayIndex<dayNumber; dayIndex++){
for(int nodeIndex = 0; nodeIndex<candidatesNumber; nodeIndex++){
this->nodes[dayIndex][nodeIndex] = machinetypeNodeInfo[index];
//cout<<this->nodes[dayIndex][nodeIndex]<<" ";
index++;
}
}
double predictDayOutNumber[maxDayNumber] = {0.0}; //必须要赋初值啊!
//for(int i =0; i<maxDayNumber; i++) cout<<predictDayOutNumber[i]<<" ";
//cout<<endl;
//从测试数据集中获取这一型号的数据集
hash_map<int, double>::iterator trainInfoIter = norm_trainVM[outIter->first].begin();
while(trainInfoIter!= norm_trainVM[outIter->first].end()){
for(int dayIndex = 0; dayIndex<dayNumber; dayIndex++){ //共dayNumber天需要预测,dayIndex为距离startTime的天数
for(int groupIndex = 0; groupIndex< (duration/candidatesNumber); groupIndex++){ //判断(day+dayIndex)属于第几组
if( ((duration/candidatesNumber)*groupIndex) < (trainInfoIter->first+dayIndex)
&& (trainInfoIter->first+dayIndex) <=( (duration/candidatesNumber)*(groupIndex+1) ) ){ //是否属于第groupIndex组
//cout<<"aa"<<trainInnerIter->second<<endl;
//cout<<trainInnerIter->first<<" group"<<groupIndex<<" "<<dayOutNumber[dayIndex]<<" "<<nodes[dayIndex][groupIndex]<<" "<<trainInnerIter->second<<" ";
predictDayOutNumber[dayIndex] += nodes[dayIndex][groupIndex]*trainInfoIter->second;
//cout<<"dayOut="<<dayOutNumber[dayIndex]<<endl;
}
else continue;
}//endfor group
}//endfor dayNumber
trainInfoIter++;
}//endwhile for each train data line
int machineTotalNumber = 0;
for(int dayIndex = 0; dayIndex<dayNumber; dayIndex++){
int singleDayOutNumber = normalReverseTestData(predictDayOutNumber[dayIndex], output_mean[outIter->first], output_standDeviation[outIter->first], 1);
//cout<<outIter->first<<" "<<singleDayOutNumber<<endl;
machineTotalNumber += singleDayOutNumber;
}
//cout<<outIter->first<<" "<<machineTotalNumber<<endl;
resultAll[outIter->first] = machineTotalNumber;
outIter++;
}//enwhile for each machine type
return resultAll;
}
//计算权重的均值
//7天的、14天的权重均值分别计算
void predictVM::averageWeights(string path){
readFile r;
ifstream fin(path);
if(fin == NULL) {
cout<<"File Open FAIL!"<<endl;
exit(1);
}
cout<<"Calculate Average Weights, Mean & Deviation Begin......"<<endl;
string line = "";
vector<string> fields;
int recordDay = 0;
hash_map<string, hash_map<int, vector<double> > > machineWeightsMeanDeviations;
cout<<"Read File Begin......"<<endl;
while(getline(fin, line)) {
//cout<<line<<endl;
fields = r.getSingleFields(line,',');
if(fields.size()<6) cout<<"Invalid weights line"<<endl;
else{
string machineType = fields[0];
recordDay = atoi(r.Trim(fields[1]).c_str());
int index = 2;
vector<double> weights;
for( ; index< fields.size(); index++){
weights.push_back( atof(r.Trim(fields[index]).c_str() ) );
//cout<<fields[index]<<" ";
}
cout<<weights.size()<<endl;
hash_map<int, vector<double> > innerRecord;
if(machineWeightsMeanDeviations.find(machineType)!=machineWeightsMeanDeviations.end()){
innerRecord = machineWeightsMeanDeviations[machineType];
innerRecord[innerRecord.size()] = weights; //新增一条记录
//cout<<innerRecord.size()<<endl;
}
else{
innerRecord[0] = weights; //新记录
}
machineWeightsMeanDeviations[machineType] = innerRecord;
}
}//endwhile read File
fin.close();
//cout<<machineWeightsMeanDeviations.size()<<endl;
cout<<"End read File"<<endl;
cout<<"Calculating Begin......"<<endl;
string outPath = "./averageModel-14.txt";
ofstream in;
in.open(outPath,ios::app); //ios::app表示写入,文件不存在则创建,有则在尾部追加 //ios::trunc表示在打开文件前将文件清空,由于是写入,文件不存在则创建
hash_map<string, hash_map<int, vector<double> > >::iterator outIter = machineWeightsMeanDeviations.begin();
while(outIter!=machineWeightsMeanDeviations.end()){
in<<outIter->first<<","<<recordDay<<",";
for(int index = 0; index<recordDay*candidatesNumber+4; index++){ //对recordDay*candidatesNumber+mean+deviation个参数计算均值
double totalNumber= 0.0;
//cout<<outIter->second.size()<<endl;
for(int innerIndex = 0; innerIndex<outIter->second.size(); innerIndex++){ //对每一条记录
totalNumber += outIter->second[innerIndex][index];
//cout<<"aa "<<outIter->second[innerIndex][index]<<" ";
}
double average = (double)totalNumber/outIter->second.size();
//cout<<average<<endl;
in<<average<<",";
}//endfor each weights
in<<"\n";
outIter++;
}
in.close();
cout<<"Calculating End"<<endl;
}
/*
void main() {
}
*/
| [
"[email protected]"
] | |
e339b57b3dd47103d57316e6400191774e7bcf08 | 1da4946da8911fbce1290ddbf7b1a6141716057c | /CodeModel/RenderD3D11/MtlShader.h | 2b718510e7324c80836681dc18b691e0207724d7 | [] | no_license | liqunzheng/Dx11Study | 7ec206348788fb599b86a84ca76801f95f6eaa14 | ca126c8cf6ec9047aa43e293881aa437e8662cb8 | refs/heads/master | 2021-01-20T07:03:10.532414 | 2014-12-22T13:16:17 | 2014-12-22T13:16:17 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 953 | h | #pragma once
#include "IShader.h"
class CMtlShader : public IShader
{
private:
//和shader中const buffer结构一致,主要用来给这些shader参数赋值。
struct MatrixBufferType
{
D3DXMATRIX world;
D3DXMATRIX view;
D3DXMATRIX projection;
};
public:
CMtlShader();
~CMtlShader();
virtual bool Initialize(CD3D11Class* p3DRoot);
virtual void Shutdown();
virtual bool Render(CD3D11Class* p3DRoot, UINT indexCount);
virtual bool SetMatrix(CD3D11Class* p3DRoot, D3DXMATRIX mxWorld, D3DXMATRIX mxView, D3DXMATRIX mxProject);
virtual bool SetShaderResource(CD3D11Class* p3DRoot, ID3D11ShaderResourceView* pResource);
protected:
std::wstring m_strName;
std::wstring m_strPSName;
std::wstring m_strVSName;
ID3D11VertexShader *m_vertexShader;
ID3D11PixelShader *m_pixelShader;
ID3D11InputLayout *m_layout; //顶点输入布局
ID3D11Buffer *m_matrixBuffer; //变换矩阵
ID3D11SamplerState *m_sampleState;//采样状态
};
| [
"[email protected]"
] | |
e1456c7b3bd4eb48379f5b3b04e4eafb8dc90e89 | aa02fa13b993ce94379a3ec48200dd3d5b19d526 | /Classes/Component/SettingPanel.hpp | 8c24c06f25d0597d21b02de5c2f6dc06574ad8e4 | [
"MIT"
] | permissive | xiatian0019/Chump | a09a7c57f0c1680aa9b47325704155c210d62700 | ccd368d8c46276dcab6c446883582e36d994a971 | refs/heads/master | 2021-01-20T21:07:02.215919 | 2016-11-14T07:45:53 | 2016-11-14T07:45:53 | 62,699,050 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,001 | hpp | //
// SettingPanel.hpp
// Chump
//
// Created by xiaoming on 16/7/25.
//
//
#ifndef SettingPanel_hpp
#define SettingPanel_hpp
#include <stdio.h>
#include "cocos2d.h"
USING_NS_CC;
#include "cocos-ext.h"
USING_NS_CC_EXT;
class SettingPanelDelegate
{
public:
virtual void settingPanelClose()=0;
};
class SettingPanel : public Layer
{
public:
CREATE_FUNC(SettingPanel);
bool init();
void setDelegate(SettingPanelDelegate *delegate);
private:
void addLabel(std::string txt,Node *pareNode,Vec2 pos);
void openTouchEvent();
bool onTouchBegan(Touch* touch, Event* event);
void onTouchEnded(Touch* touch, Event* event);
ui::Scale9Sprite *backSp;
SettingPanelDelegate *myDelegate;
MenuItemImage *btnSoundOn;
MenuItemImage *btnSoundOff;
MenuItemImage *btnEffectOn;
MenuItemImage *btnEffectOff;
MenuItemImage *addBtn(bool stateOn,int tag);
void btnClick(Ref *ref);
void updateBtnState();
};
#endif /* SettingPanel_hpp */
| [
"[email protected]"
] | |
446a5ad22a9801f35f70dc9fbb47725651eb8800 | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/99/1887.c | 9e781a6c4862d0bf56d79ad5ced981d89f72d859 | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 460 | c | int main () {
int i,a,b,c,d,e,n;
a=0;b=0;c=0;d=0;e=0;
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%d",&e);
if(e<19){a++;}
else if(e<36){b++;}
else if(e<61){c++;}
else {d++;}
}
double f,g,h,j;
f=a*1.0/n;
g=b*1.0/n;
h=c*1.0/n;
j=d*1.0/n;
printf("1-18: %.2lf",100*f);printf("%%\n");
printf("19-35: %.2lf",100*g);printf("%%\n");
printf("36-60: %.2lf",100*h);printf("%%\n");
printf("60??: %.2lf",100*j);printf("%%\n");
return 0;
}
| [
"[email protected]"
] | |
bbc943336ccbb6bc7435274c6502ae2c4b5347ff | d22d64741cbf502c803291e22faca5ecf8855d6c | /hackerRank/learn-c++/strings.cpp | 19ba0a89fecb6c3a42fd7370f101424a395f22d7 | [] | no_license | erickcm2k/competitiveSolutions | d5e885a10c9e21f3e1676dde6b51d1b104499c75 | f3b5786b1964e7f3655a6a32049ef6a29fc0b3b9 | refs/heads/master | 2022-05-27T09:48:12.888847 | 2022-03-17T22:39:03 | 2022-03-17T22:39:03 | 245,887,204 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 440 | cpp | #include "iostream"
using namespace std;
int main(int argc, char const *argv[])
{
string s1,s2;
string s1p,s2p;
cin>>s1>>s2;
s1p=s2[0];
for(int i=1;i<s1.size();i++){
s1p=s1p+s1[i];
}
s2p=s1[0];
for(int i=1;i<s2.size();i++){
s2p=s2p+s2[i];
}
cout<<s1.size()<<" "<<s2.size()<<endl;
cout<<s1+s2<<endl;
cout<<s1p<<" "<<s2p<<endl;
return 0;
}
| [
"[email protected]"
] | |
4ca1546da3221dc9b4f0d65d7b9406d833dd9426 | e0c42bcb517fe41f6a91b875a3f2ff16ca81e961 | /src/ompl/base/spaces/SE2StateSpace.h | af62a23ec5433fe06acb67b05cf230eedfb6a427 | [
"BSD-3-Clause"
] | permissive | Insightque/DesiredOrientationRRT | dc056345c2b49ebb18932f2f742c72d93577bdf1 | 2e7a3e7cbcd30d6d9fa5bf0b53998bc5d0bda248 | refs/heads/master | 2021-05-06T03:02:26.551329 | 2018-10-16T23:33:09 | 2018-10-16T23:33:09 | 114,783,551 | 2 | 2 | NOASSERTION | 2018-10-03T07:49:15 | 2017-12-19T15:49:27 | C++ | UTF-8 | C++ | false | false | 5,148 | h | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2010, Rice University
* 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 Rice University 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.
*********************************************************************/
/* Author: Ioan Sucan */
#ifndef OMPL_BASE_SPACES_SE2_STATE_SPACE_
#define OMPL_BASE_SPACES_SE2_STATE_SPACE_
#include "ompl/base/StateSpace.h"
#include "ompl/base/spaces/RealVectorStateSpace.h"
#include "ompl/base/spaces/SO2StateSpace.h"
namespace ompl
{
namespace base
{
/** \brief A state space representing SE(2) */
class SE2StateSpace : public CompoundStateSpace
{
public:
/** \brief A state in SE(2): (x, y, yaw) */
class StateType : public CompoundStateSpace::StateType
{
public:
StateType() : CompoundStateSpace::StateType()
{
}
/** \brief Get the X component of the state */
double getX() const
{
return as<RealVectorStateSpace::StateType>(0)->values[0];
}
/** \brief Get the Y component of the state */
double getY() const
{
return as<RealVectorStateSpace::StateType>(0)->values[1];
}
/** \brief Get the yaw component of the state. This is
the rotation in plane, with respect to the Z
axis. */
double getYaw() const
{
return as<SO2StateSpace::StateType>(1)->value;
}
/** \brief Set the X component of the state */
void setX(double x)
{
as<RealVectorStateSpace::StateType>(0)->values[0] = x;
}
/** \brief Set the Y component of the state */
void setY(double y)
{
as<RealVectorStateSpace::StateType>(0)->values[1] = y;
}
/** \brief Set the X and Y components of the state */
void setXY(double x, double y)
{
setX(x);
setY(y);
}
/** \brief Set the yaw component of the state. This is
the rotation in plane, with respect to the Z
axis. */
void setYaw(double yaw)
{
as<SO2StateSpace::StateType>(1)->value = yaw;
}
};
SE2StateSpace() : CompoundStateSpace()
{
setName("SE2" + getName());
type_ = STATE_SPACE_SE2;
addSubspace(StateSpacePtr(new RealVectorStateSpace(2)), 1.0);
addSubspace(StateSpacePtr(new SO2StateSpace()), 0.5);
lock();
}
virtual ~SE2StateSpace()
{
}
/** \copydoc RealVectorStateSpace::setBounds() */
void setBounds(const RealVectorBounds &bounds)
{
as<RealVectorStateSpace>(0)->setBounds(bounds);
}
/** \copydoc RealVectorStateSpace::getBounds() */
const RealVectorBounds& getBounds() const
{
return as<RealVectorStateSpace>(0)->getBounds();
}
virtual State* allocState() const;
virtual void freeState(State *state) const;
virtual void registerProjections();
};
}
}
#endif
| [
"[email protected]"
] | |
b70565c9ce3e77a347711545bc7b7dd0c0311c38 | bf8cd5a46d0a72d59d72b6e538e52464a290c33f | /test/dockinglimitmessage.h | 6af2aad8a0f3d510550f6dfa7da780451afd8831 | [] | no_license | bkbme/CALLogViewer | 267f9dc69fd5ec13e2203756a8391bc825190b46 | ef403c8fd9c0696db50c7c28a05d402ea648581c | refs/heads/master | 2016-09-01T22:38:35.690661 | 2014-03-02T18:26:23 | 2014-03-02T18:26:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 432 | h | #ifndef DOCKINGLIMITMESSAGE_H
#define DOCKINGLIMITMESSAGE_H
#include <abstractmessage.h>
#include <messageparser.h>
class DockingLimitMessage : public AbstractMessage
{
public:
DockingLimitMessage(quint8 seq, int lowerLimit, int upperLimit);
quint8 identifier() const { return MessageParser::IdDockingLimitMessage; }
bool isValid() const;
int lowerLimit() const;
int upperLimit() const;
};
#endif // DOCKINGLIMITMESSAGE_H
| [
"[email protected]"
] | |
9ddb5ef3782bfed4d239151b37a786987441467c | d7daa1c9473ed169db03c0a84581cfb20253a3d0 | /src/modules/processes/IntensityTransformations/ExponentialNumericControl.h | aa830cd3d9763a0dca56630f28126085a60a4e15 | [
"LicenseRef-scancode-other-permissive"
] | permissive | ksAlpha001/PCL | 8986a360478ae8d1b01491efb81df5308ddb21a6 | 5c2d45a4b5a9fceacc0be08dc07d9100f19b0b7b | refs/heads/master | 2023-03-15T01:48:32.964335 | 2017-05-01T08:50:05 | 2017-05-01T08:50:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,047 | h | // ____ ______ __
// / __ \ / ____// /
// / /_/ // / / /
// / ____// /___ / /___ PixInsight Class Library
// /_/ \____//_____/ PCL 02.01.03.0819
// ----------------------------------------------------------------------------
// Standard IntensityTransformations Process Module Version 01.07.01.0364
// ----------------------------------------------------------------------------
// ExponentialNumericControl.h - Released 2017-04-14T23:07:12Z
// ----------------------------------------------------------------------------
// This file is part of the standard IntensityTransformations PixInsight module.
//
// Copyright (c) 2003-2017 Pleiades Astrophoto S.L. All Rights Reserved.
//
// Redistribution and use in both source and binary forms, with or without
// modification, is permitted provided that the following conditions are met:
//
// 1. All redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. All 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.
//
// 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
// of their contributors, may be used to endorse or promote products derived
// from this software without specific prior written permission. For written
// permission, please contact [email protected].
//
// 4. All products derived from this software, in any form whatsoever, must
// reproduce the following acknowledgment in the end-user documentation
// and/or other materials provided with the product:
//
// "This product is based on software from the PixInsight project, developed
// by Pleiades Astrophoto and its contributors (http://pixinsight.com/)."
//
// Alternatively, if that is where third-party acknowledgments normally
// appear, this acknowledgment must be reproduced in the product itself.
//
// THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
// INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
// DATA OR PROFITS) 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 __PCL_ExponentialNumericControl_h
#define __PCL_ExponentialNumericControl_h
/// \file pcl/ExponentialNumericControl.h
#ifndef __PCL_Defs_h
#include <pcl/Defs.h>
#endif
#ifndef __PCL_NumericControl_h
#include <pcl/NumericControl.h>
#endif
#ifndef __PCL_SpinBox_h
#include <pcl/SpinBox.h>
#endif
namespace pcl
{
// ----------------------------------------------------------------------------
class PCL_CLASS ExponentialNumericControl : public NumericEdit
{
public:
ExponentialNumericControl( Control& parent = Null() );
virtual ~ExponentialNumericControl()
{
}
private:
NumericControl m_coefficient;
SpinBox m_exponent;
void __CoefficientValueUpdated( NumericEdit& sender, double value );
void __ExponentValueUpdated( SpinBox& sender, int value );
virtual void UpdateControls();
};
// ----------------------------------------------------------------------------
} // pcl
#endif // __PCL_ExponentialNumericControl_h
// ----------------------------------------------------------------------------
// EOF ExponentialNumericControl.h - Released 2017-04-14T23:07:12Z
| [
"[email protected]"
] | |
73fd4103ed119bcbfbb5118857a87f65dd21d732 | 0b01e80ca3d9217403b8aaf48ce6462c6a9cd296 | /PICNIC.cpp | 882cc8b4685713c9fab0f424e40eef392b773965 | [] | no_license | middlelow-Y/algorithm_training | dda2fef8dbf0ec415058728db6ba2848637fa2c4 | e6f860f71db25c432b55236505d19073cdb2dc61 | refs/heads/master | 2021-10-10T13:51:14.494121 | 2019-01-11T12:49:51 | 2019-01-11T12:49:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 212 | cpp | #include<stdio.h>
int main() {
int all, H, W;
char P[100][100];
scanf("%d", &all);
scanf("%d %d", &H, &W);
for (int i = 0; i < all; i++) {
for (int j = 0; j < H; j++) {
scanf("%s", P[j]);
}
}
} | [
"[email protected]"
] | |
c5cfbc01a85805b3d12b6fde230b525d6d5d0c06 | b77349e25b6154dae08820d92ac01601d4e761ee | /List/Ultimate Grid/Examples/MaskEdit/MainFrm.cpp | bb5a16fe4e3a7b7b69709a6c2e356258e043e763 | [] | no_license | ShiverZm/MFC | e084c3460fe78f820ff1fec46fe1fc575c3e3538 | 3d05380d2e02b67269d2f0eb136a3ac3de0dbbab | refs/heads/master | 2023-02-21T08:57:39.316634 | 2021-01-26T10:18:38 | 2021-01-26T10:18:38 | 332,725,087 | 0 | 0 | null | 2021-01-25T11:35:20 | 2021-01-25T11:29:59 | null | UTF-8 | C++ | false | false | 1,826 | cpp | // MainFrm.cpp : implementation of the CMainFrame class
//
#include "stdafx.h"
#include "Code3.h"
#include "MainFrm.h"
#include "mycug.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainFrame
IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
//{{AFX_MSG_MAP(CMainFrame)
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR, // status line indicator
ID_INDICATOR_CAPS,
ID_INDICATOR_NUM,
ID_INDICATOR_SCRL,
};
/////////////////////////////////////////////////////////////////////////////
// CMainFrame construction/destruction
CMainFrame::CMainFrame()
{
}
CMainFrame::~CMainFrame()
{
UGXPThemes::CleanUp();
}
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators,
sizeof(indicators)/sizeof(UINT)))
{
TRACE0("Failed to create status bar\n");
return -1; // fail to create
}
CenterWindow();
return 0;
}
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
// cs.style = cs.style | WS_MAXIMIZE;
return CMDIFrameWnd::PreCreateWindow(cs);
}
/////////////////////////////////////////////////////////////////////////////
// CMainFrame diagnostics
#ifdef _DEBUG
void CMainFrame::AssertValid() const
{
CMDIFrameWnd::AssertValid();
}
void CMainFrame::Dump(CDumpContext& dc) const
{
CMDIFrameWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainFrame message handlers
| [
"[email protected]"
] | |
758178d2661b2eb2a00dedf0b0fd9c83e537b2b5 | e4bab2cd06b7398e913404b86ef7f4050da7da80 | /Engine/Code/Engine/Modules/Input/teInputManager.cpp | e6313705422436e907c224a685c31dc432e60451 | [
"Zlib"
] | permissive | USKamicadze/tatengine | 5fa511a572494a13eb4dba8ebc6b02e9278bc2b0 | 5fb5b99b3c29bcbb89c2074981d9638af6f5a9ca | refs/heads/master | 2020-12-31T07:34:06.673379 | 2014-05-20T12:02:30 | 2014-05-20T12:02:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,639 | cpp | /*
* teInputManager.cpp
* TatEngine
*
* Created by Dmitrii Ivanov on 12/4/09.
* Copyright 2009 Tatem Games. All rights reserved.
*
*/
#include "teInputManager.h"
#include "teLogManager.h"
#ifdef TE_INPUT_SUPPORT_DEVICE_ORIENTATION
#include "tePlatform.h"
#include "teRenderGL.h"
#endif
namespace te
{
namespace input
{
teInputManager * CurrentInputManager = NULL;
teInputManager::teInputManager()
:CurrentCountOfTouches(0), CurrentResolveType(TFRT_POINTERS)
{
CurrentInputManager = this;
}
teInputManager::~teInputManager()
{
CurrentInputManager = NULL;
}
// ------------------------------------------------------------------------ Accelerometer
void teInputManager::SetAccelerometer(const teVector3df & Rotation, u8 Index)
{
CurrentAccelerometer[Index] = Rotation;
}
const teVector3df & teInputManager::GetAccelerometer(u8 Index)
{
return CurrentAccelerometer[Index];
}
// ------------------------------------------------------------------------ Touches
u8 teInputManager::GetTouchesCount()
{
return CurrentCountOfTouches;
}
const teVector2df & teInputManager::GetTouch(u8 Finger, ETouchDataType Type)
{
return CurrentTouches[Finger].GetTouchPosition(Type);
}
teVector2df teInputManager::GetVirtualTouch(const teVector2df & Touch, u1 ThisIsDeltaValue)
{
teVector2df RealTouch = Touch;
#ifdef TE_INPUT_SUPPORT_DEVICE_ORIENTATION
teVector2df InputDeviceNormalSize = video::GetRender()->GetContext()->GetSize(true);
teVector2di DeviceOrientationKoef(1, 1);
switch(core::GetPlatform()->GetDeviceOrientation())
{
case core::DO_DOWN:
DeviceOrientationKoef.SetXY(-1, -1);
break;
case core::DO_LEFT:
DeviceOrientationKoef.SetXY(1, -1);
RealTouch.SetXY(RealTouch.Y, RealTouch.X); // there we invert device coordinate system, same for right orientation
break;
case core::DO_RIGHT:
DeviceOrientationKoef.SetXY(-1, 1);
RealTouch.SetXY(RealTouch.Y, RealTouch.X);
break;
default:
break;
}
if(ThisIsDeltaValue)
InputDeviceNormalSize.SetXY(0, 0);
RealTouch.SetXY((DeviceOrientationKoef.X == 1 ? RealTouch.X : InputDeviceNormalSize.X - RealTouch.X),
(DeviceOrientationKoef.Y == 1 ? RealTouch.Y : InputDeviceNormalSize.Y - RealTouch.Y));
#endif
return RealTouch;
}
teVector2df teInputManager::GetVirtualTouch(u8 Finger, ETouchDataType Type)
{
return GetVirtualTouch(GetTouch(Finger, Type), Type >= TDT_DELTA_FROM_LAST);
}
teTouchIdentifier teInputManager::GetTouchIdentifier(u8 Finger)
{
return CurrentTouches[Finger].TouchIdentifier;
}
u1 teInputManager::GetTouchFinger(teTouchIdentifier Identifier, u8 & Finger)
{
for(u8 j = 0; j < CurrentCountOfTouches; ++j)
{
if(CurrentTouches[j].TouchIdentifier == Identifier)
{
Finger = j;
return true;
}
}
return false;
}
u1 teInputManager::IsValidIdentifier(teTouchIdentifier Identifier)
{
for(u8 j = 0; j < CurrentCountOfTouches; ++j)
if(CurrentTouches[j].TouchIdentifier == Identifier)
return true;
return false;
}
teTouchEvent * teInputManager::LockTouch()
{
return CurrentTouchesUpdateArray;
}
void teInputManager::UnlockTouch(ETouchEventType EventType, u8 CountOfTouches)
{
switch(EventType)
{
case TET_BEGIN:
{
for(u8 i = 0; i < CountOfTouches; ++i)
{
if(CurrentResolveType == TFRT_POINTERS)
{
for(u8 j = 0; j < CurrentCountOfTouches; ++j)
{
if(CurrentTouches[j].TouchIdentifier == CurrentTouchesUpdateArray[i].TouchIdentifier)
{
TE_LOG_ERR("OS try to add finger (touch began event) which was not removed (events touch end and cancelled), try to use other finger resolve type")
break;
}
}
}
CurrentTouches[CurrentCountOfTouches].TouchIdentifier = CurrentTouchesUpdateArray[i].TouchIdentifier;
CurrentTouches[CurrentCountOfTouches].StartPosition = CurrentTouchesUpdateArray[i].Position;
CurrentTouches[CurrentCountOfTouches].CurrentPosition = CurrentTouches[CurrentCountOfTouches].StartPosition;
CurrentTouches[CurrentCountOfTouches].DeltaFromLastPosition.SetXY(0, 0);
CurrentTouches[CurrentCountOfTouches].DeltaFromStartPosition.SetXY(0, 0);
CurrentCountOfTouches++;
}
break;
}
case TET_MOVE:
{
for(u8 i = 0; i < CountOfTouches; ++i)
{
u8 Finger = ResolveFinger(i);
CurrentTouches[Finger].DeltaFromLastPosition = CurrentTouchesUpdateArray[i].Position - CurrentTouches[Finger].CurrentPosition;
CurrentTouches[Finger].DeltaFromStartPosition = CurrentTouchesUpdateArray[i].Position - CurrentTouches[Finger].StartPosition;
CurrentTouches[Finger].CurrentPosition = CurrentTouchesUpdateArray[i].Position;
}
break;
}
case TET_END:
case TET_CANCELLED:
{
for(u8 i = 0; (i < CountOfTouches) && (CurrentCountOfTouches > 0); ++i, --CurrentCountOfTouches)
for(u8 j = ResolveFinger(i); j < CurrentCountOfTouches - 1; ++j)
CurrentTouches[j] = CurrentTouches[j + 1];
break;
}
default:
break;
}
}
void teInputManager::SetFingerResolveType(ETouchFingerResolveType ResolveType)
{
CurrentResolveType = ResolveType;
}
u8 teInputManager::ResolveFinger(u8 Index)
{
if(CurrentResolveType == TFRT_POINTERS)
{
for(u8 i = 0; i < CurrentCountOfTouches; ++i)
if(CurrentTouchesUpdateArray[Index].TouchIdentifier == CurrentTouches[i].TouchIdentifier)
return i;
TE_LOG_ERR("Cant resolve finger, try to use other resolve type")
return 0;
}
else
{
u8 Finger = 0;
f32 MinDist = (CurrentTouches[0].CurrentPosition - CurrentTouchesUpdateArray[Index].Position).GetDistance();
for(u8 i = 1; i < CurrentCountOfTouches; ++i)
{
f32 Dist = (CurrentTouches[i].CurrentPosition - CurrentTouchesUpdateArray[Index].Position).GetDistance();
if(Dist <= MinDist)
{
MinDist = Dist;
Finger = i;
}
}
return Finger;
}
}
void teInputManager::ForceClearTouches()
{
CurrentCountOfTouches = 0;
}
// ------------------------------------------------------------------------ Keyboard
#ifdef TE_INPUT_SUPPORT_KEYBOARD
u1 teInputManager::IsKeyHit(EKeyCode Key)
{
u32 Hit = CurrentKeyData[Key].KeyHits;
if(Hit)
CurrentKeyData[Key].KeyHitsProcessed++;
return Hit ? true : false;
}
u1 teInputManager::IsKeyDown(EKeyCode Key, u1 TrueWhenDownMessageArrive)
{
if(TrueWhenDownMessageArrive)
return CurrentKeyData[Key].KeyDownMessageArrive;
else
return CurrentKeyData[Key].KeyDown;
}
void teInputManager::FlushKeysHits()
{
for(u16 i = 0; i < 256; ++i)
{
CurrentKeyData[i].KeyHits -= teMax(CurrentKeyData[i].KeyHits, CurrentKeyData[i].KeyHitsProcessed);
CurrentKeyData[i].KeyHitsProcessed = 0;
CurrentKeyData[i].KeyDownMessageArrive = false;
}
}
void teInputManager::SetKeyDown(EKeyCode Key, u1 Down)
{
if(Down && (!CurrentKeyData[Key].KeyDown))
CurrentKeyData[Key].KeyHits++;
if(Down)
{
CurrentKeyData[Key].KeyDownMessageArrive = Down;
}
CurrentKeyData[Key].KeyDown = Down;
}
#endif
teInputManager * GetInputManager()
{
return CurrentInputManager;
}
}
}
| [
"[email protected]"
] | |
f41162270fc6606a2d427f2abace6ce3f701a98e | 3fd8481f7d09580b1447801f846a7b6f4d22ef5a | /HelloZip/frameworks/cocos2d-x/cocos/base/ZipUtils.h | 60eac24f5ae223464d5cb2d3f827d6732abfbec0 | [] | no_license | waitingchange/cocos_part | b7242b4acbc84ac690e9a4c396dca54f2d152871 | 7fefce6e7242b8f30fda25071de777c41f993da2 | refs/heads/master | 2020-04-27T12:57:33.144707 | 2019-04-04T01:38:57 | 2019-04-04T01:38:57 | 174,350,661 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,884 | h | /****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2015 Chukong Technologies Inc.
http://www.cocos2d-x.org
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 __SUPPORT_ZIPUTILS_H__
#define __SUPPORT_ZIPUTILS_H__
/// @cond DO_NOT_SHOW
#include <string>
#include "platform/CCPlatformConfig.h"
#include "platform/CCPlatformMacros.h"
#include "platform/CCPlatformDefine.h"
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
#include "platform/android/CCFileUtils-android.h"
#elif(CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT)
// for import ssize_t on win32 platform
#include "platform/CCStdC.h"
#endif
/**
* @addtogroup base
* @{
*/
namespace cocos2d
{
#ifndef _unz64_H
typedef struct unz_file_info_s unz_file_info;
#endif
/** XXX: pragma pack ???
* @struct CCZHeader
*/
struct CCZHeader {
unsigned char sig[4]; /** Signature. Should be 'CCZ!' 4 bytes. */
unsigned short compression_type; /** Should be 0. */
unsigned short version; /** Should be 2 (although version type==1 is also supported). */
unsigned int reserved; /** Reserved for users. */
unsigned int len; /** Size of the uncompressed file. */
};
enum {
CCZ_COMPRESSION_ZLIB, /** zlib format. */
CCZ_COMPRESSION_BZIP2, /** bzip2 format (not supported yet). */
CCZ_COMPRESSION_GZIP, /** gzip format (not supported yet). */
CCZ_COMPRESSION_NONE, /** plain (not supported yet). */
};
class CC_DLL ZipUtils
{
public:
/**
* Inflates either zlib or gzip deflated memory. The inflated memory is expected to be freed by the caller.
*
* It will allocate 256k for the destination buffer. If it is not enough it will multiply the previous buffer size per 2, until there is enough memory.
*
* @return The length of the deflated buffer.
* @since v0.8.1
*/
CC_DEPRECATED_ATTRIBUTE static ssize_t ccInflateMemory(unsigned char *in, ssize_t inLength, unsigned char **out) { return inflateMemory(in, inLength, out); }
static ssize_t inflateMemory(unsigned char *in, ssize_t inLength, unsigned char **out);
/**
* Inflates either zlib or gzip deflated memory. The inflated memory is expected to be freed by the caller.
*
* @param outLenghtHint It is assumed to be the needed room to allocate the inflated buffer.
*
* @return The length of the deflated buffer.
* @since v1.0.0
*/
CC_DEPRECATED_ATTRIBUTE static ssize_t ccInflateMemoryWithHint(unsigned char *in, ssize_t inLength, unsigned char **out, ssize_t outLengthHint) { return inflateMemoryWithHint(in, inLength, out, outLengthHint); }
static ssize_t inflateMemoryWithHint(unsigned char *in, ssize_t inLength, unsigned char **out, ssize_t outLengthHint);
/**
* Inflates a GZip file into memory.
*
* @return The length of the deflated buffer.
* @since v0.99.5
*/
CC_DEPRECATED_ATTRIBUTE static int ccInflateGZipFile(const char *filename, unsigned char **out) { return inflateGZipFile(filename, out); }
static int inflateGZipFile(const char *filename, unsigned char **out);
/**
* Test a file is a GZip format file or not.
*
* @return True is a GZip format file. false is not.
* @since v3.0
*/
CC_DEPRECATED_ATTRIBUTE static bool ccIsGZipFile(const char *filename) { return isGZipFile(filename); }
static bool isGZipFile(const char *filename);
/**
* Test the buffer is GZip format or not.
*
* @return True is GZip format. false is not.
* @since v3.0
*/
CC_DEPRECATED_ATTRIBUTE static bool ccIsGZipBuffer(const unsigned char *buffer, ssize_t len) { return isGZipBuffer(buffer, len); }
static bool isGZipBuffer(const unsigned char *buffer, ssize_t len);
/**
* Inflates a CCZ file into memory.
*
* @return The length of the deflated buffer.
* @since v0.99.5
*/
CC_DEPRECATED_ATTRIBUTE static int ccInflateCCZFile(const char *filename, unsigned char **out) { return inflateCCZFile(filename, out); }
static int inflateCCZFile(const char *filename, unsigned char **out);
/**
* Inflates a buffer with CCZ format into memory.
*
* @return The length of the deflated buffer.
* @since v3.0
*/
CC_DEPRECATED_ATTRIBUTE static int ccInflateCCZBuffer(const unsigned char *buffer, ssize_t len, unsigned char **out) { return inflateCCZBuffer(buffer, len, out); }
static int inflateCCZBuffer(const unsigned char *buffer, ssize_t len, unsigned char **out);
/**
* Test a file is a CCZ format file or not.
*
* @return True is a CCZ format file. false is not.
* @since v3.0
*/
CC_DEPRECATED_ATTRIBUTE static bool ccIsCCZFile(const char *filename) { return isCCZFile(filename); }
static bool isCCZFile(const char *filename);
/**
* Test the buffer is CCZ format or not.
*
* @return True is CCZ format. false is not.
* @since v3.0
*/
CC_DEPRECATED_ATTRIBUTE static bool ccIsCCZBuffer(const unsigned char *buffer, ssize_t len) { return isCCZBuffer(buffer, len); }
static bool isCCZBuffer(const unsigned char *buffer, ssize_t len);
/**
* Sets the pvr.ccz encryption key parts separately for added security.
*
* Example: If the key used to encrypt the pvr.ccz file is
* 0xaaaaaaaabbbbbbbbccccccccdddddddd you will call this function 4
* different times, preferably from 4 different source files, as follows
*
* ZipUtils::setPvrEncryptionKeyPart(0, 0xaaaaaaaa);
* ZipUtils::setPvrEncryptionKeyPart(1, 0xbbbbbbbb);
* ZipUtils::setPvrEncryptionKeyPart(2, 0xcccccccc);
* ZipUtils::setPvrEncryptionKeyPart(3, 0xdddddddd);
*
* Splitting the key into 4 parts and calling the function from 4 different source
* files increases the difficulty to reverse engineer the encryption key.
* Be aware that encryption is *never* 100% secure and the key code
* can be cracked by knowledgable persons.
*
* IMPORTANT: Be sure to call setPvrEncryptionKey or
* setPvrEncryptionKeyPart with all of the key parts *before* loading
* the sprite sheet or decryption will fail and the sprite sheet
* will fail to load.
*
* @param index Part of the key [0..3].
* @param value Value of the key part.
*/
CC_DEPRECATED_ATTRIBUTE static void ccSetPvrEncryptionKeyPart(int index, unsigned int value) { setPvrEncryptionKeyPart(index, value); }
static void setPvrEncryptionKeyPart(int index, unsigned int value);
/**
* Sets the pvr.ccz encryption key.
*
* Example: If the key used to encrypt the pvr.ccz file is
* 0xaaaaaaaabbbbbbbbccccccccdddddddd you will call this function with
* the key split into 4 parts as follows
*
* ZipUtils::setPvrEncryptionKey(0xaaaaaaaa, 0xbbbbbbbb, 0xcccccccc, 0xdddddddd);
*
* Note that using this function makes it easier to reverse engineer and discover
* the complete key because the key parts are present in one function call.
*
* IMPORTANT: Be sure to call setPvrEncryptionKey or setPvrEncryptionKeyPart
* with all of the key parts *before* loading the spritesheet or decryption
* will fail and the sprite sheet will fail to load.
*
* @param keyPart1 The key value part 1.
* @param keyPart2 The key value part 2.
* @param keyPart3 The key value part 3.
* @param keyPart4 The key value part 4.
*/
CC_DEPRECATED_ATTRIBUTE static void ccSetPvrEncryptionKey(unsigned int keyPart1, unsigned int keyPart2, unsigned int keyPart3, unsigned int keyPart4) { setPvrEncryptionKey(keyPart1, keyPart2, keyPart3, keyPart4); }
static void setPvrEncryptionKey(unsigned int keyPart1, unsigned int keyPart2, unsigned int keyPart3, unsigned int keyPart4);
private:
static int inflateMemoryWithHint(unsigned char *in, ssize_t inLength, unsigned char **out, ssize_t *outLength, ssize_t outLenghtHint);
static inline void decodeEncodedPvr (unsigned int *data, ssize_t len);
static inline unsigned int checksumPvr(const unsigned int *data, ssize_t len);
static unsigned int s_uEncryptedPvrKeyParts[4];
static unsigned int s_uEncryptionKey[1024];
static bool s_bEncryptionKeyIsValid;
};
// forward declaration
class ZipFilePrivate;
struct unz_file_info_s;
/**
* Zip file - reader helper class.
*
* It will cache the file list of a particular zip file with positions inside an archive,
* so it would be much faster to read some particular files or to check their existence.
*
* @since v2.0.5
*/
class CC_DLL ZipFile
{
public:
/**
* Constructor, open zip file and store file list.
*
* @param zipFile Zip file name
* @param filter The first part of file names, which should be accessible.
* For example, "assets/". Other files will be missed.
*
* @since v2.0.5
*/
ZipFile(const std::string &zipFile, const std::string &filter = std::string());
virtual ~ZipFile();
/**
* Regenerate accessible file list based on a new filter string.
*
* @param filter New filter string (first part of files names)
* @return true whenever zip file is open successfully and it is possible to locate
* at least the first file, false otherwise
*
* @since v2.0.5
*/
bool setFilter(const std::string &filter);
/**
* Check does a file exists or not in zip file
*
* @param fileName File to be checked on existence
* @return true whenever file exists, false otherwise
*
* @since v2.0.5
*/
bool fileExists(const std::string &fileName) const;
/**
* Get resource file data from a zip file.
* @param fileName File name
* @param[out] pSize If the file read operation succeeds, it will be the data size, otherwise 0.
* @return Upon success, a pointer to the data is returned, otherwise nullptr.
* @warning Recall: you are responsible for calling free() on any Non-nullptr pointer returned.
*
* @since v2.0.5
*/
unsigned char *getFileData(const std::string &fileName, ssize_t *size,const char *password = NULL);
std::string getFirstFilename();
std::string getNextFilename();
static ZipFile *createWithBuffer(const void* buffer, unsigned long size);
private:
/* Only used internal for createWithBuffer() */
ZipFile();
bool initWithBuffer(const void *buffer, unsigned long size);
int getCurrentFileInfo(std::string *filename, unz_file_info *info);
/** Internal data like zip file pointer / file list array and so on */
ZipFilePrivate *_data;
};
} // end of namespace cocos2d
// end group
/// @}
/// @endcond
#endif // __SUPPORT_ZIPUTILS_H__
| [
"[email protected]"
] | |
deab49b55ecedd76221a1574ac69d57e0e31140d | 78d9b12b3c07f531dd2676afc8aafeed884d5291 | /TireTest_20200624/TireTest_20200624/main.cpp | 9dd5220e1a4714a07b6008add8569db740663e99 | [] | no_license | wwkkww1983/Projects | 233c780b43d29f422161fb56fabbb36168debc1b | 5eed56780030adeaabf7eb9868f192073164ba59 | refs/heads/master | 2022-11-23T11:46:43.802321 | 2020-07-06T03:33:12 | 2020-07-06T03:33:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 160 | cpp | #include "Dispose.h"
#include "Feature.h"
#include "Joint.h"
int main(int argc, const char ** argv) {
cv::waitKey(0);
cv::destroyAllWindows();
return 0;
} | [
"[email protected]"
] | |
78862e20d870704f26cdfbed6042bf61a016420e | d48a833da418be56e9878379705332881e2abd02 | /online_contest/codeforces.com/Codeforces_Codeforces_Global_Round_8/A._C+=/main.cpp | 337026ae0373e7244fdaf773b3a504b12612f668 | [] | no_license | convict-git/sport_coding | 21a5fc9e0348e44eafaefe822cb749dfa4f7e53b | ae288a9930fac74ceb63dc8cc7250c854e364056 | refs/heads/master | 2021-07-05T21:35:14.348029 | 2021-01-01T17:53:34 | 2021-01-01T17:53:34 | 215,317,175 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 821 | cpp | #include <bits/stdc++.h>
using namespace std;
#define IOS ios_base::sync_with_stdio(false); cin.tie (nullptr)
#define PREC cout.precision (10); cout << fixed
#ifdef CONVICTION
#include "/home/convict/Dropbox/myfiles/sport_coding/cplib/snippets/debug.h"
#else
#define debug(x...)
#endif
//Don’t practice until you get it right. Practice until you can’t get it wrong
void preproc() {
}
void solve() {
int a, b, n;
cin >> a >> b >> n;
if (a > b) swap(a, b);
int op=0;
while (a <= n && b <= n) {
int x=a+b, y=max(a, b);
a = x, b = y;
op++;
}
cout << op << '\n';
return;
}
signed main() {
IOS; PREC;
preproc();
int tc = 1;
cin >> tc;
for (int Tt = 1; Tt <= tc; ++Tt) {
// cout << "Case #" << Tt << ": ";
solve();
}
return EXIT_SUCCESS;
}
| [
"[email protected]"
] | |
4c2d1c55f4523d55b988e2b4103d53a570906cb9 | 3c2c117055edc96c495eea811764e984dc92eb99 | /PongSFML/Ball.cpp | b781cceb909e22cd0e0f6f919305976b77170bdc | [] | no_license | AdamHoward99/Pong-SFML | 13141bee00ee578d9a736343132435f572ca636e | 8050a0bf42a88b7ec614259f863a1ea2217374cb | refs/heads/main | 2023-06-11T18:59:28.466659 | 2021-07-04T14:49:01 | 2021-07-04T14:49:01 | 382,872,648 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 450 | cpp | #include "assert.h"
#include "Ball.h"
void Ball::moveBall(sf::Sprite& Ball)
{
Ball.move(ballSpeed.x, ballSpeed.y);
}
sf::Sprite Ball::createBall()
{
if (!pongBall.loadFromFile("pongBall.png")) assert(false);
sf::Sprite Ball(pongBall);
Ball.setScale(1.5, 1.5);
pongBall.setSmooth(true);
return Ball;
}
sf::Sprite Ball::getBall()
{
return createBall();
}
void Ball::SpeedofBall()
{
ballSpeed.x = 6.1f; ballSpeed.y = 6.f;
}
Ball::~Ball()
{} | [
"[email protected]"
] | |
6d4ed6dc57b065af79b8ab70ffcce435a24a754c | 957a561120a5198181f60f5b4b377c7e1d78c0e0 | /rpcs3/Emu/GS/Null/NullGSRender.h | 9994e915718898b5b38ba62acc51336340dc2439 | [] | no_license | cqamyaa/rpcs3 | cbb7ad0a6c78a653872330c6768ca0f329e098b8 | 66659972e106488150559807b4ca462bcbaf1692 | refs/heads/master | 2021-01-10T12:41:51.965129 | 2013-06-30T08:51:54 | 2013-06-30T08:51:54 | 55,384,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,859 | h | #pragma once
#include "Emu/GS/GSRender.h"
struct NullGSFrame : public GSFrame
{
NullGSFrame() : GSFrame(NULL, "GSFrame[Null]")
{
Connect(wxEVT_LEFT_DCLICK, wxMouseEventHandler(GSFrame::OnLeftDclick));
}
void Draw() { Draw(wxClientDC(this)); }
private:
virtual void OnPaint(wxPaintEvent& event) { Draw(wxPaintDC(this)); }
virtual void OnSize(wxSizeEvent& event)
{
GSFrame::OnSize(event);
Draw();
}
void Draw(wxDC& dc)
{
dc.DrawText("Null GS output", 0, 0);
}
};
struct NullRSXThread : public wxThread
{
wxWindow* m_parent;
Stack<u32> call_stack;
NullRSXThread(wxWindow* parent);
virtual void OnExit();
void Start();
ExitCode Entry();
};
class NullGSRender
: public wxWindow
, public GSRender
{
private:
NullRSXThread* m_rsx_thread;
public:
NullGSFrame* m_frame;
NullGSRender()
: m_frame(nullptr)
, m_rsx_thread(nullptr)
{
m_draw = false;
m_frame = new NullGSFrame();
}
~NullGSRender()
{
Close();
m_frame->Close();
}
private:
virtual void Init(const u32 ioAddress, const u32 ioSize, const u32 ctrlAddress, const u32 localAddress)
{
if(m_frame->IsShown()) return;
m_frame->SetSize(740, 480);
m_frame->Show();
m_ioAddress = ioAddress;
m_ctrlAddress = ctrlAddress;
m_ioSize = ioSize;
m_localAddress = localAddress;
m_ctrl = (CellGcmControl*)Memory.GetMemFromAddr(m_ctrlAddress);
(m_rsx_thread = new NullRSXThread(this))->Start();
}
public:
void DoCmd(const u32 fcmd, const u32 cmd, mem32_t& args, const u32 count)
{
switch(cmd)
{
case NV406E_SET_REFERENCE:
m_ctrl->ref = re32(args[0]);
break;
}
}
virtual void Draw()
{
//if(m_frame && !m_frame->IsBeingDeleted()) m_frame->Draw();
m_draw = true;
}
virtual void Close()
{
if(m_rsx_thread) m_rsx_thread->Delete();
if(m_frame->IsShown()) m_frame->Hide();
m_ctrl = NULL;
}
};
NullRSXThread::NullRSXThread(wxWindow* parent)
: wxThread(wxTHREAD_DETACHED)
, m_parent(parent)
{
}
void NullRSXThread::OnExit()
{
call_stack.Clear();
}
void NullRSXThread::Start()
{
Create();
Run();
}
wxThread::ExitCode NullRSXThread::Entry()
{
ConLog.Write("Null RSX thread entry");
NullGSRender& p = *(NullGSRender*)m_parent;
while(!TestDestroy() && p.m_frame && !p.m_frame->IsBeingDeleted())
{
wxCriticalSectionLocker lock(p.m_cs_main);
if(p.m_ctrl->get == p.m_ctrl->put || !Emu.IsRunned())
{
SemaphorePostAndWait(p.m_sem_flush);
if(p.m_draw)
{
p.m_draw = false;
p.m_flip_status = 0;
if(SemaphorePostAndWait(p.m_sem_flip)) continue;
}
Sleep(1);
continue;
}
const u32 get = re(p.m_ctrl->get);
const u32 cmd = Memory.Read32(p.m_ioAddress + get);
const u32 count = (cmd >> 18) & 0x7ff;
if(cmd & CELL_GCM_METHOD_FLAG_JUMP)
{
p.m_ctrl->get = re32(cmd & ~(CELL_GCM_METHOD_FLAG_JUMP | CELL_GCM_METHOD_FLAG_NON_INCREMENT));
ConLog.Warning("rsx jump!");
continue;
}
if(cmd & CELL_GCM_METHOD_FLAG_CALL)
{
call_stack.Push(get + 4);
p.m_ctrl->get = re32(cmd & ~CELL_GCM_METHOD_FLAG_CALL);
ConLog.Warning("rsx call!");
continue;
}
if(cmd & CELL_GCM_METHOD_FLAG_RETURN)
{
p.m_ctrl->get = re32(call_stack.Pop());
ConLog.Warning("rsx return!");
continue;
}
if(cmd & CELL_GCM_METHOD_FLAG_NON_INCREMENT)
{
//ConLog.Warning("non increment cmd! 0x%x", cmd);
}
if(cmd == 0)
{
ConLog.Warning("null cmd: addr=0x%x, put=0x%x, get=0x%x", p.m_ioAddress + get, re(p.m_ctrl->put), get);
Emu.Pause();
continue;
}
p.DoCmd(cmd, cmd & 0x3ffff, mem32_t(p.m_ioAddress + get + 4), count);
re(p.m_ctrl->get, get + (count + 1) * 4);
}
ConLog.Write("Null RSX thread exit...");
call_stack.Clear();
return (ExitCode)0;
} | [
"[email protected]"
] | |
c390e9cefea98a960d6878ee8b9f2cdcafffb7c0 | a4335f790d51c3e2ce777cdb2525595d184d0ed0 | /sweet/lua/LuaConverter.hpp | a29761fa39f6194a9c184c7af4d229d5d26bc658 | [] | no_license | cwbaker/sweet_lua | e1fc00aa26cfc472a5c9bc621a1cf94c85f1c6b4 | 871bf29603dd40e7df08287e99e8909deab1017e | refs/heads/master | 2021-01-23T13:16:49.032539 | 2012-12-09T07:05:18 | 2012-12-09T07:05:18 | 3,673,918 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,573 | hpp | //
// LuaConverter.hpp
// Copyright (c) 2007 - 2011 Charles Baker. All rights reserved.
//
#ifndef SWEET_LUA_LUACONVERTER_HPP_INCLUDED
#define SWEET_LUA_LUACONVERTER_HPP_INCLUDED
#include "declspec.hpp"
#include "LuaValueWrapper.hpp"
#include "lua_/lua.h"
#include <sweet/traits/traits.hpp>
#include <string>
namespace sweet
{
namespace lua
{
class LuaValue;
/**
// @internal
//
// A class template that (with specializations) provides conversion of values
// between C++ and Lua.
//
// When functions are pushed onto the Lua stack the LuaConverter will push a
// lua_CFunction thunker that decodes the arguments and function from Lua
// and dispatches the call to the C++ function. The C++ function or member
// function pointer is stored as the first up value of the lua_CFunction.
// The lua_CFunction is generated from the class template function
// LuaThunker<Function>::function(). See LuaThunker for more details.
*/
template <class Type>
struct LuaConverter
{
static void create( lua_State* lua_state, typename traits::traits<Type>::parameter_type value );
static void destroy( lua_State* lua_state, typename traits::traits<Type>::parameter_type value );
static void push( lua_State* lua_state, typename traits::traits<Type>::parameter_type value );
static Type to( lua_State* lua_state, int position );
};
template <class Type>
struct LuaConverter<LuaValueWrapper<Type> >
{
static void push( lua_State* lua_state, const LuaValueWrapper<Type>& value );
};
template <>
struct SWEET_LUA_DECLSPEC LuaConverter<bool>
{
static void push( lua_State* lua_state, bool value );
static bool to( lua_State* lua_state, int position );
};
template <>
struct SWEET_LUA_DECLSPEC LuaConverter<int>
{
static void push( lua_State* lua_state, int value );
static int to( lua_State* lua_state, int position );
};
template <>
struct SWEET_LUA_DECLSPEC LuaConverter<float>
{
static void push( lua_State* lua_state, float value );
static float to( lua_State* lua_state, int position );
};
template <>
struct SWEET_LUA_DECLSPEC LuaConverter<std::string>
{
static void push( lua_State* lua_state, const std::string& value );
static std::string to( lua_State* lua_state, int position );
};
template <>
struct SWEET_LUA_DECLSPEC LuaConverter<const std::string&>
{
static void push( lua_State* lua_state, const std::string& value );
};
template <>
struct SWEET_LUA_DECLSPEC LuaConverter<const LuaValue&>
{
static void push( lua_State* lua_state, const LuaValue& value );
};
template<class R>
struct LuaConverter<R (*)()>
{
typedef R (*Function)();
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class A0>
struct LuaConverter<R (*)(A0)>
{
typedef R (*Function)(A0);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class A0, class A1>
struct LuaConverter<R (*)(A0, A1)>
{
typedef R (*Function)(A0, A1);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class A0, class A1, class A2>
struct LuaConverter<R (*)(A0, A1, A2)>
{
typedef R (*Function)(A0, A1, A2);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class A0, class A1, class A2, class A3>
struct LuaConverter<R (*)(A0, A1, A2, A3)>
{
typedef R (*Function)(A0, A1, A2, A3);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class A0, class A1, class A2, class A3, class A4>
struct LuaConverter<R (*)(A0, A1, A2, A3, A4)>
{
typedef R (*Function)(A0, A1, A2, A3, A4);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class A0, class A1, class A2, class A3, class A4, class A5>
struct LuaConverter<R (*)(A0, A1, A2, A3, A4, A5)>
{
typedef R (*Function)(A0, A1, A2, A3, A4, A5);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T>
struct LuaConverter<R (T::*)()>
{
typedef R (T::* Function)();
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T>
struct LuaConverter<R (T::*)() const>
{
typedef R (T::* Function)() const;
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0>
struct LuaConverter<R (T::*)(A0)>
{
typedef R (T::* Function)(A0);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0>
struct LuaConverter<R (T::*)(A0) const>
{
typedef R (T::* Function)(A0) const;
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1>
struct LuaConverter<R (T::*)(A0, A1)>
{
typedef R (T::* Function)(A0, A1);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1>
struct LuaConverter<R (T::*)(A0, A1) const>
{
typedef R (T::* Function)(A0, A1) const;
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2>
struct LuaConverter<R (T::*)(A0, A1, A2)>
{
typedef R (T::* Function)(A0, A1, A2);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2>
struct LuaConverter<R (T::*)(A0, A1, A2) const>
{
typedef R (T::* Function)(A0, A1, A2) const;
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2, class A3>
struct LuaConverter<R (T::*)(A0, A1, A2, A3)>
{
typedef R (T::* Function)(A0, A1, A2, A3);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2, class A3>
struct LuaConverter<R (T::*)(A0, A1, A2, A3) const>
{
typedef R (T::* Function)(A0, A1, A2, A3) const;
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2, class A3, class A4>
struct LuaConverter<R (T::*)(A0, A1, A2, A3, A4)>
{
typedef R (T::* Function)(A0, A1, A2, A3, A4);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2, class A3, class A4>
struct LuaConverter<R (T::*)(A0, A1, A2, A3, A4) const>
{
typedef R (T::* Function)(A0, A1, A2, A3, A4) const;
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2, class A3, class A4, class A5>
struct LuaConverter<R (T::*)(A0, A1, A2, A3, A4, A5)>
{
typedef R (T::* Function)(A0, A1, A2, A3, A4, A5);
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
template<class R, class T, class A0, class A1, class A2, class A3, class A4, class A5>
struct LuaConverter<R (T::*)(A0, A1, A2, A3, A4, A5) const>
{
typedef R (T::* Function)(A0, A1, A2, A3, A4, A5) const;
static void push( lua_State* lua_state, Function function );
static Function to( lua_State* lua_state, int position );
};
}
}
#endif
| [
"[email protected]"
] | |
de925796ea71b5930dd4cf2b808314de69b25478 | 262a5fdc0bef6ef63c26b5397e41515fe40af069 | /resources/scriptplayer.h | 77d8bb1ff7662364d2fd3854b9549f9589315772 | [] | no_license | sysfce2/SFML_Ludum-Dare-32 | bea6fffa7c82a3534e4c9540151adfe843636164 | 5bf8d0619e027f80489c750303e0a3b29e75c690 | refs/heads/master | 2023-03-15T20:34:47.454879 | 2015-04-20T01:21:16 | 2015-04-20T01:21:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 580 | h | #ifndef SCRIPTPLAYER_H
#define SCRIPTPLAYER_H
#include <SFML/System.hpp>
#include <map>
#include <string>
#include <lua.hpp>
#include <resources/resourceidentifiers.h>
class ScriptPlayer : private sf::NonCopyable
{
public:
ScriptPlayer();
~ScriptPlayer();
bool play(Scripts::ID script);
void registerFile(Scripts::ID script, const std::string& filename);
void registerScript(Scripts::ID script, const std::string& content);
private:
lua_State* mLuaState;
std::map<Scripts::ID, std::string> mScripts;
};
#endif // SCRIPTPLAYER_H
| [
"[email protected]"
] | |
b56506b858cfce8023cae9c8311d5ef8fd9420dc | 1bd56891d75b9e386453bf54a41caa9f08fe80b7 | /coci_abc/471792_AC_0.05SEC.cpp | ab836608d8f62adbf5d0018512549d324825bdb1 | [] | no_license | ItzKaserine/Dovelet | 9f7dda5435bcb5704fdedfbfce0a7100659ba240 | ba24d6dfe8d69d00d0e22e5e644f5609016c4695 | refs/heads/master | 2023-05-26T13:08:41.772253 | 2017-10-09T07:04:13 | 2017-10-09T07:04:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 252 | cpp | #include<stdio.h>
#include<algorithm>
using namespace std;
int arr[10];
char ors[10];
int main() {
scanf("%d%d%d",&arr[1],&arr[2],&arr[3]);
scanf("\n%s",&ors[1]);
sort(arr+1,arr+4);
int i;
for(i=1;i<=3;i++) printf("%d ",arr[ors[i]-'A'+1]);
} | [
"[email protected]"
] | |
d765eeb323e00a1df73a54273f49f43011024cec | 8bf9c6cc600a57eab970a57609f4b068a81cf898 | /src/Observer.h | 8821f97a85c811fdd9c3a6b2027ee9f3c3f2958d | [] | no_license | denesik/gsb | e562e666626bd7724849e328bbcf67ca6e173b1e | a888de94bc54b27736581c7de4e9c6da04356cd7 | refs/heads/master | 2021-01-24T19:25:28.643171 | 2017-06-08T21:05:44 | 2017-06-08T21:05:44 | 83,344,278 | 2 | 1 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,327 | h | #pragma once
#ifndef Observer_h__
#define Observer_h__
#include <vector>
#include <functional>
#include <boost/optional.hpp>
#include <algorithm>
namespace ptl // pattern template library
{
#ifdef _DEBUG
#define USE_LOCK_CHECKER
#endif
template<class T>
class observer
{
public:
using value_type = T;
bool attach(T &data)
{
#ifdef USE_LOCK_CHECKER
lock lock_access(m_data_access);
#endif
auto index = find(data);
if (index)
{
return false;
}
m_data.push_back(data);
return true;
}
bool detach(T &data)
{
#ifdef USE_LOCK_CHECKER
lock lock_access(m_data_access);
#endif
auto index = find(data);
if (index)
{
std::swap(m_data[*index], m_data.back());
m_data.pop_back();
return true;
}
return false;
}
// TODO: разрешить подписку/отписку во время выполнения функции.
template<class ...Args, class FPTR = void (T::*)(Args...)>
void notify(FPTR *fptr, Args &...args)
{
#ifdef USE_LOCK_CHECKER
lock lock_access(m_data_access);
#endif
for (auto i : m_data)
{
(i.get().*fptr)(args...);
}
}
template <typename T, class ...Args>
void notify(void(T::*mf)(Args...), Args &&... args)
{
for (auto i : m_data)
{
(i.get().*mf)(args...);
}
}
private:
std::vector<std::reference_wrapper<T>> m_data;
#ifdef USE_LOCK_CHECKER
bool m_data_access = false;
#endif
private:
boost::optional<size_t> find(T &data)
{
auto data_ptr = &data;
auto it = std::find_if(m_data.begin(), m_data.end(), [data_ptr](const decltype(m_data)::value_type &val)
{
return &static_cast<T &>(val) == data_ptr;
});
if (it != m_data.end())
return static_cast<size_t>(std::distance(m_data.begin(), it));
return{};
}
#ifdef USE_LOCK_CHECKER
struct lock
{
lock(bool &val)
: m_val(val)
{
if (m_val) assert("recursive lock");
if (!m_val) m_val = true;
}
~lock()
{
m_val = false;
}
bool &m_val;
};
#endif
};
#ifdef _DEBUG
#ifdef USE_LOCK_CHECKER
#undef USE_LOCK_CHECKER
#endif
#endif
}
#endif // Observer_h__
| [
"[email protected]"
] | |
52f8f34b81d89a08e0d432fefae092f5059c215e | a44a67ae800e785b9cd2d677668836d8564df0c5 | /android-jni/jni/boost/fusion/container/list/detail/preprocessed/list_to_cons40.hpp | a435c02109fe71fc557461a40eeb325ab618310f | [
"MIT",
"BSL-1.0"
] | permissive | thanghoang/S3ORAM | a6809dfb98fdbf0089e6b1c01eb4a8476852668e | ae524107508c03ec45a37b388f069cd8c40242a9 | refs/heads/master | 2022-11-02T08:03:28.101304 | 2022-10-24T20:55:08 | 2022-10-24T20:55:08 | 101,727,862 | 20 | 9 | MIT | 2022-10-24T20:53:47 | 2017-08-29T06:38:10 | C++ | UTF-8 | C++ | false | false | 47,258 | hpp | /*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
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)
This is an auto-generated file. Do not edit!
==============================================================================*/
namespace boost { namespace fusion { namespace detail
{
template <typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 , typename T32 , typename T33 , typename T34 , typename T35 , typename T36 , typename T37 , typename T38 , typename T39>
struct list_to_cons
{
typedef T0 head_type;
typedef list_to_cons<
T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15 , T16 , T17 , T18 , T19 , T20 , T21 , T22 , T23 , T24 , T25 , T26 , T27 , T28 , T29 , T30 , T31 , T32 , T33 , T34 , T35 , T36 , T37 , T38 , T39, void_>
tail_list_to_cons;
typedef typename tail_list_to_cons::type tail_type;
typedef cons<head_type, tail_type> type;
static type
call(typename detail::call_param<T0 >::type _0)
{
return type(_0
);
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1)
{
return type(_0
, tail_list_to_cons::call(_1));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2)
{
return type(_0
, tail_list_to_cons::call(_1 , _2));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32 , typename detail::call_param<T33 >::type _33)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32 , _33));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32 , typename detail::call_param<T33 >::type _33 , typename detail::call_param<T34 >::type _34)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32 , _33 , _34));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32 , typename detail::call_param<T33 >::type _33 , typename detail::call_param<T34 >::type _34 , typename detail::call_param<T35 >::type _35)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32 , _33 , _34 , _35));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32 , typename detail::call_param<T33 >::type _33 , typename detail::call_param<T34 >::type _34 , typename detail::call_param<T35 >::type _35 , typename detail::call_param<T36 >::type _36)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32 , _33 , _34 , _35 , _36));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32 , typename detail::call_param<T33 >::type _33 , typename detail::call_param<T34 >::type _34 , typename detail::call_param<T35 >::type _35 , typename detail::call_param<T36 >::type _36 , typename detail::call_param<T37 >::type _37)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32 , _33 , _34 , _35 , _36 , _37));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32 , typename detail::call_param<T33 >::type _33 , typename detail::call_param<T34 >::type _34 , typename detail::call_param<T35 >::type _35 , typename detail::call_param<T36 >::type _36 , typename detail::call_param<T37 >::type _37 , typename detail::call_param<T38 >::type _38)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32 , _33 , _34 , _35 , _36 , _37 , _38));
}
static type
call(typename detail::call_param<T0 >::type _0 , typename detail::call_param<T1 >::type _1 , typename detail::call_param<T2 >::type _2 , typename detail::call_param<T3 >::type _3 , typename detail::call_param<T4 >::type _4 , typename detail::call_param<T5 >::type _5 , typename detail::call_param<T6 >::type _6 , typename detail::call_param<T7 >::type _7 , typename detail::call_param<T8 >::type _8 , typename detail::call_param<T9 >::type _9 , typename detail::call_param<T10 >::type _10 , typename detail::call_param<T11 >::type _11 , typename detail::call_param<T12 >::type _12 , typename detail::call_param<T13 >::type _13 , typename detail::call_param<T14 >::type _14 , typename detail::call_param<T15 >::type _15 , typename detail::call_param<T16 >::type _16 , typename detail::call_param<T17 >::type _17 , typename detail::call_param<T18 >::type _18 , typename detail::call_param<T19 >::type _19 , typename detail::call_param<T20 >::type _20 , typename detail::call_param<T21 >::type _21 , typename detail::call_param<T22 >::type _22 , typename detail::call_param<T23 >::type _23 , typename detail::call_param<T24 >::type _24 , typename detail::call_param<T25 >::type _25 , typename detail::call_param<T26 >::type _26 , typename detail::call_param<T27 >::type _27 , typename detail::call_param<T28 >::type _28 , typename detail::call_param<T29 >::type _29 , typename detail::call_param<T30 >::type _30 , typename detail::call_param<T31 >::type _31 , typename detail::call_param<T32 >::type _32 , typename detail::call_param<T33 >::type _33 , typename detail::call_param<T34 >::type _34 , typename detail::call_param<T35 >::type _35 , typename detail::call_param<T36 >::type _36 , typename detail::call_param<T37 >::type _37 , typename detail::call_param<T38 >::type _38 , typename detail::call_param<T39 >::type _39)
{
return type(_0
, tail_list_to_cons::call(_1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9 , _10 , _11 , _12 , _13 , _14 , _15 , _16 , _17 , _18 , _19 , _20 , _21 , _22 , _23 , _24 , _25 , _26 , _27 , _28 , _29 , _30 , _31 , _32 , _33 , _34 , _35 , _36 , _37 , _38 , _39));
}
};
template <>
struct list_to_cons<void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_>
{
typedef nil type;
};
}}}
| [
"[email protected]"
] | |
bca95032b02b7210a8d59bd326a5c89a5e011fb9 | 33aedfdab614295e7ee9a92962f0ba9befb0baa5 | /Game/project/src/allomantic_power.cpp | d93e314d87e0242d9dae537680f1192efcd23b56 | [] | no_license | Tsaanstu/new_project_2 | 892102a0f16ccc699f9e952a990decf4e417f126 | 74946df975a30c940387823496ccb9e69a495e16 | refs/heads/master | 2020-04-17T23:12:27.883223 | 2019-01-22T16:53:19 | 2019-01-22T16:53:19 | 150,275,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,504 | cpp | #include "allomantic_power.hpp"
Allomantic_power::Allomantic_power(short int force, short int distant_force,
double accuracy_of_shooting, short int distance_of_walk) {
this->force_ = force;
this->distant_force_ = distant_force;
this->accuracy_of_shooting_ = accuracy_of_shooting;
this->distance_of_walk_ = distance_of_walk;
}
Allomantic_power &Allomantic_power::operator=(const Allomantic_power &ap2) {
this->force_ = ap2.get_force();
this->distant_force_ = ap2.get_distant_force();
this->accuracy_of_shooting_ = ap2.get_accuracy_of_shooting();
this->distance_of_walk_ = ap2.get_distance_of_walk();
return *this;
}
// get
short int Allomantic_power::get_force() const {
return force_;
}
short int Allomantic_power::get_distant_force() const {
return distant_force_;
}
double Allomantic_power::get_accuracy_of_shooting() const {
return accuracy_of_shooting_;
}
short int Allomantic_power::get_distance_of_walk() const {
return distance_of_walk_;
}
// set
void Allomantic_power::set_force(short int force) {
this->force_ = force;
}
void Allomantic_power::set_distant_force(short int distant_force) {
this->distant_force_ = distant_force;
}
void Allomantic_power::set_accuracy_of_shooting(double accuracy_of_shooting) {
this->accuracy_of_shooting_ = accuracy_of_shooting;
}
void Allomantic_power::set_distance_of_walk(short int distance_of_walk) {
this->distance_of_walk_ = distance_of_walk;
}
| [
"[email protected]"
] | |
aca70bc4a829ddbc776d5079b51bd242e64d3c9a | 3fd7a661843b1f857324743d9e07aa61c2c89047 | /rbf/rbftest.cc | 4519fdf377631722f94af86f3ca4fe7725c1e1c5 | [] | no_license | songsense/Simple-Database-Management-System | a5b237dcc40f9d130c3f9e06e9d2e496e593e850 | 433ef6afed740631593a4cb79c47d94913f7f450 | refs/heads/master | 2021-01-13T14:28:17.088001 | 2014-03-07T07:41:38 | 2014-03-07T07:41:38 | 16,117,975 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 30,629 | cc | #include <iostream>
#include <fstream>
#include <string>
#include <cassert>
#include <sys/stat.h>
#include <stdlib.h>
#include <string.h>
#include <stdexcept>
#include <stdio.h>
#include "pfm.h"
#include "rbfm.h"
using namespace std;
const int success = 0;
unsigned total = 0;
// Check if a file exists
bool FileExists(string fileName)
{
struct stat stFileInfo;
if(stat(fileName.c_str(), &stFileInfo) == 0) return true;
else return false;
}
// Function to prepare the data in the correct form to be inserted/read
void prepareRecord(const int nameLength, const string &name, const int age, const float height, const int salary, void *buffer, int *recordSize)
{
int offset = 0;
memcpy((char *)buffer + offset, &nameLength, sizeof(int));
offset += sizeof(int);
memcpy((char *)buffer + offset, name.c_str(), nameLength);
offset += nameLength;
memcpy((char *)buffer + offset, &age, sizeof(int));
offset += sizeof(int);
memcpy((char *)buffer + offset, &height, sizeof(float));
offset += sizeof(float);
memcpy((char *)buffer + offset, &salary, sizeof(int));
offset += sizeof(int);
*recordSize = offset;
}
void prepareLargeRecord(const int index, void *buffer, int *size)
{
int offset = 0;
// compute the count
int count = index % 50 + 1;
// compute the letter
char text = index % 26 + 97;
for(int i = 0; i < 10; i++)
{
memcpy((char *)buffer + offset, &count, sizeof(int));
offset += sizeof(int);
for(int j = 0; j < count; j++)
{
memcpy((char *)buffer + offset, &text, 1);
offset += 1;
}
// compute the integer
memcpy((char *)buffer + offset, &index, sizeof(int));
offset += sizeof(int);
// compute the floating number
float real = (float)(index + 1);
memcpy((char *)buffer + offset, &real, sizeof(float));
offset += sizeof(float);
}
*size = offset;
}
void createRecordDescriptor(vector<Attribute> &recordDescriptor) {
Attribute attr;
attr.name = "EmpName";
attr.type = TypeVarChar;
attr.length = (AttrLength)30;
recordDescriptor.push_back(attr);
attr.name = "Age";
attr.type = TypeInt;
attr.length = (AttrLength)4;
recordDescriptor.push_back(attr);
attr.name = "Height";
attr.type = TypeReal;
attr.length = (AttrLength)4;
recordDescriptor.push_back(attr);
attr.name = "Salary";
attr.type = TypeInt;
attr.length = (AttrLength)4;
recordDescriptor.push_back(attr);
}
void createLargeRecordDescriptor(vector<Attribute> &recordDescriptor)
{
int index = 0;
char *suffix = (char *)malloc(10);
for(int i = 0; i < 10; i++)
{
Attribute attr;
sprintf(suffix, "%d", index);
attr.name = "attr";
attr.name += suffix;
attr.type = TypeVarChar;
attr.length = (AttrLength)50;
recordDescriptor.push_back(attr);
index++;
sprintf(suffix, "%d", index);
attr.name = "attr";
attr.name += suffix;
attr.type = TypeInt;
attr.length = (AttrLength)4;
recordDescriptor.push_back(attr);
index++;
sprintf(suffix, "%d", index);
attr.name = "attr";
attr.name += suffix;
attr.type = TypeReal;
attr.length = (AttrLength)4;
recordDescriptor.push_back(attr);
index++;
}
free(suffix);
}
void createLargeRecordDescriptor2(vector<Attribute> &recordDescriptor)
{
int index = 0;
char *suffix = (char *)malloc(10);
for(int i = 0; i < 10; i++)
{
Attribute attr;
sprintf(suffix, "%d", index);
attr.name = "attr";
attr.name += suffix;
attr.type = TypeVarChar;
attr.length = (AttrLength)2000;
recordDescriptor.push_back(attr);
index++;
sprintf(suffix, "%d", index);
attr.name = "attr";
attr.name += suffix;
attr.type = TypeInt;
attr.length = (AttrLength)4;
recordDescriptor.push_back(attr);
index++;
sprintf(suffix, "%d", index);
attr.name = "attr";
attr.name += suffix;
attr.type = TypeReal;
attr.length = (AttrLength)4;
recordDescriptor.push_back(attr);
index++;
}
free(suffix);
}
bool compareFileSizes(string fileName1, string fileName2) {
streampos s1, s2;
ifstream in1(fileName1.c_str(), ifstream::in |ifstream::binary);
in1.seekg(0, ifstream::end);
s1 = in1.tellg();
ifstream in2(fileName2.c_str(), ifstream::in |ifstream::binary);
in2.seekg(0, ifstream::end);
s2 = in2.tellg();
cout << "File 1 size: " << s1 << endl;
cout << "File 2 size: " << s2 << endl;
if (s1 != s2) {
return false;
}
return true;
}
ifstream::pos_type filesize(const char* filename)
{
std::ifstream in(filename, std::ifstream::in | std::ifstream::binary);
in.seekg(0, std::ifstream::end);
return in.tellg();
}
int RBFTest_1(PagedFileManager *pfm)
{
// Functions Tested:
// 1. Create File
cout << "****In RBF Test Case 1****" << endl;
RC rc;
string fileName = "test";
// Create a file named "test"
rc = pfm->createFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been created." << endl << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 1 Failed!" << endl << endl;
return -1;
}
// Create "test" again, should fail
rc = pfm->createFile(fileName.c_str());
if(rc == success) {
return -1;
}
assert(rc != success);
cout << "Test Case 1 Passed!" << endl << endl;
return 0;
}
int RBFTest_2(PagedFileManager *pfm)
{
// Functions Tested:
// 1. Destroy File
cout << "****In RBF Test Case 2****" << endl;
RC rc;
string fileName = "test";
rc = pfm->destroyFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(!FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been destroyed." << endl << endl;
cout << "Test Case 2 Passed!" << endl << endl;
return 0;
}
else
{
cout << "Failed to destroy file!" << endl;
cout << "Test Case 2 Failed!" << endl << endl;
return -1;
}
}
int RBFTest_3(PagedFileManager *pfm)
{
// Functions Tested:
// 1. Create File
// 2. Open File
// 3. Get Number Of Pages
// 4. Close File
cout << "****In RBF Test Case 3****" << endl;
RC rc;
string fileName = "test_1";
// Create a file named "test_1"
rc = pfm->createFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been created." << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 3 Failed!" << endl << endl;
return -1;
}
// Open the file "test_1"
FileHandle fileHandle;
rc = pfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
if(rc != success) {
return -1;
}
assert(rc == success);
// Get the number of pages in the test file
unsigned count = fileHandle.getNumberOfPages();
if(count != (unsigned)0) {
return -1;
}
assert(count == (unsigned)0);
// Close the file "test_1"
rc = pfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
cout << "Test Case 3 Passed!" << endl << endl;
return 0;
}
int RBFTest_4(PagedFileManager *pfm)
{
// Functions Tested:
// 1. Open File
// 2. Append Page
// 3. Get Number Of Pages
// 3. Close File
cout << "****In RBF Test Case 4****" << endl;
RC rc;
string fileName = "test_1";
// Open the file "test_1"
FileHandle fileHandle;
rc = pfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
// Append the first page
void *data = malloc(PAGE_SIZE);
for(unsigned i = 0; i < PAGE_SIZE; i++)
{
*((char *)data+i) = i % 94 + 32;
}
rc = fileHandle.appendPage(data);
if(rc != success) {
return -1;
}
assert(rc == success);
// Get the number of pages
unsigned count = fileHandle.getNumberOfPages();
if(count != (unsigned)1) {
return -1;
}
assert(count == (unsigned)1);
// Close the file "test_1"
rc = pfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
free(data);
cout << "Test Case 4 Passed!" << endl << endl;
return 0;
}
int RBFTest_5(PagedFileManager *pfm)
{
// Functions Tested:
// 1. Open File
// 2. Read Page
// 3. Close File
cout << "****In RBF Test Case 5****" << endl;
RC rc;
string fileName = "test_1";
// Open the file "test_1"
FileHandle fileHandle;
rc = pfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
// Read the first page
void *buffer = malloc(PAGE_SIZE);
rc = fileHandle.readPage(0, buffer);
if(rc != success) {
return -1;
}
assert(rc == success);
// Check the integrity of the page
void *data = malloc(PAGE_SIZE);
for(unsigned i = 0; i < PAGE_SIZE; i++)
{
*((char *)data+i) = i % 94 + 32;
}
rc = memcmp(data, buffer, PAGE_SIZE);
if(rc != success) {
return -1;
}
assert(rc == success);
// Close the file "test_1"
rc = pfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
free(data);
free(buffer);
cout << "Test Case 5 Passed!" << endl << endl;
return 0;
}
int RBFTest_6(PagedFileManager *pfm)
{
// Functions Tested:
// 1. Open File
// 2. Write Page
// 3. Read Page
// 4. Close File
// 5. Destroy File
cout << "****In RBF Test Case 6****" << endl;
RC rc;
string fileName = "test_1";
// Open the file "test_1"
FileHandle fileHandle;
rc = pfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
// Update the first page
void *data = malloc(PAGE_SIZE);
for(unsigned i = 0; i < PAGE_SIZE; i++)
{
*((char *)data+i) = i % 10 + 32;
}
rc = fileHandle.writePage(0, data);
if(rc != success) {
return -1;
}
assert(rc == success);
// Read the page
void *buffer = malloc(PAGE_SIZE);
rc = fileHandle.readPage(0, buffer);
if(rc != success) {
return -1;
}
assert(rc == success);
// Check the integrity
rc = memcmp(data, buffer, PAGE_SIZE);
if(rc != success) {
return -1;
}
assert(rc == success);
// Close the file "test_1"
rc = pfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
free(data);
free(buffer);
// Destroy File
rc = pfm->destroyFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(!FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been destroyed." << endl;
cout << "Test Case 6 Passed!" << endl << endl;
return 0;
}
else
{
cout << "Failed to destroy file!" << endl;
cout << "Test Case 6 Failed!" << endl << endl;
return -1;
}
}
int RBFTest_7(PagedFileManager *pfm)
{
// Functions Tested:
// 1. Create File
// 2. Open File
// 3. Append Page
// 4. Get Number Of Pages
// 5. Read Page
// 6. Write Page
// 7. Close File
// 8. Destroy File
cout << "****In RBF Test Case 7****" << endl;
RC rc;
string fileName = "test_2";
// Create the file named "test_2"
rc = pfm->createFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been created." << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 7 Failed!" << endl << endl;
return -1;
}
// Open the file "test_2"
FileHandle fileHandle;
rc = pfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
// Append 50 pages
void *data = malloc(PAGE_SIZE);
for(unsigned j = 0; j < 50; j++)
{
for(unsigned i = 0; i < PAGE_SIZE; i++)
{
*((char *)data+i) = i % (j+1) + 32;
}
rc = fileHandle.appendPage(data);
if(rc != success) {
return -1;
}
assert(rc == success);
}
cout << "50 Pages have been successfully appended!" << endl;
// Get the number of pages
unsigned count = fileHandle.getNumberOfPages();
if(count != (unsigned)50) {
return -1;
}
assert(count == (unsigned)50);
// Read the 25th page and check integrity
void *buffer = malloc(PAGE_SIZE);
rc = fileHandle.readPage(24, buffer);
if(rc != success) {
return -1;
}
assert(rc == success);
for(unsigned i = 0; i < PAGE_SIZE; i++)
{
*((char *)data + i) = i % 25 + 32;
}
rc = memcmp(buffer, data, PAGE_SIZE);
if(rc != success) {
return -1;
}
assert(rc == success);
cout << "The data in 25th page is correct!" << endl;
// Update the 25th page
for(unsigned i = 0; i < PAGE_SIZE; i++)
{
*((char *)data+i) = i % 60 + 32;
}
rc = fileHandle.writePage(24, data);
if(rc != success) {
return -1;
}
assert(rc == success);
// Read the 25th page and check integrity
rc = fileHandle.readPage(24, buffer);
if(rc != success) {
return -1;
}
assert(rc == success);
rc = memcmp(buffer, data, PAGE_SIZE);
if(rc != success) {
return -1;
}
assert(rc == success);
// Close the file "test_2"
rc = pfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
// Destroy File
rc = pfm->destroyFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
free(data);
free(buffer);
if(!FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been destroyed." << endl;
cout << "Test Case 7 Passed!" << endl << endl;
return 0;
}
else
{
cout << "Failed to destroy file!" << endl;
cout << "Test Case 7 Failed!" << endl << endl;
return -1;
}
}
int RBFTest_8(RecordBasedFileManager *rbfm) {
// Functions tested
// 1. Create Record-Based File
// 2. Open Record-Based File
// 3. Insert Record
// 4. Read Record
// 5. Close Record-Based File
// 6. Destroy Record-Based File
cout << "****In RBF Test Case 8****" << endl;
RC rc;
string fileName = "test_3";
// Create a file named "test_3"
rc = rbfm->createFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been created." << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 8 Failed!" << endl << endl;
return -1;
}
// Open the file "test_3"
FileHandle fileHandle;
rc = rbfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
RID rid;
int recordSize = 0;
void *record = malloc(100);
void *returnedData = malloc(100);
vector<Attribute> recordDescriptor;
createRecordDescriptor(recordDescriptor);
// Insert a record into a file
prepareRecord(6, "Peters", 24, 170.1, 5000, record, &recordSize);
cout << "Insert Data:" << endl;
rbfm->printRecord(recordDescriptor, record);
rc = rbfm->insertRecord(fileHandle, recordDescriptor, record, rid);
if(rc != success) {
return -1;
}
assert(rc == success);
// Given the rid, read the record from file
rc = rbfm->readRecord(fileHandle, recordDescriptor, rid, returnedData);
if(rc != success) {
return -1;
}
assert(rc == success);
cout << "Returned Data:" << endl;
rbfm->printRecord(recordDescriptor, returnedData);
// Compare whether the two memory blocks are the same
if(memcmp(record, returnedData, recordSize) != 0)
{
cout << "Test Case 8 Failed!" << endl << endl;
free(record);
free(returnedData);
return -1;
}
// Close the file "test_3"
rc = rbfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
// Destroy File
rc = rbfm->destroyFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
free(record);
free(returnedData);
cout << "Test Case 8 Passed!" << endl << endl;
return 0;
}
int RBFTest_9(RecordBasedFileManager *rbfm, vector<RID> &rids, vector<int> &sizes) {
// Functions tested
// 1. Create Record-Based File
// 2. Open Record-Based File
// 3. Insert Multiple Records
// 4. Close Record-Based File
cout << "****In RBF Test Case 9****" << endl;
RC rc;
string fileName = "test_4";
// Create a file named "test_4"
rc = rbfm->createFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been created." << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 9 Failed!" << endl << endl;
return -1;
}
// Open the file "test_4"
FileHandle fileHandle;
rc = rbfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
RID rid;
void *record = malloc(1000);
int numRecords = 2000;
vector<Attribute> recordDescriptor;
createLargeRecordDescriptor(recordDescriptor);
for(unsigned i = 0; i < recordDescriptor.size(); i++)
{
cout << "Attribute Name: " << recordDescriptor[i].name << endl;
cout << "Attribute Type: " << (AttrType)recordDescriptor[i].type << endl;
cout << "Attribute Length: " << recordDescriptor[i].length << endl << endl;
}
// Insert 2000 records into file
for(int i = 0; i < numRecords; i++)
{
// Test insert Record
int size = 0;
memset(record, 0, 1000);
prepareLargeRecord(i, record, &size);
rc = rbfm->insertRecord(fileHandle, recordDescriptor, record, rid);
if(rc != success) {
return -1;
}
assert(rc == success);
rids.push_back(rid);
sizes.push_back(size);
}
// Close the file "test_4"
rc = rbfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
free(record);
cout << "Test Case 9 Passed!" << endl << endl;
return 0;
}
int RBFTest_10(RecordBasedFileManager *rbfm, vector<RID> &rids, vector<int> &sizes) {
// Functions tested
// 1. Open Record-Based File
// 2. Read Multiple Records
// 3. Close Record-Based File
// 4. Destroy Record-Based File
cout << "****In RBF Test Case 10****" << endl;
RC rc;
string fileName = "test_4";
// Open the file "test_4"
FileHandle fileHandle;
rc = rbfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
int numRecords = 2000;
void *record = malloc(1000);
void *returnedData = malloc(1000);
vector<Attribute> recordDescriptor;
createLargeRecordDescriptor(recordDescriptor);
for(int i = 0; i < numRecords; i++)
{
memset(record, 0, 1000);
memset(returnedData, 0, 1000);
rc = rbfm->readRecord(fileHandle, recordDescriptor, rids[i], returnedData);
if(rc != success) {
return -1;
}
assert(rc == success);
cout << "Returned Data:" << endl;
rbfm->printRecord(recordDescriptor, returnedData);
int size = 0;
prepareLargeRecord(i, record, &size);
if(memcmp(returnedData, record, sizes[i]) != 0)
{
cout << "Test Case 10 Failed!" << endl << endl;
free(record);
free(returnedData);
return -1;
}
}
// Close the file "test_4"
rc = rbfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
rc = rbfm->destroyFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(!FileExists(fileName.c_str())) {
cout << "File " << fileName << " has been destroyed." << endl << endl;
free(record);
free(returnedData);
cout << "Test Case 10 Passed!" << endl << endl;
return 0;
}
else {
cout << "Failed to destroy file!" << endl;
cout << "Test Case 10 Failed!" << endl << endl;
free(record);
free(returnedData);
return -1;
}
}
int RBFTest_11(RecordBasedFileManager *rbfm) {
// Functions tested
// 1. Create Record-Based File
// 2. Open Record-Based File
// 3. Insert Multiple Records
// 4. Read Multiple Records
// 5. Close Record-Based File
// 6. Destroy Record-Based File
cout << "****In RBF Test Case 11****" << endl;
RC rc;
string fileName = "test_5";
// Create a file named "test_5"
rc = rbfm->createFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName.c_str()))
{
cout << "File " << fileName << " has been created." << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 11 Failed!" << endl << endl;
return -1;
}
// Open the file "test_5"
FileHandle fileHandle;
rc = rbfm->openFile(fileName.c_str(), fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
RID rid;
void *record = malloc(1000);
void *returnedData = malloc(1000);
int numRecords = 100000;
vector<Attribute> recordDescriptor;
createLargeRecordDescriptor2(recordDescriptor);
for(unsigned i = 0; i < recordDescriptor.size(); i++)
{
cout << "Attribute Name: " << recordDescriptor[i].name << endl;
cout << "Attribute Type: " << (AttrType)recordDescriptor[i].type << endl;
cout << "Attribute Length: " << recordDescriptor[i].length << endl << endl;
}
vector<RID> rids;
// Insert 100000 records into file
for(int i = 0; i < numRecords; i++)
{
// Test insert Record
memset(record, 0, 1000);
int size = 0;
prepareLargeRecord(i, record, &size);
rc = rbfm->insertRecord(fileHandle, recordDescriptor, record, rid);
if(rc != success) {
return -1;
}
assert(rc == success);
rids.push_back(rid);
}
for(int i = 0; i < numRecords; i++)
{
memset(record, 0, 1000);
memset(returnedData, 0, 1000);
rc = rbfm->readRecord(fileHandle, recordDescriptor, rids[i], returnedData);
if(rc != success) {
return -1;
}
assert(rc == success);
int size = 0;
prepareLargeRecord(i, record, &size);
if(memcmp(returnedData, record, size) != 0)
{
cout << "Test Case 11 Failed!" << endl << endl;
free(record);
free(returnedData);
return -1;
}
}
// Close the file "test_5"
rc = rbfm->closeFile(fileHandle);
if(rc != success) {
return -1;
}
assert(rc == success);
rc = rbfm->destroyFile(fileName.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(!FileExists(fileName.c_str())) {
cout << "File " << fileName << " has been destroyed." << endl << endl;
free(record);
free(returnedData);
cout << "Test Case 11 Passed!" << endl << endl;
return 0;
}
else {
cout << "Failed to destroy file!" << endl;
cout << "Test Case 11 Failed!" << endl << endl;
free(record);
free(returnedData);
return -1;
}
}
int RBFTest_12(RecordBasedFileManager *rbfm) {
// Functions tested
// 1. Create Two Record-Based File
// 2. Open Two Record-Based File
// 3. Insert Multiple Records Into Two files
// 4. Close Two Record-Based File
// 5. Compare The File Sizes
// 6. Destroy Two Record-Based File
cout << "****In RBF Test Case 12****" << endl;
RC rc;
string fileName1 = "test_6";
string fileName2 = "test_7";
// Create a file named "test_6"
rc = rbfm->createFile(fileName1.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName1.c_str()))
{
cout << "File " << fileName1 << " has been created." << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 12 Failed!" << endl << endl;
return -1;
}
// Create a file named "test_7"
rc = rbfm->createFile(fileName2.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName2.c_str()))
{
cout << "File " << fileName2 << " has been created." << endl;
}
else
{
cout << "Failed to create file!" << endl;
cout << "Test Case 12 Failed!" << endl << endl;
return -1;
}
// Open the file "test_6"
FileHandle fileHandle1;
rc = rbfm->openFile(fileName1.c_str(), fileHandle1);
if(rc != success) {
return -1;
}
assert(rc == success);
// Open the file "test_7"
FileHandle fileHandle2;
rc = rbfm->openFile(fileName2.c_str(), fileHandle2);
if(rc != success) {
return -1;
}
assert(rc == success);
RID rid;
void *record = malloc(1000);
int numRecords = 50000;
vector<Attribute> recordDescriptor1;
createLargeRecordDescriptor(recordDescriptor1);
vector<Attribute> recordDescriptor2;
createLargeRecordDescriptor2(recordDescriptor2);
// Insert 50000 records into file
for(int i = 0; i < numRecords; i++)
{
// Test insert Record
int size = 0;
memset(record, 0, 1000);
prepareLargeRecord(i, record, &size);
rc = rbfm->insertRecord(fileHandle1, recordDescriptor1, record, rid);
if(rc != success) {
return -1;
}
assert(rc == success);
rc = rbfm->insertRecord(fileHandle2, recordDescriptor2, record, rid);
if(rc != success) {
return -1;
}
assert(rc == success);
}
// Close the file "test_6"
rc = rbfm->closeFile(fileHandle1);
if(rc != success) {
return -1;
}
assert(rc == success);
// Close the file "test_7"
rc = rbfm->closeFile(fileHandle2);
if(rc != success) {
return -1;
}
assert(rc == success);
free(record);
bool equalSizes = compareFileSizes(fileName1, fileName2);
rc = rbfm->destroyFile(fileName1.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName1.c_str())) {
cout << "Failed to destroy file!" << endl;
cout << "Test Case 12 Failed!" << endl << endl;
return -1;
}
rc = rbfm->destroyFile(fileName2.c_str());
if(rc != success) {
return -1;
}
assert(rc == success);
if(FileExists(fileName2.c_str())) {
cout << "Failed to destroy file!" << endl;
cout << "Test Case 12 Failed!" << endl << endl;
return -1;
}
if (!equalSizes) {
cout << "Files are of different sizes" << endl;
return -1;
}
return 0;
}
int main()
{
PagedFileManager *pfm = PagedFileManager::instance(); // To test the functionality of the paged file manager
RecordBasedFileManager *rbfm = RecordBasedFileManager::instance(); // To test the functionality of the record-based file manager
remove("test");
remove("test_1");
remove("test_2");
remove("test_3");
remove("test_4");
remove("test_5");
vector<int> gradeFail(11,0);
int rc = RBFTest_1(pfm);
if (rc == 0) {
total += 5;
gradeFail[0] = 1;
}
rc = RBFTest_2(pfm);
if (rc == 0) {
total += 5;
gradeFail[1] = 1;
}
rc = RBFTest_3(pfm);
if (rc == 0) {
total += 5;
gradeFail[2] = 1;
}
rc = RBFTest_4(pfm);
if (rc == 0) {
total += 5;
gradeFail[3] = 1;
}
rc = RBFTest_5(pfm);
if (rc == 0) {
total += 5;
gradeFail[4] = 1;
}
rc = RBFTest_6(pfm);
if (rc == 0) {
total += 5;
gradeFail[5] = 1;
}
rc = RBFTest_7(pfm);
if (rc == 0) {
total += 5;
gradeFail[6] = 1;
}
rc = RBFTest_8(rbfm);
if (rc == 0) {
total += 5;
gradeFail[7] = 1;
}
vector<RID> rids;
vector<int> sizes;
rc = RBFTest_9(rbfm, rids, sizes);
if (rc == 0) {
total += 5;
gradeFail[8] = 1;
}
rc = RBFTest_10(rbfm, rids, sizes);
if (rc == 0) {
total += 5;
gradeFail[9] = 1;
}
rc = RBFTest_11(rbfm);
if (rc == 0) {
total += 20;
gradeFail[10] = 1;
}
rc = RBFTest_12(rbfm);
if (rc != 0) {
cout << "Didn't implement variable-length records efficiently" << endl;
}
cout << "Grade is: " << total << endl;
for (int i = 0; i < 11; ++i) {
cout << i << "\t" << gradeFail[i] << endl;
}
return 0;
}
| [
"[email protected]"
] | |
39d739335a69b372231a74796c1916e078920ca4 | 4352b5c9e6719d762e6a80e7a7799630d819bca3 | /tutorials/oldd/eulerVortex.twitch/eulerVortex.cyclic.twitch.moving/1.43/p | 2cd1973a1fe3f30e7bbc82d9b5d3838217e9f137 | [] | no_license | dashqua/epicProject | d6214b57c545110d08ad053e68bc095f1d4dc725 | 54afca50a61c20c541ef43e3d96408ef72f0bcbc | refs/heads/master | 2022-02-28T17:20:20.291864 | 2019-10-28T13:33:16 | 2019-10-28T13:33:16 | 184,294,390 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45,848 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1.43";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
10000
(
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999998
0.999999
0.999998
0.999998
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999998
0.999998
0.999998
0.999998
0.999997
0.999998
0.999997
0.999997
0.999998
0.999998
0.999998
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999999
0.999998
0.999997
0.999997
0.999996
0.999996
0.999995
0.999996
0.999995
0.999995
0.999996
0.999996
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999998
0.999997
0.999996
0.999995
0.999994
0.999993
0.999993
0.999992
0.999993
0.999992
0.999993
0.999993
0.999994
0.999995
0.999996
0.999997
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999997
0.999996
0.999994
0.999994
0.999991
0.99999
0.999989
0.999988
0.999988
0.999988
0.999988
0.999989
0.999989
0.99999
0.999992
0.999994
0.999996
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999997
0.999996
0.999993
0.999991
0.999989
0.999986
0.999983
0.999982
0.999981
0.99998
0.99998
0.999981
0.999983
0.999984
0.999986
0.999988
0.999991
0.999993
0.999996
0.999997
0.999999
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999998
0.999998
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999997
0.999993
0.999989
0.999986
0.99998
0.999978
0.999974
0.999972
0.99997
0.999969
0.999969
0.99997
0.999972
0.999974
0.999978
0.99998
0.999985
0.999988
0.999993
0.999995
0.999999
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
0.999998
0.999997
0.999997
0.999998
0.999998
0.999998
0.999998
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1
1
0.999999
0.999996
0.99999
0.999983
0.999978
0.999969
0.999965
0.99996
0.999956
0.999952
0.999952
0.999953
0.999954
0.999956
0.999961
0.999966
0.99997
0.999976
0.999982
0.999987
0.999991
0.999998
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
0.999999
0.999997
0.999996
0.999996
0.999997
0.999997
0.999997
0.999998
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
0.999995
0.999985
0.999977
0.999965
0.999956
0.999946
0.999939
0.999933
0.999929
0.999927
0.999928
0.99993
0.999935
0.99994
0.999946
0.999955
0.999962
0.999972
0.999977
0.999987
0.999994
1
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1
1
0.999998
0.999995
0.999994
0.999993
0.999994
0.999995
0.999996
0.999997
0.999998
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00001
1
0.999994
0.99998
0.999966
0.999948
0.999936
0.999921
0.999911
0.999902
0.999896
0.999893
0.999895
0.999899
0.999904
0.999912
0.999921
0.999932
0.999944
0.999954
0.999966
0.999978
0.999987
1
1.00001
1.00001
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00001
1.00001
1
0.999998
0.999995
0.999993
0.999991
0.999992
0.999993
0.999994
0.999996
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00002
1.00003
1.00003
1.00004
1.00004
1.00003
1.00003
1.00001
0.999996
0.999976
0.999953
0.999931
0.99991
0.999889
0.999874
0.999861
0.999854
0.99985
0.999852
0.999856
0.999864
0.999874
0.999887
0.999901
0.999916
0.999932
0.999948
0.999965
0.999977
0.999994
1.00001
1.00002
1.00003
1.00004
1.00005
1.00005
1.00005
1.00005
1.00005
1.00004
1.00003
1.00002
1.00002
1.00001
1
0.999995
0.999991
0.999989
0.999989
0.999989
0.999991
0.999994
0.999995
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00002
1.00003
1.00004
1.00005
1.00006
1.00006
1.00006
1.00005
1.00003
1
0.999975
0.999942
0.999913
0.99988
0.999854
0.999832
0.999815
0.999805
0.9998
0.999799
0.999805
0.999815
0.999827
0.999842
0.999863
0.999879
0.999904
0.999924
0.999944
0.999969
0.999985
1.00001
1.00002
1.00004
1.00005
1.00006
1.00007
1.00007
1.00007
1.00007
1.00007
1.00006
1.00005
1.00003
1.00002
1.00001
0.999998
0.999991
0.999987
0.999984
0.999985
0.999987
0.999989
0.999992
0.999995
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00004
1.00006
1.00007
1.00009
1.0001
1.0001
1.00009
1.00008
1.00005
1.00002
0.999981
0.999941
0.999898
0.999856
0.999823
0.999793
0.99977
0.999755
0.999746
0.999745
0.99975
0.999761
0.999776
0.999795
0.999817
0.999842
0.999869
0.999897
0.999922
0.999954
0.99998
1.00001
1.00003
1.00005
1.00007
1.00009
1.0001
1.00011
1.00011
1.00011
1.0001
1.00009
1.00008
1.00006
1.00004
1.00002
1.00001
0.999995
0.999986
0.999981
0.999981
0.999981
0.999984
0.999988
0.999992
0.999995
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00004
1.00006
1.00009
1.00011
1.00013
1.00015
1.00015
1.00015
1.00013
1.0001
1.00006
1.00001
0.999956
0.999902
0.999854
0.999809
0.999772
0.999744
0.999723
0.99971
0.999706
0.999708
0.999718
0.999732
0.999754
0.999777
0.99981
0.999838
0.999873
0.999909
0.999943
0.999981
1.00001
1.00005
1.00008
1.0001
1.00013
1.00015
1.00016
1.00016
1.00016
1.00016
1.00014
1.00012
1.0001
1.00007
1.00005
1.00002
1
0.999989
0.99998
0.999975
0.999975
0.999979
0.999984
0.999988
0.999992
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00004
1.00006
1.0001
1.00013
1.00016
1.00019
1.00022
1.00023
1.00023
1.00021
1.00017
1.00012
1.00007
1.00001
0.999948
0.999893
0.999841
0.999801
0.999766
0.99974
0.999722
0.999713
0.99971
0.999717
0.999729
0.999748
0.999772
0.999802
0.999836
0.999873
0.999915
0.999955
0.999999
1.00004
1.00008
1.00012
1.00016
1.00019
1.00022
1.00024
1.00025
1.00025
1.00024
1.00022
1.0002
1.00017
1.00013
1.00009
1.00005
1.00002
0.999999
0.999982
0.999973
0.999971
0.999973
0.999977
0.999983
0.999989
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00006
1.00009
1.00013
1.00018
1.00023
1.00027
1.00031
1.00033
1.00033
1.00032
1.00028
1.00024
1.00018
1.00012
1.00007
1.00001
0.999964
0.99992
0.999885
0.999855
0.999832
0.999818
0.999809
0.999808
0.999813
0.999824
0.999845
0.999868
0.999901
0.999937
0.99998
1.00002
1.00007
1.00012
1.00017
1.00022
1.00026
1.00031
1.00034
1.00036
1.00038
1.00038
1.00037
1.00035
1.00032
1.00027
1.00022
1.00016
1.00011
1.00006
1.00002
0.99999
0.999975
0.999967
0.999967
0.999972
0.999979
0.999985
0.999991
0.999995
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00005
1.00008
1.00013
1.00018
1.00024
1.00031
1.00037
1.00043
1.00046
1.00048
1.00047
1.00045
1.00042
1.00038
1.00033
1.0003
1.00026
1.00023
1.0002
1.00017
1.00014
1.00012
1.0001
1.00009
1.00007
1.00007
1.00007
1.00007
1.00008
1.00011
1.00013
1.00017
1.00021
1.00026
1.00031
1.00036
1.00041
1.00046
1.0005
1.00054
1.00057
1.00059
1.00059
1.00058
1.00054
1.0005
1.00043
1.00036
1.00028
1.0002
1.00012
1.00006
1.00001
0.999981
0.999966
0.999963
0.999967
0.999973
0.99998
0.999987
0.999992
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00006
1.00011
1.00016
1.00023
1.00031
1.0004
1.00049
1.00056
1.00062
1.00066
1.00068
1.00069
1.00069
1.00069
1.00069
1.00069
1.00069
1.0007
1.0007
1.00071
1.0007
1.00069
1.00067
1.00065
1.00063
1.00061
1.00059
1.00057
1.00057
1.00057
1.00058
1.00059
1.00062
1.00066
1.0007
1.00074
1.00079
1.00083
1.00087
1.00091
1.00093
1.00094
1.00093
1.0009
1.00085
1.00077
1.00068
1.00057
1.00045
1.00033
1.00022
1.00012
1.00005
1
0.999971
0.999959
0.999959
0.999966
0.999975
0.999983
0.99999
0.999994
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00008
1.00013
1.00019
1.00028
1.00039
1.0005
1.00061
1.00072
1.00081
1.00089
1.00095
1.00101
1.00107
1.00113
1.00121
1.00128
1.00137
1.00146
1.00153
1.00159
1.00163
1.00165
1.00166
1.00165
1.00162
1.00159
1.00155
1.00151
1.00148
1.00145
1.00143
1.00142
1.00142
1.00143
1.00144
1.00147
1.00149
1.00151
1.00154
1.00155
1.00154
1.00153
1.00149
1.00142
1.00133
1.00121
1.00106
1.00089
1.00072
1.00054
1.00037
1.00023
1.00012
1.00004
0.999986
0.999961
0.999955
0.999961
0.999971
0.99998
0.999988
0.999993
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00005
1.00009
1.00015
1.00023
1.00033
1.00046
1.00059
1.00074
1.00088
1.00102
1.00114
1.00127
1.00141
1.00155
1.00172
1.00191
1.00213
1.00234
1.00256
1.00276
1.00292
1.00306
1.00315
1.00321
1.00323
1.00322
1.0032
1.00315
1.00309
1.00303
1.00297
1.00292
1.00287
1.00282
1.00279
1.00277
1.00274
1.00273
1.00271
1.00268
1.00264
1.00259
1.00251
1.0024
1.00226
1.00208
1.00188
1.00164
1.00138
1.00111
1.00084
1.0006
1.00039
1.00022
1.00009
1.00001
0.999971
0.999956
0.999957
0.999965
0.999976
0.999985
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00006
1.0001
1.00016
1.00025
1.00037
1.00052
1.00068
1.00086
1.00104
1.00123
1.00143
1.00164
1.00188
1.00215
1.00247
1.00282
1.00322
1.00363
1.00405
1.00443
1.00478
1.00506
1.00529
1.00545
1.00555
1.0056
1.00561
1.00558
1.00552
1.00545
1.00537
1.00528
1.00519
1.00511
1.00502
1.00494
1.00486
1.00478
1.00468
1.00457
1.00444
1.00428
1.00409
1.00386
1.00358
1.00326
1.0029
1.00251
1.0021
1.00168
1.00128
1.00092
1.00061
1.00036
1.00018
1.00005
0.999986
0.999957
0.999952
0.999959
0.999971
0.999981
0.999989
0.999994
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00006
1.0001
1.00017
1.00027
1.0004
1.00056
1.00075
1.00096
1.00119
1.00144
1.00172
1.00203
1.00239
1.00282
1.00333
1.00391
1.00455
1.00523
1.00592
1.00658
1.00718
1.0077
1.00813
1.00846
1.00871
1.00887
1.00895
1.00898
1.00897
1.00892
1.00884
1.00875
1.00864
1.00852
1.0084
1.00827
1.00812
1.00796
1.00776
1.00753
1.00726
1.00693
1.00656
1.00611
1.00561
1.00505
1.00444
1.0038
1.00314
1.0025
1.0019
1.00136
1.00091
1.00055
1.00028
1.00011
1.00001
0.999961
0.999948
0.999954
0.999966
0.999978
0.999987
0.999993
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00005
1.0001
1.00017
1.00027
1.0004
1.00057
1.00078
1.00103
1.00131
1.00162
1.00198
1.00241
1.00292
1.00353
1.00426
1.00511
1.00606
1.00708
1.00813
1.00915
1.0101
1.01095
1.01166
1.01225
1.0127
1.01303
1.01325
1.01339
1.01346
1.01347
1.01344
1.01337
1.01329
1.01318
1.01306
1.01291
1.01273
1.0125
1.01221
1.01185
1.0114
1.01085
1.0102
1.00944
1.00859
1.00765
1.00666
1.00563
1.00461
1.00363
1.00273
1.00195
1.00129
1.00078
1.00041
1.00017
1.00003
0.999962
0.999942
0.999947
0.99996
0.999974
0.999984
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00005
1.00009
1.00015
1.00026
1.00039
1.00056
1.00078
1.00106
1.00137
1.00175
1.00221
1.00275
1.00342
1.00423
1.00521
1.00635
1.00766
1.00909
1.01057
1.01204
1.01344
1.01469
1.01577
1.01667
1.01737
1.01791
1.01829
1.01856
1.01872
1.01882
1.01886
1.01887
1.01886
1.01883
1.01878
1.0187
1.01857
1.01836
1.01804
1.01759
1.01698
1.0162
1.01522
1.01407
1.01273
1.01127
1.00971
1.00813
1.00658
1.00512
1.00381
1.00268
1.00176
1.00106
1.00057
1.00024
1.00005
0.999962
0.999933
0.999936
0.999951
0.999968
0.999981
0.99999
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00004
1.00007
1.00014
1.00023
1.00035
1.00053
1.00075
1.00104
1.00139
1.00182
1.00236
1.00301
1.00383
1.00484
1.00608
1.00755
1.00924
1.01112
1.0131
1.01509
1.017
1.01873
1.02022
1.02144
1.02238
1.02308
1.02355
1.02386
1.02404
1.02414
1.02421
1.02427
1.02434
1.02444
1.02455
1.02466
1.02474
1.02473
1.02458
1.02423
1.02363
1.02272
1.0215
1.01993
1.01805
1.01593
1.01366
1.01134
1.00908
1.00698
1.00512
1.00356
1.00231
1.00138
1.00072
1.0003
1.00006
0.999953
0.999916
0.999921
0.99994
0.999961
0.999977
0.999988
0.999994
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00006
1.00012
1.00019
1.0003
1.00046
1.00068
1.00097
1.00134
1.00181
1.00241
1.00317
1.00413
1.00533
1.00681
1.0086
1.01068
1.01302
1.01553
1.01809
1.02055
1.02277
1.02465
1.02612
1.02716
1.0278
1.02811
1.02815
1.02803
1.02785
1.02766
1.02755
1.02754
1.02769
1.028
1.02844
1.02895
1.02946
1.02986
1.03006
1.02992
1.02933
1.02819
1.02646
1.02417
1.02141
1.01834
1.01515
1.01203
1.00915
1.00663
1.00453
1.0029
1.00169
1.00086
1.00034
1.00006
0.999928
0.999891
0.999901
0.999926
0.999952
0.999973
0.999986
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00005
1.00008
1.00014
1.00024
1.00038
1.00058
1.00086
1.00124
1.00173
1.00237
1.00321
1.00428
1.00565
1.00735
1.00942
1.01188
1.01467
1.0177
1.02082
1.02382
1.0265
1.02865
1.03015
1.03095
1.03107
1.03062
1.02973
1.02858
1.02736
1.02621
1.02527
1.02467
1.02451
1.02484
1.02562
1.02681
1.0283
1.02994
1.03155
1.03285
1.03356
1.03341
1.03225
1.03007
1.02699
1.02328
1.01925
1.01523
1.01148
1.00821
1.00553
1.00346
1.00196
1.00096
1.00036
1.00003
0.999891
0.999858
0.999875
0.99991
0.999943
0.999968
0.999983
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00005
1.0001
1.00017
1.00029
1.00046
1.00072
1.00107
1.00157
1.00223
1.00312
1.00428
1.00577
1.00765
1.00997
1.01275
1.01595
1.01947
1.02311
1.0266
1.02961
1.03181
1.03297
1.03294
1.03171
1.02945
1.02638
1.02284
1.01916
1.01564
1.01258
1.01026
1.00892
1.0087
1.00961
1.01163
1.01469
1.01862
1.02308
1.02754
1.03138
1.03399
1.03493
1.03405
1.0315
1.02766
1.02308
1.01828
1.01371
1.00971
1.00643
1.00394
1.00217
1.00101
1.00033
0.999979
0.99984
0.999818
0.99985
0.999895
0.999934
0.999962
0.99998
0.99999
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00003
1.00006
1.00011
1.00019
1.00034
1.00056
1.00088
1.00135
1.00201
1.00291
1.00412
1.0057
1.00771
1.01023
1.01327
1.01682
1.02075
1.02483
1.0287
1.03187
1.03383
1.03411
1.03238
1.02859
1.02292
1.01577
1.00769
0.999301
0.991174
0.983884
0.97802
0.974066
0.972283
0.972782
0.975653
0.980943
0.98852
0.997879
1.00808
1.0179
1.02605
1.03157
1.034
1.03344
1.03048
1.02595
1.02073
1.01554
1.01091
1.00713
1.00427
1.00227
1.00099
1.00026
0.999904
0.999778
0.999776
0.999823
0.999878
0.999925
0.999958
0.999979
0.99999
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999998
1
1.00001
1.00002
1.00005
1.00011
1.00022
1.00039
1.00067
1.0011
1.00172
1.0026
1.00381
1.00543
1.00754
1.0102
1.01344
1.01726
1.02152
1.02595
1.03006
1.03321
1.03457
1.03333
1.02888
1.02097
1.0098
0.996026
0.980562
0.964484
0.948874
0.934751
0.923134
0.914807
0.910193
0.909518
0.913071
0.92119
0.933916
0.950608
0.969747
0.989147
1.00647
1.01983
1.02822
1.03164
1.03091
1.02731
1.02219
1.01671
1.01167
1.00751
1.00439
1.00223
1.00089
1.00015
0.999815
0.999717
0.999736
0.999799
0.999866
0.99992
0.999957
0.999978
0.99999
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999997
0.999996
0.999993
0.999991
0.999995
1.00001
1.00004
1.00011
1.00024
1.00046
1.00083
1.00139
1.00221
1.00339
1.00501
1.00715
1.00989
1.01328
1.0173
1.02182
1.0265
1.03074
1.03368
1.03412
1.03078
1.02252
1.00879
0.989793
0.966535
0.940551
0.91367
0.887761
0.864466
0.845217
0.831057
0.822508
0.819907
0.823866
0.835208
0.854382
0.880686
0.911899
0.944557
0.974799
0.999387
1.01649
1.02591
1.02878
1.02699
1.02253
1.01712
1.0119
1.00755
1.00429
1.00208
1.00074
1.00003
0.999727
0.999662
0.999705
0.999784
0.999861
0.999919
0.999956
0.999978
0.99999
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999997
0.999995
0.999991
0.999984
0.999978
0.999981
0.999992
1.00003
1.00012
1.00028
1.00057
1.00104
1.00179
1.00289
1.00445
1.00658
1.00935
1.01283
1.01699
1.02171
1.02658
1.03087
1.03347
1.0328
1.02692
1.014
0.992936
0.963953
0.928601
0.889402
0.849347
0.811348
0.777682
0.749995
0.729387
0.716379
0.711448
0.715615
0.730388
0.756823
0.794307
0.839889
0.88857
0.934569
0.972919
1.00071
1.01751
1.02485
1.0254
1.02196
1.01684
1.01165
1.00726
1.004
1.00182
1.00054
0.999895
0.999651
0.999623
0.999691
0.999782
0.999862
0.99992
0.999957
0.999979
0.99999
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999997
0.999993
0.999988
0.999983
0.999974
0.999964
0.999962
0.999974
1.00002
1.00013
1.00034
1.00072
1.00136
1.00234
1.00381
1.00586
1.00861
1.01212
1.01638
1.02126
1.02631
1.03065
1.03289
1.03105
1.02251
1.00448
0.975156
0.934695
0.885488
0.831535
0.777412
0.727123
0.683385
0.647766
0.621172
0.604088
0.597131
0.601766
0.620221
0.654264
0.703511
0.764328
0.8301
0.892894
0.945777
0.984664
1.00891
1.02064
1.02342
1.02092
1.01613
1.01106
1.00674
1.00357
1.00151
1.00034
0.999782
0.999598
0.999608
0.999694
0.99979
0.99987
0.999926
0.999961
0.999981
0.999992
0.999996
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999994
0.999989
0.999983
0.999973
0.999959
0.999947
0.999942
0.999957
1.00002
1.00016
1.00044
1.00095
1.0018
1.00311
1.00503
1.0077
1.0112
1.01552
1.02052
1.02578
1.03024
1.03223
1.02936
1.01835
0.995389
0.957678
0.905285
0.841712
0.77293
0.705385
0.644009
0.591674
0.549699
0.518649
0.498883
0.491106
0.49712
0.519759
0.561475
0.62218
0.697663
0.77971
0.858196
0.924225
0.972657
1.00287
1.01776
1.02191
1.01989
1.01525
1.01026
1.00608
1.00308
1.00119
1.00016
0.999702
0.99958
0.99962
0.999714
0.99981
0.999885
0.999936
0.999967
0.999984
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999997
0.999993
0.999986
0.999976
0.999962
0.999944
0.999931
0.999924
0.999947
1.00003
1.00022
1.0006
1.00128
1.0024
1.00414
1.00666
1.01008
1.01442
1.01954
1.02502
1.02976
1.03174
1.02815
1.01518
0.988011
0.942712
0.879074
0.801893
0.719469
0.640176
0.569671
0.510814
0.464651
0.431356
0.410973
0.404133
0.412827
0.440377
0.489817
0.561299
0.650002
0.746096
0.837367
0.913234
0.967929
1.00128
1.01722
1.02139
1.01911
1.01432
1.00936
1.00535
1.00257
1.00089
1.00002
0.999667
0.999596
0.999655
0.999751
0.999839
0.999905
0.999949
0.999974
0.999988
0.999994
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999997
0.999995
0.99999
0.99998
0.99997
0.999951
0.999931
0.999914
0.99991
0.999944
1.00006
1.00032
1.00083
1.00174
1.00324
1.00553
1.00879
1.01309
1.0183
1.02403
1.02922
1.03155
1.02771
1.01347
0.98327
0.931955
0.858797
0.769826
0.675752
0.586773
0.509234
0.445963
0.39775
0.364361
0.34536
0.341119
0.353786
0.387145
0.444695
0.526527
0.626844
0.734031
0.833986
0.915045
0.971583
1.00448
1.01899
1.02173
1.0185
1.01332
1.00838
1.00459
1.00209
1.00064
0.999933
0.999671
0.999642
0.999709
0.999797
0.999873
0.999927
0.999961
0.999981
0.999991
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999996
0.999992
0.999986
0.999975
0.999961
0.99994
0.999918
0.999899
0.999901
0.999953
1.00011
1.00046
1.00115
1.00237
1.00436
1.00737
1.01155
1.01681
1.02277
1.0285
1.03161
1.02818
1.01352
0.981629
0.926365
0.84619
0.748029
0.644706
0.548098
0.465348
0.399387
0.350719
0.318701
0.302415
0.301978
0.319775
0.360122
0.42673
0.519004
0.629441
0.744317
0.848058
0.928908
0.982439
1.01127
1.02211
1.0223
1.01774
1.01213
1.0073
1.00382
1.00164
1.00045
0.999895
0.999713
0.99971
0.999774
0.999847
0.999906
0.999948
0.999973
0.999987
0.999994
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999995
0.99999
0.999984
0.999972
0.999953
0.999931
0.999907
0.99989
0.999899
0.999975
1.00019
1.00067
1.0016
1.00323
1.00588
1.00981
1.01503
1.02119
1.02748
1.03169
1.02946
1.01537
0.983189
0.926183
0.841928
0.737683
0.627752
0.525466
0.438954
0.371473
0.32329
0.293358
0.280465
0.284705
0.308863
0.35774
0.434753
0.53765
0.656299
0.774699
0.876628
0.951601
0.997567
1.0194
1.02511
1.02233
1.01649
1.01067
1.00612
1.00306
1.00125
1.00031
0.9999
0.999778
0.999787
0.99984
0.999895
0.999938
0.999966
0.999983
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999997
0.999995
0.999989
0.999981
0.999967
0.999949
0.999923
0.999899
0.999883
0.999903
1.00001
1.0003
1.00095
1.00221
1.00442
1.00793
1.01297
1.01925
1.02603
1.03147
1.03116
1.01883
0.987808
0.931145
0.845795
0.738791
0.625071
0.519083
0.43003
0.361791
0.314643
0.287243
0.278306
0.288228
0.320297
0.379433
0.467877
0.580586
0.704116
0.820591
0.91453
0.978299
1.01318
1.02637
1.02663
1.02119
1.01456
1.00892
1.00489
1.00236
1.00093
1.00023
0.999936
0.999855
0.999865
0.999901
0.999937
0.999964
0.999981
0.999991
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999997
0.999993
0.999988
0.999978
0.999963
0.999943
0.999917
0.999893
0.999879
0.999914
1.00006
1.00046
1.00135
1.00306
1.00604
1.01068
1.01693
1.02411
1.03068
1.03269
1.02334
0.995103
0.940765
0.857051
0.750493
0.635897
0.528359
0.438096
0.369845
0.32428
0.300102
0.296148
0.313277
0.355085
0.425792
0.525276
0.644778
0.767626
0.875379
0.955177
1.00363
1.02566
1.03018
1.02585
1.01872
1.01205
1.00702
1.00371
1.00174
1.00069
1.00019
0.999985
0.999929
0.999932
0.999951
0.99997
0.999984
0.999992
0.999996
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999996
0.999992
0.999987
0.999978
0.999962
0.99994
0.999913
0.999888
0.999878
0.999931
1.00014
1.00069
1.00191
1.00426
1.00828
1.01425
1.02167
1.02919
1.03349
1.028
1.00427
0.954369
0.8748
0.771579
0.658954
0.55221
0.462432
0.395328
0.352342
0.332587
0.335204
0.361396
0.414429
0.496601
0.604222
0.724609
0.839117
0.930922
0.991684
1.02291
1.03253
1.02999
1.02276
1.01524
1.00926
1.00517
1.00266
1.00124
1.00051
1.00017
1.00003
0.999989
0.999982
0.999987
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999997
0.999992
0.999986
0.999977
0.999961
0.99994
0.999912
0.999884
0.99988
0.999956
1.00025
1.00103
1.00273
1.00597
1.01132
1.01871
1.02696
1.03326
1.03184
1.01401
0.970812
0.897983
0.800829
0.692925
0.589497
0.502329
0.438193
0.399474
0.385815
0.396687
0.433264
0.497484
0.588423
0.698183
0.811093
0.908908
0.978908
1.01845
1.03339
1.03316
1.02624
1.01812
1.01135
1.00658
1.00356
1.00181
1.00086
1.00039
1.00017
1.00007
1.00003
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
0.999999
0.999996
0.999994
0.999987
0.999978
0.999962
0.99994
0.999912
0.999881
0.999884
0.999996
1.00042
1.00153
1.00394
1.00839
1.01529
1.02396
1.03193
1.03427
1.02291
0.988305
0.924932
0.836775
0.736502
0.63918
0.557215
0.498465
0.466133
0.460191
0.480238
0.52681
0.599455
0.693244
0.79657
0.892932
0.967343
1.013
1.03273
1.03499
1.02875
1.02036
1.01302
1.00772
1.00431
1.0023
1.00118
1.0006
1.0003
1.00015
1.00008
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
1
0.999999
0.999997
0.999994
0.999988
0.99998
0.999966
0.999943
0.999912
0.99988
0.999887
1.00007
1.0007
1.00233
1.00574
1.0117
1.02024
1.02946
1.03505
1.02993
1.00485
0.953169
0.877044
0.787656
0.699641
0.625915
0.575186
0.551001
0.553404
0.581845
0.63549
0.710753
0.798986
0.886705
0.95942
1.00767
1.03081
1.03536
1.03004
1.02169
1.01405
1.00843
1.00479
1.00262
1.0014
1.00075
1.00041
1.00023
1.00013
1.00008
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999998
1
0.999993
0.999993
0.999984
0.999972
0.999949
0.999913
0.999873
0.999906
1.0002
1.00118
1.00357
1.00831
1.01605
1.02583
1.03407
1.03457
1.01891
0.980008
0.918275
0.84292
0.767559
0.705138
0.664461
0.648938
0.658689
0.692701
0.748111
0.818255
0.892276
0.957493
1.0039
1.02823
1.03443
1.03008
1.02203
1.01437
1.00865
1.00493
1.00271
1.00148
1.00082
1.00047
1.00028
1.00017
1.00011
1.00007
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
0.999998
1
0.999997
0.999996
0.999995
0.99999
0.99998
0.999954
0.999908
0.999866
0.999946
1.00045
1.00198
1.00545
1.01187
1.0213
1.03127
1.03652
1.02949
1.00325
0.956933
0.897702
0.837542
0.788429
0.758389
0.75063
0.765357
0.80062
0.851364
0.908942
0.962659
1.00315
1.02593
1.03264
1.02908
1.02149
1.01403
1.00839
1.00473
1.00258
1.00141
1.00079
1.00046
1.00029
1.00018
1.00012
1.00008
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
0.999999
1
0.999999
1
0.999999
0.999999
1
0.999998
1
0.999997
0.999999
0.999999
0.999998
0.999988
0.999957
0.999893
0.999863
1.00006
1.00093
1.00328
1.00819
1.01643
1.02687
1.03559
1.03594
1.02132
0.989998
0.947278
0.902998
0.867251
0.846955
0.845159
0.861762
0.893509
0.933853
0.974105
1.00604
1.02485
1.03066
1.02747
1.02037
1.01322
1.00778
1.00427
1.00227
1.00121
1.00068
1.00041
1.00027
1.00018
1.00012
1.00008
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999999
1
1
1
1
0.999999
1
0.999999
1
1
0.999998
1
0.999996
1
1
1.00001
1.00001
0.999989
0.999946
0.99987
0.999888
1.00031
1.00179
1.00529
1.01189
1.0216
1.03205
1.03794
1.0331
1.01516
0.987569
0.957794
0.933843
0.921555
0.923488
0.938691
0.962912
0.989596
1.01194
1.02541
1.02917
1.02575
1.01902
1.01222
1.00701
1.0037
1.00185
1.00094
1.00051
1.00032
1.00022
1.00016
1.00012
1.00008
1.00005
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999999
1
0.999999
1
0.999996
1
0.999997
1.00001
1.00001
1.00001
0.999984
0.999912
0.999851
1
1.00084
1.00321
1.00815
1.01633
1.02681
1.03588
1.03828
1.03106
1.01589
0.997999
0.983544
0.977146
0.980359
0.991448
1.00616
1.01938
1.02722
1.02842
1.02435
1.01777
1.01127
1.00629
1.00314
1.00144
1.00065
1.00033
1.00022
1.00017
1.00013
1.00011
1.00008
1.00005
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999999
1
0.999999
0.999999
1
0.999999
0.999999
1
1
0.999999
1
1
0.999999
1
1
0.999997
0.999999
1
1
1.00001
1
0.999953
0.99987
0.999872
1.0003
1.00181
1.00534
1.01176
1.02105
1.03104
1.03769
1.03788
1.03181
1.02281
1.01531
1.01249
1.01492
1.02068
1.0265
1.02942
1.02815
1.02334
1.01683
1.01055
1.00575
1.00271
1.0011
1.00041
1.00017
1.00012
1.00012
1.00011
1.0001
1.00007
1.00005
1.00004
1.00002
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
0.999997
1
0.999999
1
0.999999
0.999998
1
0.999995
1
0.999995
1
1.00001
1
0.999973
0.999904
0.999842
1.00002
1.00093
1.00336
1.00815
1.01571
1.02499
1.03319
1.03751
1.03722
1.03416
1.03108
1.02987
1.03051
1.03149
1.03093
1.02784
1.02251
1.01613
1.01012
1.00546
1.00247
1.00089
1.00024
1.00005
1.00005
1.00007
1.00009
1.00009
1.00007
1.00005
1.00004
1.00002
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
0.999998
1
0.999999
1
0.999998
1
0.999998
1
0.999999
0.999999
1
1
0.999999
0.999997
1
0.999996
0.999994
0.999995
0.999995
1
0.999986
0.999928
0.999854
0.999893
1.00041
1.00203
1.00548
1.01128
1.01901
1.0269
1.03272
1.03543
1.03568
1.03494
1.03413
1.03303
1.03081
1.02689
1.02151
1.01549
1.00984
1.00538
1.00242
1.00083
1.00016
0.999982
0.999997
1.00005
1.00008
1.00008
1.00007
1.00005
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
0.999998
1
0.999999
1
0.999998
1
0.999999
1
0.999995
1
1
0.999999
0.999999
0.999999
1
0.999999
1
0.999997
0.999997
0.999996
0.999991
0.999991
0.999992
0.999984
0.999948
0.999876
0.999855
1.00013
1.00117
1.00359
1.00785
1.01384
1.02047
1.02615
1.02981
1.03145
1.03165
1.03072
1.02851
1.02486
1.02002
1.01467
1.00959
1.00542
1.00253
1.00088
1.00016
0.999958
0.99997
1.00003
1.00007
1.00008
1.00007
1.00005
1.00004
1.00002
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999999
0.999999
1
0.999998
0.999999
1
0.999998
0.999999
1
1
0.999996
1
0.999999
1
0.999997
1
0.999999
1
1
0.999997
0.999996
0.999994
0.999994
0.999989
0.999986
0.999981
0.999959
0.999903
0.999855
0.999986
1.00064
1.00229
1.00532
1.00972
1.01483
1.01955
1.023
1.02487
1.02523
1.02412
1.02156
1.01783
1.01348
1.00917
1.00546
1.00271
1.00103
1.00023
0.999973
0.999964
1.00002
1.00006
1.00008
1.00007
1.00005
1.00004
1.00003
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999999
1
1
0.999999
1
1
0.999997
1
1
0.999999
0.999998
1
0.999999
0.999997
1
1
1
0.999996
1
0.999998
1
0.999999
0.999993
0.999993
0.999988
0.999988
0.99998
0.999963
0.999924
0.999876
0.999924
1.00032
1.00141
1.0035
1.0066
1.0103
1.01386
1.0166
1.01815
1.01837
1.01724
1.01492
1.01182
1.00848
1.00538
1.0029
1.00124
1.00036
1.00002
0.999967
1.00001
1.00005
1.00007
1.00007
1.00005
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999997
1
1
0.999997
1
1
0.999999
0.999998
1
0.999998
1
0.999998
1
1
0.999998
1
0.999999
1
0.999999
0.999997
1
1
0.999998
0.999993
0.99999
0.999983
0.999981
0.999969
0.999941
0.999898
0.999909
1.00013
1.00083
1.00222
1.00433
1.00687
1.00937
1.01132
1.01242
1.01248
1.01151
1.00972
1.00745
1.0051
1.00302
1.00146
1.00053
1.0001
0.999987
1
1.00004
1.00006
1.00006
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999999
1
0.999999
0.999999
1
0.999999
0.999998
1
0.999999
0.999998
1
1
0.999999
0.999996
1
1
0.999998
1
1
1
1
0.999997
1
0.999997
0.999996
0.999991
0.999984
0.999984
0.999974
0.999959
0.999925
0.999912
1.00003
1.00046
1.00135
1.00272
1.00439
1.00604
1.00733
1.00804
1.00804
1.00734
1.0061
1.00457
1.003
1.00166
1.00072
1.00022
1.00002
0.999997
1.00002
1.00004
1.00005
1.00004
1.00003
1.00002
1.00002
1.00001
1
1
1
1
0.999999
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999998
1
0.999999
0.999999
1
0.999997
1
0.999999
0.999999
1
1
1
0.999999
1
0.999996
1
0.999997
1
1
0.999999
0.999996
1
1
0.999998
0.999999
1
1
0.999997
0.999999
0.999996
0.999994
0.999989
0.999985
0.99998
0.99997
0.999947
0.999927
0.999979
1.00022
1.00076
1.00162
1.00267
1.0037
1.00451
1.00497
1.00498
1.00455
1.00377
1.00278
1.00176
1.00091
1.00035
1.00008
1.00001
1.00001
1.00002
1.00004
1.00003
1.00003
1.00002
1.00001
1.00001
1
1
1
1
0.999998
1
1
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999998
1
0.999999
1
1
1
0.999999
1
1
0.999997
1
0.999999
0.999997
1
0.999998
1
0.999999
1
0.999997
1
0.999998
1
1
1
0.999999
1
0.999999
0.999998
0.999998
0.999996
0.999991
0.999989
0.999984
0.99998
0.999965
0.999944
0.99996
1.00008
1.00039
1.00089
1.00151
1.00213
1.00264
1.00295
1.00301
1.0028
1.00234
1.0017
1.00104
1.00051
1.00018
1.00004
1
1.00001
1.00002
1.00002
1.00002
1.00002
1.00001
1
1
1
1
0.999999
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
1
0.999998
1
1
0.999999
1
1
0.999998
1
1
0.999999
1
1
0.999999
1
0.999997
1
1
0.999998
1
1
0.999999
0.999997
1
1
0.999998
0.999999
1
1
0.999996
0.999997
0.999993
0.999989
0.99999
0.999988
0.999981
0.999964
0.999956
1
1.00016
1.00042
1.00077
1.00113
1.00145
1.00169
1.0018
1.00174
1.00148
1.00107
1.00063
1.00028
1.00009
1.00002
1
1.00001
1.00002
1.00002
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999998
1
1
0.999998
1
1
1
1
1
0.999999
0.999999
1
0.999996
1
1
0.999997
1
1
1
1
1
0.999998
1
1
0.999998
0.999998
1
1
0.999996
0.999995
0.999995
0.999993
0.999994
0.999991
0.999978
0.999963
0.999964
1.00002
1.00014
1.00032
1.00052
1.00074
1.00094
1.00109
1.0011
1.00096
1.00068
1.00039
1.00017
1.00005
1
1
1
1.00001
1.00001
1.00001
1
1
1
1
0.999999
1
1
1
0.999999
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
0.999998
1
1
0.999998
1
0.999999
0.999998
1
0.999996
1
1
1
0.999998
1
1
1
1
1
0.999999
1
1
0.999999
0.999999
1
1
0.999997
0.999995
0.999996
0.999997
0.999998
0.999989
0.999969
0.999952
0.999953
0.999991
1.00007
1.00018
1.00034
1.00052
1.00066
1.00071
1.00063
1.00044
1.00024
1.0001
1.00002
0.999999
0.999997
1
1
1
1
1
0.999999
1
1
1
1
0.999998
1
1
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
0.999998
1
0.999999
1
0.999999
1
1
0.999998
1
1
0.999996
1
1
0.999999
1
1
1
1
1
0.999999
1
1
0.999999
0.999999
0.999999
0.999998
0.999998
0.999998
1
1
0.999998
0.999979
0.999951
0.999928
0.999918
0.99994
1.00001
1.00012
1.00028
1.00042
1.00047
1.00042
1.00029
1.00015
1.00006
1.00001
0.999999
0.999998
1
1
1
1
1
1
0.999999
1
1
0.999996
1
1
1
0.999998
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999999
1
1
0.999999
1
0.999999
1
1
0.999997
1
1
0.999999
1
0.999999
1
1
1
0.999999
1
1
0.999999
1
1
1
0.999998
0.999999
1
0.999999
1
1
1
1
0.999987
0.99996
0.999924
0.999897
0.999892
0.999931
1.00002
1.00015
1.00027
1.00032
1.00028
1.00019
1.0001
1.00004
1.00001
0.999998
0.999997
0.999998
1
1
1
1
1
1
0.999999
0.999996
1
1
0.999999
0.999999
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
0.999999
1
0.999999
0.999999
1
0.999998
1
1
0.999999
1
1
1
1
1
1
1
0.999999
1
0.999999
0.999998
0.999999
1
1
1.00001
1
0.999993
0.999969
0.999936
0.9999
0.999886
0.999909
0.999979
1.00008
1.00018
1.00021
1.00018
1.00012
1.00006
1.00002
1
0.999999
0.999997
0.999999
1
1
1
0.999999
1
1
0.999997
1
1
0.999998
0.999999
1
1
0.999999
0.999999
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
0.999999
1
0.999998
1
0.999999
1
1
1
0.999999
1
0.999998
1
1
0.999999
1
0.999999
1
0.999999
1
0.999999
1
0.999998
1
1
1
1
1
1
0.999999
0.999998
0.999999
1
1
1.00001
1.00001
0.999998
0.999979
0.999949
0.999919
0.9999
0.999915
0.999969
1.00005
1.00011
1.00014
1.00012
1.00008
1.00004
1.00001
1
0.999999
1
1
1
0.999999
1
1
1
1
1
1
0.999998
0.999999
1
1
0.999998
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999998
1
1
1
1
0.999999
1
0.999999
1
1
0.999999
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1.00001
1.00001
1
0.999987
0.999964
0.999938
0.999922
0.999931
0.999969
1.00003
1.00008
1.00009
1.00008
1.00005
1.00002
1.00001
1
1
1
0.999999
1
1
0.999999
1
1
1
1
0.999998
1
1
0.999999
0.999999
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
0.999998
1
0.999999
1
0.999999
1
1
1
0.999999
1
0.999999
1
1
1
1
0.999999
1
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
0.999992
0.999975
0.999957
0.999944
0.99995
0.999977
1.00002
1.00005
1.00006
1.00005
1.00003
1.00002
1.00001
1
0.999999
0.999999
1
0.999999
1
0.999999
1
0.999999
1
0.999998
0.999999
1
0.999999
0.999998
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999998
1
0.999999
1
1
0.999998
1
0.999999
1
1
1
1
1
1
1
0.999998
1
0.999999
1
1
1
0.999999
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
0.999996
0.999985
0.999972
0.999962
0.999966
0.999984
1.00001
1.00003
1.00004
1.00003
1.00002
1.00001
1
1
1
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
0.999999
1
1
1
0.999999
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
0.999999
1
1
0.999998
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999991
0.999983
0.999976
0.999978
0.99999
1.00001
1.00002
1.00002
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
0.999999
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999999
1
1
0.999998
1
0.999997
1
1
0.999999
0.999999
1
0.999999
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
0.999999
1
1
1
1
1
1
0.999995
0.99999
0.999986
0.999987
0.999994
1
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
0.999998
1
0.999999
0.999999
1
0.999998
1
0.999999
0.999999
1
1
0.999999
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999998
1
1
0.999999
1
1
0.999999
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999994
0.999992
0.999992
0.999997
1
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
0.999999
0.999999
1
1
1
1
1
1
0.999999
1
0.999999
1
1
0.999999
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999998
1
0.999999
0.999999
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999997
0.999996
0.999995
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
0.999999
1
1
0.999998
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
0.999999
1
1
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999998
0.999999
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
0.999999
1
0.999999
1
0.999999
1
1
0.999998
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
0.999999
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
1
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
)
;
boundaryField
{
emptyPatches_empt
{
type empty;
}
top_cyc
{
type cyclic;
}
bottom_cyc
{
type cyclic;
}
inlet_cyc
{
type cyclic;
}
outlet_cyc
{
type cyclic;
}
}
// ************************************************************************* //
| [
"tdg@debian"
] | tdg@debian |
|
ac9771662168d6e6daacf52d9bb26b2723f42b49 | 712709d9bb7ed33c0088e3adb325aeac9bed5cf9 | /search/search.cpp | a58cc0c60ddab3b7b3943a7c7a4c064f3473ee6d | [] | no_license | DelcasK/search | 09927a6bd7ede9d72e0872a0bf073a056baf1354 | 86077e3fbd762b4c4f25a07b2152a1b254a0cce2 | refs/heads/master | 2020-03-16T15:01:59.823757 | 2018-05-10T03:12:57 | 2018-05-10T03:12:57 | 132,724,300 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,681 | cpp | #include<iostream>
#include<stdlib.h>
//顺序查找法
int Search(int a[], int n, int k) //n为数组长度,k为待匹配的元素
{
for (int i = 0; i < n; i++)
{
if (i==k)
{
return 1;
}
}
return 0;
}
//折半查找法(二分法)前提条件是线性表是有序的
int Bsearch(int a[], int low,int high, int k)
{
int mid;
while (low<=high)
{
mid = (low + high) / 2;
if (a[mid]==k)
{
return 1;
}
else if(a[mid]>k)
{
high = mid - 1;
}
else
{
low = mid + 1;
}
}
return 0;
}
//折半查找可用二叉树表示
//分块查找(分块有序,块内可以无序)
typedef struct
{
int key; //存放键值
int low, high; //存放链值,指向首尾位置
}indexElem;
//二叉排序树(二分法的二叉树即是二叉排序树)
typedef struct BTNode
{
int key;
BTNode*lchild,*rchild;
}BTNode;
//查找关键字算法
BTNode* BSTsearch1(BTNode*bt, int key) //自制
{
BTNode*p = bt;
while (p)
{
if (p->key>key)
{
p = p->lchild;
}
else if (p->key<key)
{
p = p->rchild;
}
else
{
return p;
}
}
return NULL;
}
BTNode* BSTsearch(BTNode*bt, int key) //从根结点开始比较,小于key就递归右子树,大于递归左子树
{
if (bt)
{
if (bt->key==key)
{
return bt;
}
else if(bt->key<key)
{
return BSTsearch(bt->rchild, key);
}
else
{
return BSTsearch(bt->lchild, key);
}
}
else
{
return NULL;
}
}
//插入关键字算法
int BSTInsert(BTNode*&bt, int key) //bt在经历此方法之后,会改变,因此需用引用变量
{
if (bt==NULL)
{
bt = (BTNode*)malloc(sizeof(BTNode)); //当bt为空时,即为插入位置
bt->lchild = bt->rchild = NULL;
bt->key = key;
return 1;
}
else
{
if (bt->key<key)
{
BSTInsert(bt->rchild, key);
}
else if(bt->key>key)
{
BSTInsert(bt->lchild, key);
}
else
{
return 0; //结点已经存在,插入失败
}
}
}
//二叉排序树的构造方法(利用BSTIsert方法实现二叉排序树的构造)
void CreateBST(BTNode*&bt, int key[],int n)
{
bt = NULL;
for (int i = 0; i < n; i++)
{
BSTInsert(bt, key[i]);
}
}
//删除关键字算法
//3种情况:无子树,存在单侧子树,存在双侧子树
//平衡二叉树(平衡二叉树是二叉排序树,左右子树高度之差绝对值不超过1)
//B-树
//B+树
//散列表(hash表)
| [
"[email protected]"
] | |
5790f26294613da4f4aec108aa29413d541269c6 | 6e3b592de89cb3e7d594993c784e7059bdb2a9ae | /Source/AllProjects/CQCAppShell/Std/CQCAppShell_AppShellAdminServerBase.hpp | 07242f5e027375b76f244af2144e4000f5f60924 | [
"MIT"
] | permissive | jjzhang166/CQC | 9aae1b5ffeddde2c87fafc3bb4bd6e3c7a98a1c2 | 8933efb5d51b3c0cb43afe1220cdc86187389f93 | refs/heads/master | 2023-08-28T04:13:32.013199 | 2021-04-16T14:41:21 | 2021-04-16T14:41:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,154 | hpp | // ----------------------------------------------------------------------------
// FILE: CQCAppShell_AppShellAdminServerBase.hpp
// DATE: Fri, Feb 12 21:14:17 2021 -0500
// ID: 78E315ECD585BF17-A16F26D604EC670D
//
// This file was generated by the Charmed Quark CIDIDL compiler. Do not make
// changes by hand, because they will be lost if the file is regenerated.
// ----------------------------------------------------------------------------
#pragma once
#pragma CIDLIB_PACK(CIDLIBPACK)
class TCQCAppShellAdminServerBase : public TOrbServerBase
{
public :
// --------------------------------------------------------------------
// Public, static data
// --------------------------------------------------------------------
static const TString strInterfaceId;
static const TString strScope;
// --------------------------------------------------------------------
// Constructors and destructor
// --------------------------------------------------------------------
TCQCAppShellAdminServerBase(const TCQCAppShellAdminServerBase&) = delete;
TCQCAppShellAdminServerBase(TCQCAppShellAdminServerBase&&) = delete;
~TCQCAppShellAdminServerBase();
// --------------------------------------------------------------------
// Public operators
// --------------------------------------------------------------------
TCQCAppShellAdminServerBase& operator=(const TCQCAppShellAdminServerBase&) = delete;
TCQCAppShellAdminServerBase& operator=(TCQCAppShellAdminServerBase&&) = delete;
// --------------------------------------------------------------------
// Public, pure virtual methods
// --------------------------------------------------------------------
virtual tCIDLib::TBoolean bQueryNewMsgs
(
CIOP tCIDLib::TCard4& c4MsgIndex
, TVector<TString>& colMsgs
, const tCIDLib::TBoolean bAddNewLines
) = 0;
virtual tCIDLib::TCard4 c4QueryApps
(
COP TVector<TKeyValuePair>& colApps
) = 0;
virtual tCIDLib::TVoid CycleApps() = 0;
protected :
// --------------------------------------------------------------------
// Hidden constructors
// --------------------------------------------------------------------
TCQCAppShellAdminServerBase();
TCQCAppShellAdminServerBase(const TOrbObjId& ooidThis);
// --------------------------------------------------------------------
// Protected, inherited methods
// --------------------------------------------------------------------
tCIDLib::TVoid Dispatch
(
const TString& strMethodName
, TOrbCmd& orbcToDispatch
) override;
private :
// --------------------------------------------------------------------
// Magic macros
// --------------------------------------------------------------------
RTTIDefs(TCQCAppShellAdminServerBase,TOrbServerBase)
};
#pragma CIDLIB_POPPACK
| [
"[email protected]"
] | |
6a9c6c276c95dec1993b7ff51541cfa21e2c0107 | 8a2f4a3a4f497e1415506b5dd588881ad5c8ada3 | /Other/KU01/62/Online/Qual/3rd/electric.cpp | 60cb8fb57e87bb74d54fc298a731119ae5a63bf6 | [] | no_license | MasterIceZ/CP-COM | 34db51e6d8aeecf2917eefc6a58fa0dbe8147d73 | 8121aace39f186e548cc99f2f73960994711c17c | refs/heads/master | 2022-12-16T01:41:00.930500 | 2021-05-04T12:47:25 | 2021-05-04T12:47:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 296 | cpp | #include<bits/stdc++.h>
using namespace std;
int main() {
int n,l,mn=2e9;
scanf("%d %d",&n,&l);
while(n--) {
int od,nw;
scanf("%d",&od);
int mx = od;
for(int i=l-1; i--;) {
scanf("%d",&nw);
mx = max(mx,nw-od);
od = nw;
}
mn = min(mn,mx);
}
printf("%d",mn);
return 0;
}
| [
"[email protected]"
] | |
773ff63fbd29e885a71c8e1162c597a80c1cd355 | f9b362cadc1c3f577c71ca3a325b35972ccf0811 | /llvm/include/llvm/Transforms/MoiseevPass/MoiseevPass.h | 0aecac008f7b096568fdd2c7dca7a7ecd0bb7f92 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | askomyagin/llvm-project | 6f42e0b7d20c621dea3c922a6c8aa759e51cff34 | 2c7f23e602d208c32ff3e09bad26d2cfc6efc9ce | refs/heads/main | 2023-04-14T05:05:49.014776 | 2021-04-30T06:58:48 | 2021-04-30T06:58:48 | 344,217,103 | 0 | 0 | null | 2021-03-03T17:59:46 | 2021-03-03T17:59:46 | null | UTF-8 | C++ | false | false | 347 | h | #pragma once
#include "llvm/IR/PassManager.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/Analysis/LoopInfo.h"
namespace llvm {
class MoiseevPass : public PassInfoMixin<MoiseevPass> {
public:
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
static bool isRequired() {return true;}
};
} | [
"[email protected]"
] | |
6a00a1ee64cd1a6eac6932b5738070863aaa222b | ce71015cd94b01dc92cb10f1bb3515b2b2ca3331 | /src/ui/component/control/ImageFromLibrary.cpp | ea875ddbf15d7c2cc087ee4cd9bb0fa5b2359b15 | [
"Apache-2.0"
] | permissive | AkbarTheGreat/cszb-scoreboard | 8d18574a063ab1d90658643788bc1fa9389abbd9 | cf29ce37044af1a09173e3506c7c593257c995a5 | refs/heads/master | 2023-09-01T13:40:44.871709 | 2023-07-29T19:08:31 | 2023-07-29T19:08:31 | 226,004,533 | 3 | 1 | Apache-2.0 | 2021-08-30T02:12:58 | 2019-12-05T03:04:29 | C++ | UTF-8 | C++ | false | false | 8,269 | cpp | /*
ui/component/control/ImageFromLibrary.cpp: Handles loading images from a
pre-populated library of tagged images on disk and presenting them to one or
more screens.
Copyright 2019-2023 Tracy Beck
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "ui/component/control/ImageFromLibrary.h"
#include <algorithm> // for max
#include <optional> // for optional
#include <string> // for string
#include "ScoreboardCommon.h" // for DEFAULT_BORDER_SIZE
#include "config/ImageLibrary.h" // for ImageLibrary, ImageSe...
#include "config/swx/defs.h" // for operator|, wxDirection
#include "config/swx/event.h" // for wxEVT_COMMAND_BUTTON_...
#include "config/swx/image.h" // for Image
#include "ui/component/control/TeamSelector.h" // for TeamSelector
#include "ui/dialog/EditImageLibraryDialog.h" // for EditImageLibraryDialog
#include "util/FilesystemPath.h" // for FilesystemPath
#include "util/Singleton.h" // for Singleton
namespace cszb_scoreboard {
const int BORDER_SIZE = DEFAULT_BORDER_SIZE;
const int NUM_PREVIEWS = 5;
const int PREVIEW_WIDTH = 160;
const int PREVIEW_HEIGHT = 90;
auto ImageFromLibrary::Create(swx::Panel *wx)
-> std::unique_ptr<ImageFromLibrary> {
auto library = std::make_unique<ImageFromLibrary>(wx);
library->initializeWidgets();
library->updatePreview();
return library;
}
void ImageFromLibrary::createControls(Panel *control_panel) {
ScreenImageController::createControls(control_panel);
main_panel = control_panel->panel();
image_preview_panel = control_panel->panel();
search_panel = main_panel->panel();
// Reparent our screen_selection to position it into inner_panel, for layout.
screen_selection->setParent(main_panel.get());
left_button = main_panel->button("<");
right_button = main_panel->button(">");
configure_button = control_panel->button("Edit Library");
search_box = search_panel->searchBox("Find by tag/name");
tag_list_label = search_panel->label("");
image_previews.reserve(NUM_PREVIEWS);
image_names.reserve(NUM_PREVIEWS);
for (int i = 0; i < NUM_PREVIEWS; i++) {
image_previews.emplace_back(std::make_unique<ImagePreview>(
image_preview_panel->childPanel(PREVIEW_WIDTH, PREVIEW_HEIGHT)));
image_names.emplace_back(image_preview_panel->label(" "));
}
setImages("");
positionWidgets(control_panel);
bindEvents();
}
void ImageFromLibrary::positionWidgets(Panel *control_panel) {
search_panel->addWidget(*search_box, 0, 0, DEFAULT_BORDER_SIZE, wxALL);
search_panel->addWidget(*tag_list_label, 1, 0, DEFAULT_BORDER_SIZE, wxALL);
main_panel->addWidgetWithSpan(*search_panel, 0, 0, 1, 2);
main_panel->addWidget(*screen_selection, 0, 2);
main_panel->addWidget(*left_button, 1, 0, DEFAULT_BORDER_SIZE,
wxALL | wxALIGN_LEFT);
main_panel->addWidget(*right_button, 1, 1, DEFAULT_BORDER_SIZE,
wxALL | wxALIGN_LEFT);
control_panel->addWidget(*current_image_label, 0, 0);
control_panel->addWidget(*main_panel, 1, 0);
control_panel->addWidget(*image_preview_panel, 2, 0);
control_panel->addWidget(*configure_button, 3, 0, DEFAULT_BORDER_SIZE, wxALL);
int col = 0;
for (const auto &preview : image_previews) {
image_preview_panel->addWidget(*preview, 0, col++);
}
col = 0;
for (const auto &name : image_names) {
image_preview_panel->addWidget(*name, 1, col++);
}
search_panel->runSizer();
main_panel->runSizer();
image_preview_panel->runSizer();
control_panel->runSizer();
}
void ImageFromLibrary::bindEvents() {
configure_button->bind(
wxEVT_COMMAND_BUTTON_CLICKED,
[this](wxCommandEvent &event) -> void { this->editButton(); });
search_box->bind(wxEVT_TEXT,
[this](wxCommandEvent &event) -> void { this->doSearch(); });
left_button->bind(
wxEVT_COMMAND_BUTTON_CLICKED,
[this](wxCommandEvent &event) -> void { this->pageChange(false); });
right_button->bind(
wxEVT_COMMAND_BUTTON_CLICKED,
[this](wxCommandEvent &event) -> void { this->pageChange(true); });
for (const auto &preview : image_previews) {
// Capture the unique_ptr to a referencing pointer, for the lambda capture.
auto *arg = preview.get();
preview->bind(wxEVT_LEFT_DOWN, [this, arg](wxMouseEvent &event) -> void {
this->selectImage(arg);
});
}
}
void ImageFromLibrary::doSearch() { setImages(search_box->value()); }
void ImageFromLibrary::editButton() {
edit_dialog = std::make_unique<EditImageLibraryDialog>(
childDialog("Edit Image Library"), this);
edit_dialog->show();
}
void ImageFromLibrary::onEditDialogClose() {
edit_dialog.reset();
// Sometimes closing out this menu has given focus to a totally different
// window for focus for me in testing. That's really obnoxious, because it
// can have the effect of sending the main window to the back of another
// window by virtue of exiting a dialog. Also update the images shown now that
// it's exited.
setImages(search_box->value());
focus();
}
void ImageFromLibrary::pageChange(bool forward) {
if (forward) {
setImages(search_box->value(), current_image_page + 1);
} else {
if (current_image_page > 0) {
setImages(search_box->value(), current_image_page - 1);
}
}
}
// selectImage uses a pointer instead of a const ref due to the delayed nature
// of it's use in a bind. If you bind the lambda with a const ref, you wind up
// with an object that is potentially stuck in initialization-time semantics.
void ImageFromLibrary::selectImage(ImagePreview *image) {
std::optional<FilesystemPath> filename = image->getFilename();
// do nothing if someone clicked a gray box
if (!filename) {
return;
}
if (screen_selection->allSelected()) {
all_screen_image = Image(*filename);
all_screen_image_name = singleton->imageLibrary()->name(*filename);
current_image_label->set(all_screen_image_name);
} else if (screen_selection->awaySelected()) {
away_screen_image = Image(*filename);
away_screen_image_name = singleton->imageLibrary()->name(*filename);
current_image_label->set(away_screen_image_name);
} else {
home_screen_image = Image(*filename);
home_screen_image_name = singleton->imageLibrary()->name(*filename);
current_image_label->set(home_screen_image_name);
}
control_panel->update();
updatePreview();
}
void ImageFromLibrary::setImages(const std::string &search,
unsigned int page_number) {
current_image_page = page_number;
ImageSearchResults results =
singleton->imageLibrary()->search(std::string(search));
if (search.empty()) {
tag_list_label->set("");
} else {
std::string tag_string;
bool first = true;
for (const auto &tag : results.matchedTags()) {
if (!first) {
tag_string += ", ";
}
tag_string += tag;
first = false;
}
tag_list_label->set(tag_string);
}
std::vector<FilesystemPath> files = results.filenames();
if (files.empty()) {
current_image_page = 0;
return;
}
int start_num = NUM_PREVIEWS * page_number;
if (start_num >= files.size()) {
return setImages(search, page_number - 1);
}
int stop_num = start_num + NUM_PREVIEWS;
if (stop_num >= files.size()) {
stop_num = files.size();
}
for (int i = start_num; i < stop_num; i++) {
image_previews[i - start_num]->setImage(files[i]);
image_names[i - start_num]->set(singleton->imageLibrary()->name(files[i]));
}
for (int i = stop_num - start_num; i < NUM_PREVIEWS; i++) {
image_previews[i]->clearImage();
image_names[i]->set("");
}
}
} // namespace cszb_scoreboard
| [
"[email protected]"
] | |
31ea6fd8e97e00e7a2dedb36357b42cff688898c | f488f38e7d64ca808c18414c4a40c87d4d2e4e3d | /language-detection/tid-language-detector/src/libs/det_id/Bigrama.h | 6448febb0f3f2aac5172513daa305433d0acc5e3 | [] | no_license | maite828/Text_Mining | c73dcb78cb422a57feb4317ba623b1c7b849fec7 | 8a1b98722e11d02c107ca84efee55fb15a201cde | refs/heads/master | 2021-06-18T19:17:57.841630 | 2017-06-30T20:54:14 | 2017-06-30T20:54:14 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 3,602 | h | // Fichero : Bigrama.h
// Descripción : Interfaz del modelo de bigramas
// Fecha : 14 Dic 1999
#ifndef Bigrama_h
#define Bigrama_h
#ifndef WIN32
#include <sys/mman.h>
#else
#include <windows.h>
#endif
#include <fstream>
#include <math.h>
// Clase : Bigrama
// Descripción: Es una clase que representa un modelo de probabilidad de
// bigramas en distintos idiomas, así como un conjunto de
// operaciones con necesarias para su manejo y para la detección
// de idioma basado en bigramas.
//
// El modelo de bigramas admite dos representaciones externas,
// una en ascii, y otra en binario. El formato ascii se usa sólo
// en el entrenamiento de los modelos de bigramas. El formato que
// se utiliza posteriormente en la detección de idioma es el
// formato binario, que va incluido en el modelo de idioma, junto
// con otras tablas empleadas en la detección de idioma.
//
// El formato ascii es como sigue:
// Línea 1: "<MODELO DE IDIOMA V2.000000>"
// Línea 2: Un conjunto de números enteros organizado como una
// matriz cuadrada que da el número de apariciones de
// cada bigrama en el entrenamiento. Estos números están
// en ascii.
//
// El formato binario no es más que una matriz cuadrada de
// floats obtenidos como el log10 de la probabilidad de aparición
// de cada uno de los bigramas en el idioma.
// Esta es también la representación interna que usa esta clase,
// un array bidimensional de floats.
class Bigrama
{
// Número de códigos de carácter válidos devueltos por la función
// Bigrama::codifica_letra. Van de 0 a 58.
#define NUMCOD_BIG 59
// Versión del modelo de bigramas
#define VERSION_BIG 2.0
public:
// Constructores y Destructores
#ifdef WIN32
Bigrama(LPVOID inicio_big);
#else
Bigrama(void * inicio_big);
#endif
~Bigrama();
// Función para convertir del fomato ascii al binario
static int Convierte(std::ifstream &fbig, std::ofstream &fbinario);
// Función para puntuar una palabra
// Esta función devuelve la suma de los logprob de aparición de cada uno
// de los bigramas que componene la palabra. - Se usaba antes del 17 Ene 2000
double logprob_pal(const char *pal);
// Función para puntuar una palabra
// Esta función devuelve la probabilidad media de aparición de los bigramas
// que componene la palabra. - Se usa desde 17 Ene 2000
double prob_pal(const char *pal);
private:
// Dirección donde está el modelo de bigramas.
#ifdef WIN32
LPVOID dir_big;
#else
void * dir_big;
#endif
public :
// Funciones Estáticas
// Función para codificación de caracteres.
static unsigned char codifica_letra(unsigned char ch);
// Función para cargar un modelo de idioma en representación ASCII
static int carga_mod_idioma(std::ifstream &fbig, long *mod_idioma);
static int carga_mod_idioma(char *filename, long *mod_idioma);
// Función para grabar un modelo de idioma en representación ASCII
static int graba_mod_idioma(long *mod_idioma, char *filename);
// Función para resetear un modelo de idioma.
static void reset_mod_idioma(long *mod_idioma);
// Función para pasar de la versión ascii del modelo de bigramas a la
// binaria en memoria.
static void obten_logprob_mod_idioma(long *mod_idioma,
float *logprob_mod_idioma);
};
#endif // Bigrama_h
| [
"[email protected]"
] | |
657cac6bee079f44f226cd9f70fd7b5b17cc417e | bb62a58bcec52dc0ffab1098ac69129abfa061ae | /main/PISupervisor/common/src/PCSecurity.cpp | 59c258500eabb7e3135eb0d6a8f5bf771ff4643c | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancode-free-unknown",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | lovenamu/endpointdlp | 30adc0e6a522b8b5b4c8e6b2061eff6371cc2d62 | 14e5481e22fb68d3a4d0d2d1716d72e448f49f3c | refs/heads/master | 2022-12-23T22:30:41.007950 | 2020-09-30T12:14:55 | 2020-09-30T12:14:55 | 283,505,992 | 0 | 0 | Apache-2.0 | 2020-07-29T13:26:08 | 2020-07-29T13:26:07 | null | UTF-8 | C++ | false | false | 4,031 | cpp | #include <string>
#include <vector>
#include "PCSecurity.h"
#include "ShareFolderCtrl.h"
#include <unistd.h>
#include <pthread.h>
#include "LogWriter.h"
CPCSecurity::CPCSecurity() : m_pSFThread(NULL), m_bThreadExit(true)
{
pthread_mutex_init( &m_SFMutex, NULL );
}
CPCSecurity::~CPCSecurity()
{
m_bThreadExit = false;
pthread_mutex_destroy( &m_SFMutex );
}
bool CPCSecurity::Load(CShareFolder& cSFolder)
{
LoadPCSecurityInfo( cSFolder );
ApplyShareFolder();
return true;
}
long CPCSecurity::LoadPCSecurityInfo(CShareFolder& cSFolder)
{
char czModulePath[MAX_PATH];
memset( czModulePath, 0, sizeof(czModulePath) );
if(true == cSFolder.getBlockAll())
{
m_SFCtrl.GetSFPolicy().setBlockAll( true );
m_SFCtrl.GetSFPolicy().setBlockEveryOne( true );
m_SFCtrl.GetSFPolicy().setBlockDefault( true );
}
else
{
m_SFCtrl.GetSFPolicy().setBlockAll( false );
if(true == cSFolder.getBlockEveryOne())
{
m_SFCtrl.GetSFPolicy().setBlockEveryOne( true );
}
else
{
m_SFCtrl.GetSFPolicy().setBlockEveryOne( false );
}
if(true == cSFolder.getBlockDefault())
{
m_SFCtrl.GetSFPolicy().setBlockDefault( true );
}
else
{
m_SFCtrl.GetSFPolicy().setBlockDefault( false );
}
}
printf( "[PISupervisor][%s] BlockAll=%d, BlockEveryone=%d, BlockDefault=%d \n",
__FUNCTION__,
m_SFCtrl.GetSFPolicy().getBlockAll(), m_SFCtrl.GetSFPolicy().getBlockEveryOne(), m_SFCtrl.GetSFPolicy().getBlockDefault() );
m_SFCtrl.GetSFPolicy().setCheckInterval( cSFolder.getCheckInterval() );
return 0;
}
void CPCSecurity::ApplyShareFolder()
{
// Lock
pthread_mutex_lock( &m_SFMutex );
m_SFCtrl.ShareFolderEnum();
if(true == m_SFCtrl.GetSFPolicy().getBlockDefault())
{
m_SFCtrl.ShareFolderDisableDefault();
}
if(true == m_SFCtrl.GetSFPolicy().getBlockEveryOne())
{
m_SFCtrl.ShareFolderDisableEveryOne();
}
if(true == m_SFCtrl.GetSFPolicy().getBlockAll())
{
m_SFCtrl.ShareFolderDisableAll();
}
pthread_mutex_unlock( &m_SFMutex );
// unlock();
}
bool CPCSecurity::PCSecurity_SFThread_Start()
{
int nReturn=0;
if(!m_pSFThread && true == GetSFPolicy().IsExistPolicy())
{
nReturn = pthread_create( &m_pSFThread, NULL, CPCSecurity::PCSecuritySFolderThreadProc, (void*)this );
if(nReturn < 0)
{
return false;
}
m_bThreadExit = false;
INFO_LOG1("PCSecuritySFolderThreadProc Request-Start.");
return true;
}
return false;
}
bool CPCSecurity::PCSecurity_SFThread_Stop()
{
if(!m_pSFThread) return false;
pthread_cancel( m_pSFThread );
m_pSFThread = NULL;
m_bThreadExit = true;
INFO_LOG1("PCSecuritySFolderThreadProc Request-Stop.");
return true;
}
void* CPCSecurity::PCSecuritySFolderThreadProc(void* pParam)
{
CPCSecurity* pPCSecurity = NULL;
int nIntervalTime = 60;
pPCSecurity = (CPCSecurity*)pParam;
if(!pPCSecurity)
{
return NULL;
}
if(pPCSecurity->GetSFPolicy().getCheckInterval() > 120 || pPCSecurity->GetSFPolicy().getCheckInterval() < 0)
{
nIntervalTime = 60;
}
else
{
nIntervalTime = pPCSecurity->GetSFPolicy().getCheckInterval();
}
do
{
if(pPCSecurity->GetSFPolicy().IsExistPolicy())
{
pPCSecurity->ApplyShareFolder();
}
sleep(5);
} while(false == pPCSecurity->m_bThreadExit);
// sleep( nIntervalTime );
pthread_exit( (void*)1);
INFO_LOG1("PCSecuritySFolderThreadProc Stopped.");
return ((void*)1);
}
| [
"[email protected]"
] | |
61c90cfb72a910d59a1c0ce0cbcdbba361fbfc90 | a8b943c4132eadda8838149ba6d36766cb7b6f3d | /Source/Algorithm/Sort/Shell-Sort.cpp | 136e080236b96084fbf94237b7dbcdfc5fd04c36 | [] | no_license | KingNNT/C-CPP | 7f27be0edc5cc1ce99efdac1acde6d8c5e718ea3 | 165f5530c8e4c081d05cbda2ada9255fddc7f17a | refs/heads/master | 2023-05-05T18:34:35.195042 | 2021-05-17T02:17:38 | 2021-05-17T02:17:38 | 258,146,663 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,267 | cpp | /* Code by KingNNT */
#include <bits/stdc++.h>
#define pathio "/mnt/Learning And Working/Code/C-Extend/GNU-Compiler/In-Out/"
#define lfi pathio "input.txt", "r", stdin
#define lfo pathio "output.txt", "w", stdout
using namespace std;
int shellSort(int *arr, int n)
{
for (int gap = n / 2; gap > 0; gap /= 2)
{
for (int i = gap; i < n; i += 1)
{
int temp = arr[i];
int j;
for (j = i; j >= gap && arr[j - gap] > temp; j -= gap)
arr[j] = arr[j - gap];
arr[j] = temp;
}
}
return 0;
}
void enterArray(int *arr, int n)
{
for (int i = 0; i < n; i++)
{
cin >> arr[i];
}
}
void printArray(int *arr, int n)
{
for (int i = 0; i < n; i++)
cout << arr[i] << " ";
cout << endl;
}
int main()
{
freopen(lfi);
freopen(lfo);
// ios_base ::sync_with_stdio(0);
cin.tie(0);
cout << "Nhap so phan tu cua mang n = ";
int n;
cin >> n;
int *arr = new int[n];
enterArray(arr, n);
cout << endl
<< "Before Sort" << endl;
printArray(arr, n);
shellSort(arr, n);
cout << endl
<< "After Sort" << endl;
printArray(arr, n);
fclose(stdin);
fclose(stdout);
return 0;
} | [
"[email protected]"
] | |
11baaf680c4d3f20103e1b8fc855670d9037ca50 | 891efd252b2b92a41b979ad023e71d8d03d01eb1 | /hackerrank/array-triplets.cpp | 8353abe8fc652beeaabc8df63ea295dc607a61a3 | [] | no_license | FR4NKESTI3N/competitive | 76da91b3280bb8390b0f065c674c169fd848c3c7 | bed91ce80b66e12a1cba773cad4c490aa474c9fc | refs/heads/master | 2020-06-26T02:32:02.319518 | 2018-11-25T22:24:27 | 2018-11-25T22:24:27 | 74,604,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,073 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <bitset>
#include <set>
using namespace std;
long long subsetSum(vector<int> ar, int subset){
int n = ar.size();
long long S = 0;
for(int i = 0; i < n; ++i){
if(subset & (1 << i))
S += ar[i];
}
return S;
}
int ones(int x){
int count = 0;
for(int i = 0; (1 << i) <= x; ++i)
if(x && (1 << i))
++count;
return count;
}
int main(){
int n;
int count = 0;
cin >> n;
vector<int> ar(n, 0);
for(int i = 0; i < n; ++i)
cin >> ar[i];
sort(ar.begin(), ar.end());
set<set<int>> encountered_sets;
set<int> sets;
long long target = subsetSum(ar, (1 << n) - 1);
// cout << target << '\n';
if(target % 3){
cout << "0\n";
return 0;
}
target /= 3;
for(int subset_1 = 1; subset_1 < (1 << n); ++subset_1){
if(subsetSum(ar, subset_1) != target)
continue;
for(int subset_2 = subset_1 + 1; subset_2 < (1 << n); ++subset_2){
if((subset_2 & subset_1) == 0 && subsetSum(ar, subset_2) == target){
set<int> S({subset_1, subset_2, (((1 << n) - 1) ^ subset_1 ^ subset_2)});
if(encountered_sets.find(S) == encountered_sets.end()){
encountered_sets.insert(S);
}
}
}
}
cout << encountered_sets.size() * 6 << '\n';
// int N = n;
// for(int subset = 1; subset < (1 << n); ++subset)
// if(subsetSum(ar, subset) == target)
// sets.insert(subset);
// vector<int> setss;
// for(auto x : sets)
// setss.push_back(x);
// n = setss.size();
// for(int i = 0; i < n; ++i){
// for(int j = i + 1; j < n; ++j)
// for(int k = j + 1; k < n; ++k){
// if(((setss[i] & setss[j] & setss[k]) == 0) && ((setss[i] | setss[j] | setss[k]) == (1 << N) - 1))
// count += 6;
// }
// }
// cout << sets.size() << ' ' <<count <<'\n';
return 0;
}
| [
"[email protected]"
] | |
1cffcf3c97851f796d845d7ce051b1f154c513af | 959a1bbaef979183ca0aacf03b748e87aa842197 | /devel/include/mav_msgs/MotorSpeed.h | f24bd9a08cf6082c1f3a4ae98ea5cd1b3dbb88bf | [] | no_license | rishabhgks/quad_ws | 723a95ccc825ddb13f2e27fb9e220cc7b03db6db | 19f7a57a585ca9799b3fd11f5b80d894c5b88167 | refs/heads/master | 2022-11-10T13:44:23.056196 | 2020-06-19T14:32:17 | 2020-06-19T14:32:17 | 250,417,696 | 0 | 0 | null | 2020-06-19T14:32:18 | 2020-03-27T02:03:07 | Makefile | UTF-8 | C++ | false | false | 6,173 | h | // Generated by gencpp from file mav_msgs/MotorSpeed.msg
// DO NOT EDIT!
#ifndef MAV_MSGS_MESSAGE_MOTORSPEED_H
#define MAV_MSGS_MESSAGE_MOTORSPEED_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 <std_msgs/Header.h>
namespace mav_msgs
{
template <class ContainerAllocator>
struct MotorSpeed_
{
typedef MotorSpeed_<ContainerAllocator> Type;
MotorSpeed_()
: header()
, motor_speed() {
}
MotorSpeed_(const ContainerAllocator& _alloc)
: header(_alloc)
, motor_speed(_alloc) {
(void)_alloc;
}
typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
_header_type header;
typedef std::vector<double, typename ContainerAllocator::template rebind<double>::other > _motor_speed_type;
_motor_speed_type motor_speed;
typedef boost::shared_ptr< ::mav_msgs::MotorSpeed_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::mav_msgs::MotorSpeed_<ContainerAllocator> const> ConstPtr;
}; // struct MotorSpeed_
typedef ::mav_msgs::MotorSpeed_<std::allocator<void> > MotorSpeed;
typedef boost::shared_ptr< ::mav_msgs::MotorSpeed > MotorSpeedPtr;
typedef boost::shared_ptr< ::mav_msgs::MotorSpeed const> MotorSpeedConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::mav_msgs::MotorSpeed_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::mav_msgs::MotorSpeed_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace mav_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True}
// {'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'mav_msgs': ['/home/rishabh/quad_ws/src/mav_comm/mav_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< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::mav_msgs::MotorSpeed_<ContainerAllocator> const>
: FalseType
{ };
template <class ContainerAllocator>
struct IsMessage< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::mav_msgs::MotorSpeed_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::mav_msgs::MotorSpeed_<ContainerAllocator> const>
: TrueType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
{
static const char* value()
{
return "061082200f78e4ff571a825255200c0d";
}
static const char* value(const ::mav_msgs::MotorSpeed_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0x061082200f78e4ffULL;
static const uint64_t static_value2 = 0x571a825255200c0dULL;
};
template<class ContainerAllocator>
struct DataType< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
{
static const char* value()
{
return "mav_msgs/MotorSpeed";
}
static const char* value(const ::mav_msgs::MotorSpeed_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
{
static const char* value()
{
return "Header header\n\
\n\
float64[] motor_speed # motor speed [rad/s]\n\
\n\
================================================================================\n\
MSG: std_msgs/Header\n\
# Standard metadata for higher-level stamped data types.\n\
# This is generally used to communicate timestamped data \n\
# in a particular coordinate frame.\n\
# \n\
# sequence ID: consecutively increasing ID \n\
uint32 seq\n\
#Two-integer timestamp that is expressed as:\n\
# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\
# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\
# time-handling sugar is provided by the client library\n\
time stamp\n\
#Frame this data is associated with\n\
# 0: no frame\n\
# 1: global frame\n\
string frame_id\n\
";
}
static const char* value(const ::mav_msgs::MotorSpeed_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.header);
stream.next(m.motor_speed);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct MotorSpeed_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::mav_msgs::MotorSpeed_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::mav_msgs::MotorSpeed_<ContainerAllocator>& v)
{
s << indent << "header: ";
s << std::endl;
Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
s << indent << "motor_speed[]" << std::endl;
for (size_t i = 0; i < v.motor_speed.size(); ++i)
{
s << indent << " motor_speed[" << i << "]: ";
Printer<double>::stream(s, indent + " ", v.motor_speed[i]);
}
}
};
} // namespace message_operations
} // namespace ros
#endif // MAV_MSGS_MESSAGE_MOTORSPEED_H
| [
"[email protected]"
] | |
e842c3aca6d6891d7c7fc5a5cc859f2cb208d3ab | 956406f27e6a95d7eae5d4bb056748ccd42be0ff | /source/core/entity/EntityManager.cpp | 6b101c4ac392743879e310d01f64f0b9f41aada2 | [] | no_license | exnotime/NaiveEngine | b824395a255a38f08dcaa0da35b3de769163a520 | 5f8b86b346845755ffcb4973d06aba1ad2aa20f6 | refs/heads/master | 2021-05-31T13:31:36.486591 | 2015-11-21T22:22:22 | 2015-11-21T22:22:22 | 44,030,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 715 | cpp | #include "EntityManager.h"
EntityManager::EntityManager(){}
EntityManager::~EntityManager(){}
EntityManager& EntityManager::GetInstance() {
static EntityManager instance;
return instance;
}
Entity& EntityManager::CreateEntity() {
Entity e;
e.ComponentBitfield = 0;
e.Components.reserve(ENTITY_DEFAULT_COMPONENT_COUNT);
e.UID = m_Counter++;
m_Entities.push_back(e);
return m_Entities.back();
}
void EntityManager::RemoveEntity(Entity& entity) {
//potentially slow
for (std::vector<Entity>::iterator it = m_Entities.begin(); it != m_Entities.end(); it++) {
if (it._Ptr->UID = entity.UID) {
m_Entities.erase(it);
}
}
}
std::vector<Entity>& EntityManager::GetEntityList() {
return m_Entities;
} | [
"[email protected]"
] | |
04ebb64039f24cb3a09fd13fd52bd760f210206e | 846a7668ac964632bdb6db639ab381be11c13b77 | /android/test/vts/drivers/shell/ShellDriver.h | 5d955159d459c3928c33851a35974de50dfa278a | [] | no_license | BPI-SINOVOIP/BPI-A64-Android8 | f2900965e96fd6f2a28ced68af668a858b15ebe1 | 744c72c133b9bf5d2e9efe0ab33e01e6e51d5743 | refs/heads/master | 2023-05-21T08:02:23.364495 | 2020-07-15T11:27:51 | 2020-07-15T11:27:51 | 143,945,191 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,224 | h | /*
* Copyright 2016 The Android Open Source Project
*
* 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 __VTS_SHELL_DRIVER_H_
#define __VTS_SHELL_DRIVER_H_
#include <iostream>
#include <string>
#include <VtsDriverCommUtil.h>
#include "test/vts/proto/VtsDriverControlMessage.pb.h"
using namespace std;
namespace android {
namespace vts {
struct CommandResult {
string stdout;
string stderr;
int exit_code;
};
class VtsShellDriver {
public:
VtsShellDriver() { socket_address_.clear(); }
explicit VtsShellDriver(const char* socket_address)
: socket_address_(socket_address) {}
~VtsShellDriver() {
cout << __func__ << endl;
if (!this->socket_address_.empty()) {
Close();
}
}
// closes the sockets.
int Close();
// start shell driver server on unix socket
int StartListen();
private:
// socket address
string socket_address_;
/*
* execute a given shell command and return the output file descriptor
* Please remember to call close_output after usage.
*/
int ExecShellCommand(const string& command,
VtsDriverControlResponseMessage* respond_message);
/*
* Handles a socket connection. Will execute a received shell command
* and send back the output text.
*/
int HandleShellCommandConnection(int connection_fd);
/*
* Execute a shell command using popen and return a CommandResult object.
*/
CommandResult* ExecShellCommandPopen(const string& command);
/*
* Execute a shell command using nohup and return a CommandResult object.
*/
CommandResult* ExecShellCommandNohup(const string& command);
};
} // namespace vts
} // namespace android
#endif // __VTS_SHELL_DRIVER_H_
| [
"[email protected]"
] | |
745bdff3a86f9412888d7d44b9b5e21daf96c561 | 9251b0a7cd4223fc1b53fef1bb5ec0c2ad01a755 | /include/Algo/Geometry/distances.hpp | c7f4a700cec3af8f4185139bacff95835d19d528 | [] | no_license | Peiffert/CGoGN | ec90eed5223c3cafb2b282bf180e6c3211d4877e | 58f113813e432493f4d49925d77ae929688ac540 | refs/heads/master | 2020-12-30T22:10:02.023782 | 2014-12-03T19:34:21 | 2014-12-03T19:34:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,505 | hpp | /*******************************************************************************
* CGoGN: Combinatorial and Geometric modeling with Generic N-dimensional Maps *
* version 0.1 *
* Copyright (C) 2009-2012, IGG Team, LSIIT, University of Strasbourg *
* *
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by the *
* Free Software Foundation; either version 2.1 of the License, or (at your *
* option) any later version. *
* *
* This library 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 Lesser General Public License *
* for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
* *
* Web site: http://cgogn.unistra.fr/ *
* Contact information: [email protected] *
* *
*******************************************************************************/
#include "Geometry/distances.h"
namespace CGoGN
{
namespace Algo
{
namespace Geometry
{
template <typename PFP>
typename PFP::REAL squaredDistancePoint2FacePlane(typename PFP::MAP& map, Face f, const VertexAttribute<typename PFP::VEC3, typename PFP::MAP>& position, const VEC3& P)
{
Vertex v(f.dart);
const typename PFP::VEC3& A = position[v];
v.dart = map.phi1(v.dart);
const typename PFP::VEC3& B = position[v];
v.dart = map.phi1(v.dart);
const typename PFP::VEC3& C = position[v];
return Geom::squaredDistancePoint2TrianglePlane(P, A, B, C);
}
template <typename PFP>
typename PFP::REAL squaredDistancePoint2Face(typename PFP::MAP& map, Face f, const VertexAttribute<typename PFP::VEC3, typename PFP::MAP>& position, const VEC3& P)
{
typedef typename PFP::REAL REAL;
const typename PFP::VEC3& A = position[f.dart];
Dart d = map.phi1(f.dart);
Dart e = map.phi1(d);
REAL dist2 = Geom::squaredDistancePoint2Triangle(P, A, position[d], position[e]);
d = e;
e = map.phi1(d);
while (e != f.dart)
{
REAL d2 = Geom::squaredDistancePoint2Triangle(P, A, position[d], position[e]);
if (d2 < dist2)
dist2 = d2;
d = e;
e = map.phi1(d);
}
return dist2;
}
template <typename PFP>
typename PFP::REAL squaredDistancePoint2Edge(typename PFP::MAP& map, Edge e, const VertexAttribute<typename PFP::VEC3, typename PFP::MAP>& position, const VEC3& P)
{
const typename PFP::VEC3& A = position[e.dart];
typename PFP::VEC3 AB = position[map.phi1(e.dart)] - A;
typename PFP::REAL AB2 = AB * AB;
return Geom::squaredDistanceSeg2Point(A, AB, AB2, P) ;
}
} // namespace Geometry
} // namespace Algo
} // namespace CGoGN
| [
"[email protected]"
] | |
26e616d79f1f15509142b8ca4cf8b0be2da18a7d | 77a971a51c68a4c8600ecf70e7748573b232f3bc | /detection/src/main.cpp | 42efa6565f4caa81fa373de91e682a9633b11cd2 | [] | no_license | satishJai/project | 6c8eefbcf3d24b4ba656c5029a972299af41fcfa | e1be38551692c32cd55caea2ad52cdb13ab6577f | refs/heads/master | 2022-12-13T20:49:03.057886 | 2020-09-07T09:02:10 | 2020-09-07T09:02:10 | 291,976,747 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,142 | cpp | /*
* main.cpp
*
* Created on: Nov 14, 2018
* Author: philipf & satishj
* Used to detect objects in on a continuius stream from a depth camera. Publishes visualization messages to rviz and handling_msgs/detectedObjects which can be used for
* futher processing tasks like grasping.
*/
#include <iostream>
#include <stdlib.h>
#include <memory>
#include <ros/ros.h>
#include <ros/time.h>
#include <ros/package.h>
#include <tf/transform_listener.h>
#include <pcl_ros/point_cloud.h>
#include <pcl_ros/transforms.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <visualization_msgs/Marker.h>
#include <handling_msgs/DetectedObjects.h>
#include <handling_msgs/DetectedObject.h>
#include "../include/Control.h"
std::string TARGET_FRAME = "/camera_link";
const std::string CAMERA_LINK = "/camera_rgb_optical_frame"; ///GETjag/xtion_sensor_link
std::string CAMERA_TOPIC = "/camera/depth_registered/points"; ///GETjag/xtion/depth/points
ros::Time last_viewer_update;
const float UPDATE_RATE = 0.15;
std::shared_ptr<tf::TransformListener> tf_listener;
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud;
bool cloudIsUpdated = false;
bool visualization = false;
std::vector<Result> results;
ros::Publisher marker_pub;
void publishMarker(tf::Vector3 pos, tf::Quaternion rot, int id, std::string text, double r, double g, double b, double lifetime=5.0)
{
if(marker_pub.getNumSubscribers() == 0) return;
visualization_msgs::Marker marker;
// Set the frame ID and timestamp. See the TF tutorials for information on these.
marker.header.frame_id = TARGET_FRAME;
marker.header.stamp = ros::Time::now();
// Set the namespace and id for this marker. This serves to create a unique ID
// Any marker sent with the same namespace and id will overwrite the old one
marker.ns = "Object_Name";
marker.id = id;
// Set the marker type. Initially this is CUBE, and cycles between that and SPHERE, ARROW, and CYLINDER
marker.type = visualization_msgs::Marker::TEXT_VIEW_FACING;
marker.text = text;
std::cout << "Marker: " << text << std::endl;
// Set the marker action. Options are ADD, DELETE, and new in ROS Indigo: 3 (DELETEALL)
marker.action = visualization_msgs::Marker::ADD;
// Set the pose of the marker. This is a full 6DOF pose relative to the frame/time specified in the header
marker.pose.position.x = pos.getX();
marker.pose.position.y = pos.getY();
marker.pose.position.z = pos.getZ();
marker.pose.orientation.x = 0.0;
marker.pose.orientation.y = 0.0;
marker.pose.orientation.z = 0.0;
marker.pose.orientation.w = 1.0;
// Set the scale of the marker -- 1x1x1 here means 1m on a side
marker.scale.x = 0.05;
marker.scale.y = 0.05;
marker.scale.z = 0.05;
// Set the color -- be sure to set alpha to something non-zero!
marker.color.r = r;
marker.color.g = g;
marker.color.b = b;
marker.color.a = 1.0;
marker.lifetime = ros::Duration(lifetime);
marker_pub.publish(marker);
marker.ns = "Object_Frame";
marker.color.r = 0;
marker.color.g = 0;
marker.color.b = 1.0;
marker.color.a = 1.0;
tf::Transform a1(rot,tf::Vector3(0,0,0));
tf::Transform a2(tf::Quaternion(-M_PI*0.5,0,0),tf::Vector3(0,0,0));
rot = (a1*a2).getRotation();
marker.pose.orientation.x = rot.x();
marker.pose.orientation.y = rot.y();
marker.pose.orientation.z = rot.z();
marker.pose.orientation.w = rot.w();
marker.scale.x = 0.1;
marker.scale.y = 0.005;
marker.scale.z = 0.005;
marker.id = id*100;
marker.type = visualization_msgs::Marker::ARROW;
marker.text = "";
marker_pub.publish(marker);
}
void pointcloudCallback (const pcl::PointCloud<PointType>::ConstPtr& pointcloud)
{
if(cloudIsUpdated) return;
if(pointcloud->size() == 0) return;
tf::StampedTransform transform;
try{
std::cout << "[Main]: Cloud callback!\n";
tf_listener->waitForTransform(TARGET_FRAME,CAMERA_LINK,ros::Time(0),ros::Duration(4.0));
pcl_ros::transformPointCloud(TARGET_FRAME,*pointcloud,*cloud,*tf_listener);
std::cout << "[Main]: Size: " << cloud->size() << std::endl;
if(pointcloud->size() > 0)
{
cloudIsUpdated = true;
}else{
cloudIsUpdated = false;
}
}
catch (tf::TransformException ex)
{
ROS_ERROR("%s", ex.what ());
ros::Duration (1.0).sleep ();
cloudIsUpdated = false;
}
}
int main (int argc, char* argv[])
{
if(argc > 1)
{
CAMERA_TOPIC = argv[1];
if(argc > 2)
{
TARGET_FRAME = argv[2];
if(argc > 3)
{
if(std::string(argv[3]).find("true") != std::string::npos)
{
visualization = true;
}
}
}
}else{
std::cout << "main [CAMERA_TOPIC=/camera/depth_registered/points] [TARGET_FRAME=/world] [VISUALIZATION=false]";
}
std::cout << "Using camera Topic: " << CAMERA_TOPIC << std::endl;
std::cout << "Using target frame: " << TARGET_FRAME << std::endl;
std::cout << "Visualization: " << visualization << std::endl;
ros::init (argc, argv, "mainDetection");
ros::NodeHandle nh;
cloud = boost::make_shared<pcl::PointCloud<PointType>>();
tf_listener = std::make_shared<tf::TransformListener> ();
ros::Subscriber sub = nh.subscribe<pcl::PointCloud<pcl::PointXYZRGB>> (CAMERA_TOPIC, 1, pointcloudCallback);
ros::Publisher objectPub = nh.advertise<handling_msgs::DetectedObjects> ("/dexterity/detection/objects", 1);
marker_pub = nh.advertise<visualization_msgs::Marker>("/dexterity/marker",1);
handling_msgs::DetectedObjects msg;
msg.header.frame_id = TARGET_FRAME;
msg.header.seq = 0;
msg.object_count = 0;
Control detectionControl(visualization,false,false);
std::string packagePath = ros::package::getPath("handling_recognition");
size_t id = 0;
for (auto& entry : boost::make_iterator_range(boost::filesystem::directory_iterator(packagePath + "/objects/models"),{}))
{
std::string path = entry.path().string();
std::string extension = boost::filesystem::extension(path);
if(extension != ".pcd") continue;
std::string name = boost::filesystem::basename(path);
detectionControl.learnModel(path,name,id);
id++;
}
ros::Duration(0.5).sleep();
std::cout << "Starting loop." << std::endl;
last_viewer_update = ros::Time::now();
while (ros::ok())
{
if(cloudIsUpdated)
{
ros::Time current_time = ros::Time::now ();
if (((current_time - last_viewer_update).toSec () > (1.0 / UPDATE_RATE)))
{
results.resize(0);
std::cout << "[Main]: Starting detection!\n";
detectionControl.recognize (*cloud, results);
std::cout << "[Main]: Found " << results.size () << " matches!\n";
cloudIsUpdated = false;
last_viewer_update = ros::Time::now();
if(results.size() > 0)
{
msg.object_count = 0;
msg.objects.clear();
msg.header.seq++;
msg.header.stamp = ros::Time::now();
for( size_t i = 0; i < results.size(); i++)
{
std::cout << results.at(i).name << std::endl;
std::cout << "[" << results.at(i).pose.getOrigin().x() << "," << results.at(i).pose.getOrigin().y() << "," << results.at(i).pose.getOrigin().z() << "]\n";
publishMarker(results.at(i).pose.getOrigin(),results.at(i).pose.getRotation(),i,
results.at(i).name + "=" + std::to_string(results.at(i).model_scene_corrs.size()),1,1,1,(ros::Time::now() - current_time).toSec() + (1.0 / UPDATE_RATE));
handling_msgs::DetectedObject obj;
obj.guess = (results.at(i).pose.getRotation() == tf::Quaternion(0,0,0,1))? true : false;
obj.object_id = results.at(i).modelId;
obj.object_name = results.at(i).name;
obj.pose.position.x = results.at(i).pose.getOrigin().x();
obj.pose.position.y = results.at(i).pose.getOrigin().y();
obj.pose.position.z = results.at(i).pose.getOrigin().z();
obj.pose.orientation.x = results.at(i).pose.getRotation().x();
obj.pose.orientation.y = results.at(i).pose.getRotation().y();
obj.pose.orientation.z = results.at(i).pose.getRotation().z();
obj.pose.orientation.w = results.at(i).pose.getRotation().w();
obj.stamp = ros::Time::now();
obj.probability = results.at(i).probability;
msg.objects.push_back(obj);
msg.object_count++;
}
objectPub.publish(msg);
}
}
}
detectionControl.spinViewer ();
ros::spinOnce();
}
return 0;
}
| [
"[email protected]"
] | |
5a70851c991c105ee42665c642a7e3490e5e332d | 2bc74414e71a280cc50085ec2e5a6499d22ae5e6 | /src/cpp/tree_length_distribution.hpp | 66d55c7066071344ba0a16fbd9dbb7777ac8c6ba | [
"MIT"
] | permissive | plewis/phycas | 610c989d49dce741fc2d2ad048a9d7587eabeb74 | 9f5a4d9b2342dab907d14a46eb91f92ad80a5605 | refs/heads/master | 2020-12-25T16:48:31.870762 | 2017-07-15T14:07:37 | 2017-07-15T14:07:37 | 21,300,616 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,357 | hpp | /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| Phycas: Python software for phylogenetic analysis |
| Copyright (C) 2012 Mark T. Holder, Paul O. Lewis and David L. Swofford |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; either version 2 of the License, or |
| (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License along |
| with this program; if not, write to the Free Software Foundation, Inc., |
| 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#if !defined(TREE_LENGTH_DISTRIBUTION_HPP)
#define TREE_LENGTH_DISTRIBUTION_HPP
#if defined(_MSC_VER)
# pragma warning(disable: 4267) // warning about loss of data when converting size_t to int
#endif
#include <cmath>
#include "ncl/nxsdefs.h"
#include <boost/shared_ptr.hpp>
#include <boost/format.hpp>
#include "basic_cdf.hpp"
#include "basic_lot.hpp"
#include "basic_tree.hpp"
#include "probability_distribution.hpp"
#include "multivariate_probability_distribution.hpp"
namespace phycas
{
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------
| This is the joint distribution of tree length and edge lengths. The marginal distribution of tree length is Gamma(alphaT, betaT), while the marginal
| of edge lengths conditional on tree length is Dirichlet(a_1, a_2, ..., a_m, b_1, b_2, ..., b_n) where a_1=a_2=...=a_m=alpha, b_1=b_2=...=b_n=c*alpha,
| m is the number of external edges, and n is the number of internal edges. This prior was described in the following paper:
|
| Rannala, Bruce, Tianqi Zhu, and Ziheng Yang. 2012. Tail paradox, partial identifiability, and influential priors in Bayesian branch length inference.
| Mol. Biol. Evol. 29(1):325-335.
|
| Note 1: this class follows the conventions of the paper in that the gamma distribution mean equals shape/scale, whereas everywhere else a gamma distribution
| appears in Phycas it has the property that mean equals shape*scale.
|
| Note 2: this class is unusual in that it represents a probability distribution but is not derived from either ProbabilityDistribution or
| MultivariateProbabilityDistribution. This is because it is a compound distribution combining a univariate (gamma) distribution with a multivariate
| (Dirichlet) distribution, and requires a tree as input to its GetLnPDF function.
*/
class TreeLengthDistribution // TREE_LENGTH_DISTRIBUTION
{
public:
TreeLengthDistribution();
TreeLengthDistribution(double alphaT, double betaT, double alpha, double c);
TreeLengthDistribution(const TreeLengthDistribution & other);
virtual ~TreeLengthDistribution() {}
virtual void SetLot(Lot * other);
virtual void ResetLot();
virtual void SetSeed(unsigned rnseed);
TreeLengthDistribution * cloneAndSetLot(Lot * other) const;
TreeLengthDistribution * Clone() const;
virtual std::string GetDistributionName() const;
virtual std::string GetDistributionDescription() const;
virtual std::vector<double> Sample(unsigned num_external, unsigned num_internal);
virtual double GetLnPDF(TreeShPtr t) const;
virtual double GetRelativeLnPDF(TreeShPtr t) const;
double getShape() const {return _alphaT;}
double getScale() const {return _betaT;}
double getExtEdgelenParam() const {return _alpha;}
double getIntExtEdgelenRatio() const {return _c;}
protected:
void SetupSamplingDistributions(unsigned num_external, unsigned num_internal);
private:
double _alphaT; /**< The shape parameter of the gamma tree length distribution */
double _betaT; /**< The scale paramter of the gamma tree length distribution */
double _alpha; /**< The parameter governing the Dirichlet distribution for external edge lengths (internal edge lengths have parameter c*alpha) */
double _c; /**< The ratio of the mean internal/external edge length (normally less than 1.0) */
CDF _cdf; /**< Used in GetLnPDF to compute log of gamma function */
Lot _myLot; /**< Own random number generator */
Lot * _lot; /**< Points to either _myLot or an external random number generator object */
ProbDistShPtr _tldist; /**< Points to a gamma distribution of tree lengths used when sampling from this distribution */
MultivarProbDistShPtr _eldist; /**< Points to a Dirichlet distribution of edge length proportions used when sampling from this distribution */
unsigned _num_internal_edges; /**< The number of internal edges specified the last time Sample was called */
unsigned _num_external_edges; /**< The number of external edges specified the last time Sample was called */
};
typedef boost::shared_ptr<TreeLengthDistribution> TreeLengthDistributionShPtr;
} // namespace phycas
#endif
| [
"[email protected]"
] | |
450c5911a8613d6f30376b8f20fbad765dc93377 | 67a3cd8366de29e967ce5ef56656791d24b5005d | /libraries/SparkFun_LSM303C_6_DOF_IMU_Breakout_Arduino_Library-V_1.0.0/src/SparkFunLSM303C.cpp | 4138de3005c8d4831c0320944e4fe1bb0b01d3fe | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | nikolas8309/ArduinoWorkspace | a920a88d9692015d0773b132b0458b5f59fa0582 | c964254148cb633bea8788c927bab33a3a6c8b85 | refs/heads/master | 2018-11-03T04:42:15.788269 | 2018-08-25T18:48:24 | 2018-08-25T18:48:24 | 121,131,325 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,428 | cpp | #include "SparkFunLSM303C.h"
#include "stdint.h"
// Public methods
status_t LSM303C::begin()
{
debug_println(EMPTY);
return
begin(// Default to I2C bus
MODE_I2C,
// Initialize magnetometer output data rate to 0.625 Hz (turn on device)
MAG_DO_40_Hz,
// Initialize magnetic field full scale to +/-16 gauss
MAG_FS_16_Ga,
// Enabling block data updating
MAG_BDU_ENABLE,
// Initialize magnetometer X/Y axes ouput data rate to high-perf mode
MAG_OMXY_HIGH_PERFORMANCE,
// Initialize magnetometer Z axis performance mode
MAG_OMZ_HIGH_PERFORMANCE,
// Initialize magnetometer run mode. Also enables I2C (bit 7 = 0)
MAG_MD_CONTINUOUS,
// Initialize acceleration full scale to +/-2g
ACC_FS_2g,
// Enable block data updating
ACC_BDU_ENABLE,
// Enable X, Y, and Z accelerometer axes
ACC_X_ENABLE|ACC_Y_ENABLE|ACC_Z_ENABLE,
// Initialize accelerometer output data rate to 100 Hz (turn on device)
ACC_ODR_100_Hz
);
}
status_t LSM303C::begin(InterfaceMode_t im, MAG_DO_t modr, MAG_FS_t mfs,
MAG_BDU_t mbu, MAG_OMXY_t mxyodr, MAG_OMZ_t mzodr, MAG_MD_t mm,
ACC_FS_t afs, ACC_BDU_t abu, uint8_t aea, ACC_ODR_t aodr)
{
uint8_t successes = 0;
// Select I2C or SPI
interfaceMode = im;
if (interfaceMode == MODE_SPI)
{
debug_println("Setting up SPI");
// Setup pins for SPI
// CS & CLK must be outputs DDRxn = 1
bitSet(DIR_REG, CSBIT_MAG);
bitSet(DIR_REG, CSBIT_XL);
bitSet(DIR_REG, CLKBIT);
// Deselect SPI chips
bitSet(CSPORT_MAG, CSBIT_MAG);
bitSet(CSPORT_XL, CSBIT_XL);
// Clock polarity (CPOL) = 1
bitSet(CLKPORT, CLKBIT);
// SPI Serial Interface Mode (SIM) bits must be set
SPI_WriteByte(ACC, ACC_CTRL4, 0b111);
SPI_WriteByte(MAG, MAG_CTRL_REG3, _BV(2));
}
////////// Initialize Magnetometer //////////
// Initialize magnetometer output data rate
successes += MAG_SetODR(modr);
// Initialize magnetic field full scale
successes += MAG_SetFullScale(mfs);
// Enabling block data updating
successes += MAG_BlockDataUpdate(mbu);
// Initialize magnetometer X/Y axes ouput data rate
successes += MAG_XY_AxOperativeMode(mxyodr);
// Initialize magnetometer Z axis performance mode
successes += MAG_Z_AxOperativeMode(mzodr);
// Initialize magnetometer run mode.
successes += MAG_SetMode(mm);
////////// Initialize Accelerometer //////////
// Initialize acceleration full scale
successes += ACC_SetFullScale(afs);
// Enable block data updating
successes += ACC_BlockDataUpdate(abu);
// Enable X, Y, and Z accelerometer axes
successes += ACC_EnableAxis(aea);
// Initialize accelerometer output data rate
successes += ACC_SetODR(aodr);
return (successes == IMU_SUCCESS) ? IMU_SUCCESS : IMU_HW_ERROR;
}
float LSM303C::readMagX()
{
return readMag(xAxis);
}
float LSM303C::readMagY()
{
return readMag(yAxis);
}
float LSM303C::readMagZ()
{
return readMag(zAxis);
}
float LSM303C::readAccelX()
{
uint8_t flag_ACC_STATUS_FLAGS;
status_t response = ACC_Status_Flags(flag_ACC_STATUS_FLAGS);
if (response != IMU_SUCCESS)
{
debug_println(AERROR);
return NAN;
}
// Check for new data in the status flags with a mask
// If there isn't new data use the last data read.
// There are valid cases for this, like reading faster than refresh rate.
if (flag_ACC_STATUS_FLAGS & ACC_X_NEW_DATA_AVAILABLE)
{
uint8_t valueL;
uint8_t valueH;
if ( ACC_ReadReg(ACC_OUT_X_H, valueH) )
{
return IMU_HW_ERROR;
}
if ( ACC_ReadReg(ACC_OUT_X_L, valueL) )
{
return IMU_HW_ERROR;
}
debug_println("Fresh raw data");
//convert from LSB to mg
return int16_t(( (valueH << 8) | valueL )) * SENSITIVITY_ACC;
}
// Should never get here
debug_println("Returning NAN");
return NAN;
}
float LSM303C::readAccelY()
{
uint8_t flag_ACC_STATUS_FLAGS;
status_t response = ACC_Status_Flags(flag_ACC_STATUS_FLAGS);
if (response != IMU_SUCCESS)
{
debug_println(AERROR);
return NAN;
}
// Check for new data in the status flags with a mask
// If there isn't new data use the last data read.
// There are valid cases for this, like reading faster than refresh rate.
if (flag_ACC_STATUS_FLAGS & ACC_Y_NEW_DATA_AVAILABLE)
{
uint8_t valueL;
uint8_t valueH;
if ( ACC_ReadReg(ACC_OUT_Y_H, valueH) )
{
return IMU_HW_ERROR;
}
if ( ACC_ReadReg(ACC_OUT_Y_L, valueL) )
{
return IMU_HW_ERROR;
}
debug_println("Fresh raw data");
//convert from LSB to mg
return int16_t(( (valueH << 8) | valueL )) * SENSITIVITY_ACC;
}
// Should never get here
debug_println("Returning NAN");
return NAN;
}
float LSM303C::readAccelZ()
{
uint8_t flag_ACC_STATUS_FLAGS;
status_t response = ACC_Status_Flags(flag_ACC_STATUS_FLAGS);
if (response != IMU_SUCCESS)
{
debug_println(AERROR);
return NAN;
}
// Check for new data in the status flags with a mask
// If there isn't new data use the last data read.
// There are valid cases for this, like reading faster than refresh rate.
if (flag_ACC_STATUS_FLAGS & ACC_Z_NEW_DATA_AVAILABLE)
{
uint8_t valueL;
uint8_t valueH;
if ( ACC_ReadReg(ACC_OUT_Z_H, valueH) )
{
return IMU_HW_ERROR;
}
if ( ACC_ReadReg(ACC_OUT_Z_L, valueL) )
{
return IMU_HW_ERROR;
}
debug_println("Fresh raw data");
//convert from LSB to mg
return(int16_t(( (valueH << 8) | valueL )) * SENSITIVITY_ACC);
}
// Should never get here
debug_println("Returning NAN");
return NAN;
}
float LSM303C::readTempC()
{
uint8_t valueL;
uint8_t valueH;
float temperature;
// Make sure temperature sensor is enabled
if( MAG_TemperatureEN(MAG_TEMP_EN_ENABLE))
{
return NAN;
}
if( MAG_ReadReg(MAG_TEMP_OUT_L, valueL) )
{
return NAN;
}
if( MAG_ReadReg(MAG_TEMP_OUT_H, valueH) )
{
return NAN;
}
temperature = (float)( (valueH << 8) | valueL );
temperature /= 8; // 8 digits/˚C
temperature += 25;// Reads 0 @ 25˚C
return temperature;
}
float LSM303C::readTempF()
{
return( (readTempC() * 9.0 / 5.0) + 32.0);
}
////////////////////////////////////////////////////////////////////////////////
////// Protected methods
float LSM303C::readAccel(AXIS_t dir)
{
uint8_t flag_ACC_STATUS_FLAGS;
status_t response = ACC_Status_Flags(flag_ACC_STATUS_FLAGS);
if (response != IMU_SUCCESS)
{
debug_println(AERROR);
return NAN;
}
// Check for new data in the status flags with a mask
// If there isn't new data use the last data read.
// There are valid cases for this, like reading faster than refresh rate.
if (flag_ACC_STATUS_FLAGS & ACC_ZYX_NEW_DATA_AVAILABLE)
{
response = ACC_GetAccRaw(accelData);
debug_println("Fresh raw data");
}
//convert from LSB to mg
switch (dir)
{
case xAxis:
return accelData.xAxis * SENSITIVITY_ACC;
break;
case yAxis:
return accelData.yAxis * SENSITIVITY_ACC;
break;
case zAxis:
return accelData.zAxis * SENSITIVITY_ACC;
break;
default:
return NAN;
}
// Should never get here
debug_println("Returning NAN");
return NAN;
}
float LSM303C::readMag(AXIS_t dir)
{
MAG_XYZDA_t flag_MAG_XYZDA;
status_t response = MAG_XYZ_AxDataAvailable(flag_MAG_XYZDA);
if (response != IMU_SUCCESS)
{
debug_println(MERROR);
return NAN;
}
// Check for new data in the status flags with a mask
if (flag_MAG_XYZDA & MAG_XYZDA_YES)
{
response = MAG_GetMagRaw(magData);
debug_println("Fresh raw data");
}
debug_print("sensitivity_mag=");
debug_println(SENSITIVITY_MAG);
//convert from LSB to Gauss
switch (dir)
{
case xAxis:
return magData.xAxis * SENSITIVITY_MAG;
break;
case yAxis:
return magData.yAxis * SENSITIVITY_MAG;
break;
case zAxis:
return magData.zAxis * SENSITIVITY_MAG;
break;
default:
return NAN;
}
// Should never get here
debug_println("Returning NAN");
return NAN;
}
status_t LSM303C::MAG_GetMagRaw(AxesRaw_t& buff)
{
debug_print(EMPTY);
uint8_t valueL;
uint8_t valueH;
debug_println("& was false");
if( MAG_ReadReg(MAG_OUTX_L, valueL) )
{
return IMU_HW_ERROR;
}
if( MAG_ReadReg(MAG_OUTX_H, valueH) )
{
return IMU_HW_ERROR;
}
buff.xAxis = (int16_t)( (valueH << 8) | valueL );
debug_print("mag-X-raw=");
debug_printlns(buff.xAxis, HEX);
if( MAG_ReadReg(MAG_OUTY_L, valueL) )
{
return IMU_HW_ERROR;
}
if( MAG_ReadReg(MAG_OUTY_H, valueH) )
{
return IMU_HW_ERROR;
}
buff.yAxis = (int16_t)( (valueH << 8) | valueL );
debug_print("mag-Y-raw=");
debug_printlns(buff.yAxis, HEX);
if( MAG_ReadReg(MAG_OUTZ_L, valueL) )
{
return IMU_HW_ERROR;
}
if( MAG_ReadReg(MAG_OUTZ_H, valueH) )
{
return IMU_HW_ERROR;
}
buff.zAxis = (int16_t)( (valueH << 8) | valueL );
debug_print("mag-Z-raw=");
debug_printlns(buff.zAxis, HEX);
return IMU_SUCCESS;
}
// Methods required to get device up and running
status_t LSM303C::MAG_SetODR(MAG_DO_t val)
{
debug_print(EMPTY);
uint8_t value;
if(MAG_ReadReg(MAG_CTRL_REG1, value))
{
debug_printlns("Failed Read from MAG_CTRL_REG1");
return IMU_HW_ERROR;
}
// Mask and only change DO0 bits (4:2) of MAG_CTRL_REG1
value &= ~MAG_DO_80_Hz;
value |= val;
if(MAG_WriteReg(MAG_CTRL_REG1, value))
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::MAG_SetFullScale(MAG_FS_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( MAG_ReadReg(MAG_CTRL_REG2, value) )
{
return IMU_HW_ERROR;
}
value &= ~MAG_FS_16_Ga; //mask
value |= val;
if ( MAG_WriteReg(MAG_CTRL_REG2, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::MAG_BlockDataUpdate(MAG_BDU_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( MAG_ReadReg(MAG_CTRL_REG5, value) )
{
return IMU_HW_ERROR;
}
value &= ~MAG_BDU_ENABLE; //mask
value |= val;
if ( MAG_WriteReg(MAG_CTRL_REG5, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::MAG_XYZ_AxDataAvailable(MAG_XYZDA_t& value)
{
if ( MAG_ReadReg(MAG_STATUS_REG, (uint8_t&)value) )
{
return IMU_HW_ERROR;
}
value = (MAG_XYZDA_t)((int8_t)value & (int8_t)MAG_XYZDA_YES);
return IMU_SUCCESS;
}
status_t LSM303C::MAG_XY_AxOperativeMode(MAG_OMXY_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( MAG_ReadReg(MAG_CTRL_REG1, value) )
{
return IMU_HW_ERROR;
}
value &= ~MAG_OMXY_ULTRA_HIGH_PERFORMANCE; //mask
value |= val;
if ( MAG_WriteReg(MAG_CTRL_REG1, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::MAG_Z_AxOperativeMode(MAG_OMZ_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( MAG_ReadReg(MAG_CTRL_REG4, value) )
{
return IMU_HW_ERROR;
}
value &= ~MAG_OMZ_ULTRA_HIGH_PERFORMANCE; //mask
value |= val;
if ( MAG_WriteReg(MAG_CTRL_REG4, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::MAG_SetMode(MAG_MD_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( MAG_ReadReg(MAG_CTRL_REG3, value) )
{
debug_print("Failed to read MAG_CTRL_REG3. 'Read': 0x");
debug_printlns(value, HEX);
return IMU_HW_ERROR;
}
value &= ~MAG_MD_POWER_DOWN_2;
value |= val;
if ( MAG_WriteReg(MAG_CTRL_REG3, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::ACC_SetFullScale(ACC_FS_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( ACC_ReadReg(ACC_CTRL4, value) )
{
debug_printlns("Failed ACC read");
return IMU_HW_ERROR;
}
value &= ~ACC_FS_8g;
value |= val;
if ( ACC_WriteReg(ACC_CTRL4, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::ACC_BlockDataUpdate(ACC_BDU_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( ACC_ReadReg(ACC_CTRL1, value) )
{
return IMU_HW_ERROR;
}
value &= ~ACC_BDU_ENABLE;
value |= val;
if ( ACC_WriteReg(ACC_CTRL1, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::ACC_EnableAxis(uint8_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( ACC_ReadReg(ACC_CTRL1, value) )
{
debug_println(AERROR);
return IMU_HW_ERROR;
}
value &= ~0x07;
value |= val;
if ( ACC_WriteReg(ACC_CTRL1, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::ACC_SetODR(ACC_ODR_t val)
{
debug_print(EMPTY);
uint8_t value;
if ( ACC_ReadReg(ACC_CTRL1, value) )
{
return IMU_HW_ERROR;
}
value &= ~ACC_ODR_MASK;
value |= val;
if ( ACC_WriteReg(ACC_CTRL1, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::MAG_TemperatureEN(MAG_TEMP_EN_t val){
uint8_t value;
if( MAG_ReadReg(MAG_CTRL_REG1, value) )
{
return IMU_HW_ERROR;
}
value &= ~MAG_TEMP_EN_ENABLE; //mask
value |= val;
if( MAG_WriteReg(MAG_CTRL_REG1, value) )
{
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::MAG_ReadReg(MAG_REG_t reg, uint8_t& data)
{
debug_print("Reading register 0x");
debug_printlns(reg, HEX);
status_t ret = IMU_GENERIC_ERROR;
if (interfaceMode == MODE_I2C)
{
ret = I2C_ByteRead(MAG_I2C_ADDR, reg, data);
}
else if (interfaceMode == MODE_SPI)
{
data = SPI_ReadByte(MAG, reg);
ret = IMU_SUCCESS;
}
else
{
ret = IMU_GENERIC_ERROR; // Shouldn't get here
}
return ret;
}
uint8_t LSM303C::MAG_WriteReg(MAG_REG_t reg, uint8_t data)
{
debug_print(EMPTY);
uint8_t ret;
if (interfaceMode == MODE_I2C)
{
ret = I2C_ByteWrite(MAG_I2C_ADDR, reg, data);
}
else if (interfaceMode == MODE_SPI)
{
ret = SPI_WriteByte(MAG, reg, data);
}
else
{
ret = IMU_GENERIC_ERROR;
}
return ret;
}
status_t LSM303C::ACC_ReadReg(ACC_REG_t reg, uint8_t& data)
{
debug_print("Reading address 0x");
debug_printlns(reg, HEX);
status_t ret;
if (interfaceMode == MODE_I2C)
{
ret = I2C_ByteRead(ACC_I2C_ADDR, reg, data);
}
else if (interfaceMode == MODE_SPI)
{
data = SPI_ReadByte(ACC, reg);
ret = IMU_SUCCESS;
}
else
{
ret = IMU_HW_ERROR;
}
return ret;
}
uint8_t LSM303C::ACC_WriteReg(ACC_REG_t reg, uint8_t data)
{
debug_print(EMPTY);
uint8_t ret;
if (interfaceMode == MODE_I2C)
{
ret = I2C_ByteWrite(ACC_I2C_ADDR, reg, data);
}
else if (interfaceMode == MODE_SPI)
{
ret = SPI_WriteByte(ACC, reg, data);
}
else
{
ret = IMU_GENERIC_ERROR;
}
return ret;
}
// This function uses bit manibulation for higher speed & smaller code
uint8_t LSM303C::SPI_ReadByte(CHIP_t chip, uint8_t data)
{
debug_print("Reading register 0x");
debug_printlns(data, HEX);
uint8_t counter;
// Set the read/write bit (bit 7) to do a read
data |= _BV(7);
// Set data pin to output
bitSet(DIR_REG, DATABIT);
noInterrupts();
// Select the chip & deselect the other
switch (chip)
{
case MAG:
bitClear(CSPORT_MAG, CSBIT_MAG);
bitSet(CSPORT_XL, CSBIT_XL);
break;
case ACC:
bitClear(CSPORT_XL, CSBIT_XL);
bitSet(CSPORT_MAG, CSBIT_MAG);
break;
}
// Shift out 8-bit address
for(counter = 8; counter; counter--)
{
bitWrite(DATAPORTO, DATABIT, data & 0x80);
// Data is setup, so drop clock edge
bitClear(CLKPORT, CLKBIT);
bitSet(CLKPORT, CLKBIT);
// Shift off sent bit
data <<= 1;
}
// Switch data pin to input (0 = INPUT)
bitClear(DIR_REG, DATABIT);
// Shift in register data from address
for(counter = 8; counter; counter--)
{
// Shift data to the left. Remains 0 after first shift
data <<= 1;
bitClear(CLKPORT, CLKBIT);
// Sample on rising egde
bitSet(CLKPORT, CLKBIT);
if (bitRead(DATAPORTI, DATABIT))
{
data |= 0x01;
}
}
// Unselect chip
switch (chip)
{
case MAG:
bitSet(CSPORT_MAG, CSBIT_MAG);
break;
case ACC:
bitSet(CSPORT_XL, CSBIT_XL);
break;
}
interrupts();
return(data);
}
// This function uses bit manibulation for higher speed & smaller code
status_t LSM303C::SPI_WriteByte(CHIP_t chip, uint8_t reg, uint8_t data)
{
debug_print("Writing 0x");
debug_prints(data, HEX);
debug_prints(" to register 0x");
debug_printlns(reg, HEX);
uint8_t counter;
uint16_t twoBytes;
// Clear the read/write bit (bit 7) to do a write
reg &= ~_BV(7);
twoBytes = reg << 8 | data;
// Set data pin to output
bitSet(DIR_REG, DATABIT);
noInterrupts();
// Select the chip & deselect the other
switch (chip)
{
case MAG:
bitClear(CSPORT_MAG, CSBIT_MAG);
bitSet(CSPORT_XL, CSBIT_XL);
break;
case ACC:
bitClear(CSPORT_XL, CSBIT_XL);
bitSet(CSPORT_MAG, CSBIT_MAG);
break;
}
// Shift out 8-bit address & 8-bit data
for(counter = 16; counter; counter--)
{
bitWrite(DATAPORTO, DATABIT, twoBytes & 0x8000);
// Data is setup, so drop clock edge
bitClear(CLKPORT, CLKBIT);
bitSet(CLKPORT, CLKBIT);
// Shift off sent bit
twoBytes <<= 1;
}
// Unselect chip
switch (chip)
{
case MAG:
bitSet(CSPORT_MAG, CSBIT_MAG);
break;
case ACC:
bitSet(CSPORT_XL, CSBIT_XL);
break;
}
interrupts();
// Set data pin to input
bitClear(DIR_REG, DATABIT);
// Is there a way to verify true success?
return IMU_SUCCESS;
}
uint8_t LSM303C::I2C_ByteWrite(I2C_ADDR_t slaveAddress, uint8_t reg,
uint8_t data)
{
uint8_t ret = IMU_GENERIC_ERROR;
Wire.beginTransmission(slaveAddress); // Initialize the Tx buffer
// returns num bytes written
if (Wire.write(reg))
{
ret = Wire.write(data);
if (ret)
{
debug_print("Wrote: 0x");
debug_printlns(data, HEX);
switch (Wire.endTransmission())
{
case 0:
ret = IMU_SUCCESS;
break;
case 1: // Data too long to fit in transmit buffer
case 2: // Received NACK on transmit of address
case 3: // Received NACK on transmit of data
case 4: // Other Error
default:
ret = IMU_HW_ERROR;
}
}
else
{
ret = IMU_HW_ERROR;
}
}
else
{
ret = IMU_HW_ERROR;
}
return ret;
}
status_t LSM303C::I2C_ByteRead(I2C_ADDR_t slaveAddress, uint8_t reg,
uint8_t& data)
{
status_t ret = IMU_GENERIC_ERROR;
debug_print("Reading from I2C address: 0x");
debug_prints(slaveAddress, HEX);
debug_prints(", register 0x");
debug_printlns(reg, HEX);
Wire.beginTransmission(slaveAddress); // Initialize the Tx buffer
if (Wire.write(reg)) // Put slave register address in Tx buff
{
if (Wire.endTransmission(false)) // Send Tx, send restart to keep alive
{
debug_println("Error: I2C buffer didn't get sent!");
debug_print("Slave address: 0x");
debug_printlns(slaveAddress, HEX);
debug_print("Register: 0x");
debug_printlns(reg, HEX);
ret = IMU_HW_ERROR;
}
else if (Wire.requestFrom(slaveAddress, 1))
{
data = Wire.read();
debug_print("Read: 0x");
debug_printlns(data, HEX);
ret = IMU_SUCCESS;
}
else
{
debug_println("IMU_HW_ERROR");
ret = IMU_HW_ERROR;
}
}
else
{
debug_println("Error: couldn't send slave register address");
}
return ret;
}
status_t LSM303C::ACC_Status_Flags(uint8_t& val)
{
debug_println("Getting accel status");
if( ACC_ReadReg(ACC_STATUS, val) )
{
debug_println(AERROR);
return IMU_HW_ERROR;
}
return IMU_SUCCESS;
}
status_t LSM303C::ACC_GetAccRaw(AxesRaw_t& buff)
{
uint8_t valueL;
uint8_t valueH;
if ( ACC_ReadReg(ACC_OUT_X_H, valueH) )
{
return IMU_HW_ERROR;
}
if ( ACC_ReadReg(ACC_OUT_X_L, valueL) )
{
return IMU_HW_ERROR;
}
buff.xAxis = (int16_t)( (valueH << 8) | valueL );
if ( ACC_ReadReg(ACC_OUT_Y_H, valueH) )
{
return IMU_HW_ERROR;
}
if ( ACC_ReadReg(ACC_OUT_Y_L, valueL) )
{
return IMU_HW_ERROR;
}
buff.yAxis = (int16_t)( (valueH << 8) | valueL );
if ( ACC_ReadReg(ACC_OUT_Z_H, valueH) )
{
return IMU_HW_ERROR;
}
if ( ACC_ReadReg(ACC_OUT_Z_L, valueL) )
{
return IMU_HW_ERROR;
}
buff.zAxis = (int16_t)( (valueH << 8) | valueL );
return IMU_SUCCESS;
}
| [
"[email protected]"
] | |
962cf676eda29d32c74816692ac769d569bcc0bf | 459ae7ff9ec5de8e35d6f08a156ce1f4c4639de1 | /tests/usage/func_usage_addr_method.cc | b58c8cf356291bf070429cf53845a6635aeb9715 | [
"MIT"
] | permissive | summivox/cquery | db7946a94238c4f72e3cf124a25095692b3240b3 | 3ff84cfc92a7d7c396f1c7cabb61b54af2ffa6c6 | refs/heads/master | 2021-08-23T22:00:20.919578 | 2017-12-06T18:34:26 | 2017-12-06T18:58:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,288 | cc | struct Foo {
void Used();
};
void user() {
auto x = &Foo::Used;
}
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"detailed_name": "Foo",
"definition_spelling": "1:8-1:11",
"definition_extent": "1:1-3:2",
"funcs": [0],
"uses": ["1:8-1:11", "6:13-6:16"]
}],
"funcs": [{
"id": 0,
"is_operator": false,
"usr": "c:@S@Foo@F@Used#",
"short_name": "Used",
"detailed_name": "void Foo::Used()",
"declarations": [{
"spelling": "2:8-2:12",
"extent": "2:3-2:14",
"content": "void Used()"
}],
"declaring_type": 0,
"callers": ["1@6:18-6:22"]
}, {
"id": 1,
"is_operator": false,
"usr": "c:@F@user#",
"short_name": "user",
"detailed_name": "void user()",
"definition_spelling": "5:6-5:10",
"definition_extent": "5:1-7:2",
"callees": ["0@6:18-6:22"]
}],
"vars": [{
"id": 0,
"usr": "c:func_usage_addr_method.cc@53@F@user#@x",
"short_name": "x",
"detailed_name": "void (Foo::*)() x",
"definition_spelling": "6:8-6:9",
"definition_extent": "6:3-6:22",
"is_local": true,
"is_macro": false,
"uses": ["6:8-6:9"]
}]
}
*/
| [
"[email protected]"
] | |
1db1e02ee48cf0a65311e4b428fc75ee044aa0c6 | 974f7c475d1c277daee565b4a6cf41daeae2ee60 | /W1Q5.cpp | 6fe4f3f374ea70c4d3b257ae3396d4144fde60a7 | [] | no_license | bugsanderrors/MayLeetCodingChallenge | fae4f735fedcde9503c50fb41259b0d98c360abc | 6beb93e6b9253dcdb0450c86c45cd73b86f68d7b | refs/heads/master | 2022-09-14T09:13:18.446376 | 2020-05-31T03:20:12 | 2020-05-31T03:20:12 | 260,654,270 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 902 | cpp | /*
First Unique Character in a String
Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1.
Examples:
s = "leetcode"
return 0.
s = "loveleetcode",
return 2.
Note: You may assume the string contain only lowercase letters.
*/
class Solution {
public:
struct S
{
int freq=0;
int index=-1;
};
int firstUniqChar(string s) {
int n = 256;
struct S char_arr[n];
int ans = INT_MAX;
for(int i=0; i<s.size(); i++)
{
(char_arr[s[i]].freq)++;
char_arr[s[i]].index=i;
}
for(int i=0; i<n; i++)
if(char_arr[i].freq == 1)
ans = min(ans, char_arr[i].index);
if(ans < s.size())
return ans;
return -1;
}
}; | [
"[email protected]"
] | |
1ba64e7d993d716f74f49e4f9d551d60baaf7cee | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/v8/test/cctest/cctest.h | 7d8ad59a269c61055597c6b9957324649a00a4b7 | [
"BSD-3-Clause",
"SunPro",
"bzip2-1.0.6",
"Apache-2.0"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 19,344 | h | // Copyright 2008 the V8 project authors. 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 Google Inc. 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 CCTEST_H_
#define CCTEST_H_
#include <memory>
#include "include/libplatform/libplatform.h"
#include "include/v8-debug.h"
#include "src/utils.h"
#include "src/v8.h"
#include "src/zone/accounting-allocator.h"
namespace v8 {
namespace base {
class RandomNumberGenerator;
} // namespace base
namespace internal {
class HandleScope;
class Zone;
} // namespace internal
} // namespace v8
#ifndef TEST
#define TEST(Name) \
static void Test##Name(); \
CcTest register_test_##Name(Test##Name, __FILE__, #Name, true, true); \
static void Test##Name()
#endif
#ifndef UNINITIALIZED_TEST
#define UNINITIALIZED_TEST(Name) \
static void Test##Name(); \
CcTest register_test_##Name(Test##Name, __FILE__, #Name, true, false); \
static void Test##Name()
#endif
#ifndef DISABLED_TEST
#define DISABLED_TEST(Name) \
static void Test##Name(); \
CcTest register_test_##Name(Test##Name, __FILE__, #Name, false, true); \
static void Test##Name()
#endif
#define EXTENSION_LIST(V) \
V(GC_EXTENSION, "v8/gc") \
V(PRINT_EXTENSION, "v8/print") \
V(PROFILER_EXTENSION, "v8/profiler") \
V(TRACE_EXTENSION, "v8/trace")
#define DEFINE_EXTENSION_ID(Name, Ident) Name##_ID,
enum CcTestExtensionIds {
EXTENSION_LIST(DEFINE_EXTENSION_ID)
kMaxExtensions
};
#undef DEFINE_EXTENSION_ID
typedef v8::internal::EnumSet<CcTestExtensionIds> CcTestExtensionFlags;
#define DEFINE_EXTENSION_FLAG(Name, Ident) \
static const CcTestExtensionFlags Name(1 << Name##_ID);
static const CcTestExtensionFlags NO_EXTENSIONS(0);
static const CcTestExtensionFlags ALL_EXTENSIONS((1 << kMaxExtensions) - 1);
EXTENSION_LIST(DEFINE_EXTENSION_FLAG)
#undef DEFINE_EXTENSION_FLAG
class CcTest {
public:
typedef void (TestFunction)();
CcTest(TestFunction* callback, const char* file, const char* name,
bool enabled, bool initialize);
~CcTest() { i::DeleteArray(file_); }
void Run();
static CcTest* last() { return last_; }
CcTest* prev() { return prev_; }
const char* file() { return file_; }
const char* name() { return name_; }
bool enabled() { return enabled_; }
static v8::Isolate* isolate() {
CHECK(isolate_ != NULL);
v8::base::NoBarrier_Store(&isolate_used_, 1);
return isolate_;
}
static i::Isolate* InitIsolateOnce() {
if (!initialize_called_) InitializeVM();
return i_isolate();
}
static i::Isolate* i_isolate() {
return reinterpret_cast<i::Isolate*>(isolate());
}
static i::Heap* heap();
static void CollectGarbage(i::AllocationSpace space);
static void CollectAllGarbage(int flags);
static void CollectAllAvailableGarbage();
static v8::base::RandomNumberGenerator* random_number_generator();
static v8::Local<v8::Object> global();
static v8::ArrayBuffer::Allocator* array_buffer_allocator() {
return allocator_;
}
static void set_array_buffer_allocator(
v8::ArrayBuffer::Allocator* allocator) {
allocator_ = allocator;
}
// TODO(dcarney): Remove.
// This must be called first in a test.
static void InitializeVM();
// Only for UNINITIALIZED_TESTs
static void DisableAutomaticDispose();
// Helper function to configure a context.
// Must be in a HandleScope.
static v8::Local<v8::Context> NewContext(
CcTestExtensionFlags extensions,
v8::Isolate* isolate = CcTest::isolate());
static void TearDown();
private:
friend int main(int argc, char** argv);
TestFunction* callback_;
const char* file_;
const char* name_;
bool enabled_;
bool initialize_;
CcTest* prev_;
static CcTest* last_;
static v8::ArrayBuffer::Allocator* allocator_;
static v8::Isolate* isolate_;
static bool initialize_called_;
static v8::base::Atomic32 isolate_used_;
};
// Switches between all the Api tests using the threading support.
// In order to get a surprising but repeatable pattern of thread
// switching it has extra semaphores to control the order in which
// the tests alternate, not relying solely on the big V8 lock.
//
// A test is augmented with calls to ApiTestFuzzer::Fuzz() in its
// callbacks. This will have no effect when we are not running the
// thread fuzzing test. In the thread fuzzing test it will
// pseudorandomly select a successor thread and switch execution
// to that thread, suspending the current test.
class ApiTestFuzzer: public v8::base::Thread {
public:
void CallTest();
// The ApiTestFuzzer is also a Thread, so it has a Run method.
virtual void Run();
enum PartOfTest {
FIRST_PART,
SECOND_PART,
THIRD_PART,
FOURTH_PART,
FIFTH_PART,
SIXTH_PART,
SEVENTH_PART,
EIGHTH_PART,
LAST_PART = EIGHTH_PART
};
static void SetUp(PartOfTest part);
static void RunAllTests();
static void TearDown();
// This method switches threads if we are running the Threading test.
// Otherwise it does nothing.
static void Fuzz();
private:
explicit ApiTestFuzzer(int num)
: Thread(Options("ApiTestFuzzer")),
test_number_(num),
gate_(0),
active_(true) {}
~ApiTestFuzzer() {}
static bool fuzzing_;
static int tests_being_run_;
static int current_;
static int active_tests_;
static bool NextThread();
int test_number_;
v8::base::Semaphore gate_;
bool active_;
void ContextSwitch();
static int GetNextTestNumber();
static v8::base::Semaphore all_tests_done_;
};
#define THREADED_TEST(Name) \
static void Test##Name(); \
RegisterThreadedTest register_##Name(Test##Name, #Name); \
/* */ TEST(Name)
class RegisterThreadedTest {
public:
explicit RegisterThreadedTest(CcTest::TestFunction* callback,
const char* name)
: fuzzer_(NULL), callback_(callback), name_(name) {
prev_ = first_;
first_ = this;
count_++;
}
static int count() { return count_; }
static RegisterThreadedTest* nth(int i) {
CHECK(i < count());
RegisterThreadedTest* current = first_;
while (i > 0) {
i--;
current = current->prev_;
}
return current;
}
CcTest::TestFunction* callback() { return callback_; }
ApiTestFuzzer* fuzzer_;
const char* name() { return name_; }
private:
static RegisterThreadedTest* first_;
static int count_;
CcTest::TestFunction* callback_;
RegisterThreadedTest* prev_;
const char* name_;
};
// A LocalContext holds a reference to a v8::Context.
class LocalContext {
public:
LocalContext(v8::Isolate* isolate, v8::ExtensionConfiguration* extensions = 0,
v8::Local<v8::ObjectTemplate> global_template =
v8::Local<v8::ObjectTemplate>(),
v8::Local<v8::Value> global_object = v8::Local<v8::Value>()) {
Initialize(isolate, extensions, global_template, global_object);
}
LocalContext(v8::ExtensionConfiguration* extensions = 0,
v8::Local<v8::ObjectTemplate> global_template =
v8::Local<v8::ObjectTemplate>(),
v8::Local<v8::Value> global_object = v8::Local<v8::Value>()) {
Initialize(CcTest::isolate(), extensions, global_template, global_object);
}
virtual ~LocalContext();
v8::Context* operator->() {
return *reinterpret_cast<v8::Context**>(&context_);
}
v8::Context* operator*() { return operator->(); }
bool IsReady() { return !context_.IsEmpty(); }
v8::Local<v8::Context> local() {
return v8::Local<v8::Context>::New(isolate_, context_);
}
private:
void Initialize(v8::Isolate* isolate, v8::ExtensionConfiguration* extensions,
v8::Local<v8::ObjectTemplate> global_template,
v8::Local<v8::Value> global_object);
v8::Persistent<v8::Context> context_;
v8::Isolate* isolate_;
};
static inline uint16_t* AsciiToTwoByteString(const char* source) {
int array_length = i::StrLength(source) + 1;
uint16_t* converted = i::NewArray<uint16_t>(array_length);
for (int i = 0; i < array_length; i++) converted[i] = source[i];
return converted;
}
static inline v8::Local<v8::Value> v8_num(double x) {
return v8::Number::New(v8::Isolate::GetCurrent(), x);
}
static inline v8::Local<v8::String> v8_str(const char* x) {
return v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), x,
v8::NewStringType::kNormal)
.ToLocalChecked();
}
static inline v8::Local<v8::String> v8_str(v8::Isolate* isolate,
const char* x) {
return v8::String::NewFromUtf8(isolate, x, v8::NewStringType::kNormal)
.ToLocalChecked();
}
static inline v8::Local<v8::Symbol> v8_symbol(const char* name) {
return v8::Symbol::New(v8::Isolate::GetCurrent(), v8_str(name));
}
static inline v8::Local<v8::Script> v8_compile(v8::Local<v8::String> x) {
v8::Local<v8::Script> result;
if (v8::Script::Compile(v8::Isolate::GetCurrent()->GetCurrentContext(), x)
.ToLocal(&result)) {
return result;
}
return v8::Local<v8::Script>();
}
static inline v8::Local<v8::Script> v8_compile(const char* x) {
return v8_compile(v8_str(x));
}
static inline int32_t v8_run_int32value(v8::Local<v8::Script> script) {
v8::Local<v8::Context> context = CcTest::isolate()->GetCurrentContext();
return script->Run(context).ToLocalChecked()->Int32Value(context).FromJust();
}
static inline v8::Local<v8::Script> CompileWithOrigin(
v8::Local<v8::String> source, v8::Local<v8::String> origin_url) {
v8::ScriptOrigin origin(origin_url);
v8::ScriptCompiler::Source script_source(source, origin);
return v8::ScriptCompiler::Compile(
v8::Isolate::GetCurrent()->GetCurrentContext(), &script_source)
.ToLocalChecked();
}
static inline v8::Local<v8::Script> CompileWithOrigin(
v8::Local<v8::String> source, const char* origin_url) {
return CompileWithOrigin(source, v8_str(origin_url));
}
static inline v8::Local<v8::Script> CompileWithOrigin(const char* source,
const char* origin_url) {
return CompileWithOrigin(v8_str(source), v8_str(origin_url));
}
// Helper functions that compile and run the source.
static inline v8::MaybeLocal<v8::Value> CompileRun(
v8::Local<v8::Context> context, const char* source) {
return v8::Script::Compile(context, v8_str(source))
.ToLocalChecked()
->Run(context);
}
static inline v8::Local<v8::Value> CompileRunChecked(v8::Isolate* isolate,
const char* source) {
v8::Local<v8::String> source_string =
v8::String::NewFromUtf8(isolate, source, v8::NewStringType::kNormal)
.ToLocalChecked();
v8::Local<v8::Context> context = isolate->GetCurrentContext();
v8::Local<v8::Script> script =
v8::Script::Compile(context, source_string).ToLocalChecked();
return script->Run(context).ToLocalChecked();
}
static inline v8::Local<v8::Value> CompileRun(v8::Local<v8::String> source) {
v8::Local<v8::Value> result;
if (v8_compile(source)
->Run(v8::Isolate::GetCurrent()->GetCurrentContext())
.ToLocal(&result)) {
return result;
}
return v8::Local<v8::Value>();
}
// Helper functions that compile and run the source.
static inline v8::Local<v8::Value> CompileRun(const char* source) {
return CompileRun(v8_str(source));
}
static inline v8::Local<v8::Value> CompileRun(
v8::Local<v8::Context> context, v8::ScriptCompiler::Source* script_source,
v8::ScriptCompiler::CompileOptions options) {
v8::Local<v8::Value> result;
if (v8::ScriptCompiler::Compile(context, script_source, options)
.ToLocalChecked()
->Run(context)
.ToLocal(&result)) {
return result;
}
return v8::Local<v8::Value>();
}
static inline v8::Local<v8::Value> ParserCacheCompileRun(const char* source) {
// Compile once just to get the preparse data, then compile the second time
// using the data.
v8::Isolate* isolate = v8::Isolate::GetCurrent();
v8::Local<v8::Context> context = isolate->GetCurrentContext();
v8::ScriptCompiler::Source script_source(v8_str(source));
v8::ScriptCompiler::Compile(context, &script_source,
v8::ScriptCompiler::kProduceParserCache)
.ToLocalChecked();
// Check whether we received cached data, and if so use it.
v8::ScriptCompiler::CompileOptions options =
script_source.GetCachedData() ? v8::ScriptCompiler::kConsumeParserCache
: v8::ScriptCompiler::kNoCompileOptions;
return CompileRun(context, &script_source, options);
}
// Helper functions that compile and run the source with given origin.
static inline v8::Local<v8::Value> CompileRunWithOrigin(const char* source,
const char* origin_url,
int line_number,
int column_number) {
v8::Isolate* isolate = v8::Isolate::GetCurrent();
v8::Local<v8::Context> context = isolate->GetCurrentContext();
v8::ScriptOrigin origin(v8_str(origin_url),
v8::Integer::New(isolate, line_number),
v8::Integer::New(isolate, column_number));
v8::ScriptCompiler::Source script_source(v8_str(source), origin);
return CompileRun(context, &script_source,
v8::ScriptCompiler::CompileOptions());
}
static inline v8::Local<v8::Value> CompileRunWithOrigin(
v8::Local<v8::String> source, const char* origin_url) {
v8::Isolate* isolate = v8::Isolate::GetCurrent();
v8::Local<v8::Context> context = isolate->GetCurrentContext();
v8::ScriptCompiler::Source script_source(
source, v8::ScriptOrigin(v8_str(origin_url)));
return CompileRun(context, &script_source,
v8::ScriptCompiler::CompileOptions());
}
static inline v8::Local<v8::Value> CompileRunWithOrigin(
const char* source, const char* origin_url) {
return CompileRunWithOrigin(v8_str(source), origin_url);
}
static inline void ExpectString(const char* code, const char* expected) {
v8::Local<v8::Value> result = CompileRun(code);
CHECK(result->IsString());
v8::String::Utf8Value utf8(result);
CHECK_EQ(0, strcmp(expected, *utf8));
}
static inline void ExpectInt32(const char* code, int expected) {
v8::Local<v8::Value> result = CompileRun(code);
CHECK(result->IsInt32());
CHECK_EQ(expected,
result->Int32Value(v8::Isolate::GetCurrent()->GetCurrentContext())
.FromJust());
}
static inline void ExpectBoolean(const char* code, bool expected) {
v8::Local<v8::Value> result = CompileRun(code);
CHECK(result->IsBoolean());
CHECK_EQ(expected,
result->BooleanValue(v8::Isolate::GetCurrent()->GetCurrentContext())
.FromJust());
}
static inline void ExpectTrue(const char* code) {
ExpectBoolean(code, true);
}
static inline void ExpectFalse(const char* code) {
ExpectBoolean(code, false);
}
static inline void ExpectObject(const char* code,
v8::Local<v8::Value> expected) {
v8::Local<v8::Value> result = CompileRun(code);
CHECK(result->SameValue(expected));
}
static inline void ExpectUndefined(const char* code) {
v8::Local<v8::Value> result = CompileRun(code);
CHECK(result->IsUndefined());
}
static inline void ExpectNull(const char* code) {
v8::Local<v8::Value> result = CompileRun(code);
CHECK(result->IsNull());
}
static inline void CheckDoubleEquals(double expected, double actual) {
const double kEpsilon = 1e-10;
CHECK_LE(expected, actual + kEpsilon);
CHECK_GE(expected, actual - kEpsilon);
}
static void DummyDebugEventListener(
const v8::Debug::EventDetails& event_details) {}
static inline void EnableDebugger(v8::Isolate* isolate) {
v8::Debug::SetDebugEventListener(isolate, &DummyDebugEventListener);
}
static inline void DisableDebugger(v8::Isolate* isolate) {
v8::Debug::SetDebugEventListener(isolate, nullptr);
}
static inline void EmptyMessageQueues(v8::Isolate* isolate) {
while (v8::platform::PumpMessageLoop(v8::internal::V8::GetCurrentPlatform(),
isolate)) {
}
}
class InitializedHandleScopeImpl;
class InitializedHandleScope {
public:
InitializedHandleScope();
~InitializedHandleScope();
// Prefixing the below with main_ reduces a lot of naming clashes.
i::Isolate* main_isolate() { return main_isolate_; }
private:
i::Isolate* main_isolate_;
std::unique_ptr<InitializedHandleScopeImpl> initialized_handle_scope_impl_;
};
class HandleAndZoneScope : public InitializedHandleScope {
public:
HandleAndZoneScope();
~HandleAndZoneScope();
// Prefixing the below with main_ reduces a lot of naming clashes.
i::Zone* main_zone() { return main_zone_.get(); }
private:
v8::internal::AccountingAllocator allocator_;
std::unique_ptr<i::Zone> main_zone_;
};
class StaticOneByteResource : public v8::String::ExternalOneByteStringResource {
public:
explicit StaticOneByteResource(const char* data) : data_(data) {}
~StaticOneByteResource() {}
const char* data() const { return data_; }
size_t length() const { return strlen(data_); }
private:
const char* data_;
};
#endif // ifndef CCTEST_H_
| [
"[email protected]"
] | |
a9bdecf2dc00daf9ece2e9ee1fafaa0b539cacc2 | e217eaf05d0dab8dd339032b6c58636841aa8815 | /IfcTunnel/src/OpenInfraPlatform/IfcTunnel/entity/IfcStructuralLoadStatic.cpp | 2efc7baa05e756bc36420d9d86bb7eebf57584eb | [] | no_license | bigdoods/OpenInfraPlatform | f7785ebe4cb46e24d7f636e1b4110679d78a4303 | 0266e86a9f25f2ea9ec837d8d340d31a58a83c8e | refs/heads/master | 2021-01-21T03:41:20.124443 | 2016-01-26T23:20:21 | 2016-01-26T23:20:21 | 57,377,206 | 0 | 1 | null | 2016-04-29T10:38:19 | 2016-04-29T10:38:19 | null | UTF-8 | C++ | false | false | 2,614 | cpp | /*! \verbatim
* \copyright Copyright (c) 2014 Julian Amann. All rights reserved.
* \date 2014-03-05 19:30
* \author Julian Amann <[email protected]> (https://www.cms.bgu.tum.de/en/team/amann)
* \brief This file is part of the BlueFramework.
* \endverbatim
*/
#include <sstream>
#include <limits>
#include "model/IfcTunnelException.h"
#include "reader/ReaderUtil.h"
#include "writer/WriterUtil.h"
#include "IfcTunnelEntityEnums.h"
#include "include/IfcLabel.h"
#include "include/IfcStructuralLoadStatic.h"
namespace OpenInfraPlatform
{
namespace IfcTunnel
{
// ENTITY IfcStructuralLoadStatic
IfcStructuralLoadStatic::IfcStructuralLoadStatic() { m_entity_enum = IFCSTRUCTURALLOADSTATIC; }
IfcStructuralLoadStatic::IfcStructuralLoadStatic( int id ) { m_id = id; m_entity_enum = IFCSTRUCTURALLOADSTATIC; }
IfcStructuralLoadStatic::~IfcStructuralLoadStatic() {}
// method setEntity takes over all attributes from another instance of the class
void IfcStructuralLoadStatic::setEntity( shared_ptr<IfcTunnelEntity> other_entity )
{
shared_ptr<IfcStructuralLoadStatic> other = dynamic_pointer_cast<IfcStructuralLoadStatic>(other_entity);
if( !other) { return; }
m_Name = other->m_Name;
}
void IfcStructuralLoadStatic::getStepLine( std::stringstream& stream ) const
{
stream << "#" << m_id << "=IFCSTRUCTURALLOADSTATIC" << "(";
if( m_Name ) { m_Name->getStepParameter( stream ); } else { stream << "$"; }
stream << ");";
}
void IfcStructuralLoadStatic::getStepParameter( std::stringstream& stream, bool ) const { stream << "#" << m_id; }
void IfcStructuralLoadStatic::readStepData( std::vector<std::string>& args, const std::map<int,shared_ptr<IfcTunnelEntity> >& map )
{
const int num_args = (int)args.size();
if( num_args<1 ){ std::stringstream strserr; strserr << "Wrong parameter count for entity IfcStructuralLoadStatic, expecting 1, having " << num_args << ". Object id: " << getId() << std::endl; throw IfcTunnelException( strserr.str().c_str() ); }
#ifdef _DEBUG
if( num_args>1 ){ std::cout << "Wrong parameter count for entity IfcStructuralLoadStatic, expecting 1, having " << num_args << ". Object id: " << getId() << std::endl; }
#endif
m_Name = IfcLabel::readStepData( args[0] );
}
void IfcStructuralLoadStatic::setInverseCounterparts( shared_ptr<IfcTunnelEntity> ptr_self_entity )
{
IfcStructuralLoadOrResult::setInverseCounterparts( ptr_self_entity );
}
void IfcStructuralLoadStatic::unlinkSelf()
{
IfcStructuralLoadOrResult::unlinkSelf();
}
} // end namespace IfcTunnel
} // end namespace OpenInfraPlatform
| [
"[email protected]"
] | |
26f6106df909148a6dbd7bdcc16bf78385927597 | de65ff3cfafd21d0861c6e2f42dd5e7130f43c28 | /lab_7/przekazywanie_wskaznika_do_funkcji.cpp | fc914454bc9c88a679d999d2b3992b865a7c0546 | [] | no_license | michalmaj/WSEI_podstawy_programowania | 802e265e64572e72233d0349537c6557a07f451b | c1ef5f1f655618984922bd002490868cc338c411 | refs/heads/master | 2020-08-05T18:18:17.127719 | 2020-01-15T16:56:15 | 2020-01-15T16:56:15 | 212,651,148 | 9 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 459 | cpp | #include <iostream>
#include <string>
#include <vector>
// przekazanie wskaźnika do funkcji
void pomnoz(int* wsk)
{
*wsk *= 2;
}
int main()
{
int liczba{ 10 };
int* wsk{ nullptr };
std::cout << "Wartosc liczby to: " << liczba << std::endl;
pomnoz(&liczba);
std::cout << "Wartosc liczby to: " << liczba << std::endl;
std::cout << std::endl;
wsk = &liczba;
pomnoz(wsk);
std::cout << "Wartosc liczby to: " << liczba << std::endl;
return 0;
} | [
"[email protected]"
] | |
7680ece3e474f8c5c72a10a3a3764e721dc7c9d5 | 89d215e342d0b4bf7ff05bf2b1009e4c4e017c6a | /cpp_object_attr/src/main.cpp | d3d8f572069b8e98c7b51f7fb6adf30d52b811dd | [] | no_license | arturmiller/pybind11_examples | b49412feb791b06d1e892d682a431135a4eafc73 | 082515cac5dbb2a932754d4c7ce0013d290b0ecc | refs/heads/master | 2023-01-24T19:45:17.346060 | 2023-01-20T21:19:50 | 2023-01-20T21:19:50 | 161,075,935 | 16 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 97 | cpp | #include "example.cpp"
int main(int argc, char **argv) {
example();
return 0;
}
| [
"[email protected]"
] | |
947864cd779b8db4e7832eec489352443e0104d3 | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/config/epiphany/epiphany.cc | f8c049340856f5d765a51676e0f4808581ca5115 | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | C++ | false | false | 92,901 | cc | /* Subroutines used for code generation on the EPIPHANY cpu.
Copyright (C) 1994-2022 Free Software Foundation, Inc.
Contributed by Embecosm on behalf of Adapteva, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#define IN_TARGET_CODE 1
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "backend.h"
#include "target.h"
#include "rtl.h"
#include "tree.h"
#include "df.h"
#include "memmodel.h"
#include "tm_p.h"
#include "stringpool.h"
#include "attribs.h"
#include "optabs.h"
#include "emit-rtl.h"
#include "recog.h"
#include "diagnostic-core.h"
#include "alias.h"
#include "stor-layout.h"
#include "varasm.h"
#include "calls.h"
#include "output.h"
#include "insn-attr.h"
#include "explow.h"
#include "expr.h"
#include "tm-constrs.h"
#include "tree-pass.h" /* for current_pass */
#include "context.h"
#include "pass_manager.h"
#include "builtins.h"
/* Which cpu we're compiling for. */
int epiphany_cpu_type;
/* Name of mangle string to add to symbols to separate code compiled for each
cpu (or NULL). */
const char *epiphany_mangle_cpu;
/* Array of valid operand punctuation characters. */
char epiphany_punct_chars[256];
/* The rounding mode that we generally use for floating point. */
int epiphany_normal_fp_rounding;
/* The pass instance, for use in epiphany_optimize_mode_switching. */
static opt_pass *pass_mode_switch_use;
static void epiphany_init_reg_tables (void);
static int get_epiphany_condition_code (rtx);
static tree epiphany_handle_interrupt_attribute (tree *, tree, tree, int, bool *);
static tree epiphany_handle_forwarder_attribute (tree *, tree, tree, int,
bool *);
static bool epiphany_pass_by_reference (cumulative_args_t,
const function_arg_info &);
static rtx_insn *frame_insn (rtx);
/* defines for the initialization of the GCC target structure. */
#define TARGET_ATTRIBUTE_TABLE epiphany_attribute_table
#define TARGET_PRINT_OPERAND epiphany_print_operand
#define TARGET_PRINT_OPERAND_ADDRESS epiphany_print_operand_address
#define TARGET_RTX_COSTS epiphany_rtx_costs
#define TARGET_ADDRESS_COST epiphany_address_cost
#define TARGET_MEMORY_MOVE_COST epiphany_memory_move_cost
#define TARGET_PROMOTE_FUNCTION_MODE epiphany_promote_function_mode
#define TARGET_PROMOTE_PROTOTYPES hook_bool_const_tree_true
#define TARGET_RETURN_IN_MEMORY epiphany_return_in_memory
#define TARGET_PASS_BY_REFERENCE epiphany_pass_by_reference
#define TARGET_CALLEE_COPIES hook_bool_CUMULATIVE_ARGS_arg_info_true
#define TARGET_FUNCTION_VALUE epiphany_function_value
#define TARGET_LIBCALL_VALUE epiphany_libcall_value
#define TARGET_FUNCTION_VALUE_REGNO_P epiphany_function_value_regno_p
#define TARGET_SETUP_INCOMING_VARARGS epiphany_setup_incoming_varargs
/* Using the simplistic varags handling forces us to do partial reg/stack
argument passing for types with larger size (> 4 bytes) than alignment. */
#define TARGET_ARG_PARTIAL_BYTES epiphany_arg_partial_bytes
#define TARGET_FUNCTION_OK_FOR_SIBCALL epiphany_function_ok_for_sibcall
#define TARGET_SCHED_ISSUE_RATE epiphany_issue_rate
#define TARGET_SCHED_ADJUST_COST epiphany_adjust_cost
#define TARGET_LRA_P hook_bool_void_false
#define TARGET_LEGITIMATE_ADDRESS_P epiphany_legitimate_address_p
#define TARGET_SECONDARY_RELOAD epiphany_secondary_reload
#define TARGET_OPTION_OVERRIDE epiphany_override_options
#define TARGET_CONDITIONAL_REGISTER_USAGE epiphany_conditional_register_usage
#define TARGET_FUNCTION_ARG epiphany_function_arg
#define TARGET_FUNCTION_ARG_ADVANCE epiphany_function_arg_advance
#define TARGET_FUNCTION_ARG_BOUNDARY epiphany_function_arg_boundary
#define TARGET_TRAMPOLINE_INIT epiphany_trampoline_init
/* Nonzero if the constant rtx value is a legitimate general operand.
We can handle any 32- or 64-bit constant. */
#define TARGET_LEGITIMATE_CONSTANT_P hook_bool_mode_rtx_true
#define TARGET_MIN_DIVISIONS_FOR_RECIP_MUL \
epiphany_min_divisions_for_recip_mul
#define TARGET_VECTORIZE_PREFERRED_SIMD_MODE epiphany_preferred_simd_mode
#define TARGET_VECTOR_MODE_SUPPORTED_P epiphany_vector_mode_supported_p
#define TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE \
epiphany_vector_alignment_reachable
#define TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT \
epiphany_support_vector_misalignment
#define TARGET_ASM_CAN_OUTPUT_MI_THUNK \
hook_bool_const_tree_hwi_hwi_const_tree_true
#define TARGET_ASM_OUTPUT_MI_THUNK epiphany_output_mi_thunk
/* ??? we can use larger offsets for wider-mode sized accesses, but there
is no concept of anchors being dependent on the modes that they are used
for, so we can only use an offset range that would suit all modes. */
#define TARGET_MAX_ANCHOR_OFFSET (optimize_size ? 31 : 2047)
/* We further restrict the minimum to be a multiple of eight. */
#define TARGET_MIN_ANCHOR_OFFSET (optimize_size ? 0 : -2040)
/* Mode switching hooks. */
#define TARGET_MODE_EMIT emit_set_fp_mode
#define TARGET_MODE_NEEDED epiphany_mode_needed
#define TARGET_MODE_PRIORITY epiphany_mode_priority
#define TARGET_MODE_ENTRY epiphany_mode_entry
#define TARGET_MODE_EXIT epiphany_mode_exit
#define TARGET_MODE_AFTER epiphany_mode_after
#include "target-def.h"
#undef TARGET_ASM_ALIGNED_HI_OP
#define TARGET_ASM_ALIGNED_HI_OP "\t.hword\t"
#undef TARGET_ASM_ALIGNED_SI_OP
#define TARGET_ASM_ALIGNED_SI_OP "\t.word\t"
#undef TARGET_HARD_REGNO_MODE_OK
#define TARGET_HARD_REGNO_MODE_OK epiphany_hard_regno_mode_ok
#undef TARGET_CONSTANT_ALIGNMENT
#define TARGET_CONSTANT_ALIGNMENT epiphany_constant_alignment
#undef TARGET_STARTING_FRAME_OFFSET
#define TARGET_STARTING_FRAME_OFFSET epiphany_starting_frame_offset
bool
epiphany_is_interrupt_p (tree decl)
{
tree attrs;
attrs = DECL_ATTRIBUTES (decl);
if (lookup_attribute ("interrupt", attrs))
return true;
else
return false;
}
/* Called from epiphany_override_options.
We use this to initialize various things. */
static void
epiphany_init (void)
{
/* N.B. this pass must not run before the first optimize_mode_switching
pass because of the side offect of epiphany_mode_needed on
MACHINE_FUNCTION(cfun)->unknown_mode_uses. But it must run before
pass_resolve_sw_modes. */
pass_mode_switch_use = make_pass_mode_switch_use (g);
struct register_pass_info insert_use_info
= { pass_mode_switch_use, "mode_sw",
1, PASS_POS_INSERT_AFTER
};
opt_pass *mode_sw2
= g->get_passes()->get_pass_mode_switching ()->clone ();
struct register_pass_info mode_sw2_info
= { mode_sw2, "mode_sw",
1, PASS_POS_INSERT_AFTER
};
opt_pass *mode_sw3 = make_pass_resolve_sw_modes (g);
struct register_pass_info mode_sw3_info
= { mode_sw3, "mode_sw",
1, PASS_POS_INSERT_AFTER
};
opt_pass *mode_sw4
= g->get_passes()->get_pass_split_all_insns ()->clone ();
struct register_pass_info mode_sw4_info
= { mode_sw4, "mode_sw",
1, PASS_POS_INSERT_AFTER
};
static const int num_modes[] = NUM_MODES_FOR_MODE_SWITCHING;
#define N_ENTITIES ARRAY_SIZE (num_modes)
epiphany_init_reg_tables ();
/* Initialize array for PRINT_OPERAND_PUNCT_VALID_P. */
memset (epiphany_punct_chars, 0, sizeof (epiphany_punct_chars));
epiphany_punct_chars['-'] = 1;
epiphany_normal_fp_rounding
= (epiphany_normal_fp_mode == FP_MODE_ROUND_TRUNC
? FP_MODE_ROUND_TRUNC : FP_MODE_ROUND_NEAREST);
register_pass (&mode_sw4_info);
register_pass (&mode_sw2_info);
register_pass (&mode_sw3_info);
register_pass (&insert_use_info);
register_pass (&mode_sw2_info);
/* Verify that NUM_MODES_FOR_MODE_SWITCHING has one value per entity. */
gcc_assert (N_ENTITIES == EPIPHANY_MSW_ENTITY_NUM);
#if 1 /* As long as peep2_rescan is not implemented,
(see http://gcc.gnu.org/ml/gcc-patches/2011-10/msg02819.html,)
we need a second peephole2 pass to get reasonable code. */
{
opt_pass *extra_peephole2
= g->get_passes ()->get_pass_peephole2 ()->clone ();
struct register_pass_info peep2_2_info
= { extra_peephole2, "peephole2",
1, PASS_POS_INSERT_AFTER
};
register_pass (&peep2_2_info);
}
#endif
}
/* The condition codes of the EPIPHANY, and the inverse function. */
static const char *const epiphany_condition_codes[] =
{ /* 0 1 2 3 4 5 6 7 8 9 */
"eq", "ne", "ltu", "gteu", "gt", "lte", "gte", "lt", "gtu", "lteu",
/* 10 11 12 13 */
"beq","bne","blt", "blte",
};
#define EPIPHANY_INVERSE_CONDITION_CODE(X) ((X) ^ 1)
/* Returns the index of the EPIPHANY condition code string in
`epiphany_condition_codes'. COMPARISON should be an rtx like
`(eq (...) (...))'. */
static int
get_epiphany_condition_code (rtx comparison)
{
switch (GET_MODE (XEXP (comparison, 0)))
{
case E_CCmode:
switch (GET_CODE (comparison))
{
case EQ : return 0;
case NE : return 1;
case LTU : return 2;
case GEU : return 3;
case GT : return 4;
case LE : return 5;
case GE : return 6;
case LT : return 7;
case GTU : return 8;
case LEU : return 9;
default : gcc_unreachable ();
}
case E_CC_N_NEmode:
switch (GET_CODE (comparison))
{
case EQ: return 6;
case NE: return 7;
default: gcc_unreachable ();
}
case E_CC_C_LTUmode:
switch (GET_CODE (comparison))
{
case GEU: return 2;
case LTU: return 3;
default: gcc_unreachable ();
}
case E_CC_C_GTUmode:
switch (GET_CODE (comparison))
{
case LEU: return 3;
case GTU: return 2;
default: gcc_unreachable ();
}
case E_CC_FPmode:
switch (GET_CODE (comparison))
{
case EQ: return 10;
case NE: return 11;
case LT: return 12;
case LE: return 13;
default: gcc_unreachable ();
}
case E_CC_FP_EQmode:
switch (GET_CODE (comparison))
{
case EQ: return 0;
case NE: return 1;
default: gcc_unreachable ();
}
case E_CC_FP_GTEmode:
switch (GET_CODE (comparison))
{
case EQ: return 0;
case NE: return 1;
case GT : return 4;
case GE : return 6;
case UNLE : return 5;
case UNLT : return 7;
default: gcc_unreachable ();
}
case E_CC_FP_ORDmode:
switch (GET_CODE (comparison))
{
case ORDERED: return 9;
case UNORDERED: return 8;
default: gcc_unreachable ();
}
case E_CC_FP_UNEQmode:
switch (GET_CODE (comparison))
{
case UNEQ: return 9;
case LTGT: return 8;
default: gcc_unreachable ();
}
default: gcc_unreachable ();
}
/*NOTREACHED*/
return (42);
}
/* Implement TARGET_HARD_REGNO_MODE_OK. */
static bool
epiphany_hard_regno_mode_ok (unsigned int regno, machine_mode mode)
{
if (GET_MODE_SIZE (mode) > UNITS_PER_WORD)
return (regno & 1) == 0 && GPR_P (regno);
else
return true;
}
/* Given a comparison code (EQ, NE, etc.) and the first operand of a COMPARE,
return the mode to be used for the comparison. */
machine_mode
epiphany_select_cc_mode (enum rtx_code op,
rtx x ATTRIBUTE_UNUSED,
rtx y ATTRIBUTE_UNUSED)
{
if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
{
if (TARGET_SOFT_CMPSF
|| op == ORDERED || op == UNORDERED)
{
if (op == EQ || op == NE)
return CC_FP_EQmode;
if (op == ORDERED || op == UNORDERED)
return CC_FP_ORDmode;
if (op == UNEQ || op == LTGT)
return CC_FP_UNEQmode;
return CC_FP_GTEmode;
}
return CC_FPmode;
}
/* recognize combiner pattern ashlsi_btst:
(parallel [
(set (reg:N_NE 65 cc1)
(compare:N_NE (zero_extract:SI (reg/v:SI 75 [ a ])
(const_int 1 [0x1])
(const_int 0 [0x0]))
(const_int 0 [0x0])))
(clobber (scratch:SI)) */
else if ((op == EQ || op == NE)
&& GET_CODE (x) == ZERO_EXTRACT
&& XEXP (x, 1) == const1_rtx
&& CONST_INT_P (XEXP (x, 2)))
return CC_N_NEmode;
else if ((op == GEU || op == LTU) && GET_CODE (x) == PLUS)
return CC_C_LTUmode;
else if ((op == LEU || op == GTU) && GET_CODE (x) == MINUS)
return CC_C_GTUmode;
else
return CCmode;
}
enum reg_class epiphany_regno_reg_class[FIRST_PSEUDO_REGISTER];
static void
epiphany_init_reg_tables (void)
{
int i;
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
{
if (i == GPR_LR)
epiphany_regno_reg_class[i] = LR_REGS;
else if (i <= 7 && TARGET_PREFER_SHORT_INSN_REGS)
epiphany_regno_reg_class[i] = SHORT_INSN_REGS;
else if (call_used_or_fixed_reg_p (i)
&& TEST_HARD_REG_BIT (reg_class_contents[GENERAL_REGS], i))
epiphany_regno_reg_class[i] = SIBCALL_REGS;
else if (i >= CORE_CONTROL_FIRST && i <= CORE_CONTROL_LAST)
epiphany_regno_reg_class[i] = CORE_CONTROL_REGS;
else if (i < (GPR_LAST+1)
|| i == ARG_POINTER_REGNUM || i == FRAME_POINTER_REGNUM)
epiphany_regno_reg_class[i] = GENERAL_REGS;
else if (i == CC_REGNUM)
epiphany_regno_reg_class[i] = NO_REGS /* CC_REG: must be NO_REGS */;
else
epiphany_regno_reg_class[i] = NO_REGS;
}
}
/* EPIPHANY specific attribute support.
The EPIPHANY has these attributes:
interrupt - for interrupt functions.
short_call - the function is assumed to be reachable with the b / bl
instructions.
long_call - the function address is loaded into a register before use.
disinterrupt - functions which mask interrupts throughout.
They unmask them while calling an interruptible
function, though. */
static const struct attribute_spec epiphany_attribute_table[] =
{
/* { name, min_len, max_len, decl_req, type_req, fn_type_req,
affects_type_identity, handler, exclude } */
{ "interrupt", 0, 9, true, false, false, true,
epiphany_handle_interrupt_attribute, NULL },
{ "forwarder_section", 1, 1, true, false, false, false,
epiphany_handle_forwarder_attribute, NULL },
{ "long_call", 0, 0, false, true, true, false, NULL, NULL },
{ "short_call", 0, 0, false, true, true, false, NULL, NULL },
{ "disinterrupt", 0, 0, false, true, true, true, NULL, NULL },
{ NULL, 0, 0, false, false, false, false, NULL, NULL }
};
/* Handle an "interrupt" attribute; arguments as in
struct attribute_spec.handler. */
static tree
epiphany_handle_interrupt_attribute (tree *node, tree name, tree args,
int flags ATTRIBUTE_UNUSED,
bool *no_add_attrs)
{
tree value;
if (!args)
{
gcc_assert (DECL_P (*node));
tree t = TREE_TYPE (*node);
if (TREE_CODE (t) != FUNCTION_TYPE)
warning (OPT_Wattributes, "%qE attribute only applies to functions",
name);
/* Argument handling and the stack layout for interrupt handlers
don't mix. It makes no sense in the first place, so emit an
error for this. */
else if (TYPE_ARG_TYPES (t)
&& TREE_VALUE (TYPE_ARG_TYPES (t)) != void_type_node)
error_at (DECL_SOURCE_LOCATION (*node),
"interrupt handlers cannot have arguments");
return NULL_TREE;
}
value = TREE_VALUE (args);
if (TREE_CODE (value) != STRING_CST)
{
warning (OPT_Wattributes,
"argument of %qE attribute is not a string constant", name);
*no_add_attrs = true;
}
else if (strcmp (TREE_STRING_POINTER (value), "reset")
&& strcmp (TREE_STRING_POINTER (value), "software_exception")
&& strcmp (TREE_STRING_POINTER (value), "page_miss")
&& strcmp (TREE_STRING_POINTER (value), "timer0")
&& strcmp (TREE_STRING_POINTER (value), "timer1")
&& strcmp (TREE_STRING_POINTER (value), "message")
&& strcmp (TREE_STRING_POINTER (value), "dma0")
&& strcmp (TREE_STRING_POINTER (value), "dma1")
&& strcmp (TREE_STRING_POINTER (value), "wand")
&& strcmp (TREE_STRING_POINTER (value), "swi"))
{
warning (OPT_Wattributes,
"argument of %qE attribute is not %qs, %qs %qs, %qs, %qs, "
"%qs, %qs, %qs, %qs or %qs", name,
"reset", "software_exception", "page_miss", "timer0", "timer1",
"message", "dma0", "dma1", "wand", "swi");
*no_add_attrs = true;
return NULL_TREE;
}
return epiphany_handle_interrupt_attribute (node, name, TREE_CHAIN (args),
flags, no_add_attrs);
}
/* Handle a "forwarder_section" attribute; arguments as in
struct attribute_spec.handler. */
static tree
epiphany_handle_forwarder_attribute (tree *node ATTRIBUTE_UNUSED,
tree name, tree args,
int flags ATTRIBUTE_UNUSED,
bool *no_add_attrs)
{
tree value;
value = TREE_VALUE (args);
if (TREE_CODE (value) != STRING_CST)
{
warning (OPT_Wattributes,
"argument of %qE attribute is not a string constant", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Misc. utilities. */
/* Generate a SYMBOL_REF for the special function NAME. When the address
can't be placed directly into a call instruction, and if possible, copy
it to a register so that cse / code hoisting is possible. */
rtx
sfunc_symbol (const char *name)
{
rtx sym = gen_rtx_SYMBOL_REF (Pmode, name);
/* These sfuncs should be hidden, and every dso should get a copy. */
SYMBOL_REF_FLAGS (sym) = SYMBOL_FLAG_FUNCTION | SYMBOL_FLAG_LOCAL;
if (TARGET_SHORT_CALLS)
; /* Nothing to be done. */
else if (can_create_pseudo_p ())
sym = copy_to_mode_reg (Pmode, sym);
else /* We rely on reload to fix this up. */
gcc_assert (!reload_in_progress || reload_completed);
return sym;
}
/* X and Y are two things to compare using CODE in IN_MODE.
Emit the compare insn, construct the proper cc reg in the proper
mode, and return the rtx for the cc reg comparison in CMODE. */
rtx
gen_compare_reg (machine_mode cmode, enum rtx_code code,
machine_mode in_mode, rtx x, rtx y)
{
machine_mode mode = SELECT_CC_MODE (code, x, y);
rtx cc_reg, pat, clob0, clob1, clob2;
if (in_mode == VOIDmode)
in_mode = GET_MODE (x);
if (in_mode == VOIDmode)
in_mode = GET_MODE (y);
if (mode == CC_FPmode)
{
/* The epiphany has only EQ / NE / LT / LE conditions for
hardware floating point. */
if (code == GT || code == GE || code == UNLE || code == UNLT)
{
rtx tmp = x; x = y; y = tmp;
code = swap_condition (code);
}
cc_reg = gen_rtx_REG (mode, CCFP_REGNUM);
y = force_reg (in_mode, y);
}
else
{
if (mode == CC_FP_GTEmode
&& (code == LE || code == LT || code == UNGT || code == UNGE))
{
if (flag_finite_math_only
&& ((REG_P (x) && REGNO (x) == GPR_0)
|| (REG_P (y) && REGNO (y) == GPR_1)))
switch (code)
{
case LE: code = UNLE; break;
case LT: code = UNLT; break;
case UNGT: code = GT; break;
case UNGE: code = GE; break;
default: gcc_unreachable ();
}
else
{
rtx tmp = x; x = y; y = tmp;
code = swap_condition (code);
}
}
cc_reg = gen_rtx_REG (mode, CC_REGNUM);
}
if ((mode == CC_FP_EQmode || mode == CC_FP_GTEmode
|| mode == CC_FP_ORDmode || mode == CC_FP_UNEQmode)
/* mov<mode>cc might want to re-emit a comparison during ifcvt. */
&& (!REG_P (x) || REGNO (x) != GPR_0
|| !REG_P (y) || REGNO (y) != GPR_1))
{
rtx reg;
#if 0
/* ??? We should really do the r0/r1 clobber only during rtl expansion,
but just like the flag clobber of movsicc, we have to allow
this for ifcvt to work, on the assumption that we'll only want
to do this if these registers have been used before by the
pre-ifcvt code. */
gcc_assert (currently_expanding_to_rtl);
#endif
reg = gen_rtx_REG (in_mode, GPR_0);
if (reg_overlap_mentioned_p (reg, y))
return 0;
emit_move_insn (reg, x);
x = reg;
reg = gen_rtx_REG (in_mode, GPR_1);
emit_move_insn (reg, y);
y = reg;
}
else
x = force_reg (in_mode, x);
pat = gen_rtx_SET (cc_reg, gen_rtx_COMPARE (mode, x, y));
if (mode == CC_FP_EQmode || mode == CC_FP_GTEmode)
{
const char *name = mode == CC_FP_EQmode ? "__eqsf2" : "__gtesf2";
rtx use = gen_rtx_USE (VOIDmode, sfunc_symbol (name));
clob0 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, GPR_IP));
clob1 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, GPR_LR));
pat = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (4, pat, use, clob0, clob1));
}
else if (mode == CC_FP_ORDmode || mode == CC_FP_UNEQmode)
{
const char *name = mode == CC_FP_ORDmode ? "__ordsf2" : "__uneqsf2";
rtx use = gen_rtx_USE (VOIDmode, sfunc_symbol (name));
clob0 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, GPR_IP));
clob1 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, GPR_16));
clob2 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, GPR_LR));
pat = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (5, pat, use,
clob0, clob1, clob2));
}
else
{
clob0 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (in_mode));
pat = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, pat, clob0));
}
emit_insn (pat);
return gen_rtx_fmt_ee (code, cmode, cc_reg, const0_rtx);
}
/* The ROUND_ADVANCE* macros are local to this file. */
/* Round SIZE up to a word boundary. */
#define ROUND_ADVANCE(SIZE) \
(((SIZE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
/* Round arg MODE/TYPE up to the next word boundary. */
#define ROUND_ADVANCE_ARG(MODE, TYPE) \
((MODE) == BLKmode \
? ROUND_ADVANCE (int_size_in_bytes (TYPE)) \
: ROUND_ADVANCE (GET_MODE_SIZE (MODE)))
/* Round CUM up to the necessary point for argument MODE/TYPE. */
#define ROUND_ADVANCE_CUM(CUM, MODE, TYPE) \
(epiphany_function_arg_boundary ((MODE), (TYPE)) > BITS_PER_WORD \
? (((CUM) + 1) & ~1) \
: (CUM))
static unsigned int
epiphany_function_arg_boundary (machine_mode mode, const_tree type)
{
if ((type ? TYPE_ALIGN (type) : GET_MODE_BITSIZE (mode)) <= PARM_BOUNDARY)
return PARM_BOUNDARY;
return 2 * PARM_BOUNDARY;
}
/* Do any needed setup for a variadic function. For the EPIPHANY, we
actually emit the code in epiphany_expand_prologue.
CUM has not been updated for the last named argument (which is given
by ARG), and we rely on this fact. */
static void
epiphany_setup_incoming_varargs (cumulative_args_t cum,
const function_arg_info &arg,
int *pretend_size, int no_rtl)
{
int first_anon_arg;
CUMULATIVE_ARGS next_cum;
machine_function_t *mf = MACHINE_FUNCTION (cfun);
/* All BLKmode values are passed by reference. */
gcc_assert (arg.mode != BLKmode);
next_cum = *get_cumulative_args (cum);
next_cum = (ROUND_ADVANCE_CUM (next_cum, arg.mode, arg.type)
+ ROUND_ADVANCE_ARG (arg.mode, arg.type));
first_anon_arg = next_cum;
if (first_anon_arg < MAX_EPIPHANY_PARM_REGS && !no_rtl)
{
/* Note that first_reg_offset < MAX_EPIPHANY_PARM_REGS. */
int first_reg_offset = first_anon_arg;
*pretend_size = ((MAX_EPIPHANY_PARM_REGS - first_reg_offset)
* UNITS_PER_WORD);
}
mf->args_parsed = 1;
mf->pretend_args_odd = ((*pretend_size & UNITS_PER_WORD) ? 1 : 0);
}
static int
epiphany_arg_partial_bytes (cumulative_args_t cum,
const function_arg_info &arg)
{
int words = 0, rounded_cum;
gcc_assert (!epiphany_pass_by_reference (cum, arg));
rounded_cum = ROUND_ADVANCE_CUM (*get_cumulative_args (cum),
arg.mode, arg.type);
if (rounded_cum < MAX_EPIPHANY_PARM_REGS)
{
words = MAX_EPIPHANY_PARM_REGS - rounded_cum;
if (words >= ROUND_ADVANCE_ARG (arg.mode, arg.type))
words = 0;
}
return words * UNITS_PER_WORD;
}
/* Cost functions. */
/* Compute a (partial) cost for rtx X. Return true if the complete
cost has been computed, and false if subexpressions should be
scanned. In either case, *TOTAL contains the cost result. */
static bool
epiphany_rtx_costs (rtx x, machine_mode mode, int outer_code,
int opno ATTRIBUTE_UNUSED,
int *total, bool speed ATTRIBUTE_UNUSED)
{
int code = GET_CODE (x);
switch (code)
{
/* Small integers in the right context are as cheap as registers. */
case CONST_INT:
if ((outer_code == PLUS || outer_code == MINUS)
&& SIMM11 (INTVAL (x)))
{
*total = 0;
return true;
}
if (IMM16 (INTVAL (x)))
{
*total = outer_code == SET ? 0 : COSTS_N_INSNS (1);
return true;
}
/* FALLTHRU */
case CONST:
case LABEL_REF:
case SYMBOL_REF:
*total = COSTS_N_INSNS ((epiphany_small16 (x) ? 0 : 1)
+ (outer_code == SET ? 0 : 1));
return true;
case CONST_DOUBLE:
{
rtx high, low;
split_double (x, &high, &low);
*total = COSTS_N_INSNS (!IMM16 (INTVAL (high))
+ !IMM16 (INTVAL (low)));
return true;
}
case ASHIFT:
case ASHIFTRT:
case LSHIFTRT:
*total = COSTS_N_INSNS (1);
return true;
case COMPARE:
switch (mode)
{
/* There are a number of single-insn combiner patterns that use
the flag side effects of arithmetic. */
case E_CC_N_NEmode:
case E_CC_C_LTUmode:
case E_CC_C_GTUmode:
return true;
default:
return false;
}
case SET:
{
rtx src = SET_SRC (x);
if (BINARY_P (src))
*total = 0;
return false;
}
default:
return false;
}
}
/* Provide the costs of an addressing mode that contains ADDR.
If ADDR is not a valid address, its cost is irrelevant. */
static int
epiphany_address_cost (rtx addr, machine_mode mode,
addr_space_t as ATTRIBUTE_UNUSED, bool speed)
{
rtx reg;
rtx off = const0_rtx;
int i;
if (speed)
return 0;
/* Return 0 for addresses valid in short insns, 1 for addresses only valid
in long insns. */
switch (GET_CODE (addr))
{
case PLUS :
reg = XEXP (addr, 0);
off = XEXP (addr, 1);
break;
case POST_MODIFY:
reg = XEXP (addr, 0);
off = XEXP (addr, 1);
gcc_assert (GET_CODE (off) == PLUS && rtx_equal_p (reg, XEXP (off, 0)));
off = XEXP (off, 1);
if (satisfies_constraint_Rgs (reg) && satisfies_constraint_Rgs (off))
return 0;
return 1;
case REG:
default:
reg = addr;
break;
}
if (!satisfies_constraint_Rgs (reg))
return 1;
/* The offset range available for short instructions depends on the mode
of the memory access. */
/* First, make sure we have a valid integer. */
if (!satisfies_constraint_L (off))
return 1;
i = INTVAL (off);
switch (GET_MODE_SIZE (mode))
{
default:
case 4:
if (i & 1)
return 1;
i >>= 1;
/* Fall through. */
case 2:
if (i & 1)
return 1;
i >>= 1;
/* Fall through. */
case 1:
return i < -7 || i > 7;
}
}
/* Compute the cost of moving data between registers and memory.
For integer, load latency is twice as long as register-register moves,
but issue pich is the same. For floating point, load latency is three
times as much as a reg-reg move. */
static int
epiphany_memory_move_cost (machine_mode mode,
reg_class_t rclass ATTRIBUTE_UNUSED,
bool in ATTRIBUTE_UNUSED)
{
return GET_MODE_CLASS (mode) == MODE_INT ? 3 : 4;
}
/* Function prologue/epilogue handlers. */
/* EPIPHANY stack frames look like:
Before call After call
+-----------------------+ +-----------------------+
| | | |
high | local variables, | | local variables, |
mem | reg save area, etc. | | reg save area, etc. |
| | | |
+-----------------------+ +-----------------------+
| | | |
| arguments on stack. | | arguments on stack. |
| | | |
SP+8->+-----------------------+FP+8m->+-----------------------+
| 2 word save area for | | reg parm save area, |
| leaf funcs / flags | | only created for |
SP+0->+-----------------------+ | variable argument |
| functions |
FP+8n->+-----------------------+
| |
| register save area |
| |
+-----------------------+
| |
| local variables |
| |
FP+0->+-----------------------+
| |
| alloca allocations |
| |
+-----------------------+
| |
| arguments on stack |
| |
SP+8->+-----------------------+
low | 2 word save area for |
memory | leaf funcs / flags |
SP+0->+-----------------------+
Notes:
1) The "reg parm save area" does not exist for non variable argument fns.
The "reg parm save area" could be eliminated if we created our
own TARGET_GIMPLIFY_VA_ARG_EXPR, but that has tradeoffs as well
(so it's not done). */
/* Structure to be filled in by epiphany_compute_frame_size with register
save masks, and offsets for the current function. */
struct epiphany_frame_info
{
unsigned int total_size; /* # bytes that the entire frame takes up. */
unsigned int pretend_size; /* # bytes we push and pretend caller did. */
unsigned int args_size; /* # bytes that outgoing arguments take up. */
unsigned int reg_size; /* # bytes needed to store regs. */
unsigned int var_size; /* # bytes that variables take up. */
HARD_REG_SET gmask; /* Set of saved gp registers. */
int initialized; /* Nonzero if frame size already calculated. */
int stld_sz; /* Current load/store data size for offset
adjustment. */
int need_fp; /* value to override "frame_pointer_needed */
/* FIRST_SLOT is the slot that is saved first, at the very start of
the frame, with a POST_MODIFY to allocate the frame, if the size fits,
or at least the parm and register save areas, otherwise.
In the case of a large frame, LAST_SLOT is the slot that is saved last,
with a POST_MODIFY to allocate the rest of the frame. */
int first_slot, last_slot, first_slot_offset, last_slot_offset;
int first_slot_size;
int small_threshold;
};
/* Current frame information calculated by epiphany_compute_frame_size. */
static struct epiphany_frame_info current_frame_info;
/* Zero structure to initialize current_frame_info. */
static struct epiphany_frame_info zero_frame_info;
/* The usual; we set up our machine_function data. */
static struct machine_function *
epiphany_init_machine_status (void)
{
struct machine_function *machine;
/* Reset state info for each function. */
current_frame_info = zero_frame_info;
machine = ggc_cleared_alloc<machine_function_t> ();
return machine;
}
/* Implements INIT_EXPANDERS. We just set up to call the above
* function. */
void
epiphany_init_expanders (void)
{
init_machine_status = epiphany_init_machine_status;
}
/* Type of function DECL.
The result is cached. To reset the cache at the end of a function,
call with DECL = NULL_TREE. */
static enum epiphany_function_type
epiphany_compute_function_type (tree decl)
{
tree a;
/* Cached value. */
static enum epiphany_function_type fn_type = EPIPHANY_FUNCTION_UNKNOWN;
/* Last function we were called for. */
static tree last_fn = NULL_TREE;
/* Resetting the cached value? */
if (decl == NULL_TREE)
{
fn_type = EPIPHANY_FUNCTION_UNKNOWN;
last_fn = NULL_TREE;
return fn_type;
}
if (decl == last_fn && fn_type != EPIPHANY_FUNCTION_UNKNOWN)
return fn_type;
/* Assume we have a normal function (not an interrupt handler). */
fn_type = EPIPHANY_FUNCTION_NORMAL;
/* Now see if this is an interrupt handler. */
for (a = DECL_ATTRIBUTES (decl);
a;
a = TREE_CHAIN (a))
{
tree name = TREE_PURPOSE (a);
if (name == get_identifier ("interrupt"))
fn_type = EPIPHANY_FUNCTION_INTERRUPT;
}
last_fn = decl;
return fn_type;
}
#define RETURN_ADDR_REGNUM GPR_LR
#define FRAME_POINTER_MASK (1 << (FRAME_POINTER_REGNUM))
#define RETURN_ADDR_MASK (1 << (RETURN_ADDR_REGNUM))
/* Tell prologue and epilogue if register REGNO should be saved / restored.
The return address and frame pointer are treated separately.
Don't consider them here. */
#define MUST_SAVE_REGISTER(regno, interrupt_p) \
((df_regs_ever_live_p (regno) \
|| (interrupt_p && !crtl->is_leaf \
&& call_used_or_fixed_reg_p (regno) && !fixed_regs[regno])) \
&& (!call_used_or_fixed_reg_p (regno) || regno == GPR_LR \
|| (interrupt_p && regno != GPR_SP)))
#define MUST_SAVE_RETURN_ADDR 0
/* Return the bytes needed to compute the frame pointer from the current
stack pointer.
SIZE is the size needed for local variables. */
static unsigned int
epiphany_compute_frame_size (int size /* # of var. bytes allocated. */)
{
int regno;
unsigned int total_size, var_size, args_size, pretend_size, reg_size;
HARD_REG_SET gmask;
enum epiphany_function_type fn_type;
int interrupt_p;
int first_slot, last_slot, first_slot_offset, last_slot_offset;
int first_slot_size;
int small_slots = 0;
var_size = size;
args_size = crtl->outgoing_args_size;
pretend_size = crtl->args.pretend_args_size;
total_size = args_size + var_size;
reg_size = 0;
CLEAR_HARD_REG_SET (gmask);
first_slot = -1;
first_slot_offset = 0;
last_slot = -1;
last_slot_offset = 0;
first_slot_size = UNITS_PER_WORD;
/* See if this is an interrupt handler. Call used registers must be saved
for them too. */
fn_type = epiphany_compute_function_type (current_function_decl);
interrupt_p = EPIPHANY_INTERRUPT_P (fn_type);
/* Calculate space needed for registers. */
for (regno = MAX_EPIPHANY_PARM_REGS - 1; pretend_size > reg_size; regno--)
{
reg_size += UNITS_PER_WORD;
SET_HARD_REG_BIT (gmask, regno);
if (epiphany_stack_offset - reg_size == 0)
first_slot = regno;
}
if (interrupt_p)
reg_size += 2 * UNITS_PER_WORD;
else
small_slots = epiphany_stack_offset / UNITS_PER_WORD;
if (frame_pointer_needed)
{
current_frame_info.need_fp = 1;
if (!interrupt_p && first_slot < 0)
first_slot = GPR_FP;
}
else
current_frame_info.need_fp = 0;
for (regno = 0; regno <= GPR_LAST; regno++)
{
if (MUST_SAVE_REGISTER (regno, interrupt_p))
{
gcc_assert (!TEST_HARD_REG_BIT (gmask, regno));
reg_size += UNITS_PER_WORD;
SET_HARD_REG_BIT (gmask, regno);
/* FIXME: when optimizing for speed, take schedling into account
when selecting these registers. */
if (regno == first_slot)
gcc_assert (regno == GPR_FP && frame_pointer_needed);
else if (!interrupt_p && first_slot < 0)
first_slot = regno;
else if (last_slot < 0
&& (first_slot ^ regno) != 1
&& (!interrupt_p || regno > GPR_1))
last_slot = regno;
}
}
if (TEST_HARD_REG_BIT (gmask, GPR_LR))
MACHINE_FUNCTION (cfun)->lr_clobbered = 1;
/* ??? Could sometimes do better than that. */
current_frame_info.small_threshold
= (optimize >= 3 || interrupt_p ? 0
: pretend_size ? small_slots
: 4 + small_slots - (first_slot == GPR_FP));
/* If there might be variables with 64-bit alignment requirement, align the
start of the variables. */
if (var_size >= 2 * UNITS_PER_WORD
/* We don't want to split a double reg save/restore across two unpaired
stack slots when optimizing. This rounding could be avoided with
more complex reordering of the register saves, but that would seem
to be a lot of code complexity for little gain. */
|| (reg_size > 8 && optimize))
reg_size = EPIPHANY_STACK_ALIGN (reg_size);
if (((total_size + reg_size
/* Reserve space for UNKNOWN_REGNUM. */
+ EPIPHANY_STACK_ALIGN (4))
<= (unsigned) epiphany_stack_offset)
&& !interrupt_p
&& crtl->is_leaf && !frame_pointer_needed)
{
first_slot = -1;
last_slot = -1;
goto alloc_done;
}
else if (reg_size
&& !interrupt_p
&& reg_size < (unsigned HOST_WIDE_INT) epiphany_stack_offset)
reg_size = epiphany_stack_offset;
if (interrupt_p)
{
if (total_size + reg_size < 0x3fc)
{
first_slot_offset = EPIPHANY_STACK_ALIGN (total_size + reg_size);
first_slot_offset += EPIPHANY_STACK_ALIGN (epiphany_stack_offset);
last_slot = -1;
}
else
{
first_slot_offset = EPIPHANY_STACK_ALIGN (reg_size);
last_slot_offset = EPIPHANY_STACK_ALIGN (total_size);
last_slot_offset += EPIPHANY_STACK_ALIGN (epiphany_stack_offset);
if (last_slot >= 0)
CLEAR_HARD_REG_BIT (gmask, last_slot);
}
}
else if (total_size + reg_size < 0x1ffc && first_slot >= 0)
{
first_slot_offset = EPIPHANY_STACK_ALIGN (total_size + reg_size);
last_slot = -1;
}
else
{
if (total_size + reg_size <= (unsigned) epiphany_stack_offset)
{
gcc_assert (first_slot < 0);
gcc_assert (reg_size == 0 || (int) reg_size == epiphany_stack_offset);
last_slot_offset = EPIPHANY_STACK_ALIGN (total_size + reg_size);
}
else
{
first_slot_offset
= (reg_size
? EPIPHANY_STACK_ALIGN (reg_size - epiphany_stack_offset) : 0);
if (!first_slot_offset)
{
if (first_slot != GPR_FP || !current_frame_info.need_fp)
last_slot = first_slot;
first_slot = -1;
}
last_slot_offset = EPIPHANY_STACK_ALIGN (total_size);
if (reg_size)
last_slot_offset += EPIPHANY_STACK_ALIGN (epiphany_stack_offset);
}
if (last_slot >= 0)
CLEAR_HARD_REG_BIT (gmask, last_slot);
}
alloc_done:
if (first_slot >= 0)
{
CLEAR_HARD_REG_BIT (gmask, first_slot);
if (TEST_HARD_REG_BIT (gmask, first_slot ^ 1)
&& epiphany_stack_offset - pretend_size >= 2 * UNITS_PER_WORD)
{
CLEAR_HARD_REG_BIT (gmask, first_slot ^ 1);
first_slot_size = 2 * UNITS_PER_WORD;
first_slot &= ~1;
}
}
total_size = first_slot_offset + last_slot_offset;
/* Save computed information. */
current_frame_info.total_size = total_size;
current_frame_info.pretend_size = pretend_size;
current_frame_info.var_size = var_size;
current_frame_info.args_size = args_size;
current_frame_info.reg_size = reg_size;
current_frame_info.gmask = gmask;
current_frame_info.first_slot = first_slot;
current_frame_info.last_slot = last_slot;
current_frame_info.first_slot_offset = first_slot_offset;
current_frame_info.first_slot_size = first_slot_size;
current_frame_info.last_slot_offset = last_slot_offset;
current_frame_info.initialized = reload_completed;
/* Ok, we're done. */
return total_size;
}
/* Print operand X (an rtx) in assembler syntax to file FILE.
CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
For `%' followed by punctuation, CODE is the punctuation and X is null. */
static void
epiphany_print_operand (FILE *file, rtx x, int code)
{
switch (code)
{
case 'd':
fputs (epiphany_condition_codes[get_epiphany_condition_code (x)], file);
return;
case 'D':
fputs (epiphany_condition_codes[EPIPHANY_INVERSE_CONDITION_CODE
(get_epiphany_condition_code (x))],
file);
return;
case 'X':
current_frame_info.stld_sz = 8;
break;
case 'C' :
current_frame_info.stld_sz = 4;
break;
case 'c' :
current_frame_info.stld_sz = 2;
break;
case 'f':
fputs (REG_P (x) ? "jalr " : "bl ", file);
break;
case '-':
fprintf (file, "r%d", epiphany_m1reg);
return;
case 0 :
/* Do nothing special. */
break;
default :
/* Unknown flag. */
output_operand_lossage ("invalid operand output code");
}
switch (GET_CODE (x))
{
rtx addr;
rtx offset;
case REG :
fputs (reg_names[REGNO (x)], file);
break;
case MEM :
if (code == 0)
current_frame_info.stld_sz = 1;
fputc ('[', file);
addr = XEXP (x, 0);
switch (GET_CODE (addr))
{
case POST_INC:
offset = GEN_INT (GET_MODE_SIZE (GET_MODE (x)));
addr = XEXP (addr, 0);
break;
case POST_DEC:
offset = GEN_INT (-GET_MODE_SIZE (GET_MODE (x)));
addr = XEXP (addr, 0);
break;
case POST_MODIFY:
offset = XEXP (XEXP (addr, 1), 1);
addr = XEXP (addr, 0);
break;
default:
offset = 0;
break;
}
output_address (GET_MODE (x), addr);
fputc (']', file);
if (offset)
{
fputc (',', file);
if (CONST_INT_P (offset)) switch (GET_MODE_SIZE (GET_MODE (x)))
{
default:
gcc_unreachable ();
case 8:
offset = GEN_INT (INTVAL (offset) >> 3);
break;
case 4:
offset = GEN_INT (INTVAL (offset) >> 2);
break;
case 2:
offset = GEN_INT (INTVAL (offset) >> 1);
break;
case 1:
break;
}
output_address (GET_MODE (x), offset);
}
break;
case CONST_DOUBLE :
/* We handle SFmode constants here as output_addr_const doesn't. */
if (GET_MODE (x) == SFmode)
{
long l;
REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (x), l);
fprintf (file, "%s0x%08lx", IMMEDIATE_PREFIX, l);
break;
}
/* FALLTHRU */
/* Let output_addr_const deal with it. */
case CONST_INT:
fprintf(file,"%s",IMMEDIATE_PREFIX);
if (code == 'C' || code == 'X')
{
fprintf (file, "%ld",
(long) (INTVAL (x) / current_frame_info.stld_sz));
break;
}
/* Fall through */
default :
output_addr_const (file, x);
break;
}
}
/* Print a memory address as an operand to reference that memory location. */
static void
epiphany_print_operand_address (FILE *file, machine_mode /*mode*/, rtx addr)
{
rtx base, index = 0;
int offset = 0;
switch (GET_CODE (addr))
{
case REG :
fputs (reg_names[REGNO (addr)], file);
break;
case SYMBOL_REF :
if (/*???*/ 0 && SYMBOL_REF_FUNCTION_P (addr))
{
output_addr_const (file, addr);
}
else
{
output_addr_const (file, addr);
}
break;
case PLUS :
if (GET_CODE (XEXP (addr, 0)) == CONST_INT)
offset = INTVAL (XEXP (addr, 0)), base = XEXP (addr, 1);
else if (GET_CODE (XEXP (addr, 1)) == CONST_INT)
offset = INTVAL (XEXP (addr, 1)), base = XEXP (addr, 0);
else
base = XEXP (addr, 0), index = XEXP (addr, 1);
gcc_assert (GET_CODE (base) == REG);
fputs (reg_names[REGNO (base)], file);
if (index == 0)
{
/*
** ++rk quirky method to scale offset for ld/str.......
*/
fprintf (file, ",%s%d", IMMEDIATE_PREFIX,
offset/current_frame_info.stld_sz);
}
else
{
switch (GET_CODE (index))
{
case REG:
fprintf (file, ",%s", reg_names[REGNO (index)]);
break;
case SYMBOL_REF:
fputc (',', file), output_addr_const (file, index);
break;
default:
gcc_unreachable ();
}
}
break;
case PRE_INC: case PRE_DEC: case POST_INC: case POST_DEC: case POST_MODIFY:
/* We shouldn't get here as we've lost the mode of the memory object
(which says how much to inc/dec by.
FIXME: We have the mode now, address printing can be moved into this
function. */
gcc_unreachable ();
break;
default:
output_addr_const (file, addr);
break;
}
}
void
epiphany_final_prescan_insn (rtx_insn *insn ATTRIBUTE_UNUSED,
rtx *opvec ATTRIBUTE_UNUSED,
int noperands ATTRIBUTE_UNUSED)
{
int i = epiphany_n_nops;
rtx pat ATTRIBUTE_UNUSED;
while (i--)
fputs ("\tnop\n", asm_out_file);
}
/* Worker function for TARGET_RETURN_IN_MEMORY. */
static bool
epiphany_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
{
HOST_WIDE_INT size = int_size_in_bytes (type);
if (AGGREGATE_TYPE_P (type)
&& (TYPE_MODE (type) == BLKmode || TYPE_NEEDS_CONSTRUCTING (type)))
return true;
return (size == -1 || size > 8);
}
/* For EPIPHANY, All aggregates and arguments greater than 8 bytes are
passed by reference. */
static bool
epiphany_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
{
if (tree type = arg.type)
{
if (AGGREGATE_TYPE_P (type)
&& (arg.mode == BLKmode || TYPE_NEEDS_CONSTRUCTING (type)))
return true;
}
return false;
}
static rtx
epiphany_function_value (const_tree ret_type,
const_tree fn_decl_or_type ATTRIBUTE_UNUSED,
bool outgoing ATTRIBUTE_UNUSED)
{
machine_mode mode;
mode = TYPE_MODE (ret_type);
/* We must change the mode like PROMOTE_MODE does.
??? PROMOTE_MODE is ignored for non-scalar types.
The set of types tested here has to be kept in sync
with the one in explow.cc:promote_mode. */
if (GET_MODE_CLASS (mode) == MODE_INT
&& GET_MODE_SIZE (mode) < 4
&& (TREE_CODE (ret_type) == INTEGER_TYPE
|| TREE_CODE (ret_type) == ENUMERAL_TYPE
|| TREE_CODE (ret_type) == BOOLEAN_TYPE
|| TREE_CODE (ret_type) == OFFSET_TYPE))
mode = SImode;
return gen_rtx_REG (mode, 0);
}
static rtx
epiphany_libcall_value (machine_mode mode, const_rtx fun ATTRIBUTE_UNUSED)
{
return gen_rtx_REG (mode, 0);
}
static bool
epiphany_function_value_regno_p (const unsigned int regno ATTRIBUTE_UNUSED)
{
return regno == 0;
}
/* Fix up invalid option settings. */
static void
epiphany_override_options (void)
{
if (epiphany_stack_offset < 4)
error ("%<stack_offset%> must be at least 4");
if (epiphany_stack_offset & 3)
error ("%<stack_offset%> must be a multiple of 4");
epiphany_stack_offset = (epiphany_stack_offset + 3) & -4;
if (!TARGET_SOFT_CMPSF)
flag_finite_math_only = 1;
/* This needs to be done at start up. It's convenient to do it here. */
epiphany_init ();
}
/* For a DImode load / store SET, make a SImode set for a
REG_FRAME_RELATED_EXPR note, using OFFSET to create a high or lowpart
subreg. */
static rtx
frame_subreg_note (rtx set, int offset)
{
rtx src = simplify_gen_subreg (SImode, SET_SRC (set), DImode, offset);
rtx dst = simplify_gen_subreg (SImode, SET_DEST (set), DImode, offset);
set = gen_rtx_SET (dst ,src);
RTX_FRAME_RELATED_P (set) = 1;
return set;
}
static rtx_insn *
frame_insn (rtx x)
{
int i;
rtx note = NULL_RTX;
rtx_insn *insn;
if (GET_CODE (x) == PARALLEL)
{
rtx part = XVECEXP (x, 0, 0);
if (GET_MODE (SET_DEST (part)) == DImode)
{
note = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (XVECLEN (x, 0) + 1));
XVECEXP (note, 0, 0) = frame_subreg_note (part, 0);
XVECEXP (note, 0, 1) = frame_subreg_note (part, UNITS_PER_WORD);
for (i = XVECLEN (x, 0) - 1; i >= 1; i--)
{
part = copy_rtx (XVECEXP (x, 0, i));
if (GET_CODE (part) == SET)
RTX_FRAME_RELATED_P (part) = 1;
XVECEXP (note, 0, i + 1) = part;
}
}
else
{
for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
{
part = XVECEXP (x, 0, i);
if (GET_CODE (part) == SET)
RTX_FRAME_RELATED_P (part) = 1;
}
}
}
else if (GET_CODE (x) == SET && GET_MODE (SET_DEST (x)) == DImode)
note = gen_rtx_PARALLEL (VOIDmode,
gen_rtvec (2, frame_subreg_note (x, 0),
frame_subreg_note (x, UNITS_PER_WORD)));
insn = emit_insn (x);
RTX_FRAME_RELATED_P (insn) = 1;
if (note)
add_reg_note (insn, REG_FRAME_RELATED_EXPR, note);
return insn;
}
static rtx_insn *
frame_move_insn (rtx to, rtx from)
{
return frame_insn (gen_rtx_SET (to, from));
}
/* Generate a MEM referring to a varargs argument slot. */
static rtx
gen_varargs_mem (machine_mode mode, rtx addr)
{
rtx mem = gen_rtx_MEM (mode, addr);
MEM_NOTRAP_P (mem) = 1;
set_mem_alias_set (mem, get_varargs_alias_set ());
return mem;
}
/* Emit instructions to save or restore registers in the range [MIN..LIMIT) .
If EPILOGUE_P is 0, save; if it is one, restore.
ADDR is the stack slot to save the first register to; subsequent
registers are written to lower addresses.
However, the order of register pairs can be reversed in order to
use double-word load-store instructions. Likewise, an unpaired single
word save slot can be skipped while double saves are carried out, and
reused when a single register is to be saved. */
static void
epiphany_emit_save_restore (int min, int limit, rtx addr, int epilogue_p)
{
int i;
int stack_offset
= current_frame_info.first_slot >= 0 ? epiphany_stack_offset : 0;
rtx skipped_mem = NULL_RTX;
int last_saved = limit - 1;
if (!optimize)
while (last_saved >= 0
&& !TEST_HARD_REG_BIT (current_frame_info.gmask, last_saved))
last_saved--;
for (i = 0; i < limit; i++)
{
machine_mode mode = word_mode;
rtx mem, reg;
int n = i;
rtx (*gen_mem) (machine_mode, rtx) = gen_frame_mem;
/* Make sure we push the arguments in the right order. */
if (n < MAX_EPIPHANY_PARM_REGS && crtl->args.pretend_args_size)
{
n = MAX_EPIPHANY_PARM_REGS - 1 - n;
gen_mem = gen_varargs_mem;
}
if (stack_offset == current_frame_info.first_slot_size
&& current_frame_info.first_slot >= 0)
{
if (current_frame_info.first_slot_size > UNITS_PER_WORD)
{
mode = DImode;
addr = plus_constant (Pmode, addr,
- (HOST_WIDE_INT) UNITS_PER_WORD);
}
if (i-- < min || !epilogue_p)
goto next_slot;
n = current_frame_info.first_slot;
gen_mem = gen_frame_mem;
}
else if (n == UNKNOWN_REGNUM
&& stack_offset > current_frame_info.first_slot_size)
{
i--;
goto next_slot;
}
else if (!TEST_HARD_REG_BIT (current_frame_info.gmask, n))
continue;
else if (i < min)
goto next_slot;
/* Check for a register pair to save. */
if (n == i
&& (n >= MAX_EPIPHANY_PARM_REGS || crtl->args.pretend_args_size == 0)
&& (n & 1) == 0 && n+1 < limit
&& TEST_HARD_REG_BIT (current_frame_info.gmask, n+1))
{
/* If it fits in the current stack slot pair, place it there. */
if (GET_CODE (addr) == PLUS && (stack_offset & 7) == 0
&& stack_offset != 2 * UNITS_PER_WORD
&& (current_frame_info.last_slot < 0
|| INTVAL (XEXP (addr, 1)) != UNITS_PER_WORD)
&& (n+1 != last_saved || !skipped_mem))
{
mode = DImode;
i++;
addr = plus_constant (Pmode, addr,
- (HOST_WIDE_INT) UNITS_PER_WORD);
}
/* If it fits in the following stack slot pair, that's fine, too. */
else if (GET_CODE (addr) == PLUS && (stack_offset & 7) == 4
&& stack_offset != 2 * UNITS_PER_WORD
&& stack_offset != 3 * UNITS_PER_WORD
&& (current_frame_info.last_slot < 0
|| INTVAL (XEXP (addr, 1)) != 2 * UNITS_PER_WORD)
&& n + 1 != last_saved)
{
gcc_assert (!skipped_mem);
stack_offset -= GET_MODE_SIZE (mode);
skipped_mem = gen_mem (mode, addr);
mode = DImode;
i++;
addr = plus_constant (Pmode, addr,
- (HOST_WIDE_INT) 2 * UNITS_PER_WORD);
}
}
reg = gen_rtx_REG (mode, n);
if (mode != DImode && skipped_mem)
mem = skipped_mem;
else
mem = gen_mem (mode, addr);
/* If we are loading / storing LR, note the offset that
gen_reload_insi_ra requires. Since GPR_LR is even,
we only need to test n, even if mode is DImode. */
gcc_assert ((GPR_LR & 1) == 0);
if (n == GPR_LR)
{
long lr_slot_offset = 0;
rtx m_addr = XEXP (mem, 0);
if (GET_CODE (m_addr) == PLUS)
lr_slot_offset = INTVAL (XEXP (m_addr, 1));
if (frame_pointer_needed)
lr_slot_offset += (current_frame_info.first_slot_offset
- current_frame_info.total_size);
if (MACHINE_FUNCTION (cfun)->lr_slot_known)
gcc_assert (MACHINE_FUNCTION (cfun)->lr_slot_offset
== lr_slot_offset);
MACHINE_FUNCTION (cfun)->lr_slot_offset = lr_slot_offset;
MACHINE_FUNCTION (cfun)->lr_slot_known = 1;
}
if (!epilogue_p)
frame_move_insn (mem, reg);
else if (n >= MAX_EPIPHANY_PARM_REGS || !crtl->args.pretend_args_size)
emit_move_insn (reg, mem);
if (mem == skipped_mem)
{
skipped_mem = NULL_RTX;
continue;
}
next_slot:
addr = plus_constant (Pmode, addr, -(HOST_WIDE_INT) UNITS_PER_WORD);
stack_offset -= GET_MODE_SIZE (mode);
}
}
void
epiphany_expand_prologue (void)
{
int interrupt_p;
enum epiphany_function_type fn_type;
rtx addr, mem, off, reg;
if (!current_frame_info.initialized)
epiphany_compute_frame_size (get_frame_size ());
/* It is debatable if we should adjust this by epiphany_stack_offset. */
if (flag_stack_usage_info)
current_function_static_stack_size = current_frame_info.total_size;
fn_type = epiphany_compute_function_type (current_function_decl);
interrupt_p = EPIPHANY_INTERRUPT_P (fn_type);
if (interrupt_p)
{
addr = plus_constant (Pmode, stack_pointer_rtx,
- (HOST_WIDE_INT) 2 * UNITS_PER_WORD);
if (!lookup_attribute ("forwarder_section",
DECL_ATTRIBUTES (current_function_decl))
|| !epiphany_is_long_call_p (XEXP (DECL_RTL (current_function_decl),
0)))
frame_move_insn (gen_frame_mem (DImode, addr),
gen_rtx_REG (DImode, GPR_0));
frame_move_insn (gen_rtx_REG (SImode, GPR_0),
gen_rtx_REG (word_mode, STATUS_REGNUM));
frame_move_insn (gen_rtx_REG (SImode, GPR_1),
gen_rtx_REG (word_mode, IRET_REGNUM));
mem = gen_frame_mem (BLKmode, stack_pointer_rtx);
off = GEN_INT (-current_frame_info.first_slot_offset);
frame_insn (gen_stack_adjust_add (off, mem));
if (!epiphany_uninterruptible_p (current_function_decl))
emit_insn (gen_gie ());
addr = plus_constant (Pmode, stack_pointer_rtx,
current_frame_info.first_slot_offset
- (HOST_WIDE_INT) 3 * UNITS_PER_WORD);
}
else
{
addr = plus_constant (Pmode, stack_pointer_rtx,
epiphany_stack_offset
- (HOST_WIDE_INT) UNITS_PER_WORD);
epiphany_emit_save_restore (0, current_frame_info.small_threshold,
addr, 0);
/* Allocate register save area; for small to medium size frames,
allocate the entire frame; this is joint with one register save. */
if (current_frame_info.first_slot >= 0)
{
machine_mode mode
= (current_frame_info.first_slot_size == UNITS_PER_WORD
? word_mode : DImode);
off = GEN_INT (-current_frame_info.first_slot_offset);
mem = gen_frame_mem (BLKmode,
gen_rtx_PLUS (Pmode, stack_pointer_rtx, off));
frame_insn (gen_stack_adjust_str
(gen_frame_mem (mode, stack_pointer_rtx),
gen_rtx_REG (mode, current_frame_info.first_slot),
off, mem));
addr = plus_constant (Pmode, addr,
current_frame_info.first_slot_offset);
}
}
epiphany_emit_save_restore (current_frame_info.small_threshold,
FIRST_PSEUDO_REGISTER, addr, 0);
if (current_frame_info.need_fp)
frame_move_insn (hard_frame_pointer_rtx, stack_pointer_rtx);
/* For large frames, allocate bulk of frame. This is usually joint with one
register save. */
if (current_frame_info.last_slot >= 0)
{
rtx ip, mem2, note;
rtx_insn *insn;
gcc_assert (current_frame_info.last_slot != GPR_FP
|| (!current_frame_info.need_fp
&& current_frame_info.first_slot < 0));
off = GEN_INT (-current_frame_info.last_slot_offset);
mem = gen_frame_mem (BLKmode,
gen_rtx_PLUS (Pmode, stack_pointer_rtx, off));
ip = gen_rtx_REG (Pmode, GPR_IP);
frame_move_insn (ip, off);
reg = gen_rtx_REG (word_mode, current_frame_info.last_slot),
mem2 = gen_frame_mem (word_mode, stack_pointer_rtx),
insn = frame_insn (gen_stack_adjust_str (mem2, reg, ip, mem));
/* Instruction scheduling can separate the instruction setting IP from
INSN so that dwarf2out_frame_debug_expr becomes confused what the
temporary register is. Example: _gcov.o */
note = gen_rtx_SET (stack_pointer_rtx,
gen_rtx_PLUS (Pmode, stack_pointer_rtx, off));
note = gen_rtx_PARALLEL (VOIDmode,
gen_rtvec (2, gen_rtx_SET (mem2, reg), note));
add_reg_note (insn, REG_FRAME_RELATED_EXPR, note);
}
/* If there is only one or no register to save, yet we have a large frame,
use an add. */
else if (current_frame_info.last_slot_offset)
{
mem = gen_frame_mem (BLKmode,
plus_constant (Pmode, stack_pointer_rtx,
current_frame_info.last_slot_offset));
off = GEN_INT (-current_frame_info.last_slot_offset);
if (!SIMM11 (INTVAL (off)))
{
reg = gen_rtx_REG (Pmode, GPR_IP);
frame_move_insn (reg, off);
off = reg;
}
frame_insn (gen_stack_adjust_add (off, mem));
}
}
void
epiphany_expand_epilogue (int sibcall_p)
{
int interrupt_p;
enum epiphany_function_type fn_type;
rtx mem, addr, reg, off;
HOST_WIDE_INT restore_offset;
fn_type = epiphany_compute_function_type( current_function_decl);
interrupt_p = EPIPHANY_INTERRUPT_P (fn_type);
/* For variable frames, deallocate bulk of frame. */
if (current_frame_info.need_fp)
{
mem = gen_frame_mem (BLKmode, stack_pointer_rtx);
emit_insn (gen_stack_adjust_mov (mem));
}
/* Else for large static frames, deallocate bulk of frame. */
else if (current_frame_info.last_slot_offset)
{
mem = gen_frame_mem (BLKmode, stack_pointer_rtx);
reg = gen_rtx_REG (Pmode, GPR_IP);
emit_move_insn (reg, GEN_INT (current_frame_info.last_slot_offset));
emit_insn (gen_stack_adjust_add (reg, mem));
}
restore_offset = (interrupt_p
? - 3 * UNITS_PER_WORD
: epiphany_stack_offset - (HOST_WIDE_INT) UNITS_PER_WORD);
addr = plus_constant (Pmode, stack_pointer_rtx,
(current_frame_info.first_slot_offset
+ restore_offset));
epiphany_emit_save_restore (current_frame_info.small_threshold,
FIRST_PSEUDO_REGISTER, addr, 1);
if (interrupt_p && !epiphany_uninterruptible_p (current_function_decl))
emit_insn (gen_gid ());
off = GEN_INT (current_frame_info.first_slot_offset);
mem = gen_frame_mem (BLKmode, stack_pointer_rtx);
/* For large / variable size frames, deallocating the register save area is
joint with one register restore; for medium size frames, we use a
dummy post-increment load to dealloacte the whole frame. */
if (!SIMM11 (INTVAL (off)) || current_frame_info.last_slot >= 0)
{
emit_insn (gen_stack_adjust_ldr
(gen_rtx_REG (word_mode,
(current_frame_info.last_slot >= 0
? current_frame_info.last_slot : GPR_IP)),
gen_frame_mem (word_mode, stack_pointer_rtx),
off,
mem));
}
/* While for small frames, we deallocate the entire frame with one add. */
else if (INTVAL (off))
{
emit_insn (gen_stack_adjust_add (off, mem));
}
if (interrupt_p)
{
emit_move_insn (gen_rtx_REG (word_mode, STATUS_REGNUM),
gen_rtx_REG (SImode, GPR_0));
emit_move_insn (gen_rtx_REG (word_mode, IRET_REGNUM),
gen_rtx_REG (SImode, GPR_1));
addr = plus_constant (Pmode, stack_pointer_rtx,
- (HOST_WIDE_INT) 2 * UNITS_PER_WORD);
emit_move_insn (gen_rtx_REG (DImode, GPR_0),
gen_frame_mem (DImode, addr));
}
addr = plus_constant (Pmode, stack_pointer_rtx,
epiphany_stack_offset - (HOST_WIDE_INT) UNITS_PER_WORD);
epiphany_emit_save_restore (0, current_frame_info.small_threshold, addr, 1);
if (!sibcall_p)
{
if (interrupt_p)
emit_jump_insn (gen_return_internal_interrupt());
else
emit_jump_insn (gen_return_i ());
}
}
int
epiphany_initial_elimination_offset (int from, int to)
{
epiphany_compute_frame_size (get_frame_size ());
if (from == FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
return current_frame_info.total_size - current_frame_info.reg_size;
if (from == FRAME_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
return current_frame_info.first_slot_offset - current_frame_info.reg_size;
if (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
return (current_frame_info.total_size
- ((current_frame_info.pretend_size + 4) & -8));
if (from == ARG_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
return (current_frame_info.first_slot_offset
- ((current_frame_info.pretend_size + 4) & -8));
gcc_unreachable ();
}
bool
epiphany_regno_rename_ok (unsigned, unsigned dst)
{
enum epiphany_function_type fn_type;
fn_type = epiphany_compute_function_type (current_function_decl);
if (!EPIPHANY_INTERRUPT_P (fn_type))
return true;
if (df_regs_ever_live_p (dst))
return true;
return false;
}
static int
epiphany_issue_rate (void)
{
return 2;
}
/* Function to update the integer COST
based on the relationship between INSN that is dependent on
DEP_INSN through the dependence LINK. The default is to make no
adjustment to COST. This can be used for example to specify to
the scheduler that an output- or anti-dependence does not incur
the same cost as a data-dependence. The return value should be
the new value for COST. */
static int
epiphany_adjust_cost (rtx_insn *insn, int dep_type, rtx_insn *dep_insn,
int cost, unsigned int)
{
if (dep_type == 0)
{
rtx dep_set;
if (recog_memoized (insn) < 0
|| recog_memoized (dep_insn) < 0)
return cost;
dep_set = single_set (dep_insn);
/* The latency that we specify in the scheduling description refers
to the actual output, not to an auto-increment register; for that,
the latency is one. */
if (dep_set && MEM_P (SET_SRC (dep_set)) && cost > 1)
{
rtx set = single_set (insn);
if (set
&& !reg_overlap_mentioned_p (SET_DEST (dep_set), SET_SRC (set))
&& (!MEM_P (SET_DEST (set))
|| !reg_overlap_mentioned_p (SET_DEST (dep_set),
XEXP (SET_DEST (set), 0))))
cost = 1;
}
}
return cost;
}
#define REG_OK_FOR_INDEX_P(X) REG_OK_FOR_BASE_P (X)
#define RTX_OK_FOR_BASE_P(X) \
(REG_P (X) && REG_OK_FOR_BASE_P (X))
#define RTX_OK_FOR_INDEX_P(MODE, X) \
((GET_MODE_CLASS (MODE) != MODE_VECTOR_INT \
|| epiphany_vect_align >= GET_MODE_SIZE (MODE)) \
&& (REG_P (X) && REG_OK_FOR_INDEX_P (X)))
#define LEGITIMATE_OFFSET_ADDRESS_P(MODE, X) \
(GET_CODE (X) == PLUS \
&& RTX_OK_FOR_BASE_P (XEXP (X, 0)) \
&& (RTX_OK_FOR_INDEX_P (MODE, XEXP (X, 1)) \
|| RTX_OK_FOR_OFFSET_P (MODE, XEXP (X, 1))))
static bool
epiphany_legitimate_address_p (machine_mode mode, rtx x, bool strict)
{
#define REG_OK_FOR_BASE_P(X) \
(strict ? GPR_P (REGNO (X)) : GPR_AP_OR_PSEUDO_P (REGNO (X)))
if (RTX_OK_FOR_BASE_P (x))
return true;
if (RTX_FRAME_OFFSET_P (x))
return true;
if (LEGITIMATE_OFFSET_ADDRESS_P (mode, x))
return true;
/* If this is a misaligned stack access, don't force it to reg+index. */
if (GET_MODE_SIZE (mode) == 8
&& GET_CODE (x) == PLUS && XEXP (x, 0) == stack_pointer_rtx
/* Decomposed to SImode; GET_MODE_SIZE (SImode) == 4 */
&& !(INTVAL (XEXP (x, 1)) & 3)
&& INTVAL (XEXP (x, 1)) >= -2047 * 4
&& INTVAL (XEXP (x, 1)) <= 2046 * 4)
return true;
if (TARGET_POST_INC
&& (GET_CODE (x) == POST_DEC || GET_CODE (x) == POST_INC)
&& RTX_OK_FOR_BASE_P (XEXP ((x), 0)))
return true;
if ((TARGET_POST_MODIFY || reload_completed)
&& GET_CODE (x) == POST_MODIFY
&& GET_CODE (XEXP ((x), 1)) == PLUS
&& rtx_equal_p (XEXP ((x), 0), XEXP (XEXP ((x), 1), 0))
&& LEGITIMATE_OFFSET_ADDRESS_P (mode, XEXP ((x), 1)))
return true;
if (mode == BLKmode)
return epiphany_legitimate_address_p (SImode, x, strict);
return false;
}
static reg_class_t
epiphany_secondary_reload (bool in_p, rtx x, reg_class_t rclass,
machine_mode mode ATTRIBUTE_UNUSED,
secondary_reload_info *sri)
{
/* This could give more reload inheritance, but we are missing some
reload infrastructure. */
if (0)
if (in_p && GET_CODE (x) == UNSPEC
&& satisfies_constraint_Sra (x) && !satisfies_constraint_Rra (x))
{
gcc_assert (rclass == GENERAL_REGS);
sri->icode = CODE_FOR_reload_insi_ra;
return NO_REGS;
}
return NO_REGS;
}
bool
epiphany_is_long_call_p (rtx x)
{
tree decl = SYMBOL_REF_DECL (x);
bool ret_val = !TARGET_SHORT_CALLS;
tree attrs;
/* ??? Is it safe to default to ret_val if decl is NULL? We should
probably encode information via encode_section_info, and also
have (an) option(s) to take SYMBOL_FLAG_LOCAL and/or SYMBOL_FLAG_EXTERNAL
into account. */
if (decl)
{
attrs = TYPE_ATTRIBUTES (TREE_TYPE (decl));
if (lookup_attribute ("long_call", attrs))
ret_val = true;
else if (lookup_attribute ("short_call", attrs))
ret_val = false;
}
return ret_val;
}
bool
epiphany_small16 (rtx x)
{
rtx base = x;
rtx offs ATTRIBUTE_UNUSED = const0_rtx;
if (GET_CODE (x) == CONST && GET_CODE (XEXP (x, 0)) == PLUS)
{
base = XEXP (XEXP (x, 0), 0);
offs = XEXP (XEXP (x, 0), 1);
}
if (GET_CODE (base) == SYMBOL_REF && SYMBOL_REF_FUNCTION_P (base)
&& epiphany_is_long_call_p (base))
return false;
return TARGET_SMALL16 != 0;
}
/* Return nonzero if it is ok to make a tail-call to DECL. */
static bool
epiphany_function_ok_for_sibcall (tree decl, tree exp)
{
bool cfun_interrupt_p, call_interrupt_p;
cfun_interrupt_p = EPIPHANY_INTERRUPT_P (epiphany_compute_function_type
(current_function_decl));
if (decl)
call_interrupt_p = EPIPHANY_INTERRUPT_P (epiphany_compute_function_type (decl));
else
{
tree fn_type = TREE_TYPE (CALL_EXPR_FN (exp));
gcc_assert (POINTER_TYPE_P (fn_type));
fn_type = TREE_TYPE (fn_type);
gcc_assert (TREE_CODE (fn_type) == FUNCTION_TYPE
|| TREE_CODE (fn_type) == METHOD_TYPE);
call_interrupt_p
= lookup_attribute ("interrupt", TYPE_ATTRIBUTES (fn_type)) != NULL;
}
/* Don't tailcall from or to an ISR routine - although we could in
principle tailcall from one ISR routine to another, we'd need to
handle this in sibcall_epilogue to make it work. */
if (cfun_interrupt_p || call_interrupt_p)
return false;
/* Everything else is ok. */
return true;
}
/* T is a function declaration or the MEM_EXPR of a MEM passed to a call
expander.
Return true iff the type of T has the uninterruptible attribute.
If T is NULL, return false. */
bool
epiphany_uninterruptible_p (tree t)
{
tree attrs;
if (t)
{
attrs = TYPE_ATTRIBUTES (TREE_TYPE (t));
if (lookup_attribute ("disinterrupt", attrs))
return true;
}
return false;
}
bool
epiphany_call_uninterruptible_p (rtx mem)
{
rtx addr = XEXP (mem, 0);
tree t = NULL_TREE;
if (GET_CODE (addr) == SYMBOL_REF)
t = SYMBOL_REF_DECL (addr);
if (!t)
t = MEM_EXPR (mem);
return epiphany_uninterruptible_p (t);
}
static machine_mode
epiphany_promote_function_mode (const_tree type, machine_mode mode,
int *punsignedp ATTRIBUTE_UNUSED,
const_tree funtype ATTRIBUTE_UNUSED,
int for_return ATTRIBUTE_UNUSED)
{
int dummy;
return promote_mode (type, mode, &dummy);
}
static void
epiphany_conditional_register_usage (void)
{
int i;
if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)
{
fixed_regs[PIC_OFFSET_TABLE_REGNUM] = 1;
call_used_regs[PIC_OFFSET_TABLE_REGNUM] = 1;
}
if (TARGET_HALF_REG_FILE)
{
for (i = 32; i <= 63; i++)
{
fixed_regs[i] = 1;
call_used_regs[i] = 1;
}
}
if (epiphany_m1reg >= 0)
{
fixed_regs[epiphany_m1reg] = 1;
call_used_regs[epiphany_m1reg] = 1;
}
if (!TARGET_PREFER_SHORT_INSN_REGS)
CLEAR_HARD_REG_SET (reg_class_contents[SHORT_INSN_REGS]);
reg_class_contents[SIBCALL_REGS] = reg_class_contents[GENERAL_REGS];
/* It would be simpler and quicker if we could just use
&~, alas, call_used_or_fixed_regs is yet uninitialized;
it is set up later by our caller. */
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
if (!call_used_regs[i])
CLEAR_HARD_REG_BIT (reg_class_contents[SIBCALL_REGS], i);
}
/* Determine where to put an argument to a function.
Value is zero to push the argument on the stack,
or a hard register in which to store the argument.
CUM is a variable of type CUMULATIVE_ARGS which gives info about
the preceding args and about the function being called.
ARG is a description of the argument. */
/* On the EPIPHANY the first MAX_EPIPHANY_PARM_REGS args are normally in
registers and the rest are pushed. */
static rtx
epiphany_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
{
CUMULATIVE_ARGS cum = *get_cumulative_args (cum_v);
if (PASS_IN_REG_P (cum, arg.mode, arg.type))
return gen_rtx_REG (arg.mode, ROUND_ADVANCE_CUM (cum, arg.mode, arg.type));
return 0;
}
/* Update the data in CUM to advance over argument ARG. */
static void
epiphany_function_arg_advance (cumulative_args_t cum_v,
const function_arg_info &arg)
{
CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
*cum = (ROUND_ADVANCE_CUM (*cum, arg.mode, arg.type)
+ ROUND_ADVANCE_ARG (arg.mode, arg.type));
}
/* Nested function support.
An epiphany trampoline looks like this:
mov r16,%low(fnaddr)
movt r16,%high(fnaddr)
mov ip,%low(cxt)
movt ip,%high(cxt)
jr r16 */
#define EPIPHANY_LOW_RTX(X) \
(gen_rtx_IOR (SImode, \
gen_rtx_ASHIFT (SImode, \
gen_rtx_AND (SImode, (X), GEN_INT (0xff)), GEN_INT (5)), \
gen_rtx_ASHIFT (SImode, \
gen_rtx_AND (SImode, (X), GEN_INT (0xff00)), GEN_INT (12))))
#define EPIPHANY_HIGH_RTX(X) \
EPIPHANY_LOW_RTX (gen_rtx_LSHIFTRT (SImode, (X), GEN_INT (16)))
/* Emit RTL insns to initialize the variable parts of a trampoline.
FNADDR is an RTX for the address of the function's pure code.
CXT is an RTX for the static chain value for the function. */
static void
epiphany_trampoline_init (rtx tramp_mem, tree fndecl, rtx cxt)
{
rtx fnaddr = XEXP (DECL_RTL (fndecl), 0);
rtx tramp = force_reg (Pmode, XEXP (tramp_mem, 0));
emit_move_insn (gen_rtx_MEM (SImode, plus_constant (Pmode, tramp, 0)),
gen_rtx_IOR (SImode, GEN_INT (0x4002000b),
EPIPHANY_LOW_RTX (fnaddr)));
emit_move_insn (gen_rtx_MEM (SImode, plus_constant (Pmode, tramp, 4)),
gen_rtx_IOR (SImode, GEN_INT (0x5002000b),
EPIPHANY_HIGH_RTX (fnaddr)));
emit_move_insn (gen_rtx_MEM (SImode, plus_constant (Pmode, tramp, 8)),
gen_rtx_IOR (SImode, GEN_INT (0x2002800b),
EPIPHANY_LOW_RTX (cxt)));
emit_move_insn (gen_rtx_MEM (SImode, plus_constant (Pmode, tramp, 12)),
gen_rtx_IOR (SImode, GEN_INT (0x3002800b),
EPIPHANY_HIGH_RTX (cxt)));
emit_move_insn (gen_rtx_MEM (SImode, plus_constant (Pmode, tramp, 16)),
GEN_INT (0x0802014f));
}
bool
epiphany_optimize_mode_switching (int entity)
{
if (MACHINE_FUNCTION (cfun)->sw_entities_processed & (1 << entity))
return false;
switch (entity)
{
case EPIPHANY_MSW_ENTITY_AND:
case EPIPHANY_MSW_ENTITY_OR:
case EPIPHANY_MSW_ENTITY_CONFIG:
return true;
case EPIPHANY_MSW_ENTITY_NEAREST:
case EPIPHANY_MSW_ENTITY_TRUNC:
return optimize > 0;
case EPIPHANY_MSW_ENTITY_ROUND_UNKNOWN:
return MACHINE_FUNCTION (cfun)->unknown_mode_uses != 0;
case EPIPHANY_MSW_ENTITY_ROUND_KNOWN:
return (MACHINE_FUNCTION (cfun)->sw_entities_processed
& (1 << EPIPHANY_MSW_ENTITY_ROUND_UNKNOWN)) != 0;
case EPIPHANY_MSW_ENTITY_FPU_OMNIBUS:
return optimize == 0 || current_pass == pass_mode_switch_use;
}
gcc_unreachable ();
}
static int
epiphany_mode_priority (int entity, int priority)
{
if (entity == EPIPHANY_MSW_ENTITY_AND || entity == EPIPHANY_MSW_ENTITY_OR
|| entity== EPIPHANY_MSW_ENTITY_CONFIG)
return priority;
if (priority > 3)
switch (priority)
{
case 4: return FP_MODE_ROUND_UNKNOWN;
case 5: return FP_MODE_NONE;
default: gcc_unreachable ();
}
switch ((enum attr_fp_mode) epiphany_normal_fp_mode)
{
case FP_MODE_INT:
switch (priority)
{
case 0: return FP_MODE_INT;
case 1: return epiphany_normal_fp_rounding;
case 2: return (epiphany_normal_fp_rounding == FP_MODE_ROUND_NEAREST
? FP_MODE_ROUND_TRUNC : FP_MODE_ROUND_NEAREST);
case 3: return FP_MODE_CALLER;
default: gcc_unreachable ();
}
case FP_MODE_ROUND_NEAREST:
case FP_MODE_CALLER:
switch (priority)
{
case 0: return FP_MODE_ROUND_NEAREST;
case 1: return FP_MODE_ROUND_TRUNC;
case 2: return FP_MODE_INT;
case 3: return FP_MODE_CALLER;
default: gcc_unreachable ();
}
case FP_MODE_ROUND_TRUNC:
switch (priority)
{
case 0: return FP_MODE_ROUND_TRUNC;
case 1: return FP_MODE_ROUND_NEAREST;
case 2: return FP_MODE_INT;
case 3: return FP_MODE_CALLER;
default: gcc_unreachable ();
}
case FP_MODE_ROUND_UNKNOWN:
case FP_MODE_NONE:
gcc_unreachable ();
}
gcc_unreachable ();
}
int
epiphany_mode_needed (int entity, rtx_insn *insn)
{
enum attr_fp_mode mode;
if (recog_memoized (insn) < 0)
{
if (entity == EPIPHANY_MSW_ENTITY_AND
|| entity == EPIPHANY_MSW_ENTITY_OR
|| entity == EPIPHANY_MSW_ENTITY_CONFIG)
return 2;
return FP_MODE_NONE;
}
mode = get_attr_fp_mode (insn);
switch (entity)
{
case EPIPHANY_MSW_ENTITY_AND:
return mode != FP_MODE_NONE && mode != FP_MODE_INT ? 1 : 2;
case EPIPHANY_MSW_ENTITY_OR:
return mode == FP_MODE_INT ? 1 : 2;
case EPIPHANY_MSW_ENTITY_CONFIG:
/* We must know/save config before we set it to something else.
Where we need the original value, we are fine with having it
just unchanged from the function start.
Because of the nature of the mode switching optimization,
a restore will be dominated by a clobber. */
if (mode != FP_MODE_NONE && mode != FP_MODE_CALLER)
return 1;
/* A cpecial case are abnormal edges, which are deemed to clobber
the mode as well. We need to pin this effect on a actually
dominating insn, and one where the frame can be accessed, too, in
case the pseudo used to save CONFIG doesn't get a hard register. */
if (CALL_P (insn) && find_reg_note (insn, REG_EH_REGION, NULL_RTX))
return 1;
return 2;
case EPIPHANY_MSW_ENTITY_ROUND_KNOWN:
if (recog_memoized (insn) == CODE_FOR_set_fp_mode)
mode = (enum attr_fp_mode) epiphany_mode_after (entity, mode, insn);
/* Fall through. */
case EPIPHANY_MSW_ENTITY_NEAREST:
case EPIPHANY_MSW_ENTITY_TRUNC:
if (mode == FP_MODE_ROUND_UNKNOWN)
{
MACHINE_FUNCTION (cfun)->unknown_mode_uses++;
return FP_MODE_NONE;
}
return mode;
case EPIPHANY_MSW_ENTITY_ROUND_UNKNOWN:
if (mode == FP_MODE_ROUND_NEAREST || mode == FP_MODE_ROUND_TRUNC)
return FP_MODE_ROUND_UNKNOWN;
return mode;
case EPIPHANY_MSW_ENTITY_FPU_OMNIBUS:
if (mode == FP_MODE_ROUND_UNKNOWN)
return epiphany_normal_fp_rounding;
return mode;
default:
gcc_unreachable ();
}
}
static int
epiphany_mode_entry_exit (int entity, bool exit)
{
int normal_mode = epiphany_normal_fp_mode ;
MACHINE_FUNCTION (cfun)->sw_entities_processed |= (1 << entity);
if (epiphany_is_interrupt_p (current_function_decl))
normal_mode = FP_MODE_CALLER;
switch (entity)
{
case EPIPHANY_MSW_ENTITY_AND:
if (exit)
return normal_mode != FP_MODE_INT ? 1 : 2;
return 0;
case EPIPHANY_MSW_ENTITY_OR:
if (exit)
return normal_mode == FP_MODE_INT ? 1 : 2;
return 0;
case EPIPHANY_MSW_ENTITY_CONFIG:
if (exit)
return 2;
return normal_mode == FP_MODE_CALLER ? 0 : 1;
case EPIPHANY_MSW_ENTITY_ROUND_UNKNOWN:
if (normal_mode == FP_MODE_ROUND_NEAREST
|| normal_mode == FP_MODE_ROUND_TRUNC)
return FP_MODE_ROUND_UNKNOWN;
/* Fall through. */
case EPIPHANY_MSW_ENTITY_NEAREST:
case EPIPHANY_MSW_ENTITY_TRUNC:
case EPIPHANY_MSW_ENTITY_ROUND_KNOWN:
case EPIPHANY_MSW_ENTITY_FPU_OMNIBUS:
return normal_mode;
default:
gcc_unreachable ();
}
}
int
epiphany_mode_after (int entity, int last_mode, rtx_insn *insn)
{
/* We have too few call-saved registers to hope to keep the masks across
calls. */
if (entity == EPIPHANY_MSW_ENTITY_AND || entity == EPIPHANY_MSW_ENTITY_OR)
{
if (CALL_P (insn))
return 0;
return last_mode;
}
/* If there is an abnormal edge, we don't want the config register to
be 'saved' again at the destination.
The frame pointer adjustment is inside a PARALLEL because of the
flags clobber. */
if (entity == EPIPHANY_MSW_ENTITY_CONFIG && NONJUMP_INSN_P (insn)
&& GET_CODE (PATTERN (insn)) == PARALLEL
&& GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET
&& SET_DEST (XVECEXP (PATTERN (insn), 0, 0)) == frame_pointer_rtx)
{
gcc_assert (cfun->has_nonlocal_label);
return 1;
}
if (recog_memoized (insn) < 0)
return last_mode;
if (get_attr_fp_mode (insn) == FP_MODE_ROUND_UNKNOWN
&& last_mode != FP_MODE_ROUND_NEAREST && last_mode != FP_MODE_ROUND_TRUNC)
{
if (entity == EPIPHANY_MSW_ENTITY_NEAREST)
return FP_MODE_ROUND_NEAREST;
if (entity == EPIPHANY_MSW_ENTITY_TRUNC)
return FP_MODE_ROUND_TRUNC;
}
if (recog_memoized (insn) == CODE_FOR_set_fp_mode)
{
rtx src = SET_SRC (XVECEXP (PATTERN (insn), 0, 0));
int fp_mode;
if (REG_P (src))
return FP_MODE_CALLER;
fp_mode = INTVAL (XVECEXP (XEXP (src, 0), 0, 0));
if (entity == EPIPHANY_MSW_ENTITY_ROUND_UNKNOWN
&& (fp_mode == FP_MODE_ROUND_NEAREST
|| fp_mode == EPIPHANY_MSW_ENTITY_TRUNC))
return FP_MODE_ROUND_UNKNOWN;
return fp_mode;
}
return last_mode;
}
static int
epiphany_mode_entry (int entity)
{
return epiphany_mode_entry_exit (entity, false);
}
static int
epiphany_mode_exit (int entity)
{
return epiphany_mode_entry_exit (entity, true);
}
void
emit_set_fp_mode (int entity, int mode, int prev_mode ATTRIBUTE_UNUSED,
HARD_REG_SET regs_live ATTRIBUTE_UNUSED)
{
rtx save_cc, cc_reg, mask, src, src2;
enum attr_fp_mode fp_mode;
if (!MACHINE_FUNCTION (cfun)->and_mask)
{
MACHINE_FUNCTION (cfun)->and_mask = gen_reg_rtx (SImode);
MACHINE_FUNCTION (cfun)->or_mask = gen_reg_rtx (SImode);
}
if (entity == EPIPHANY_MSW_ENTITY_AND)
{
gcc_assert (mode >= 0 && mode <= 2);
if (mode == 1)
emit_move_insn (MACHINE_FUNCTION (cfun)->and_mask,
gen_int_mode (0xfff1fffe, SImode));
return;
}
else if (entity == EPIPHANY_MSW_ENTITY_OR)
{
gcc_assert (mode >= 0 && mode <= 2);
if (mode == 1)
emit_move_insn (MACHINE_FUNCTION (cfun)->or_mask, GEN_INT(0x00080000));
return;
}
else if (entity == EPIPHANY_MSW_ENTITY_CONFIG)
{
/* Mode switching optimization is done after emit_initial_value_sets,
so we have to take care of CONFIG_REGNUM here. */
gcc_assert (mode >= 0 && mode <= 2);
rtx save = get_hard_reg_initial_val (SImode, CONFIG_REGNUM);
if (mode == 1)
emit_insn (gen_save_config (save));
return;
}
fp_mode = (enum attr_fp_mode) mode;
src = NULL_RTX;
switch (fp_mode)
{
case FP_MODE_CALLER:
/* The EPIPHANY_MSW_ENTITY_CONFIG processing must come later
so that the config save gets inserted before the first use. */
gcc_assert (entity > EPIPHANY_MSW_ENTITY_CONFIG);
src = get_hard_reg_initial_val (SImode, CONFIG_REGNUM);
mask = MACHINE_FUNCTION (cfun)->and_mask;
break;
case FP_MODE_ROUND_UNKNOWN:
MACHINE_FUNCTION (cfun)->unknown_mode_sets++;
mask = MACHINE_FUNCTION (cfun)->and_mask;
break;
case FP_MODE_ROUND_NEAREST:
if (entity == EPIPHANY_MSW_ENTITY_TRUNC)
return;
mask = MACHINE_FUNCTION (cfun)->and_mask;
break;
case FP_MODE_ROUND_TRUNC:
if (entity == EPIPHANY_MSW_ENTITY_NEAREST)
return;
mask = MACHINE_FUNCTION (cfun)->and_mask;
break;
case FP_MODE_INT:
mask = MACHINE_FUNCTION (cfun)->or_mask;
break;
case FP_MODE_NONE:
default:
gcc_unreachable ();
}
save_cc = gen_reg_rtx (CCmode);
cc_reg = gen_rtx_REG (CCmode, CC_REGNUM);
emit_move_insn (save_cc, cc_reg);
mask = force_reg (SImode, mask);
if (!src)
{
rtvec v = gen_rtvec (1, GEN_INT (fp_mode));
src = gen_rtx_CONST (SImode, gen_rtx_UNSPEC (SImode, v, UNSPEC_FP_MODE));
}
if (entity == EPIPHANY_MSW_ENTITY_ROUND_KNOWN
|| entity == EPIPHANY_MSW_ENTITY_FPU_OMNIBUS)
src2 = copy_rtx (src);
else
{
rtvec v = gen_rtvec (1, GEN_INT (FP_MODE_ROUND_UNKNOWN));
src2 = gen_rtx_CONST (SImode, gen_rtx_UNSPEC (SImode, v, UNSPEC_FP_MODE));
}
emit_insn (gen_set_fp_mode (src, src2, mask));
emit_move_insn (cc_reg, save_cc);
}
void
epiphany_expand_set_fp_mode (rtx *operands)
{
rtx ctrl = gen_rtx_REG (SImode, CONFIG_REGNUM);
rtx src = operands[0];
rtx mask_reg = operands[2];
rtx scratch = operands[3];
enum attr_fp_mode fp_mode;
gcc_assert (rtx_equal_p (src, operands[1])
/* Sometimes reload gets silly and reloads the same pseudo
into different registers. */
|| (REG_P (src) && REG_P (operands[1])));
if (!epiphany_uninterruptible_p (current_function_decl))
emit_insn (gen_gid ());
emit_move_insn (scratch, ctrl);
if (GET_CODE (src) == REG)
{
/* FP_MODE_CALLER */
emit_insn (gen_xorsi3 (scratch, scratch, src));
emit_insn (gen_andsi3 (scratch, scratch, mask_reg));
emit_insn (gen_xorsi3 (scratch, scratch, src));
}
else
{
gcc_assert (GET_CODE (src) == CONST);
src = XEXP (src, 0);
fp_mode = (enum attr_fp_mode) INTVAL (XVECEXP (src, 0, 0));
switch (fp_mode)
{
case FP_MODE_ROUND_NEAREST:
emit_insn (gen_andsi3 (scratch, scratch, mask_reg));
break;
case FP_MODE_ROUND_TRUNC:
emit_insn (gen_andsi3 (scratch, scratch, mask_reg));
emit_insn (gen_add2_insn (scratch, const1_rtx));
break;
case FP_MODE_INT:
emit_insn (gen_iorsi3 (scratch, scratch, mask_reg));
break;
case FP_MODE_CALLER:
case FP_MODE_ROUND_UNKNOWN:
case FP_MODE_NONE:
gcc_unreachable ();
}
}
emit_move_insn (ctrl, scratch);
if (!epiphany_uninterruptible_p (current_function_decl))
emit_insn (gen_gie ());
}
void
epiphany_insert_mode_switch_use (rtx_insn *insn,
int entity ATTRIBUTE_UNUSED,
int mode ATTRIBUTE_UNUSED)
{
rtx pat = PATTERN (insn);
rtvec v;
int len, i;
rtx near = gen_rtx_REG (SImode, FP_NEAREST_REGNUM);
rtx trunc = gen_rtx_REG (SImode, FP_TRUNCATE_REGNUM);
if (entity != EPIPHANY_MSW_ENTITY_FPU_OMNIBUS)
return;
switch ((enum attr_fp_mode) get_attr_fp_mode (insn))
{
case FP_MODE_ROUND_NEAREST:
near = gen_rtx_USE (VOIDmode, near);
trunc = gen_rtx_CLOBBER (VOIDmode, trunc);
break;
case FP_MODE_ROUND_TRUNC:
near = gen_rtx_CLOBBER (VOIDmode, near);
trunc = gen_rtx_USE (VOIDmode, trunc);
break;
case FP_MODE_ROUND_UNKNOWN:
near = gen_rtx_USE (VOIDmode, gen_rtx_REG (SImode, FP_ANYFP_REGNUM));
trunc = copy_rtx (near);
/* Fall through. */
case FP_MODE_INT:
case FP_MODE_CALLER:
near = gen_rtx_USE (VOIDmode, near);
trunc = gen_rtx_USE (VOIDmode, trunc);
break;
case FP_MODE_NONE:
gcc_unreachable ();
}
gcc_assert (GET_CODE (pat) == PARALLEL);
len = XVECLEN (pat, 0);
v = rtvec_alloc (len + 2);
for (i = 0; i < len; i++)
RTVEC_ELT (v, i) = XVECEXP (pat, 0, i);
RTVEC_ELT (v, len) = near;
RTVEC_ELT (v, len + 1) = trunc;
pat = gen_rtx_PARALLEL (VOIDmode, v);
PATTERN (insn) = pat;
MACHINE_FUNCTION (cfun)->control_use_inserted = true;
}
bool
epiphany_epilogue_uses (int regno)
{
if (regno == GPR_LR)
return true;
if (reload_completed && epiphany_is_interrupt_p (current_function_decl))
{
if (fixed_regs[regno]
&& regno != STATUS_REGNUM && regno != IRET_REGNUM
&& regno != FP_NEAREST_REGNUM && regno != FP_TRUNCATE_REGNUM)
return false;
return true;
}
if (regno == FP_NEAREST_REGNUM
&& epiphany_normal_fp_mode != FP_MODE_ROUND_TRUNC)
return true;
if (regno == FP_TRUNCATE_REGNUM
&& epiphany_normal_fp_mode != FP_MODE_ROUND_NEAREST)
return true;
return false;
}
static unsigned int
epiphany_min_divisions_for_recip_mul (machine_mode mode)
{
if (flag_reciprocal_math && mode == SFmode)
/* We'll expand into a multiply-by-reciprocal anyway, so we might a well do
it already at the tree level and expose it to further optimizations. */
return 1;
return default_min_divisions_for_recip_mul (mode);
}
static machine_mode
epiphany_preferred_simd_mode (scalar_mode mode ATTRIBUTE_UNUSED)
{
return TARGET_VECT_DOUBLE ? DImode : SImode;
}
static bool
epiphany_vector_mode_supported_p (machine_mode mode)
{
if (mode == V2SFmode)
return true;
if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT
&& (GET_MODE_SIZE (mode) == 4 || GET_MODE_SIZE (mode) == 8))
return true;
return false;
}
static bool
epiphany_vector_alignment_reachable (const_tree type, bool is_packed)
{
/* Vectors which aren't in packed structures will not be less aligned than
the natural alignment of their element type, so this is safe. */
if (TYPE_ALIGN_UNIT (type) == 4)
return !is_packed;
return default_builtin_vector_alignment_reachable (type, is_packed);
}
static bool
epiphany_support_vector_misalignment (machine_mode mode, const_tree type,
int misalignment, bool is_packed)
{
if (GET_MODE_SIZE (mode) == 8 && misalignment % 4 == 0)
return true;
return default_builtin_support_vector_misalignment (mode, type, misalignment,
is_packed);
}
/* STRUCTURE_SIZE_BOUNDARY seems a bit crude in how it enlarges small
structs. Make structs double-word-aligned it they are a double word or
(potentially) larger; failing that, do the same for a size of 32 bits. */
unsigned
epiphany_special_round_type_align (tree type, unsigned computed,
unsigned specified)
{
unsigned align = MAX (computed, specified);
tree field;
HOST_WIDE_INT total, max;
unsigned try_align = FASTEST_ALIGNMENT;
if (maximum_field_alignment && try_align > maximum_field_alignment)
try_align = maximum_field_alignment;
if (align >= try_align)
return align;
for (max = 0, field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
{
tree offset, size;
if (TREE_CODE (field) != FIELD_DECL
|| TREE_TYPE (field) == error_mark_node)
continue;
offset = bit_position (field);
size = DECL_SIZE (field);
if (!tree_fits_uhwi_p (offset) || !tree_fits_uhwi_p (size)
|| tree_to_uhwi (offset) >= try_align
|| tree_to_uhwi (size) >= try_align)
return try_align;
total = tree_to_uhwi (offset) + tree_to_uhwi (size);
if (total > max)
max = total;
}
if (max >= (HOST_WIDE_INT) try_align)
align = try_align;
else if (try_align > 32 && max >= 32)
align = max > 32 ? 64 : 32;
return align;
}
/* Upping the alignment of arrays in structs is not only a performance
enhancement, it also helps preserve assumptions about how
arrays-at-the-end-of-structs work, like for struct gcov_fn_info in
libgcov.c . */
unsigned
epiphany_adjust_field_align (tree type, unsigned computed)
{
if (computed == 32
&& TREE_CODE (type) == ARRAY_TYPE)
{
tree elmsz = TYPE_SIZE (TREE_TYPE (type));
if (!tree_fits_uhwi_p (elmsz) || tree_to_uhwi (elmsz) >= 32)
return 64;
}
return computed;
}
/* Output code to add DELTA to the first argument, and then jump
to FUNCTION. Used for C++ multiple inheritance. */
static void
epiphany_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED,
HOST_WIDE_INT delta,
HOST_WIDE_INT vcall_offset,
tree function)
{
const char *fnname = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk));
int this_regno
= aggregate_value_p (TREE_TYPE (TREE_TYPE (function)), function) ? 1 : 0;
const char *this_name = reg_names[this_regno];
const char *fname;
assemble_start_function (thunk, fnname);
/* We use IP and R16 as a scratch registers. */
gcc_assert (call_used_or_fixed_reg_p (GPR_IP));
gcc_assert (call_used_or_fixed_reg_p (GPR_16));
/* Add DELTA. When possible use a plain add, otherwise load it into
a register first. */
if (delta == 0)
; /* Done. */
else if (SIMM11 (delta))
asm_fprintf (file, "\tadd\t%s,%s,%d\n", this_name, this_name, (int) delta);
else if (delta < 0 && delta >= -0xffff)
{
asm_fprintf (file, "\tmov\tip,%d\n", (int) -delta);
asm_fprintf (file, "\tsub\t%s,%s,ip\n", this_name, this_name);
}
else
{
asm_fprintf (file, "\tmov\tip,%%low(%ld)\n", (long) delta);
if (delta & ~0xffff)
asm_fprintf (file, "\tmovt\tip,%%high(%ld)\n", (long) delta);
asm_fprintf (file, "\tadd\t%s,%s,ip\n", this_name, this_name);
}
/* If needed, add *(*THIS + VCALL_OFFSET) to THIS. */
if (vcall_offset != 0)
{
/* ldr ip,[this] --> temp = *this
ldr ip,[ip,vcall_offset] > temp = *(*this + vcall_offset)
add this,this,ip --> this+ = *(*this + vcall_offset) */
asm_fprintf (file, "\tldr\tip, [%s]\n", this_name);
if (vcall_offset < -0x7ff * 4 || vcall_offset > 0x7ff * 4
|| (vcall_offset & 3) != 0)
{
asm_fprintf (file, "\tmov\tr16, %%low(%ld)\n", (long) vcall_offset);
asm_fprintf (file, "\tmovt\tr16, %%high(%ld)\n", (long) vcall_offset);
asm_fprintf (file, "\tldr\tip, [ip,r16]\n");
}
else
asm_fprintf (file, "\tldr\tip, [ip,%d]\n", (int) vcall_offset / 4);
asm_fprintf (file, "\tadd\t%s, %s, ip\n", this_name, this_name);
}
fname = XSTR (XEXP (DECL_RTL (function), 0), 0);
if (epiphany_is_long_call_p (XEXP (DECL_RTL (function), 0)))
{
fputs ("\tmov\tip,%low(", file);
assemble_name (file, fname);
fputs (")\n\tmovt\tip,%high(", file);
assemble_name (file, fname);
fputs (")\n\tjr ip\n", file);
}
else
{
fputs ("\tb\t", file);
assemble_name (file, fname);
fputc ('\n', file);
}
assemble_end_function (thunk, fnname);
}
void
epiphany_start_function (FILE *file, const char *name, tree decl)
{
/* If the function doesn't fit into the on-chip memory, it will have a
section attribute - or lack of it - that denotes it goes somewhere else.
But the architecture spec says that an interrupt vector still has to
point to on-chip memory. So we must place a jump there to get to the
actual function implementation. The forwarder_section attribute
specifies the section where this jump goes.
This mechanism can also be useful to have a shortcall destination for
a function that is actually placed much farther away. */
tree attrs, int_attr, int_names, int_name, forwarder_attr;
attrs = DECL_ATTRIBUTES (decl);
int_attr = lookup_attribute ("interrupt", attrs);
if (int_attr)
for (int_names = TREE_VALUE (int_attr); int_names;
int_names = TREE_CHAIN (int_names))
{
char buf[99];
int_name = TREE_VALUE (int_names);
sprintf (buf, "ivt_entry_%.80s", TREE_STRING_POINTER (int_name));
switch_to_section (get_section (buf, SECTION_CODE, decl));
fputs ("\tb\t", file);
assemble_name (file, name);
fputc ('\n', file);
}
forwarder_attr = lookup_attribute ("forwarder_section", attrs);
if (forwarder_attr)
{
const char *prefix = "__forwarder_dst_";
char *dst_name = (char *) alloca (strlen (prefix) + strlen (name) + 1);
strcpy (dst_name, prefix);
strcat (dst_name, name);
forwarder_attr = TREE_VALUE (TREE_VALUE (forwarder_attr));
switch_to_section (get_section (TREE_STRING_POINTER (forwarder_attr),
SECTION_CODE, decl));
ASM_OUTPUT_FUNCTION_LABEL (file, name, decl);
if (epiphany_is_long_call_p (XEXP (DECL_RTL (decl), 0)))
{
int tmp = GPR_0;
if (int_attr)
fputs ("\tstrd r0,[sp,-1]\n", file);
else
tmp = GPR_16;
gcc_assert (call_used_or_fixed_reg_p (tmp));
fprintf (file, "\tmov r%d,%%low(", tmp);
assemble_name (file, dst_name);
fprintf (file, ")\n"
"\tmovt r%d,%%high(", tmp);
assemble_name (file, dst_name);
fprintf (file, ")\n"
"\tjr r%d\n", tmp);
}
else
{
fputs ("\tb\t", file);
assemble_name (file, dst_name);
fputc ('\n', file);
}
name = dst_name;
}
switch_to_section (function_section (decl));
ASM_OUTPUT_FUNCTION_LABEL (file, name, decl);
}
/* Implement TARGET_CONSTANT_ALIGNMENT. */
static HOST_WIDE_INT
epiphany_constant_alignment (const_tree exp, HOST_WIDE_INT align)
{
if (TREE_CODE (exp) == STRING_CST)
return MAX (align, FASTEST_ALIGNMENT);
return align;
}
/* Implement TARGET_STARTING_FRAME_OFFSET. */
static HOST_WIDE_INT
epiphany_starting_frame_offset (void)
{
return epiphany_stack_offset;
}
struct gcc_target targetm = TARGET_INITIALIZER;
| [
"[email protected]"
] | |
1227fbb57ed52ec383edcf9106944d537c55fe20 | 1365e6c9e5f00d1e1896adf5c9e99d498f24c6e2 | /SimDota2/include/simulatorImp.h | f1d7f50dacb4bb3fb893b0558c6029646a279e30 | [
"MIT"
] | permissive | lenLRX/PytorchCppCodes | 12137f42238efcc4e94478b47c27d5acd17699af | 566da2b6ba02d99f0bb90523e5b4d2c3cea44e5a | refs/heads/master | 2020-04-21T21:27:51.906436 | 2019-05-30T15:18:22 | 2019-05-30T15:18:22 | 169,879,618 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,093 | h | #ifndef __SIMULATORIMP_H__
#define __SIMULATORIMP_H__
#include "Config.h"
#include "simulator.h"
#include "Event.h"
#include "util.h"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include <rapidjson/writer.h>
#include <queue>
#include <list>
#include <vector>
using namespace rapidjson;
//forward decl
class Hero;
class Sprite;
class Config;
typedef std::vector<std::pair<Sprite*, double>> VecSpriteDist;
class SIMDOTA2_API cppSimulatorImp
{
public:
cppSimulatorImp() = delete;
cppSimulatorImp(Config* cfg);
~cppSimulatorImp();
inline Config* get_config() { return cfg; }
double get_time();
inline void tick_tick() { tick_time += delta_tick; }
inline void addSprite(Sprite* s) { Sprites.push_back(s); allSprites.push_back(s); }
inline const std::list<Sprite*>& get_sprites() { return Sprites; }
inline double get_deltatick() const { return delta_tick; }
inline std::priority_queue<Event>& get_queue() { return queue; }
void set_trace(bool bTrace) {trace_ = bTrace;}
std::string dump_trace() {
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
trace_record.Accept(writer);
std::string ret = buffer.GetString();
trace_record.SetArray();
return ret;
}
void loop();
VecSpriteDist get_nearby_enemy(Sprite* s, double dist);
VecSpriteDist get_nearby_enemy(Sprite * sprite, double dist, std::function<bool(Sprite*)> filter);
VecSpriteDist get_nearby_ally(Sprite* s, double dist);
VecSpriteDist get_nearby_ally(Sprite * sprite, double dist, std::function<bool(Sprite*)> filter);
VecSpriteDist get_nearby_sprite(pos_tup loc,double dist);
Hero* getHero(const std::string& side, int idx);
private:
Config* cfg;
double tick_time;
double tick_per_second;
double delta_tick;
bool trace_;
Document trace_record;
std::vector<Hero*> RadiantHeros;
std::vector<Hero*> DireHeros;
std::list<Sprite*> Sprites;
std::list<Sprite*> allSprites;
std::priority_queue<Event> queue;
};
#endif//__SIMULATORIMP_H__
| [
"[email protected]"
] | |
201464e65f2352ccf2b3715b4e2e94c8876e8e56 | de0938b6b037e266b52c015e1ae0c4e6b7c142eb | /c++/Graphics/SDL_learningECS/src/TextureManager.cpp | 9e3aebd793fd0c574413e16e438d22b42b96509d | [] | no_license | elston-jja/Personal-Projects | a4711a3aea4e2af5d62d26afa7dafed5ab748535 | 95d96c318ca5c98bb2bb4fdde97bbf2939d05a25 | refs/heads/master | 2021-09-17T23:56:32.015863 | 2018-07-07T07:21:44 | 2018-07-07T07:21:44 | 64,261,132 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 400 | cpp | #include "TextureManager.h"
SDL_Texture * TextureManager::LoadTexture(const char * texture)
{
SDL_Surface * tempSurface = IMG_Load(texture);
SDL_Texture * tex = SDL_CreateTextureFromSurface(Game::renderer, tempSurface);
SDL_FreeSurface(tempSurface);
return tex;
}
void TextureManager::Draw(SDL_Texture * tex, SDL_Rect src, SDL_Rect dest)
{
SDL_RenderCopy(Game::renderer, tex, &src, &dest);
}
| [
"[email protected]"
] | |
ef5364da91878d9af17b68b596b0738d0cfb334d | 5838cf8f133a62df151ed12a5f928a43c11772ed | /NT/base/fs/hsm/wsb/wsbcltn.h | ba7c2dc6418cd56331961fb1ebbf87ce8a29e590 | [] | no_license | proaholic/Win2K3 | e5e17b2262f8a2e9590d3fd7a201da19771eb132 | 572f0250d5825e7b80920b6610c22c5b9baaa3aa | refs/heads/master | 2023-07-09T06:15:54.474432 | 2021-08-11T09:09:14 | 2021-08-11T09:09:14 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 5,026 | h | /*++
© 1998 Seagate Software, Inc. All rights reserved
Module Name:
Wsbcltn.h
Abstract:
These classes provide support for collections (lists) of "collectable"
objects.
Author:
Chuck Bardeen [cbardeen] 29-Oct-1996
Revision History:
--*/
#include "resource.h"
#include "Wsbpstbl.h"
#ifndef _WSBCLTN_
#define _WSBCLTN_
/*++
Class Name:
CWsbCollection
Class Description:
A collection of objects.
--*/
class CWsbCollection :
public CWsbPersistStream,
public IWsbCollection,
public IWsbTestable
{
// CComObjectRoot
public:
STDMETHOD(FinalConstruct)(void);
void FinalRelease(void);
// IWsbCollection
public:
STDMETHOD(Contains)(IUnknown* pCollectable);
STDMETHOD(GetEntries)(ULONG* pEntries);
STDMETHOD(Find)(IUnknown* pCollectable, REFIID riid, void** ppElement);
STDMETHOD(IsEmpty)(void);
STDMETHOD(IsLocked)(void);
STDMETHOD(Lock)(void);
STDMETHOD(OccurencesOf)(IUnknown* pCollectable, ULONG* occurences);
STDMETHOD(RemoveAndRelease)(IUnknown* pCollectable);
STDMETHOD(Unlock)(void);
// IWsbTestable
public:
STDMETHOD(Test)(USHORT *passed, USHORT *failed);
protected:
ULONG m_entries;
CRITICAL_SECTION m_CritSec;
BOOL m_bCritSecCreated;
};
#define WSB_FROM_CWSBCOLLECTION \
STDMETHOD(Contains)(IUnknown* pCollectable) \
{return(CWsbCollection::Contains(pCollectable));}; \
STDMETHOD(GetEntries)(ULONG* pEntries) \
{return(CWsbCollection::GetEntries(pEntries));}; \
STDMETHOD(Find)(IUnknown* pCollectable, REFIID riid, void** ppElement) \
{return(CWsbCollection::Find(pCollectable, riid, ppElement));}; \
STDMETHOD(IsEmpty)(void) \
{return(CWsbCollection::IsEmpty());}; \
STDMETHOD(IsLocked)(void) \
{return(CWsbCollection::IsLocked());}; \
STDMETHOD(Lock)(void) \
{return(CWsbCollection::Lock());}; \
STDMETHOD(OccurencesOf)(IUnknown* pCollectable, ULONG* occurences) \
{return(CWsbCollection::OccurencesOf(pCollectable, occurences));}; \
STDMETHOD(RemoveAndRelease)(IUnknown* pCollectable) \
{return(CWsbCollection::RemoveAndRelease(pCollectable));}; \
STDMETHOD(Unlock)(void) \
{return(CWsbCollection::Unlock());}; \
/*++
Class Name:
CWsbIndexedCollection
Class Description:
A indexed collection of objects.
--*/
class CWsbIndexedCollection :
public IWsbIndexedCollection,
public CWsbCollection
{
// IWsbCollection
public:
WSB_FROM_CWSBCOLLECTION;
// IWsbIndexedCollection
public:
STDMETHOD(Add)(IUnknown* pCollectable);
STDMETHOD(Append)(IUnknown* pCollectable);
STDMETHOD(First)(REFIID riid, void** ppElement);
STDMETHOD(Index)(IUnknown* pCollectable, ULONG* index);
STDMETHOD(Last)(REFIID riid, void** ppElement);
STDMETHOD(Prepend)(IUnknown* pCollectable);
STDMETHOD(Remove)(IUnknown* pCollectable, REFIID riid, void** ppElement);
STDMETHOD(RemoveAllAndRelease)(void);
STDMETHOD(Enum)(IWsbEnum** ppEnum);
STDMETHOD(EnumUnknown)(IEnumUnknown** ppEnum);
// IWsbTestable
public:
STDMETHOD(Test)(USHORT *passed, USHORT *failed);
};
/*++
Class Name:
CWsbOrderedCollection
Class Description:
An ordered collection of objects.
--*/
class CWsbOrderedCollection :
public CWsbIndexedCollection,
public CComCoClass<CWsbOrderedCollection,&CLSID_CWsbOrderedCollection>
{
public:
CWsbOrderedCollection() {}
BEGIN_COM_MAP(CWsbOrderedCollection)
COM_INTERFACE_ENTRY2(IPersist, IPersistStream)
COM_INTERFACE_ENTRY(IPersistStream)
COM_INTERFACE_ENTRY2(IWsbCollection, IWsbIndexedCollection)
COM_INTERFACE_ENTRY(IWsbIndexedCollection)
COM_INTERFACE_ENTRY(IWsbPersistStream)
COM_INTERFACE_ENTRY(IWsbTestable)
END_COM_MAP()
DECLARE_REGISTRY_RESOURCEID(IDR_CWsbOrderedCollection)
// CComObjectRoot
public:
STDMETHOD(FinalConstruct)(void);
void FinalRelease(void);
// IWsbIndexedCollection
STDMETHOD(AddAt)(IUnknown* pCollectable, ULONG index);
STDMETHOD(At)(ULONG index, REFIID riid, void** ppElement);
STDMETHOD(Copy)(ULONG start, ULONG stop, REFIID riid, void** rgElement, ULONG* pElementFetched);
STDMETHOD(CopyIfMatches)(ULONG start, ULONG stop, IUnknown* pCollectable, ULONG element, REFIID riid, void** rgElement, ULONG* pElementFetched, ULONG* pStoppedAt);
STDMETHOD(RemoveAt)(ULONG index, REFIID riid, void** ppElement);
// IPersist
public:
STDMETHOD(GetClassID)(LPCLSID pclsid);
// IPersistStream
public:
STDMETHOD(GetSizeMax)(ULARGE_INTEGER* pSize);
STDMETHOD(Load)(IStream* pStream);
STDMETHOD(Save)(IStream* pStream, BOOL clearDirty);
// IWsbTestable
public:
STDMETHOD(Test)(USHORT *passed, USHORT *failed) {
return(CWsbIndexedCollection::Test(passed, failed));
};
protected:
ULONG m_maxEntries;
ULONG m_growBy;
IWsbCollectable** m_pCollectable;
};
#endif // _WSBCLTN_
| [
"[email protected]"
] | |
28e1cabaf0e633393c243675d1ff8eaf77378e59 | 437854731e10d64ef1ba764fa8aed2caced4c140 | /ComplexNetworks/io/DotPartitionWriter.cpp | c97ed8b794bff1d161bdcab0a88883308ba6ab75 | [] | no_license | SIUEComplexNetworksLab/ComplexNetworksFall2018 | b855b95eac97cf98bb45cda2b55743d362e6f860 | 5a30089ed2028a8d605330142476da16d59f9227 | refs/heads/master | 2020-03-28T06:54:39.978529 | 2018-11-27T21:24:36 | 2018-11-27T21:24:36 | 147,868,723 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,156 | cpp | /*
* DotPartitionWriter.cpp
*/
#include "DotPartitionWriter.h"
#include <fstream>
#include <set>
namespace NetworKit {
std::map<index, double> DotPartitionWriter::createHueMap(Graph &graph, Partition& zeta) const {
std::set<index> uniqueIds;
graph.forNodes([&](node u){
if (graph.degree(u) == 0) {
return;
}
index c = zeta.subsetOf(u);
uniqueIds.insert(c);
});
std::map<index, double> clusterHueMap;
int idx = 0;
double factor = 1.0 / uniqueIds.size();
for(const auto& value: uniqueIds) {
clusterHueMap.insert(std::make_pair(value, factor * idx));
++idx;
}
return clusterHueMap;
}
void DotPartitionWriter::write(Graph& graph, Partition& zeta, std::string path) const {
std::ofstream file{path};
auto hueMap = this->createHueMap(graph, zeta);
file << "graph {\n";
graph.forNodes([&](node u){
if (graph.degree(u) == 0) {
return;
}
index c = zeta.subsetOf(u);
double h = hueMap.at(c);
file << u << " [style=filled, color=\"" << h << ",0.99,0.99\", label=" << c << "];\n";
});
graph.forEdges([&](node u, node v){
file << u << " -- " << v << ";\n";
});
file << "}\n";
}
} /* namespace NetworKit */
| [
"[email protected]"
] | |
1e9451c94ee61b6e07157838bbd2784a43335a30 | 7bdd4cee3cba43fc7ea851c8250deebfa5dbf832 | /build/Android/Debug/app/src/main/include/Fuse.Scripting.JavaSc-b00d7805.h | 782de840f326d51f24d961f16cceaefff160554d | [] | no_license | chaejaeyoun/App_function_login-Signup | d26ab8aa843320a4e9452d2b3b2842443e59fc95 | 6c2113adc785d7e22fb0fa498fcf449d0c9e6f2a | refs/heads/master | 2020-04-27T05:48:26.173232 | 2019-03-13T10:42:58 | 2019-03-13T10:42:58 | 174,090,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,580 | h | // This file was generated based on /usr/local/share/uno/Packages/Fuse.Scripting.JavaScript/1.10.0-rc1/Observable.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Scripting.JavaSc-8e9ad5a9.h>
namespace g{namespace Fuse{namespace Scripting{namespace JavaScript{struct Observable;}}}}
namespace g{namespace Fuse{namespace Scripting{namespace JavaScript{struct Observable__RemoveRange;}}}}
namespace g{namespace Fuse{namespace Scripting{namespace JavaScript{struct Observable__Subscription;}}}}
namespace g{
namespace Fuse{
namespace Scripting{
namespace JavaScript{
// private sealed class Observable.RemoveRange :590
// {
::g::Fuse::Scripting::JavaScript::Observable__Operation_type* Observable__RemoveRange_typeof();
void Observable__RemoveRange__ctor_1_fn(Observable__RemoveRange* __this, ::g::Fuse::Scripting::JavaScript::Observable* obs, int32_t* index, int32_t* count);
void Observable__RemoveRange__New1_fn(::g::Fuse::Scripting::JavaScript::Observable* obs, int32_t* index, int32_t* count, Observable__RemoveRange** __retval);
void Observable__RemoveRange__OnPerform_fn(Observable__RemoveRange* __this, uObject* sub);
struct Observable__RemoveRange : ::g::Fuse::Scripting::JavaScript::Observable__Operation
{
int32_t _index;
int32_t _count;
void ctor_1(::g::Fuse::Scripting::JavaScript::Observable* obs, int32_t index, int32_t count);
static Observable__RemoveRange* New1(::g::Fuse::Scripting::JavaScript::Observable* obs, int32_t index, int32_t count);
};
// }
}}}} // ::g::Fuse::Scripting::JavaScript
| [
"[email protected]"
] | |
b44ba8eedeb0948741178badd11ad80e475d1c41 | 24aeca9ff99b64206dbecca9ac2e3f730137c29a | /ros/src/hardware/src/jhpwmpca9685.h | 2d4f1026375e83533e471bc7d4c78a55a1328245 | [] | no_license | nlieb/agrobot | fc54d27f9bcca90c16085ec18650928c90c445a7 | 2adb2afa0d74b9e0f4e11c2ea2ac76c09d911565 | refs/heads/master | 2020-03-28T18:27:43.361961 | 2018-09-16T12:36:01 | 2018-09-16T12:36:01 | 148,883,264 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,897 | h | /*
* The MIT License (MIT)
Copyright (c) 2015 Jetsonhacks
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 _JHPWMPCA9685_H
#define _JHPWMPCA9685_H
#include <errno.h>
#include <fcntl.h>
#include <linux/i2c-dev.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <cstddef>
#include <cstdio>
#include <cstdlib>
class PCA9685 {
public:
unsigned char kI2CBus; // I2C bus of the PCA9685
int kI2CFileDescriptor; // File Descriptor to the PCA9685
int kI2CAddress; // Address of PCA9685; defaults to 0x40
int error;
PCA9685(int address = 0x40);
~PCA9685();
bool openPCA9685();
void closePCA9685();
void reset();
// Sets the frequency of the PWM signal
// Frequency is ranged between 40 and 1000 Hertz
void setPWMFrequency(float frequency);
void setPulseLength(int channel, int usec);
// Channels 0-15
// Channels are in sets of 4 bytes
void setPWM(int channel, int onValue, int offValue);
void setAllPWM(int onValue, int offValue);
// Read the given register
int readByte(int readRegister);
// Write the the given value to the given register
int writeByte(int writeRegister, int writeValue);
int getError();
private:
float currentFrequency_;
};
// Register definitions from Table 7.3 NXP Semiconductors
// Product Data Sheet, Rev. 4 - 16 April 2015
#define PCA9685_MODE1 0x00
#define PCA9685_MODE2 0x01
#define PCA9685_SUBADR1 0x02
#define PCA9685_SUBADR2 0x03
#define PCA9685_SUBADR3 0x04
#define PCA9685_ALLCALLADR 0x05
// LED outbut and brightness
#define PCA9685_LED0_ON_L 0x06
#define PCA9685_LED0_ON_H 0x07
#define PCA9685_LED0_OFF_L 0x08
#define PCA9685_LED0_OFF_H 0x09
#define PCA9685_LED1_ON_L 0x0A
#define PCA9685_LED1_ON_H 0x0B
#define PCA9685_LED1_OFF_L 0x0C
#define PCA9685_LED1_OFF_H 0x0D
#define PCA9685_LED2_ON_L 0x0E
#define PCA9685_LED2_ON_H 0x0F
#define PCA9685_LED2_OFF_L 0x10
#define PCA9685_LED2_OFF_H 0x11
#define PCA9685_LED3_ON_L 0x12
#define PCA9685_LED3_ON_H 0x13
#define PCA9685_LED3_OFF_L 0x14
#define PCA9685_LED3_OFF_H 0x15
#define PCA9685_LED4_ON_L 0x16
#define PCA9685_LED4_ON_H 0x17
#define PCA9685_LED4_OFF_L 0x18
#define PCA9685_LED4_OFF_H 0x19
#define PCA9685_LED5_ON_L 0x1A
#define PCA9685_LED5_ON_H 0x1B
#define PCA9685_LED5_OFF_L 0x1C
#define PCA9685_LED5_OFF_H 0x1D
#define PCA9685_LED6_ON_L 0x1E
#define PCA9685_LED6_ON_H 0x1F
#define PCA9685_LED6_OFF_L 0x20
#define PCA9685_LED6_OFF_H 0x21
#define PCA9685_LED7_ON_L 0x22
#define PCA9685_LED7_ON_H 0x23
#define PCA9685_LED7_OFF_L 0x24
#define PCA9685_LED7_OFF_H 0x25
#define PCA9685_LED8_ON_L 0x26
#define PCA9685_LED8_ON_H 0x27
#define PCA9685_LED8_OFF_L 0x28
#define PCA9685_LED8_OFF_H 0x29
#define PCA9685_LED9_ON_L 0x2A
#define PCA9685_LED9_ON_H 0x2B
#define PCA9685_LED9_OFF_L 0x2C
#define PCA9685_LED9_OFF_H 0x2D
#define PCA9685_LED10_ON_L 0x2E
#define PCA9685_LED10_ON_H 0x2F
#define PCA9685_LED10_OFF_L 0x30
#define PCA9685_LED10_OFF_H 0x31
#define PCA9685_LED11_ON_L 0x32
#define PCA9685_LED11_ON_H 0x33
#define PCA9685_LED11_OFF_L 0x34
#define PCA9685_LED11_OFF_H 0x35
#define PCA9685_LED12_ON_L 0x36
#define PCA9685_LED12_ON_H 0x37
#define PCA9685_LED12_OFF_L 0x38
#define PCA9685_LED12_OFF_H 0x39
#define PCA9685_LED13_ON_L 0x3A
#define PCA9685_LED13_ON_H 0x3B
#define PCA9685_LED13_OFF_L 0x3C
#define PCA9685_LED13_OFF_H 0x3D
#define PCA9685_LED14_ON_L 0x3E
#define PCA9685_LED14_ON_H 0x3F
#define PCA9685_LED14_OFF_L 0x40
#define PCA9685_LED14_OFF_H 0x41
#define PCA9685_LED15_ON_L 0x42
#define PCA9685_LED15_ON_H 0x43
#define PCA9685_LED15_OFF_L 0x44
#define PCA9685_LED15_OFF_H 0x45
#define PCA9685_ALL_LED_ON_L 0xFA
#define PCA9685_ALL_LED_ON_H 0xFB
#define PCA9685_ALL_LED_OFF_L 0xFC
#define PCA9685_ALL_LED_OFF_H 0xFD
#define PCA9685_PRE_SCALE 0xFE
// Register Bits
#define PCA9685_ALLCALL 0x01
#define PCA9685_OUTDRV 0x04
#define PCA9685_RESTART 0x80
#define PCA9685_SLEEP 0x10
#define PCA9685_INVERT 0x10
#endif
| [
"[email protected]"
] | |
e8068c8a1e67a4b295761226cfdf92dfb91493df | e039dbfd3f94edf3834b061749f1189cc29f28a1 | /MayaExporterForER/MayaExporterForER/include/maya/MDagPath.h | 6542d1c570a460ce0794f177a4d9a91a3a1be064 | [] | no_license | yvetterowe/Maya-Plugin-for-Elvish-Render | 401a66d75b87b98168e63083c19aa383cba99f56 | cea337b9f10ab81294c3a9e07d64bdd6c82f634f | refs/heads/master | 2021-05-28T08:53:45.483445 | 2015-02-22T21:49:04 | 2015-02-22T21:49:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,137 | h | #ifndef _MDagPath
#define _MDagPath
//-
// ==========================================================================
// Copyright (C) 1995 - 2006 Autodesk, Inc., and/or its licensors. All
// rights reserved.
//
// The coded instructions, statements, computer programs, and/or related
// material (collectively the "Data") in these files contain unpublished
// information proprietary to Autodesk, Inc. ("Autodesk") and/or its
// licensors, which is protected by U.S. and Canadian federal copyright law
// and by international treaties.
//
// The Data may not be disclosed or distributed to third parties or be
// copied or duplicated, in whole or in part, without the prior written
// consent of Autodesk.
//
// The copyright notices in the Software and this entire statement,
// including the above license grant, this restriction and the following
// disclaimer, must be included in all copies of the Software, in whole
// or in part, and all derivative works of the Software, unless such copies
// or derivative works are solely in the form of machine-executable object
// code generated by a source language processor.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
// AUTODESK DOES NOT MAKE AND HEREBY DISCLAIMS ANY EXPRESS OR IMPLIED
// WARRANTIES INCLUDING, BUT NOT LIMITED TO, THE WARRANTIES OF
// NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE,
// OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. IN NO
// EVENT WILL AUTODESK AND/OR ITS LICENSORS BE LIABLE FOR ANY LOST
// REVENUES, DATA, OR PROFITS, OR SPECIAL, DIRECT, INDIRECT, OR
// CONSEQUENTIAL DAMAGES, EVEN IF AUTODESK AND/OR ITS LICENSORS HAS
// BEEN ADVISED OF THE POSSIBILITY OR PROBABILITY OF SUCH DAMAGES.
// ==========================================================================
//+
//
// CLASS: MDagPath
//
// ****************************************************************************
//
// CLASS DESCRIPTION (MDagPath)
//
// The DAG Path Class provides methods for obtaining one or all Paths to a
// specified DAG Node, determining if a Path is valid and if two Paths are
// equivalent, obtaining the length, transform, and inclusive and exclusive
// matrices of Path, as well as performing Path to Path assignment.
//
// ****************************************************************************
#if defined __cplusplus
// ****************************************************************************
// INCLUDED HEADER FILES
#include <maya/MStatus.h>
#include <maya/MTypes.h>
#include <maya/MStatus.h>
#include <maya/MObject.h>
// ****************************************************************************
// DECLARATIONS
class MMatrix;
class MDagPathArray;
class MString;
// ****************************************************************************
// CLASS DECLARATION (MDagPath)
//! \ingroup OpenMaya
//! \brief DAG Path.
/*!
Provides methods for obtaining one or all Paths to a specified DAG Node,
determining if a Path is valid and if two Paths are equivalent, obtaining the
length, transform, and inclusive and exclusive matrices of a Path, as well as
performing Path to Path assignment.
DAG Paths may be used as parameters to some methods in the DAG Node Function
Set (MFnDagNode).
It is often useful to combine DAG Paths into DAG Path arrays
(MDagPathArray).
Use this DAG Path Class to obtain and query Paths to DAG Nodes. A DAG path
is a path from the world node to a particular object in the DAG.
If a DAG object is instanced, then an MDagPath is required to identify a
particular instance. DAG paths are also required when doing world space
transformations.
Use this class in conjunction with the DAG Iterator (MItDag), DAG Node
Function Set (MFnDagNode) and DAG Path Array class (MDagPathArray) to query and
edit the DAG.
*/
class OPENMAYA_EXPORT MDagPath
{
public:
MDagPath();
MDagPath( const MDagPath& src );
virtual ~MDagPath();
static MStatus getAllPathsTo( const MObject & node,
MDagPathArray & pathArray );
static MStatus getAPathTo( const MObject & node,
MDagPath & path );
bool hasFn( MFn::Type type,
MStatus * ReturnStatus = NULL ) const;
MFn::Type apiType(MStatus * ReturnStatus = NULL) const;
bool isValid(MStatus * ReturnStatus = NULL) const;
MObject node(MStatus * ReturnStatus = NULL) const;
MObject transform( MStatus * ReturnStatus = NULL ) const;
unsigned int length(MStatus * ReturnStatus = NULL) const;
MStatus extendToShape();
MStatus extendToShapeDirectlyBelow( unsigned int );
MStatus numberOfShapesDirectlyBelow( unsigned int& ) const;
MStatus push( const MObject &child );
MStatus pop( unsigned int num = 1 );
unsigned int childCount( MStatus * ReturnStatus = NULL ) const;
MObject child( unsigned int i, MStatus * ReturnStatus = NULL ) const;
MMatrix inclusiveMatrix(MStatus * ReturnStatus = NULL) const;
MMatrix exclusiveMatrix(MStatus * ReturnStatus = NULL) const;
MMatrix inclusiveMatrixInverse(MStatus * ReturnStatus = NULL)const;
MMatrix exclusiveMatrixInverse(MStatus * ReturnStatus = NULL)const;
MDagPath& operator = ( const MDagPath& src);
bool operator == ( const MDagPath& src) const;
MStatus set( const MDagPath& src);
unsigned int pathCount(MStatus * ReturnStatus = NULL) const;
MStatus getPath( MDagPath & path, unsigned int i = 0 ) const;
MString fullPathName(MStatus *ReturnStatus = NULL) const;
MString partialPathName(MStatus *ReturnStatus = NULL) const;
bool isInstanced( MStatus *ReturnStatus = NULL ) const;
unsigned int instanceNumber( MStatus *ReturnStatus = NULL ) const;
static const char* className();
//! Obsolete
static MDagPath getAPathTo( const MObject & node,
MStatus * ReturnStatus = NULL );
protected:
// No protected members
private:
void * data;
};
#endif /* __cplusplus */
#endif /* _MDagPath */
| [
"[email protected]@f82b52a9-fb2f-50e7-dc0d-a1cbf65dcd3b"
] | [email protected]@f82b52a9-fb2f-50e7-dc0d-a1cbf65dcd3b |
c1518b863ef62da2b8b90106519cacd2b0797beb | 1ca8565dcc93b97ce5b4270b3dbdd8fa335f55c5 | /Stars45/TerrainPatch.cpp | c9108f696e07dab15af536f1605b051b26499d49 | [] | no_license | lightgemini78/Starshatter-Vanilla-Improvement | aaf2d3173b4aa4ea80b5d0dd06ee74b91e832f1a | 189d0b15d1273843cecea25eccc211c9c278cfff | refs/heads/master | 2021-01-10T08:42:29.929234 | 2015-05-29T15:26:27 | 2015-05-29T15:26:27 | 36,509,181 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 32,087 | cpp | /* Starshatter OpenSource Distribution
Copyright (c) 1997-2004, Destroyer Studios LLC.
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 "Destroyer Studios" 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 HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
SUBSYSTEM: Stars.exe
FILE: TerrainPatch.cpp
AUTHOR: John DiCamillo
OVERVIEW
========
*/
#include "MemDebug.h"
#include "Terrain.h"
#include "TerrainLayer.h"
#include "TerrainPatch.h"
#include "TerrainRegion.h"
#include "Sim.h"
#include "Light.h"
#include "CameraView.h"
#include "Projector.h"
#include "Bitmap.h"
#include "DataLoader.h"
#include "Game.h"
#include "Scene.h"
#include "Water.h"
// +====================================================================+
// #define DEBUG_DETAIL 1
// +====================================================================+
const int MAX_DETAIL = 4;
const int PATCH_SIZE = 17;
const int HALF_PATCH_SIZE = 8;
const int MAX_VERTS = PATCH_SIZE * PATCH_SIZE;
static bool illuminating = false;
// +--------------------------------------------------------------------+
TerrainPatch::TerrainPatch(Terrain* terr,const Bitmap* patch, const Rect& r,
const Point& p1, const Point& p2)
: ndetail(0), terrain(terr), rect(r), water(0), min_height(1e9), max_height(-1e9)
{
luminous = true; // we will do our own lighting
own_model = false; // manage the model lifetimes in this derived class
max_detail = Terrain::DetailLevel();
scale = fabs(p1.x - p2.x) / (PATCH_SIZE-1);
mtnscale = p2.y - p1.y;
base = p1.y;
size = p2.x - p1.x;
ZeroMemory(detail_levels, sizeof(detail_levels));
terrain_width = patch->Width();
loc = (p1 + p2) * 0.5;
loc.y = base;
radius = (float) (size * 0.75);
heights = new(__FILE__,__LINE__) float[MAX_VERTS];
float* pHeight = heights;
int tscale = rect.w / (PATCH_SIZE-1);
int i, j;
for (i = 0; i < PATCH_SIZE; i++) {
int ty = rect.y + i * tscale;
if (ty < 0)
ty = 0;
if (ty > patch->Height()-1)
ty = patch->Height()-1;
for (j = 0; j < PATCH_SIZE; j++) {
int tx = rect.x + (PATCH_SIZE-1 - j) * tscale;
if (tx < 0)
tx = 0;
if (tx > patch->Width()-1)
tx = patch->Width()-1;
int red = patch->GetColor(tx,ty).Red();
float alt = (float) (red * mtnscale);
if (alt < min_height)
min_height = alt;
if (alt > max_height)
max_height = alt;
if (terrain->WaterTexture() && red < 2)
alt = -5000.0f;
*pHeight++ = alt;
}
}
Material* mtl = new(__FILE__,__LINE__) Material;
mtl->Ka = ColorValue(0.5f, 0.5f, 0.5f);
mtl->Kd = ColorValue(0.3f, 0.6f, 0.2f);
mtl->Ks = Color::Black;
mtl->tex_diffuse = terrain->Texture();
materials.append(mtl);
List<TerrainLayer>& layers = terrain->GetLayers();
for (i = 0; i < layers.size(); i++) {
Bitmap* tex0 = layers.at(i)->GetTileTexture();
Bitmap* tex1 = 0;
Bitmap* texd = layers.at(i)->GetDetailTexture();
if (i < layers.size()-1)
tex1 = layers.at(i+1)->GetTileTexture();
if (!texd)
texd = terrain->DetailTexture(0);
mtl = new(__FILE__,__LINE__) Material;
mtl->Ka = ColorValue(0.5f, 0.5f, 0.5f);
mtl->Kd = ColorValue(0.3f, 0.6f, 0.2f);
mtl->Ks = Color::Black;
if ((i & 1) != 0) {
mtl->tex_diffuse = tex1;
mtl->tex_alternate = tex0;
}
else {
mtl->tex_diffuse = tex0;
mtl->tex_alternate = tex1;
}
mtl->tex_detail = texd;
materials.append(mtl);
}
for (i = 0; i <= max_detail; i++)
BuildDetailLevel(i);
model = detail_levels[1];
}
// +--------------------------------------------------------------------+
TerrainPatch::TerrainPatch(Terrain* terr,
const Rect& r,
const Point& p1,
const Point& p2,
double sea_level)
: ndetail(0), terrain(terr), rect(r), water(0)
{
luminous = true; // water is lit by the graphics engine
own_model = false; // manage the model lifetimes in this derived class
max_detail = Terrain::DetailLevel();
scale = fabs(p1.x - p2.x) / (PATCH_SIZE-1);
mtnscale = 0;
base = sea_level;
size = p2.x - p1.x;
ZeroMemory(detail_levels, sizeof(detail_levels));
terrain_width = 0;
loc = (p1 + p2) * 0.5;
loc.y = base;
radius = (float) (size * 0.75);
heights = new(__FILE__,__LINE__) float[MAX_VERTS];
float* pHeight = heights;
int i, j;
for (i = 0; i < PATCH_SIZE; i++) {
for (j = 0; j < PATCH_SIZE; j++) {
*pHeight++ = (float) sea_level;
}
}
Material* mtl = new(__FILE__,__LINE__) Material;
mtl->Ka = Color::Gray;
mtl->Kd = Color::White;
mtl->Ks = Color::White;
mtl->power = 30.0f;
mtl->shadow = false;
mtl->tex_diffuse = terrain->WaterTexture();
//strcpy_s(mtl->shader, "WaterReflections");
materials.append(mtl);
water = terrain->GetWater(1);
for (i = 0; i <= max_detail; i++)
BuildDetailLevel(i);
model = detail_levels[1];
}
// +--------------------------------------------------------------------+
TerrainPatch::~TerrainPatch()
{
delete [] heights;
for (int i = 0; i < MAX_LOD; i++) {
Model* m = detail_levels[i];
if (m) {
m->GetMaterials().clear();
delete m;
}
}
materials.destroy();
}
// +--------------------------------------------------------------------+
void
TerrainPatch::SetScales(double s, double m, double b)
{
scale = s;
mtnscale = m;
base = b;
}
// +--------------------------------------------------------------------+
static int mcomp(const void* a, const void* b)
{
Poly* pa = (Poly*) a;
Poly* pb = (Poly*) b;
if (pa->sortval == pb->sortval)
return 0;
if (pa->sortval < pb->sortval)
return 1;
return -1;
}
static void bisect(VertexSet* vset, int v[4])
{
double d1 = fabs(vset->loc[ v[0] ].y -
vset->loc[ v[3] ].y);
double d2 = fabs(vset->loc[ v[1] ].y -
vset->loc[ v[2] ].y);
if (d2 < 0.7*d1) {
int odd[4] = { v[1], v[3], v[0], v[2] };
for (int i = 0; i < 4; i++)
v[i] = odd[i];
}
}
bool
TerrainPatch::BuildDetailLevel(int level)
{
int i, j;
int detail_size = 1 << level;
int ds1 = detail_size+1;
if (detail_size > PATCH_SIZE)
return false;
Model* model = new(__FILE__,__LINE__) Model;
detail_levels[level] = model;
model->SetLuminous(luminous);
model->SetDynamic(true);
const int NUM_STRIPS = 4;
const int NUM_INDICES_TRI = 3;
const int NUM_INDICES_QUAD = 6;
int nverts = ds1*ds1 + ds1*2*NUM_STRIPS;
int npolys = detail_size*detail_size*2;
int strip_len = detail_size;
int total = npolys + strip_len*NUM_STRIPS;
if (water) {
nverts = ds1*ds1;
strip_len = 0;
total = npolys;
}
Surface* s = new(__FILE__,__LINE__) Surface;
VertexSet* vset = 0;
if (s) {
s->SetName("default");
s->CreateVerts(nverts);
s->CreatePolys(total);
s->AddIndices(npolys*NUM_INDICES_TRI + strip_len*NUM_STRIPS*NUM_INDICES_QUAD);
vset = s->GetVertexSet();
if (!water)
vset->CreateAdditionalTexCoords();
ZeroMemory(vset->loc, nverts * sizeof(Vec3));
ZeroMemory(vset->diffuse, nverts * sizeof(DWORD));
ZeroMemory(vset->specular, nverts * sizeof(DWORD));
ZeroMemory(vset->tu, nverts * sizeof(float));
ZeroMemory(vset->tv, nverts * sizeof(float));
if (!water) {
ZeroMemory(vset->tu1, nverts * sizeof(float));
ZeroMemory(vset->tv1, nverts * sizeof(float));
}
ZeroMemory(vset->rw, nverts * sizeof(float));
// initialize vertices
Vec3* pVert = vset->loc;
float* pTu = vset->tu;
float* pTv = vset->tv;
float* pTu1 = vset->tu1;
float* pTv1 = vset->tv1;
DWORD* pSpec = vset->specular;
int dscale = (PATCH_SIZE-1)/detail_size;
double dt = 0.0625 / (ds1-1); // terrain texture scale
double dtt = 2.0000 / (ds1-1); // tile texture scale
double tu0 = (double) rect.x / rect.w / 16.0 + 1.0/16.0;
double tv0 = (double) rect.y / rect.h / 16.0;
// surface verts
for (i = 0; i < ds1; i++) {
for (j = 0; j < ds1; j++) {
*pVert = Vec3((float) (j* scale * dscale - (HALF_PATCH_SIZE*scale)),
(float) (heights[i*dscale*PATCH_SIZE + j*dscale]),
(float) (i* scale * dscale - (HALF_PATCH_SIZE*scale)));
if (level >= 2) {
*pTu++ = (float) (-j*dtt);
*pTv++ = (float) ( i*dtt);
if (level >= 4 && !water) {
*pTu1++ = (float) (-j*dtt*3);
*pTv1++ = (float) ( i*dtt*3);
}
*pSpec++ = BlendValue(pVert->y);
}
else {
*pTu++ = (float) (tu0 - j*dt);
*pTv++ = (float) (tv0 + i*dt);
}
pVert++;
}
}
if (!water) {
// strip 1 & 2 verts
for (i = 0; i < ds1; i += detail_size) {
for (j = 0; j < ds1; j++) {
Vec3 vl = Vec3((float) (j* scale * dscale - (HALF_PATCH_SIZE*scale)),
(float) (heights[i*dscale*PATCH_SIZE + j*dscale]),
(float) (i* scale * dscale - (HALF_PATCH_SIZE*scale)));
*pVert++ = vl;
DWORD blend = 0;
if (level >= 2) {
blend = BlendValue(vl.y);
*pSpec++ = blend;
*pTu++ = (float) (-j*dtt);
*pTv++ = (float) ( i*dtt);
}
else {
*pTu++ = (float) (tu0 - j*dt);
*pTv++ = (float) (tv0 + i*dt);
}
vl.y = -5000.0f;
*pVert++ = vl;
if (level >= 2) {
*pSpec++ = blend;
*pTu++ = (float) (-j*dtt);
*pTv++ = (float) ( i*dtt);
}
else {
*pTu++ = (float) (tu0 - j*dt);
*pTv++ = (float) (tv0 + i*dt);
}
}
}
// strip 3 & 4 verts
for (j = 0; j < ds1; j += detail_size) {
for (i = 0; i < ds1; i++) {
Vec3 vl = Vec3((float) (j* scale * dscale - (HALF_PATCH_SIZE*scale)),
(float) (heights[i*dscale*PATCH_SIZE + j*dscale]),
(float) (i* scale * dscale - (HALF_PATCH_SIZE*scale)));
*pVert++ = vl;
DWORD blend = 0;
if (level >= 2) {
blend = BlendValue(vl.y);
*pSpec++ = blend;
*pTu++ = (float) (-j*dtt);
*pTv++ = (float) ( i*dtt);
}
else {
*pTu++ = (float) (tu0 - j*dt);
*pTv++ = (float) (tv0 + i*dt);
}
vl.y = -5000.0f;
*pVert++ = vl;
if (level >= 2) {
*pSpec++ = blend;
*pTu++ = (float) (-j*dtt);
*pTv++ = (float) ( i*dtt);
}
else {
*pTu++ = (float) (tu0 - j*dt);
*pTv++ = (float) (tv0 + i*dt);
}
}
}
}
Material* m = materials.first();
// initialize the polys
for (i = 0; i < npolys; i++) {
Poly* p = s->GetPolys() + i;
p->nverts = 3;
p->vertex_set = vset;
p->visible = 1;
p->sortval = 0;
p->material = m;
if (level >= 2 && !water) {
p->material = materials.at(1);
p->sortval = 1;
}
}
for (i = npolys; i < total; i++) {
Poly* p = s->GetPolys() + i;
p->nverts = 4;
p->vertex_set = vset;
p->visible = 1;
p->sortval = 0;
p->material = m;
}
int index = 0;
// build main patch polys:
for (i = 0; i < detail_size; i++) {
for (j = 0; j < detail_size; j++) {
int v[4] = {
(ds1 * (i ) + (j )),
(ds1 * (i ) + (j+1)),
(ds1 * (i+1) + (j )),
(ds1 * (i+1) + (j+1)) };
bisect(vset, v);
// first triangle
Poly* p = s->GetPolys() + index++;
p->verts[0] = v[0];
p->verts[1] = v[1];
p->verts[2] = v[3];
if (level >= 2 && !water) {
int layer = CalcLayer(p) + 1;
p->material = materials.at(layer);
p->sortval = layer;
}
// second triangle
p = s->GetPolys() + index++;
p->verts[0] = v[0];
p->verts[1] = v[3];
p->verts[2] = v[2];
if (level >= 2 && !water) {
int layer = CalcLayer(p) + 1;
p->material = materials.at(layer);
p->sortval = layer;
}
}
}
// build vertical edge strip polys:
if (!water) {
for (i = 0; i < NUM_STRIPS; i++) {
Poly* p = s->GetPolys() + npolys + i*strip_len;
int base_index = ds1*ds1 + ds1*2*i;
for (j = 0; j < strip_len; j++) {
int v = base_index + j * 2;
p->nverts = 4;
if (i == 1 || i == 2) {
p->verts[0] = v;
p->verts[1] = v+2;
p->verts[2] = v+3;
p->verts[3] = v+1;
}
else {
p->verts[0] = v;
p->verts[1] = v+1;
p->verts[2] = v+3;
p->verts[3] = v+2;
}
if (level >= 2) {
int layer = CalcLayer(p) + 1;
p->material = materials.at(layer);
p->sortval = layer;
}
p++;
}
}
}
// update the poly planes:
for (i = 0; i < total; i++) {
Poly* p = s->GetPolys() + i;
Plane& plane = p->plane;
WORD* v = p->verts;
plane = Plane(vset->loc[v[0]] + loc,
vset->loc[v[1]] + loc,
vset->loc[v[2]] + loc);
}
s->Normalize();
// create continguous segments for each material:
// sort the polys by material index:
qsort((void*) s->GetPolys(), s->NumPolys(), sizeof(Poly), mcomp);
// then assign them to cohesive segments:
Segment* segment = 0;
Poly* spolys = s->GetPolys();
for (int n = 0; n < s->NumPolys(); n++) {
if (segment && segment->material == spolys[n].material) {
segment->npolys++;
}
else {
segment = 0;
}
if (!segment) {
segment = new(__FILE__,__LINE__) Segment;
segment->npolys = 1;
segment->polys = &spolys[n];
segment->material = segment->polys->material;
segment->model = model;
s->GetSegments().append(segment);
}
}
Solid::EnableCollision(false);
model->AddSurface(s);
Solid::EnableCollision(true);
// copy vertex normals:
const Vec3B* tnorms = terrain->Normals();
for (i = 0; i < ds1; i++) {
for (j = 0; j < ds1; j++) {
if (water) {
vset->nrm[i*ds1+j] = Point(0,1,0);
}
// blend adjacent normals:
else if (dscale > 1) {
Point normal;
// but don't blend more than 16 normals per vertex:
int step = 1;
if (dscale > 4)
step = dscale / 4;
for (int dy = -dscale/2; dy < dscale/2; dy += step) {
for (int dx = -dscale/2; dx < dscale/2; dx += step) {
int ix = rect.x + (ds1-1-j)*dscale + dx;
int iy = rect.y + i*dscale + dy;
if (ix < 0) ix = 0;
if (ix > terrain_width-1) ix = terrain_width-1;
if (iy < 0) iy = 0;
if (iy > terrain_width-1) iy = terrain_width-1;
Vec3B vbn = tnorms[iy*terrain_width + ix];
normal += Point((128-vbn.x)/127.0, (vbn.z-128)/127.0, (vbn.y-128)/127.0);
}
}
normal.Normalize();
vset->nrm[i*ds1+j] = normal;
}
// just copy the one normal:
else {
Vec3B vbn = tnorms[(rect.y + i*dscale)*terrain_width + (rect.x + (ds1-1-j) * dscale)];
Point normal = Point((128-vbn.x)/127.0, (vbn.z-128)/127.0, (vbn.y-128)/127.0);
vset->nrm[i*ds1+j] = normal;
}
}
}
if (!water) {
pVert = &vset->nrm[ds1*ds1];
// strip 1 & 2 verts
for (i = 0; i < ds1; i += detail_size) {
for (j = 0; j < ds1; j++) {
Vec3 vn = vset->nrm[i*ds1 + j];
*pVert++ = vn;
*pVert++ = vn;
}
}
// strip 3 & 4 verts
for (j = 0; j < ds1; j += detail_size) {
for (i = 0; i < ds1; i++) {
Vec3 vn = vset->nrm[i*ds1 + j];
*pVert++ = vn;
*pVert++ = vn;
}
}
}
}
if (level > max_detail)
max_detail = level;
return true;
}
// +--------------------------------------------------------------------+
DWORD
TerrainPatch::BlendValue(double y)
{
if (terrain && y >= 0 && !water) {
// find the proper layer:
for (int i = 0; i < terrain->GetLayers().size(); i++) {
TerrainLayer* layer = terrain->GetLayers().at(i);
if (y >= layer->GetMinHeight() && y < layer->GetMaxHeight()) {
double scale = (y-layer->GetMinHeight()) / (layer->GetMaxHeight()-layer->GetMinHeight());
if (scale < 0.2)
scale = 0;
else if (scale > 0.8)
scale = 1;
else
scale = (scale - 0.2) / 0.6;
if ((i & 1) == 0) {
scale = 1 - scale;
}
DWORD val = (DWORD) (scale*255);
return val << 24;
}
}
}
return 0;
}
int
TerrainPatch::CalcLayer(Poly* poly)
{
if (terrain && poly) {
if (water)
return 0;
double y = 1e6;
for (int i = 0; i < poly->nverts; i++) {
double h = poly->vertex_set->loc[ poly->verts[i] ].y;
if (h >= 0 && h < y) {
y = h;
}
}
if (y <= terrain->GetLayers().first()->GetMinHeight())
return 0;
for (int i = 0; i < terrain->GetLayers().size(); i++) {
TerrainLayer* layer = terrain->GetLayers().at(i);
if (y >= layer->GetMinHeight() && y < layer->GetMaxHeight()) {
return i;
}
}
}
return -1;
}
// +--------------------------------------------------------------------+
void
TerrainPatch::UpdateSurfaceWaves(Vec3& eyePos)
{
if (water && model && model->NumVerts() > 1) {
Surface* s = model->GetSurfaces().first();
if (s) {
VertexSet* vset = s->GetVertexSet();
for (int i = 0; i < vset->nverts; i++)
vset->loc[i].y = 0.0f;
water->UpdateSurface(eyePos, vset);
}
}
}
// +--------------------------------------------------------------------+
int
TerrainPatch::CollidesWith(Graphic& o)
{
return 0;
}
// +--------------------------------------------------------------------+
void
TerrainPatch::SelectDetail(Projector* projector)
{
// This is where all the work is done,
// Delegate to the overall terrain to
// compute a detail level for every patch:
if (terrain) {
terrain->SelectDetail(projector);
}
// Build detail levels on demand:
if (detail_levels[ndetail] == 0)
BuildDetailLevel(ndetail);
}
void
TerrainPatch::SetDetailLevel(int nd)
{
if (nd >= 0 && nd <= max_detail) {
if (ndetail != nd)
DeletePrivateData();
ndetail = nd;
// build detail levels on demand:
if (detail_levels[ndetail] == 0)
BuildDetailLevel(ndetail);
model = detail_levels[ndetail];
if (water)
water = terrain->GetWater(ndetail);
}
}
// +--------------------------------------------------------------------+
void
TerrainPatch::Illuminate(Color ambient, List<Light>& lights)
{
if (!model || model->NumVerts() < 1) return;
Surface* s = model->GetSurfaces().first();
if (!s) return;
illuminating = true;
// clear the solid lights to ambient:
VertexSet* vset = s->GetVertexSet();
int nverts = vset->nverts;
DWORD aval = ambient.Value();
for (int i = 0; i < nverts; i++) {
vset->diffuse[i] = aval;
}
TerrainRegion* trgn = terrain->GetRegion();
bool eclipsed = false;
bool first = terrain->IsFirstPatch(this);
if (trgn && !first) {
eclipsed = trgn->IsEclipsed();
}
// for sun and back lights:
ListIter<Light> iter = lights;
while (++iter) {
Light* light = iter.value();
if (!light->IsDirectional()) // only do sun and
continue; // back lights
if (light->CastsShadow() && first) {
eclipsed = light->Location().y < -100 || // has sun set, or
scene->IsLightObscured(vset->loc[0], // is sun in eclipse
light->Location(), // by orbital body
radius); // such as a moon?
}
if (!light->CastsShadow() || !eclipsed) {
Vec3 vl = light->Location();
vl.Normalize();
for (int i = 0; i < nverts; i++) {
Vec3& nrm = vset->nrm[i];
double val = 0;
double gain = vl * nrm;
if (gain > 0) {
val = light->Intensity() * (0.85 * gain);
if (val > 1)
val = 1;
}
if (val > 0.01)
vset->diffuse[i] = ((light->GetColor().dim(val)) + vset->diffuse[i]).Value();
}
}
}
// combine blend weights:
if (ndetail >= 2) {
for (int i = 0; i < nverts; i++) {
vset->diffuse[i] = vset->specular[i] | (vset->diffuse[i] & 0x00ffffff);
}
}
if (trgn && first) {
trgn->SetEclipsed(eclipsed);
}
InvalidateSurfaceData();
illuminating = false;
}
// +--------------------------------------------------------------------+
void
TerrainPatch::Render(Video* video, DWORD flags)
{
if (max_height < 0)
return;
if (flags & RENDER_ADDITIVE)
return;
if (!model)
model = detail_levels[0];
if (scene) {
/***
*** TWO PASS LIGHTING FOR TERRAIN SHADOWS DOESN'T
*** WORK - IT MESSES UP THE HARDWARE FOG CALCS
***
*** PLUS, IT'S INCREDIBLY SLOW!!!
***/
if ((flags & RENDER_ADD_LIGHT) != 0)
return;
if (water) {
UpdateSurfaceWaves(Vec3(0,0,0));
Illuminate(scene->Ambient(), scene->Lights());
}
else {
Illuminate(scene->Ambient(), scene->Lights());
}
}
else {
if ((flags & RENDER_ADD_LIGHT) != 0)
return;
}
Bitmap* details[16];
ZeroMemory(details, sizeof(details));
if (ndetail < 3) {
for (int i = 0; i < 16 && i < materials.size(); i++) {
Material* mtl = materials[i];
if (mtl->tex_detail) {
details[i] = mtl->tex_detail;
mtl->tex_detail = 0;
}
}
}
double visibility = terrain->GetRegion()->GetWeather().Visibility();
FLOAT fog_density = (FLOAT) (terrain->GetRegion()->FogDensity() * 2.5e-5 * 1/visibility);
video->SetRenderState(Video::LIGHTING_ENABLE, false);
video->SetRenderState(Video::SPECULAR_ENABLE, false); //water != 0);
video->SetRenderState(Video::FOG_ENABLE, true);
video->SetRenderState(Video::FOG_COLOR, terrain->GetRegion()->FogColor().Value());
video->SetRenderState(Video::FOG_DENSITY, *((DWORD*) &fog_density));
// Too bad this doesn't work right. But it makes the
// ground mostly disappear. :-(
//
//video->SetRenderState(Video::Z_BIAS, -2);
Solid::Render(video, flags);
video->SetRenderState(Video::LIGHTING_ENABLE, true);
video->SetRenderState(Video::SPECULAR_ENABLE, true);
video->SetRenderState(Video::FOG_ENABLE, false);
//video->SetRenderState(Video::Z_BIAS, 0);
if (ndetail < 3) {
for (int i = 0; i < 16 && i < materials.size(); i++) {
Material* mtl = materials[i];
if (details[i] && !mtl->tex_detail) {
mtl->tex_detail = details[i];
}
}
}
}
// +--------------------------------------------------------------------+
int
TerrainPatch::CheckRayIntersection(Point obj_pos, Point dir, double len, Point& ipt, bool ttpas)
{
Point light_pos = obj_pos + dir * len;
int impact = light_pos.y < -100;
// Special case for illumination -
// just check if sun is above or below the horizon:
if (illuminating || impact) {
return impact;
}
if (obj_pos.x != 0 || obj_pos.y != 0 || obj_pos.z != 0) {
return impact;
}
// the rest of this code is only used for eclipsing
// the solar lens flare:
// check right angle spherical distance:
Point d0 = loc;
Point d1 = d0.cross(dir);
double dlen = d1.length(); // distance of point from line
if (dlen > radius) // clean miss
return 0; // (no impact)
// make sure some part of this patch falls between
// the camera and the sun:
Point closest = loc + dir * radius;
if (closest * dir < 0)
return 0;
// probable hit at this point...
// test for polygon intersection:
if (!model)
return 0;
Surface* s = model->GetSurfaces().first();
if (!s)
return 0;
// transform ray into object space:
Matrix xform(Orientation());
Vec3 tmp = dir;
dir.x = tmp * Vec3(xform(0,0), xform(0,1), xform(0,2));
dir.y = tmp * Vec3(xform(1,0), xform(1,1), xform(1,2));
dir.z = tmp * Vec3(xform(2,0), xform(2,1), xform(2,2));
tmp = obj_pos-loc;
obj_pos.x = tmp * Vec3(xform(0,0), xform(0,1), xform(0,2));
obj_pos.y = tmp * Vec3(xform(1,0), xform(1,1), xform(1,2));
obj_pos.z = tmp * Vec3(xform(2,0), xform(2,1), xform(2,2));
double min = 2 * len;
// check each polygon:
Poly* p = s->GetPolys();
for (int i = 0; i < s->NumPolys(); i++) {
Point v = p->plane.normal;
double d = p->plane.distance;
double denom = dir*v;
if (denom < -1.0e-5) {
Point P = v * d;
double ilen = ((P-obj_pos)*v)/denom;
if (ilen > 0 && ilen < min) {
Point intersect = obj_pos + dir * ilen;
if (p->Contains(intersect)) {
ipt = intersect;
min = ilen;
impact = 1;
}
}
}
p++;
}
// xform impact point back into world coordinates:
if (impact) {
ipt = (ipt * Orientation()) + loc;
}
return impact;
}
// +--------------------------------------------------------------------+
double
TerrainPatch::Height(double x, double z) const
{
if (water) return base;
double height = 0;
x /= scale;
z /= scale;
int x0 = (int) x;
int z0 = (int) z;
if (x0 >= 0 && x0 < PATCH_SIZE && z0 >= 0 && z0 < PATCH_SIZE) {
double dx = x-x0;
double dz = z-z0;
double h[4];
h[0] = heights[(z0*PATCH_SIZE + x0)];
h[1] = heights[((z0+1)*PATCH_SIZE + x0)];
h[2] = heights[(z0*PATCH_SIZE + x0+1)];
h[3] = heights[((z0+1)*PATCH_SIZE + x0+1)];
// if level, just return height of one vertex:
if (h[0] == h[1] && h[1] == h[2] && h[2] == h[3]) {
height = h[0];
}
// if sloped, interpolate between vertex heights:
else {
double hl = h[0]*(1-dz) + h[1]*dz;
double hr = h[2]*(1-dz) + h[3]*dz;
height = hl*(1-dx) + hr*dx + 5; // fudge
}
}
if (height < 0)
height = 0;
return height;
}
| [
"[email protected]"
] | |
5dc77542afc1a5b433edadc132de3587aa91eaa8 | 0887dd39fb07bc4e3b0922559505f8015d55da51 | /Messenger/MessengerJsonRpc.cpp | 6c700b7606d5d3e0403d28b895a0fac6956e3a90 | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | NavinKarra/rdkservices | 81d7bc564157e5cc3bd9e4d4ce53cbe65a930785 | 7d33f679f9de1fd38be7bec599229ad8decec391 | refs/heads/main | 2023-06-21T19:57:55.996920 | 2021-06-22T00:09:07 | 2021-06-22T00:09:07 | 303,457,266 | 0 | 0 | Apache-2.0 | 2021-05-20T17:38:30 | 2020-10-12T16:57:19 | C++ | UTF-8 | C++ | false | false | 5,284 | cpp | /*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:
*
* Copyright 2020 RDK Management
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <interfaces/json/JsonData_Messenger.h>
#include "Messenger.h"
#include "Module.h"
namespace WPEFramework {
namespace Plugin {
using namespace JsonData::Messenger;
// Registration
//
void Messenger::RegisterAll()
{
RegisterEventStatusListener(_T("roomupdate"), [this](const string& client, Status status) {
// Notify of all rooms created to date.
for (const string& room : _rooms) {
event_roomupdate(room, JsonData::Messenger::RoomupdateParamsData::ActionType::CREATED);
}
});
RegisterEventStatusListener(_T("userupdate"), [this](const string& client, Status status) {
// Subscribe the lowe level room user to userupdate notification.
// This may immediately sent notifications of all users already present in the room.
const string roomId = client.substr(0, client.find('.'));
SubscribeUserUpdate(roomId, status == Status::registered);
});
Register<JoinParamsData,JoinResultInfo>(_T("join"), &Messenger::endpoint_join, this);
Register<JoinResultInfo,void>(_T("leave"), &Messenger::endpoint_leave, this);
Register<SendParamsData,void>(_T("send"), &Messenger::endpoint_send, this);
}
void Messenger::UnregisterAll()
{
Unregister(_T("send"));
Unregister(_T("leave"));
Unregister(_T("join"));
UnregisterEventStatusListener(_T("userupdate"));
UnregisterEventStatusListener(_T("roomupdate"));
}
// API implementation
//
// Joins a messaging room.
// Return codes:
// - ERROR_NONE: Success
// - ERROR_ILLEGAL_STATE: User name is already taken (i.e. the user has already joined the room)
// - ERROR_BAD_REQUEST: User name or room name was invalid
uint32_t Messenger::endpoint_join(const JoinParamsData& params, JoinResultInfo& response)
{
uint32_t result = Core::ERROR_BAD_REQUEST;
const string& user = params.User.Value();
const string& room = params.Room.Value();
if (!user.empty() && !room.empty()) {
string roomId = JoinRoom(room, user);
if (!roomId.empty()) {
response.Roomid = roomId;
result = Core::ERROR_NONE;
}
else {
result = Core::ERROR_ILLEGAL_STATE;
}
}
return result;
}
// Leaves a messaging room.
// Return codes:
// - ERROR_NONE: Success
// - ERROR_UNKNOWN_KEY: The given room ID was invalid
uint32_t Messenger::endpoint_leave(const JoinResultInfo& params)
{
const string& roomid = params.Roomid.Value();
bool result = LeaveRoom(roomid);
return result? Core::ERROR_NONE : Core::ERROR_UNKNOWN_KEY;
}
// Sends a message to a room.
// Return codes:
// - ERROR_NONE: Success
// - ERROR_UNKNOWN_KEY: The given room ID was invalid
uint32_t Messenger::endpoint_send(const SendParamsData& params)
{
const string& roomid = params.Roomid.Value();
const string& message = params.Message.Value();
bool result = SendMessage(roomid, message);
return result? Core::ERROR_NONE : Core::ERROR_UNKNOWN_KEY;
}
// Notifies about room status updates.
void Messenger::event_roomupdate(const string& room, const RoomupdateParamsData::ActionType& action)
{
RoomupdateParamsData params;
params.Room = room;
params.Action = action;
Notify(_T("roomupdate"), params);
}
// Notifies about user status updates.
void Messenger::event_userupdate(const string& id, const string& user, const UserupdateParamsData::ActionType& action)
{
UserupdateParamsData params;
params.User = user;
params.Action = action;
Notify(_T("userupdate"), params, [&](const string& designator) -> bool {
const string designator_id = designator.substr(0, designator.find('.'));
return (id == designator_id);
});
}
// Notifies about new messages in a room.
void Messenger::event_message(const string& id, const string& user, const string& message)
{
MessageParamsData params;
params.User = user;
params.Message = message;
Notify(_T("message"), params, [&](const string& designator) -> bool {
const string designator_id = designator.substr(0, designator.find('.'));
return (id == designator_id);
});
}
} // namespace Plugin
}
| [
"[email protected]"
] | |
110985b5b95a7cca073ac2a8197c3a0dd43f568f | 9301832d69a837823579fe015a0bd9b2fa60d248 | /sol/deck.h | 9e51335e7f539c0e6145879cc88c18a9798f8ee5 | [] | no_license | awilhelm/solitaire | 6f53a2d2f7bf0886c58ddea67e3820af9b0c5aff | 54aca71223934839d63628223e41735369344fe1 | refs/heads/master | 2020-05-18T22:36:39.861642 | 2011-10-28T12:33:42 | 2011-10-28T12:33:42 | 2,664,980 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 284 | h | #pragma once
#include <list>
#include <stack>
#include <vector>
#include "card.h"
namespace sol {
struct Deck {
Deck(void);
void deal(std::list<Card const*> &);
void deal(std::stack<Card const*> &);
private:
std::vector<Card> cards;
std::vector<Card>::iterator cursor;
};
}
| [
"[email protected]"
] | |
c1634c49f469db0761da31102bf3daf504e9f0c0 | 0b6fafa6cba0889bce4e0b8483565989a90ef675 | /Ball.h | 219c99abd1f112bd55067f221ce303568bd57087 | [] | no_license | hyungkee/physics_ball_maker | 79ed67f8d73b31b0354c79a9f0f80278414020ca | 9aeb1d2b743597c2f1bc14526db2cfecd4fc77da | refs/heads/master | 2021-01-11T20:50:44.706544 | 2017-01-31T10:24:41 | 2017-01-31T10:24:41 | 79,197,133 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 515 | h | #ifndef BALL_H
#define BALL_H
#include"Phybal.h"
#ifdef EXTL_GLOBAL //헤더에 전역변수를 선언하기 위한 트릭
#define EXTL
#else
#define EXTL extern
#endif
class CBall{
public:
double x;
double y;
double vx;
double vy;
double r_x;
double r_y;
double r_vx;
double r_vy;
CBall(double _x=0.0, double _y=0.0, double _vx=0.0, double _vy=0.0){
r_x = x = _x;
r_y = y = _y;
r_vx = vx = _vx;
r_vy = vy = _vy;
}
void reset();
};
extern CBall* Balls[1000];
extern int B_Count;
#endif | [
"[email protected]"
] | |
5fc22d508789c9adebae5e528ddac07b37f83902 | a6f445359ccf2c00655738ed010e8f9174fdd90c | /Source/VerletClothMesh/Public/VerletClothMeshComponent.h | 9a3cb8eee83250dce499f606d2a2eddcc19c3b36 | [] | no_license | Anamikeya/VerletClothMeshComponent | 20d53a5ec4f5990efbefdf002464b65449680b9b | 3db1d579761f2f34648cd17272c38d5b90ec5f24 | refs/heads/main | 2023-03-19T06:09:15.031041 | 2021-01-12T01:04:17 | 2021-01-12T01:04:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,447 | h | // VerletClothComponent.h - VerletClothMeshComponent Plugin - Niall Horn 2020.
#pragma once
#include "CoreMinimal.h"
#include "ProceduralMeshComponent.h"
#include "VerletClothMeshComponent.generated.h"
#define INLINE __forceinline
class HashGrid;
struct FVerletClothConstraint;
// --- VerletClothParticle - Basic Struct for storing Particle Representation of cloth. ---
struct FVerletClothParticle
{
FVerletClothParticle()
: Position(0, 0, 0)
, PrevPosition(0, 0, 0)
, Force(0, 0, 0)
, Col(255, 255, 255, 255)
, ID(-1)
, C_idx(-1)
, state(1)
, conCount(0)
{}
FVector Position;
FVector PrevPosition;
FVector Force;
FColor Col;
int32 ID;
uint32 C_idx;
int8 state, conCount;
};
UCLASS(hidecategories = (Object, Physics, Activation, Collision, Navigation, Transform, "Components|Activation"), editinlinenew, meta = (BlueprintSpawnableComponent), ClassGroup = Rendering)
class VERLETCLOTHMESH_API UVerletClothMeshComponent : public UProceduralMeshComponent
{
GENERATED_BODY()
public:
UVerletClothMeshComponent(const FObjectInitializer& ObjectInitializer);
// --- UActorComponent Overrides ---
void OnRegister() override;
void TickComponent (float DeltaTime, enum ELevelTick TickType, FActorComponentTickFunction *ThisTickFunction) override;
// Properties
// --- Verlet Cloth - Properties - Cloth Setup ---
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = "Static Mesh")
UStaticMeshComponent *sm;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
bool bShowStaticMesh;
// --- VerletCloth - Properties - Cloth Simulation ---
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
bool bSimulate;
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Cloth Simulation", meta = (ClampMin = "0.005", UIMin = "0.005", UIMax = "0.1"))
float SubstepTime;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation", meta = (ClampMin = "1", ClampMax = "16"))
int32 ConstraintIterations;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
bool bWorldCollision;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
bool bSelfCollision;
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Cloth Simulation", meta = (ClampMin = "0.01", ClampMax = "1000.0"))
float ParticleMass;
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Cloth Simulation", meta = (ClampMin = "0.01", ClampMax = "1000.0"))
float ParticleRadius;
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Cloth Simulation", meta = (ClampMin = "0.05", ClampMax = "0.99"))
float StiffnessCoefficent;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation", meta = (ClampMin = "0.0", ClampMax = "1.0", EditCondition = "bWorldCollision"))
float CollisionFriction;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
FVector ClothForce;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
bool bUse_VolumePressureForce;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation", meta = (ClampMin = "2", ClampMax = "1000", EditCondition = "bUse_VolumePressureForce"))
int32 VolSample_Count;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation", meta = (EditCondition = "bUse_VolumePressureForce"))
float VolPressure_Coefficient;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
float ClothGravityScale;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
bool bUse_Sleeping;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation", meta = (EditCondition = "bUse_Sleeping"))
float Sleep_DeltaThreshold;
// --- VerletCloth - Properties - Self Collision ---
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation", meta = (ClampMin = "1", ClampMax = "8"))
int32 SelfColIterations;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation", meta = (ClampMin = "0", ClampMax = "100"))
int32 Cells_PerDim;
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Cloth Simulation", meta = (UIMin = "1.0", UIMax = "10000.0"))
float Grid_Size;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation")
bool bShow_Grid;
// --- VerletCloth - Properties - Cloth Simulation Debug ---
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation Debug", meta = (EditCondition = "bUse_Sleeping"))
bool bShow_Sleeping;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cloth Simulation Debug")
bool bShow_Constraints;
// --- Component UFunctions - Cloth Setup ---
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Cloth Simulation")
void BuildClothState();
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Cloth Simulation")
void ResetToInitalState();
// --- Component UFunctions - Debug Editor Draw ---
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Cloth Simulation Debug")
void DBG_ShowParticles() const;
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Cloth Simulation Debug")
void DBG_ShowTangents();
//UFUNCTION(BlueprintCallable, CallInEditor, Category = "Cloth Simulation Debug")
//void DBG_ShowAdjacency() const;
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Cloth Simulation Debug", meta = (EditCondition = "bSelfCollision"))
void DBG_ShowHash();
private:
// --- Cloth Solver Methods ---
void BuildTriArrays();
void BuildClothConstraints();
void EvalClothConstraints();
void TickUpdateCloth();
void UpdateTangents(TArray<FProcMeshTangent> &out_Tangents, TArray<FVector> &out_Normals);
void ClothCollisionWorld();
void ClothCollisionSelf(HashGrid *hg);
void Integrate(float InSubstepTime);
static void SolveDistanceConstraint(FVerletClothParticle &ParticleA, FVerletClothParticle &ParticleB, float RestDistance, float StiffnessCoeff);
void SubstepSolve();
//float ClothWorldCollision_AvgPosDelta();
//bool GetSleepState();
void ShowVelCol();
// Volume Methods
void GetVolSamplePts(int32 n);
float CalcClothVolume(); // Using Sample Pts.
void VolumePressureForce(int32 mode = 0);
void VolumePreservation(); // Per Substep.
INLINE float SquareDist(const FVector &A, const FVector &B);
// --- Cloth Data ---
TArray<FVerletClothParticle> Particles;
TArray<FVerletClothConstraint> Constraints;
TArray<FVector> Normals;
TArray<FVerletClothParticle*> VolSamplePts;
float restVolume, curVolume, deltaVolume;
int32 particleCount;
// --- State Flags ---
bool clothStateExists, world_collided;
// --- Simulation Settings ---
float Dt, At, St; // Delta, Accumulated, Substep Time
float pr2sqr; // 2ParticleRadius^2
// --- Static Mesh Data ---
struct
{
// SM Deserialized
TArray<FVector> Pos;
TArray<FColor> Col;
TArray<FVector> Normal;
TArray<FProcMeshTangent> Tang;
TArray<FVector2D> UV;
TArray<int32> Ind;
TArray<FIntVector> Tris;
// Vert Shared Tris
TArray<int32> *vtris;
// SM Buffer Ptrs
FPositionVertexBuffer *vb;
FStaticMeshVertexBuffer *smvb;
FColorVertexBuffer *cvb;
FRawStaticIndexBuffer *ib;
int32 vert_count, ind_count, adj_count, tri_count;
bool has_uv, has_col;
} smData;
friend struct FVerletClothConstraint;
friend class HashGrid;
};
// --- Inline Memember Function Implementations ---
// Square Distance Between 2 Position Vectors.
float UVerletClothMeshComponent::SquareDist(const FVector &A, const FVector &B)
{
return FMath::Square((B.X - A.X)) + FMath::Square((B.Y - A.Y)) + FMath::Square((B.Z - A.Z));
}
// --- VerletClothConstraint Struct ---
// Basic Structure for storing Cloth Constraints to evaluate.
struct FVerletClothConstraint
{
FVerletClothConstraint(FVerletClothParticle &Pt_0, FVerletClothParticle &Pt_1, UVerletClothMeshComponent *cloth)
: Pt0(Pt_0), Pt1(Pt_1), Cloth(cloth)
{
// Get Particles Corresponding Vertices Orginal Postions and Rest Length.
orgP0 = Cloth->smData.Pos[Pt_0.ID]; orgP1 = Cloth->smData.Pos[Pt_1.ID];
restLength = (orgP1 - orgP0).Size();
// ID to Identify Particle/Vertex ID Pair of Constraint.
conID = Pt_0.ID * Pt_1.ID;
}
FVerletClothConstraint() = delete;
FVerletClothParticle &Pt0, &Pt1;
FVector orgP0, orgP1;
float restLength;
int32 conID;
UVerletClothMeshComponent *Cloth;
};
| [
"[email protected]"
] | |
2198a0e562a42cf5001a76b19d24acecc9e8dcc1 | c561eae8ef15487bd505239a0de70337cc7ae306 | /src/ripple_rpc/impl/ErrorCodes.cpp | 01c9d35e420bdae03959fa028d6a80e036023a5f | [
"MIT",
"MIT-Wu",
"ISC",
"BSL-1.0"
] | permissive | payshares-legacy/paysharesd | 767744ceb12086637fbffbc55b27b18fedc88476 | 242e9933a428394ae53d3ab3715704c8cb4d0ff0 | refs/heads/master | 2023-02-05T15:32:12.472633 | 2020-12-20T23:58:10 | 2020-12-20T23:58:10 | 33,396,311 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,265 | cpp | //------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2012, 2013 Ripple Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#include <unordered_map>
#include <utility>
#include "../api/ErrorCodes.h"
namespace std {
template <>
struct hash <ripple::error_code_i>
{
std::size_t operator() (ripple::error_code_i value) const
{
return value;
}
};
}
namespace ripple {
namespace RPC {
namespace detail {
class ErrorCategory
{
public:
typedef ripple::unordered_map <error_code_i, ErrorInfo> Map;
ErrorCategory ()
: m_unknown (rpcUNKNOWN, "unknown", "An unknown error code.")
{
add (rpcACT_BITCOIN, "actBitcoin", "Account is bitcoin address.");
add (rpcACT_EXISTS, "actExists", "Account already exists.");
add (rpcACT_MALFORMED, "actMalformed", "Account malformed.");
add (rpcACT_NOT_FOUND, "actNotFound", "Account not found.");
add (rpcBAD_BLOB, "badBlob", "Blob must be a non-empty hex string.");
add (rpcBAD_FEATURE, "badFeature", "Feature unknown or invalid.");
add (rpcBAD_ISSUER, "badIssuer", "Issuer account malformed.");
add (rpcBAD_MARKET, "badMarket", "No such market.");
add (rpcBAD_SECRET, "badSecret", "Secret does not match account.");
add (rpcBAD_SEED, "badSeed", "Disallowed seed.");
add (rpcBAD_SYNTAX, "badSyntax", "Syntax error.");
add (rpcCOMMAND_MISSING, "commandMissing", "Missing command entry.");
add (rpcDST_ACT_MALFORMED, "dstActMalformed", "Destination account is malformed.");
add (rpcDST_ACT_MISSING, "dstActMissing", "Destination account does not exist.");
add (rpcDST_AMT_MALFORMED, "dstAmtMalformed", "Destination amount/currency/issuer is malformed.");
add (rpcDST_ISR_MALFORMED, "dstIsrMalformed", "Destination issuer is malformed.");
add (rpcFAIL_GEN_DECRYPT, "failGenDecrypt", "Failed to decrypt generator.");
add (rpcFORBIDDEN, "forbidden", "Bad credentials.");
add (rpcGETS_ACT_MALFORMED, "getsActMalformed", "Gets account malformed.");
add (rpcGETS_AMT_MALFORMED, "getsAmtMalformed", "Gets amount malformed.");
add (rpcHIGH_FEE, "highFee", "Current transaction fee exceeds your limit.");
add (rpcHOST_IP_MALFORMED, "hostIpMalformed", "Host IP is malformed.");
add (rpcINSUF_FUNDS, "insufFunds", "Insufficient funds.");
add (rpcINTERNAL, "internal", "Internal error.");
add (rpcINVALID_PARAMS, "invalidParams", "Invalid parameters.");
add (rpcJSON_RPC, "json_rpc", "JSON-RPC transport error.");
add (rpcLGR_IDXS_INVALID, "lgrIdxsInvalid", "Ledger indexes invalid.");
add (rpcLGR_IDX_MALFORMED, "lgrIdxMalformed", "Ledger index malformed.");
add (rpcLGR_NOT_FOUND, "lgrNotFound", "Ledger not found.");
add (rpcMASTER_DISABLED, "masterDisabled", "Master key is disabled.");
add (rpcNICKNAME_MALFORMED, "nicknameMalformed", "Nickname is malformed.");
add (rpcNICKNAME_MISSING, "nicknameMissing", "Nickname does not exist.");
add (rpcNICKNAME_PERM, "nicknamePerm", "Account does not control nickname.");
add (rpcNOT_IMPL, "notImpl", "Not implemented.");
add (rpcNO_ACCOUNT, "noAccount", "No such account.");
add (rpcNO_CLOSED, "noClosed", "Closed ledger is unavailable.");
add (rpcNO_CURRENT, "noCurrent", "Current ledger is unavailable.");
add (rpcNO_EVENTS, "noEvents", "Current transport does not support events.");
add (rpcNO_GEN_DECRYPT, "noGenDecrypt", "Password failed to decrypt master public generator.");
add (rpcNO_NETWORK, "noNetwork", "Not synced to Payshares network.");
add (rpcNO_PATH, "noPath", "Unable to find a ripple path.");
add (rpcNO_PERMISSION, "noPermission", "You don't have permission for this command.");
add (rpcNO_PF_REQUEST, "noPathRequest", "No pathfinding request in progress.");
add (rpcNOT_STANDALONE, "notStandAlone", "Operation valid in debug mode only.");
add (rpcNOT_SUPPORTED, "notSupported", "Operation not supported.");
add (rpcPASSWD_CHANGED, "passwdChanged", "Wrong key, password changed.");
add (rpcPAYS_ACT_MALFORMED, "paysActMalformed", "Pays account malformed.");
add (rpcPAYS_AMT_MALFORMED, "paysAmtMalformed", "Pays amount malformed.");
add (rpcPORT_MALFORMED, "portMalformed", "Port is malformed.");
add (rpcPUBLIC_MALFORMED, "publicMalformed", "Public key is malformed.");
add (rpcQUALITY_MALFORMED, "qualityMalformed", "Quality malformed.");
add (rpcSRC_ACT_MALFORMED, "srcActMalformed", "Source account is malformed.");
add (rpcSRC_ACT_MISSING, "srcActMissing", "Source account not provided.");
add (rpcSRC_ACT_NOT_FOUND, "srcActNotFound", "Source account not found.");
add (rpcSRC_AMT_MALFORMED, "srcAmtMalformed", "Source amount/currency/issuer is malformed.");
add (rpcSRC_CUR_MALFORMED, "srcCurMalformed", "Source currency is malformed.");
add (rpcSRC_ISR_MALFORMED, "srcIsrMalformed", "Source issuer is malformed.");
add (rpcSRC_UNCLAIMED, "srcUnclaimed", "Source account is not claimed.");
add (rpcTXN_NOT_FOUND, "txnNotFound", "Transaction not found.");
add (rpcUNKNOWN_COMMAND, "unknownCmd", "Unknown method.");
add (rpcWRONG_SEED, "wrongSeed", "The regular key does not point as the master key.");
add (rpcTOO_BUSY, "tooBusy", "The server is too busy to help you now.");
add (rpcSLOW_DOWN, "slowDown", "You are placing too much load on the server.");
add (rpcATX_DEPRECATED, "deprecated", "Use the new API or specify a ledger range.");
}
ErrorInfo const& get (error_code_i code) const
{
Map::const_iterator const iter (m_map.find (code));
if (iter != m_map.end())
return iter->second;
return m_unknown;
}
private:
void add (error_code_i code, std::string const& token,
std::string const& message)
{
std::pair <Map::iterator, bool> result (
m_map.emplace (std::piecewise_construct,
std::forward_as_tuple (code), std::forward_as_tuple (
code, token, message)));
if (! result.second)
throw std::invalid_argument ("duplicate error code");
}
private:
Map m_map;
ErrorInfo m_unknown;
};
}
//------------------------------------------------------------------------------
ErrorInfo const& get_error_info (error_code_i code)
{
static detail::ErrorCategory category;
return category.get (code);
}
void inject_error (error_code_i code, Json::Value& json)
{
ErrorInfo const& info (get_error_info (code));
json ["error"] = info.token;
json ["error_code"] = info.code;
json ["error_message"] = info.message;
}
void inject_error (error_code_i code, std::string const& message, Json::Value& json)
{
ErrorInfo const& info (get_error_info (code));
json ["error"] = info.token;
json ["error_code"] = info.code;
json ["error_message"] = message;
}
Json::Value make_error (error_code_i code)
{
Json::Value json;
inject_error (code, json);
return json;
}
Json::Value make_error (error_code_i code, std::string const& message)
{
Json::Value json;
inject_error (code, message, json);
return json;
}
bool contains_error (Json::Value const& json)
{
if (json.isObject() && json.isMember ("error"))
return true;
return false;
}
}
}
| [
"[email protected]"
] | |
87b911950f272eb9522eb2af5b9f92c9d07c456f | b35b0e874c2d04e68fab4c6fd75023fb407c2965 | /pegasus/InterfaceArchive/v002003/include/Pegasus/Common/ResponseHandler.h | a61dba24ae48b4d3bd7be7638e24750d7aa8ec40 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | xenserver/openpegasus | 38de7f2062adf1f039ef9ead222c40d75d8acaaa | 57e10a2ca29c17e5dca26a1c6c40a1a5fc4ba20d | refs/heads/master | 2020-05-17T16:22:40.019817 | 2013-11-19T00:42:25 | 2014-04-07T16:25:45 | 10,623,043 | 3 | 2 | null | 2013-12-04T14:44:02 | 2013-06-11T14:19:20 | C++ | UTF-8 | C++ | false | false | 12,154 | h | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor licenses this file to you under the OpenPegasus Open
// Source License; you may not use this file except in compliance with the
// License.
//
// 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.
//
//////////////////////////////////////////////////////////////////////////
/* NOCHKSRC */
//
// Author: Chip Vincent ([email protected])
//
// Modified By: Roger Kumpf, Hewlett-Packard Company ([email protected])
//
//%/////////////////////////////////////////////////////////////////////////////
#ifndef Pegasus_ResponseHandler_h
#define Pegasus_ResponseHandler_h
#include <Pegasus/Common/Config.h>
#include <Pegasus/Common/Array.h>
#include <Pegasus/Common/Linkage.h>
#include <Pegasus/Common/CIMInstance.h>
#include <Pegasus/Common/CIMObjectPath.h>
#include <Pegasus/Common/CIMParamValue.h>
#include <Pegasus/Common/CIMValue.h>
#include <Pegasus/Common/CIMIndication.h>
#include <Pegasus/Common/CIMObject.h>
#include <Pegasus/Common/CIMClass.h>
#include <Pegasus/Common/OperationContext.h>
PEGASUS_NAMESPACE_BEGIN
class ResponseHandlerRep;
/**
<p>The <tt>ResponseHandler</tt> class allows a provider
to report operation progress and results to the CIM Server.
Subclasses are defined for each of the types of object
that a provider can deliver to the CIM Server.
A <tt>ResponseHandler</tt> object of the appropriate type
is passed to provider
functions that are invoked to process client requests (it
is not passed to the <tt>{@link initialize initialize}</tt>
or <tt>{@link terminate terminate}</tt> functions). It
contains the following public member functions that
may be used to deliver results to the CIM Server:</p>
<ul>
<li><tt>{@link processing processing}</tt> - inform the CIM Server
that delivery of results is beginning.</li>
<li><tt>{@link deliver deliver}</tt> - deliver an incremental
result to the CIM Server; the CIM Server accumulates results as
they are received from the provider.</li>
<li><tt>{@link complete complete}</tt> - inform the CIM Server that
process of the request is complete and that no further
results will be delivered.</li>
</ul>
*/
class PEGASUS_COMMON_LINKAGE ResponseHandler
{
public:
/**
ResponseHandler destructor.
*/
virtual ~ResponseHandler(void);
// This method is defined in subclasses, specialized for
// the appropriate data type.
//virtual void deliver(const T & object);
// This method is defined in subclasses, specialized for
// the appropriate data type.
//virtual void deliver(const Array<T> & objects);
/**
Inform the CIM server that delivery of results will begin.
<p>The provider must call <tt>processing</tt> before
attempting to call <tt>deliver</tt>.
*/
virtual void processing(void) = 0;
/**
Inform the CIM server that delivery of results is complete.
<p>The provider must call <tt>complete</tt> when all
results have been delivered. The provider must not call <tt>deliver</tt>
after calling <tt>complete</tt>.</p>
*/
virtual void complete(void) = 0;
#ifdef PEGASUS_USE_EXPERIMENTAL_INTERFACES
/**
Set the context for the results delivered to the CIM Server.
<p>The <tt>setContext</tt> function is used by providers to
set a context for the response, in the form of an OperationContext
object. The context of the response contains the settings that
apply to all the results delivered to the CIM Server. An example
context is the language of the response, in the form of a
ContentLanguageListContainer in the OperationContext.</p>
<p>This method may be called at any point in the response
processing before <tt>complete</tt> is called.</p>
<p>Currently supported OperationContext containers:
<li>
ContentLanguageListContainer: used to set the ContentLanguages of the
results.
</li>
</p>
<p>Implementation Note: This method is concrete to preserve
binary compatibility with previous releases of the CIMServer</p>
*/
#ifdef PEGASUS_OS_OS400
virtual
#endif
void setContext(const OperationContext & context);
#endif // PEGASUS_USE_EXPERIMENTAL_INTERFACES
protected:
ResponseHandler();
ResponseHandler(const ResponseHandler& handler);
ResponseHandler& operator=(const ResponseHandler& handler);
/**
Gets the context for the results delivered to the CIM server.
*/
OperationContext getContext(void) const;
};
/**
The InstanceResponseHandler class is a subclass to the ResponseHandler class.
The InstanceResponseHandler class contains functions that are specific to an
instance of the ResponseHandler class.
*/
class PEGASUS_COMMON_LINKAGE InstanceResponseHandler : virtual public ResponseHandler
{
public:
/** <p>The <tt>deliver</tt> function is used by providers to
deliver results to the CIM Server. For operations that require a
single element result (<tt>getInstance</tt>, for example),
<tt>deliver</tt> should be called only once to deliver the
entire result. For operations that involve
enumeration, the single-element form shown here may be
used, each iteration delivering an incremental element
of the total result. The Array form below may be used
to deliver a larger set of result elements.</p>
*/
virtual void deliver(const CIMInstance & instance) = 0;
/** <p>This form of the <tt>deliver</tt> function may be used
to return a set of elements to the CIM Server. The set is not
required to be complete, and the provider may invoke this
function multiple times, if necessary. This form should only
be used when the operation requires a result consisting
of more than one element, such as an enumeration.</p>
*/
virtual void deliver(const Array<CIMInstance> & instances) = 0;
};
//
// ObjectPathResponseHandler
///
class PEGASUS_COMMON_LINKAGE ObjectPathResponseHandler : virtual public ResponseHandler
{
public:
/** <p>The <tt>deliver</tt> function is used by providers to
deliver results to the CIM Server. For operations that require a
single element result (<tt>getInstance</tt>, for example),
<tt>deliver</tt> should be called only once to deliver the
entire result. For operations that involve
enumeration, the single-element form shown here may be
used, each iteration delivering an incremental element
of the total result. The Array form below may be used
to deliver a larger set of result elements.</p>
*/
virtual void deliver(const CIMObjectPath & objectPath) = 0;
/** <p>This form of the <tt>deliver</tt> function may be used
to return a set of elements to the CIM Server. The set is not
required to be complete, and the provider may invoke this
function multiple times, if necessary. This form should only
be used when the operation requires a result consisting
of more than one element, such as an enumeration.</p>
*/
virtual void deliver(const Array<CIMObjectPath> & objectPaths) = 0;
};
/**
The MethodResultResponseHandler class is a subclass to the ResponseHandler class.
*/
class PEGASUS_COMMON_LINKAGE MethodResultResponseHandler : virtual public ResponseHandler
{
public:
/**
Add documentation here.
*/
virtual void deliverParamValue(const CIMParamValue & outParamValue) = 0;
/**
Add documentation here.
*/
virtual void deliverParamValue(const Array<CIMParamValue> & outParamValues) = 0;
/**
Add documentation here.
*/
virtual void deliver(const CIMValue & returnValue) = 0;
};
/**
The IndicationResponseHandler class is a subclass to the ResponseHandler class.
<p> NOTE: This class definition should not be considered complete until indication
support has been completed in Pegasus. Implementation of indication support may
reveal a need for API changes in this class.</p>
*/
class PEGASUS_COMMON_LINKAGE IndicationResponseHandler : virtual public ResponseHandler
{
public:
/**
Add documentation here.
*/
virtual void deliver(const CIMIndication & indication) = 0;
/**
Add documentation here.
*/
virtual void deliver(const Array<CIMIndication> & indications) = 0;
/**
Add documentation here.
*/
virtual void deliver(
const OperationContext & context,
const CIMIndication & indication) = 0;
/**
Add documentation here.
*/
virtual void deliver(
const OperationContext & context,
const Array<CIMIndication> & indications) = 0;
};
//
// ObjectResponseHandler
//
// NOTE: This class definition should not be considered complete until
// association provider and/or query provider support has been completed
// in Pegasus, as those are the only APIs that use this response handler
// type. Implementation of support for those provider types may reveal
// a need for API changes in this class.
///
class PEGASUS_COMMON_LINKAGE ObjectResponseHandler : virtual public ResponseHandler
{
public:
/** <p>The <tt>deliver</tt> function is used by providers to
deliver results to the CIM Server. For operations that require a
single element result (<tt>getInstance</tt>, for example),
<tt>deliver</tt> should be called only once to deliver the
entire result. For operations that involve
enumeration, the single-element form shown here may be
used, each iteration delivering an incremental element
of the total result. The Array form below may be used
to deliver a larger set of result elements.</p>
*/
virtual void deliver(const CIMObject & object) = 0;
/** <p>This form of the <tt>deliver</tt> function may be used
to return a set of elements to the CIM Server. The set is not
required to be complete, and the provider may invoke this
function multiple times, if necessary. This form should only
be used when the operation requires a result consisting
of more than one element, such as an enumeration.</p>
*/
virtual void deliver(const Array<CIMObject> & objects) = 0;
};
#ifdef PEGASUS_INTERNALONLY
// This type is used in CIMPropertyProvider which Pegasus does not support
//
// ValueResponseHandler
//
class PEGASUS_COMMON_LINKAGE ValueResponseHandler : virtual public ResponseHandler
{
public:
virtual void deliver(const CIMValue & value) = 0;
virtual void deliver(const Array<CIMValue> & values) = 0;
};
#endif
#ifdef PEGASUS_INTERNALONLY
// This type is used in CIMClassProvider which Pegasus does not support
//
// ClassResponseHandler
//
class PEGASUS_COMMON_LINKAGE ClassResponseHandler : virtual public ResponseHandler
{
public:
virtual void deliver(const CIMClass & classObj) = 0;
virtual void deliver(const Array<CIMClass> & classObjs) = 0;
};
#endif
PEGASUS_NAMESPACE_END
#endif
| [
"[email protected]"
] | |
8063c9b9ed6779cc5947164e3c67a7b725cd78a8 | 0141256fa0c4a63a2d789d308251b1769e0632e6 | /uwptest2/Library/Il2cppBuildCache/UWP/x64/il2cppOutput/Generics16.cpp | 89781c66a0b24ccd17bf3a5ffbb9b2215e59a18c | [] | no_license | rlghksdldy0/AR_project | 480d9496db83fb7085012cd1b500f7b03a2949b6 | 193c70cb5bbe5523f6c112ae7394eb3baa997652 | refs/heads/main | 2023-07-16T02:54:01.982754 | 2021-08-26T07:16:48 | 2021-08-26T07:16:48 | 399,762,202 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,189,876 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct GenericVirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct GenericInterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericInterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Func`5<System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>,System.Linq.Expressions.LambdaExpression>>
struct CacheDict_2_t9FD97836EA998D29FFE492313652BD241E48F2C6;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Reflection.MethodInfo>
struct CacheDict_2_t23833FEB97C42D87EBF4B5FE3B56AA1336D7B3CE;
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0;
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7;
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7;
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F;
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF;
// System.Collections.Generic.Comparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B;
// System.Collections.Generic.Comparer`1<System.Byte>
struct Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D;
// System.Collections.Generic.Comparer`1<Vuforia.CameraMode>
struct Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291;
// System.Collections.Generic.Comparer`1<System.Char>
struct Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4;
// System.Collections.Generic.Comparer`1<UnityEngine.Color32>
struct Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5;
// System.Collections.Generic.Comparer`1<System.Collections.DictionaryEntry>
struct Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9;
// System.Collections.Generic.Comparer`1<System.Double>
struct Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C;
// System.Collections.Generic.Comparer`1<System.Guid>
struct Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E;
// System.Collections.Generic.Comparer`1<System.Int32>
struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7;
// System.Collections.Generic.Comparer`1<System.Int32Enum>
struct Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4;
// System.Collections.Generic.Comparer`1<System.IntPtr>
struct Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A;
// System.Collections.Generic.Comparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1;
// System.Collections.Generic.Comparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA;
// System.Collections.Generic.Comparer`1<System.Object>
struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84;
// System.Collections.Generic.Comparer`1<UnityEngine.Pose>
struct Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27;
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>
struct Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE;
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>
struct Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF;
// System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>
struct Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833;
// System.Collections.Generic.Comparer`1<System.Single>
struct Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD;
// System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>
struct Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A;
// System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>
struct Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD;
// System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>
struct Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1;
// System.Collections.Generic.Comparer`1<System.UInt64>
struct Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F;
// System.Collections.Generic.Comparer`1<UnityEngine.Vector3>
struct Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227;
// System.Collections.Generic.Comparer`1<UnityEngine.Vector4>
struct Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD;
// System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123;
// System.Collections.Generic.Comparer`1<UnityEngine.Camera/RenderRequest>
struct Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207;
// System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/CameraField>
struct Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC;
// System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/VideoModeData>
struct Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9;
// System.Collections.Generic.Comparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950;
// System.Collections.Generic.Comparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E;
// System.Collections.Generic.Comparer`1<Vuforia.TrackerData/TrackableResultData>
struct Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3;
// System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F;
// System.Collections.Generic.Comparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Linq.Expressions.Expression,System.Linq.Expressions.Expression/ExtensionInfo>
struct ConditionalWeakTable_2_t53315BD762B310982B9C8EEAA1BEB06E4E8D0815;
// System.Linq.EnumerableSorter`1<Vuforia.CameraMode>
struct EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9;
// System.Linq.EnumerableSorter`1<System.Int32>
struct EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C;
// System.Linq.EnumerableSorter`1<System.Object>
struct EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A;
// System.Linq.EnumerableSorter`1<UnityEngine.RaycastHit>
struct EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7;
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA;
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98;
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393;
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7;
// System.Collections.Generic.EqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950;
// System.Collections.Generic.EqualityComparer`1<System.Boolean>
struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7;
// System.Collections.Generic.EqualityComparer`1<System.Byte>
struct EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509;
// System.Collections.Generic.EqualityComparer`1<Vuforia.CameraMode>
struct EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C;
// System.Collections.Generic.EqualityComparer`1<System.Char>
struct EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>
struct EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>
struct EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40;
// System.Collections.Generic.EqualityComparer`1<System.Collections.DictionaryEntry>
struct EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056;
// System.Collections.Generic.EqualityComparer`1<System.Double>
struct EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825;
// System.Collections.Generic.EqualityComparer`1<System.Guid>
struct EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7;
// System.Collections.Generic.EqualityComparer`1<System.Int32>
struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62;
// System.Collections.Generic.EqualityComparer`1<System.Int32Enum>
struct EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F;
// System.Collections.Generic.EqualityComparer`1<System.IntPtr>
struct EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB;
// System.Collections.Generic.EqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11;
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>
struct EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>
struct EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC;
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Pose>
struct EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.RaycastHit2D>
struct EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>
struct EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E;
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>
struct EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1;
// System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>
struct EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E;
// System.Collections.Generic.EqualityComparer`1<System.Single>
struct EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>
struct EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>
struct EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>
struct EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>
struct EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676;
// System.Collections.Generic.EqualityComparer`1<System.UInt16>
struct EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5;
// System.Collections.Generic.EqualityComparer`1<System.UInt64>
struct EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>
struct EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>
struct EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Camera/RenderRequest>
struct EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2;
// System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>
struct EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD;
// System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/VideoModeData>
struct EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35;
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>
struct EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A;
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>
struct EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108;
// System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A;
// System.Collections.Generic.EqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E;
// System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>
struct EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E;
// System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>
struct EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8;
// System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>
struct EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D;
// System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485;
// System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>
struct EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>
struct EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5;
// System.Func`2<Vuforia.CameraMode,System.Int32>
struct Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C;
// System.Func`2<System.Int32,System.Int32>
struct Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C;
// System.Func`2<System.Object,System.Object>
struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436;
// System.Func`2<UnityEngine.RaycastHit,System.Single>
struct Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int32>
struct Getter_t50056CC31DCB80C7B63CBB12617592AB54375939;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>
struct Getter_t0224B0C93B9AEBE23A8BC6BF3DDA3E333A94A4D0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.String>
struct Getter_tEC9FCD923E15C8E28D9687F55B907381EE8E23AF;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Boolean,System.Int32>
struct Getter_t16D19F7E55B68E6850A137CED3582B09E68FF38F;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Boolean,System.Int64>
struct Getter_t057D6CFA10B08A14836A21DA451BC9876093B708;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Boolean,System.String>
struct Getter_t299527E78B56C41FFACD66795D350E935BCE71F9;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Byte,System.Int32>
struct Getter_t885E4485986C96CA4CD3B7878D5DED30FC1EE833;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Byte,System.Int64>
struct Getter_t796D7F1B65A8B86384AE55DE223A645B323EB739;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Byte,System.String>
struct Getter_tF96B07E3C68F1B01FE1D3522C1B774A2F532E623;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Char,System.Int32>
struct Getter_t41AF0A04434E8FE608FC78EBE2E0306FC7B4CC24;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Char,System.Int64>
struct Getter_tB611C7196589AB96F628704A50A65569D0C76B68;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Char,System.String>
struct Getter_tE7F9884B7C89C5541F991F6BFF8CF52CF6FA0D1E;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.DateTime,System.Int32>
struct Getter_tCDD7EAB18DBA52FFC9A01C4547B566FDC38C3650;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.DateTime,System.Int64>
struct Getter_t0F0881E76D9097DC2EA2C1F90255A778FF3814D1;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.DateTime,System.String>
struct Getter_t9F31A74E73CC0DB4EEB8172D282F2747C18D67D6;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.DateTimeOffset,System.Int32>
struct Getter_t0A4C957651C334C3E10B473DD9466EC579A9A8CD;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.DateTimeOffset,System.Int64>
struct Getter_tE64590CE8F91002F4504F11DFEAC79D7C1F000B0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.DateTimeOffset,System.String>
struct Getter_t55B79D00C13D02FB4CFBB68E0E4729B97E2B8DF6;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Decimal,System.Int32>
struct Getter_t5701EA7DB950B8528FAAD8DAA4237343AF9A879D;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Decimal,System.Int64>
struct Getter_tB130CBCCCBF49AC51DF24E18BD95802B20D45224;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Decimal,System.String>
struct Getter_tEC87017CE4DE9B4491648EEA084716C3713AABC9;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Double,System.Int32>
struct Getter_t2D4883EFD3717A321C9EF59A98DEC3451FDF70B8;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Double,System.Int64>
struct Getter_t4E8F1ED61DDC0554650AFBC5CC56FD8676946CCD;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Double,System.String>
struct Getter_t80DD6741026703851924BC4D15659AB99BAAFA47;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Diagnostics.Tracing.EmptyStruct,System.Int32>
struct Getter_t37DF71DBAE0604AA3BA75C19CCA01FECE0CCFB18;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Diagnostics.Tracing.EmptyStruct,System.Int64>
struct Getter_t47E4930DA251CC5AF9BDE9CA60279E7B69C1159C;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Diagnostics.Tracing.EmptyStruct,System.String>
struct Getter_t232CE618A062A041C722246F7EC5202D76DB7A8C;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Guid,System.Int32>
struct Getter_tDCE2AB4915C5ECEE1BD892E3D13F2B94E7BC4758;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Guid,System.Int64>
struct Getter_tF3976BBF10263994464FEBD9DFA5DE04C1302B3E;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Guid,System.String>
struct Getter_t55134A104600D5142C7694EF181F6C00D83EC53D;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int16,System.Int32>
struct Getter_tC236FF3CC59BBBEF254BEBF707EA55C444F3CC8B;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int16,System.Int64>
struct Getter_t06827863204819F02ECAB7EF32872748C60BA820;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int16,System.String>
struct Getter_t26B1BE31C746657E4ED0333F37D92824F7ABE228;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int32,System.Int32>
struct Getter_t1FD99759FE29DBAD9F9658011B2287C541B23DBF;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int32,System.Int64>
struct Getter_tC2695AA24715F5F73C89C1E5993B59398EB2586C;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int32,System.String>
struct Getter_tCD1C825C4C9086D1EB2B294DECB9787780573297;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int64,System.Int32>
struct Getter_tAF26A1C123A42213E430C101406A8BB1D0668B79;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int64,System.Int64>
struct Getter_tBEFDA7BA43638105CBDEB6F80647386F4D2759E1;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Int64,System.String>
struct Getter_tBFF00B84F98F38AE04FC98F1F998256E38FD69B6;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.IntPtr,System.Int32>
struct Getter_t033A6314246EF208F1B035501AAE1C3324D13C84;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.IntPtr,System.Int64>
struct Getter_t98D88E8BC26F327DAF8E3960479CC371C3A256D7;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.IntPtr,System.String>
struct Getter_tD8772AC9833C1EDC0756AB11F574AB7825D10661;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Object,System.Int32>
struct Getter_t1D11F3DECE492E86289072691EEC6100A6907291;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Object,System.Int64>
struct Getter_t23B0C3370812C56B1ABEE0B1717747C621D367DC;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Object,System.String>
struct Getter_tF89D04F8E170A0B10C182333BB00FBC9AA64D586;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.SByte,System.Int32>
struct Getter_t70AEF3CA04FB9B813CB1F765EA3338118AC27026;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.SByte,System.Int64>
struct Getter_t4396616477F7EBC40858FA69B7BBC8E666A2FBFF;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.SByte,System.String>
struct Getter_t613F7E00EF69EA343F3354E14D221CD43841D9AD;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Single,System.Int32>
struct Getter_t98EAD7BA545AF5818055C7F809BE405AA9F9598F;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Single,System.Int64>
struct Getter_t096A763B4ACF183EF6C9F416ADF863ECB5525792;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.Single,System.String>
struct Getter_tD547F4B9B8D904FEF0F2F7273EBA2A909DD114DB;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.TimeSpan,System.Int32>
struct Getter_t4F6F0ECFD9C064AA23BF4AD68E8D8AF61DB2B434;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.TimeSpan,System.Int64>
struct Getter_t715844BC979ED5AE1FEA7165F41F131FB1731995;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.TimeSpan,System.String>
struct Getter_t25B7EEFCE9200A0F7B1DEA2516C8E55F973A43B3;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt16,System.Int32>
struct Getter_tBD7D9EAC3BCB30C188F58A6BFC84C0254EFFEC3E;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt16,System.Int64>
struct Getter_t40D511FEC96B5B50C3C73543DE6C3063BA588754;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt16,System.String>
struct Getter_tBCE7E33ABEF434C0E1C994C893C77F9D5D209F29;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt32,System.Int32>
struct Getter_t9747785F55764C6162657B7B89104E50342A1B2C;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt32,System.Int64>
struct Getter_t3C79EDA57B580601D4BC8D84869A7FDC3CEA4B3E;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt32,System.String>
struct Getter_tB43971C380EE010343A86C90DC4B5A1C520B48E2;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt64,System.Int32>
struct Getter_t82FF1BF53C7BA7666470122124A6EF50DC42A7A3;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt64,System.Int64>
struct Getter_t9CE4FC7BFDE1FE4AE588C6F625279566C1A28DE6;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UInt64,System.String>
struct Getter_t77E240813D83DCFE7ACD7BA448EC8FD211A9E971;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UIntPtr,System.Int32>
struct Getter_tF02051A3B76548D99F76F1D124DD1B613BDC3642;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UIntPtr,System.Int64>
struct Getter_t60F864AFBDF48BA7EC15437EE4E7214DA1CB6AC0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<System.UIntPtr,System.String>
struct Getter_t94F6FDF20BE1EA350E7FBA83A34CB373FC820216;
// System.Collections.Generic.IComparer`1<System.Int32>
struct IComparer_1_t150A86695C404E117B1B644BEAD79BA2344FB009;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_t20C0141C3FEEDAA44BFE8521FEEDDF47289CB40B;
// System.Collections.Generic.IComparer`1<System.Single>
struct IComparer_1_t24C3D061E8C47F8C8847EDBCD75042B43195DDAA;
// System.Collections.Generic.IEnumerable`1<Vuforia.CameraMode>
struct IEnumerable_1_t6A6FE64772D4D542C628DC2203C10A26C4074A97;
// System.Collections.Generic.IEnumerable`1<System.Int32>
struct IEnumerable_1_t60929E1AA80B46746F987B99A4EBD004FD72D370;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D;
// System.Collections.Generic.IEnumerable`1<UnityEngine.RaycastHit>
struct IEnumerable_1_t93BCFA946EE57F981CF5F7458F49B297A9ADE427;
// System.Collections.Generic.IEnumerator`1<Vuforia.CameraMode>
struct IEnumerator_1_tD07FBF398CCF83EEAF36D549892A570C5AE16AB4;
// System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeNamedArgument>
struct IEnumerator_1_tF000C9F0E5825B7175EEFFE4206D7E4CA63AC048;
// System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeTypedArgument>
struct IEnumerator_1_tE5705EFC200D381292594B7E9CD60030D84E5E66;
// System.Collections.Generic.IEnumerator`1<System.Int32>
struct IEnumerator_1_t72AB4B40AF5290B386215B0BFADC8919D394DCAB;
// System.Collections.Generic.IEnumerator`1<System.Object>
struct IEnumerator_1_t2DC97C7D486BF9E077C2BC2E517E434F393AA76E;
// System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit>
struct IEnumerator_1_tD9C2F3EB6F76CC1B4C9CC6C824A8972A6A3F32AD;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>
struct IList_1_tC94A6A591E58FD9BB826AF5D15001E425B682707;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>
struct IList_1_tA9B3F6D4DDBA3A555103C2DDC65AD75936EAB181;
// System.Collections.Generic.IList`1<System.Object>
struct IList_1_t707982BD768B18C51D263C759F33BCDBDFA44901;
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A;
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C;
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC;
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817;
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7;
// System.Collections.Generic.ObjectComparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E;
// System.Collections.Generic.ObjectComparer`1<System.Byte>
struct ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834;
// System.Collections.Generic.ObjectComparer`1<Vuforia.CameraMode>
struct ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3;
// System.Collections.Generic.ObjectComparer`1<System.Char>
struct ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>
struct ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006;
// System.Collections.Generic.ObjectComparer`1<System.Collections.DictionaryEntry>
struct ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7;
// System.Collections.Generic.ObjectComparer`1<System.Double>
struct ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A;
// System.Collections.Generic.ObjectComparer`1<System.Guid>
struct ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7;
// System.Collections.Generic.ObjectComparer`1<System.Int32>
struct ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795;
// System.Collections.Generic.ObjectComparer`1<System.Int32Enum>
struct ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F;
// System.Collections.Generic.ObjectComparer`1<System.IntPtr>
struct ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4;
// System.Collections.Generic.ObjectComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA;
// System.Collections.Generic.ObjectComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D;
// System.Collections.Generic.ObjectComparer`1<System.Object>
struct ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Pose>
struct ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>
struct ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit2D>
struct ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>
struct ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124;
// System.Collections.Generic.ObjectComparer`1<System.Single>
struct ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>
struct ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>
struct ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>
struct ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87;
// System.Collections.Generic.ObjectComparer`1<System.UInt64>
struct ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>
struct ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>
struct ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>
struct ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E;
// System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>
struct ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B;
// System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/VideoModeData>
struct ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24;
// System.Collections.Generic.ObjectComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2;
// System.Collections.Generic.ObjectComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3;
// System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>
struct ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780;
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C;
// System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t600CD64268FD91D4F064E49867A166B8E9766B13;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB;
// System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>
struct ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>
struct ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>
struct ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Char>
struct ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>
struct ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>
struct ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>
struct ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Double>
struct ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>
struct ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>
struct ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>
struct ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC;
// System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>
struct ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>
struct ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>
struct ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Object>
struct ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>
struct ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>
struct ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>
struct ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>
struct ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>
struct ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Single>
struct ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>
struct ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>
struct ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>
struct ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>
struct ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1;
// System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>
struct ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385;
// System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>
struct ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>
struct ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>
struct ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>
struct ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>
struct ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>
struct ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>
struct ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>
struct ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85;
// System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>
struct ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>
struct ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>
struct ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E;
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>
struct ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703;
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>
struct ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2;
// UnityEngine.UI.ObjectPool`1<System.Object>
struct ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8;
// System.Linq.OrderedEnumerable`1<Vuforia.CameraMode>
struct OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432;
// System.Linq.OrderedEnumerable`1<System.Int32>
struct OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE;
// System.Linq.OrderedEnumerable`1<System.Object>
struct OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F;
// System.Linq.OrderedEnumerable`1<UnityEngine.RaycastHit>
struct OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB;
// System.Linq.OrderedEnumerable`2<Vuforia.CameraMode,System.Int32>
struct OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27;
// System.Linq.OrderedEnumerable`2<System.Int32,System.Int32>
struct OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C;
// System.Linq.OrderedEnumerable`2<System.Object,System.Int32>
struct OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43;
// System.Linq.OrderedEnumerable`2<System.Object,System.Object>
struct OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA;
// System.Linq.OrderedEnumerable`2<UnityEngine.RaycastHit,System.Single>
struct OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A;
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40;
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct Predicate_1_tD8CFC68D3FD2CAFDE997FB42F04FA9B896DDA4D1;
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct Predicate_1_t648A13B6D5246C930A8086ACD20A7B4FAB10D51D;
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Predicate_1_t78E36256E7141DFF7633B77FF87BCF9B83E602D8;
// System.Predicate`1<System.ValueTuple`2<System.Object,System.Object>>
struct Predicate_1_tF6BFBED754D517C93ABC2B1F3522F005E01BC70B;
// System.Predicate`1<System.Byte>
struct Predicate_1_t842A4F020A7223F89AAD26B7AD9110DCAD811E0F;
// System.Predicate`1<Vuforia.CameraMode>
struct Predicate_1_tDE3BC87716E4543F875BC43A749B02C4A6F6FD6F;
// System.Predicate`1<System.Char>
struct Predicate_1_t954B92A28F72E25951E55FC9B1A87DA3F93B2D0E;
// System.Predicate`1<UnityEngine.Color32>
struct Predicate_1_t93F7DA898B9782B61675EAFF1A2C6B68D454627E;
// System.Predicate`1<System.Collections.DictionaryEntry>
struct Predicate_1_tADDB20A46F1D89FE7BAEEB939961FF3303826F4E;
// System.Predicate`1<System.Double>
struct Predicate_1_t0E330E9BFAE196FB8D650A01EF09715D5B3C63DC;
// System.Predicate`1<System.Guid>
struct Predicate_1_t30F9B115B7755782EC109C2927AB398BF851816E;
// System.Predicate`1<System.Int32>
struct Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E;
// System.Predicate`1<System.Int32Enum>
struct Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48;
// System.Predicate`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct Predicate_1_tA1B517116B3565A97FB0B2D4AAB1C5D66E17C479;
// System.Predicate`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct Predicate_1_t419DB74DEFDC47632026D9ECFBF111FB3EE5B81B;
// System.Predicate`1<System.Object>
struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB;
// System.Predicate`1<UnityEngine.Pose>
struct Predicate_1_t781F56F00E55374D95A5BBFFE2F553AF85D0FC9F;
// System.Predicate`1<UnityEngine.RaycastHit2D>
struct Predicate_1_t9055FDFD9CFCC052508081AE0A90D9254ADD0DEE;
// System.Predicate`1<UnityEngine.EventSystems.RaycastResult>
struct Predicate_1_tE4AA40EAD3542E24130BEF8BF181659B017A5F64;
// System.Predicate`1<System.Single>
struct Predicate_1_t7712DE0490F6460AC78C03DE1DDBAB8AA5FDCD10;
// System.Predicate`1<UnityEngine.UICharInfo>
struct Predicate_1_tD9E496B0AAFD32E7F08682985D991B0E8494B5FF;
// System.Predicate`1<UnityEngine.UILineInfo>
struct Predicate_1_t67FB874DC27C7A70F3D5CBB972EF1985F8D77EC1;
// System.Predicate`1<UnityEngine.UIVertex>
struct Predicate_1_t86245C691294F4CAF9A0D4CB0AB8090805BD5564;
// System.Predicate`1<System.UInt64>
struct Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7;
// System.Predicate`1<UnityEngine.Vector3>
struct Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD;
// System.Predicate`1<UnityEngine.Vector4>
struct Predicate_1_t7159ED2567E0DF400A0E86969D4E4229BD5DF948;
// System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3;
// System.Predicate`1<UnityEngine.Camera/RenderRequest>
struct Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF;
// System.Predicate`1<Vuforia.CameraDevice/CameraField>
struct Predicate_1_tF0B1F77CE14965CE85496D58B7F95B85650235DE;
// System.Predicate`1<Vuforia.CameraDevice/VideoModeData>
struct Predicate_1_t9D9F9BF9B0BA74094B4411757AE65062808555A9;
// System.Predicate`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct Predicate_1_tAC089F33165C7442E3D66161C56B4B7771CAF217;
// System.Predicate`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct Predicate_1_tA7669BAC6A8C640E4E79ECD665204291395E1DDA;
// System.Predicate`1<Vuforia.TrackerData/TrackableResultData>
struct Predicate_1_t5835F5EA03D0A3D9130744B47777352F58074E75;
// System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>
struct Predicate_1_t9D17490F46AB30F97CBFEE210400343FA4702521;
// System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931;
// System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>
struct Predicate_1_tB669DD2D4E828B0960153B03E1DD552E11DE7737;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>
struct PrimitiveParameterExpression_1_tD2A2010948DFBCAAA2571D16D58E4F7B86AC3D83;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>
struct PrimitiveParameterExpression_1_tA44C59B221B96B1C70AB5DB0A88ABAB58AC2C0C6;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>
struct PrimitiveParameterExpression_1_tDCD6C1652FBDC3F3399DC1721E23DED5924CA00E;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>
struct PrimitiveParameterExpression_1_tFD8158721E22D6F8BB8C28399A5CB9B2CCB401E8;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>
struct PrimitiveParameterExpression_1_tD158CE97701C44A26E08527DD2E78DB18500C859;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>
struct PrimitiveParameterExpression_1_t73AA1B524F282649462AD9AA80B5869A9D1A87D6;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>
struct PrimitiveParameterExpression_1_t4E3A4B65DD267F43C22E1A4DF7D14E7FDFB18705;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>
struct PrimitiveParameterExpression_1_tFCAE899655D8FEDB4F2DCAB56C7B7B412ABE111D;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>
struct PrimitiveParameterExpression_1_tF1A363D78BF901D401930060EB909B3806B6C80B;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>
struct PrimitiveParameterExpression_1_t6415C2B65C6EE7ACF44AC513A0B9C892D7199145;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>
struct PrimitiveParameterExpression_1_t15F37BE7B34262F3F8EB69738B55C746C4A249CA;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>
struct PrimitiveParameterExpression_1_t021CF2C0089A8999BAF3F13712426186D9CB443D;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>
struct PrimitiveParameterExpression_1_t8651DC562B151904B7F6CAEBAB6AE965F95709C5;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>
struct PrimitiveParameterExpression_1_tFD1DAFE55FC516B146D1FA4FF89D6A6809D7A1E9;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>
struct PrimitiveParameterExpression_1_t66A5B478E1D45B5151C9C6ACFC535C92EEA97608;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Boolean>
struct PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Byte>
struct PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Char>
struct PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTime>
struct PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTimeOffset>
struct PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Decimal>
struct PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Double>
struct PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Diagnostics.Tracing.EmptyStruct>
struct PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Guid>
struct PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Int16>
struct PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Int32>
struct PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Int64>
struct PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.IntPtr>
struct PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Object>
struct PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.SByte>
struct PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Single>
struct PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.TimeSpan>
struct PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt16>
struct PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt32>
struct PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt64>
struct PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UIntPtr>
struct PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D;
// System.Collections.Generic.Queue`1<System.Object>
struct Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64;
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>
struct ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>
struct ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>
struct ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3;
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>
struct TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>
struct TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String>
struct TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D;
// UnityEngine.Events.UnityAction`1<System.Object>
struct UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A;
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[]
struct KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[]
struct KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C;
// System.ValueTuple`2<System.Object,System.Object>[]
struct ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A;
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
// Vuforia.CameraMode[]
struct CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.Color32[]
struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2;
// UnityEngine.UI.ColorBlock[]
struct ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863;
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451;
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// System.Collections.DictionaryEntry[]
struct DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1;
// System.Double[]
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB;
// System.Guid[]
struct GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// System.Linq.Expressions.Interpreter.InterpretedFrameInfo[]
struct InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283;
// Vuforia.Newtonsoft.Json.JsonPosition[]
struct JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801;
// UnityEngine.Matrix4x4[]
struct Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82;
// UnityEngine.UI.Navigation[]
struct NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// UnityEngine.Pose[]
struct PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A;
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_t6778DB95346906446AAD3A1A36904F1846435A09;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D;
// Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey[]
struct ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4;
// System.Resources.ResourceLocator[]
struct ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093;
// System.Single[]
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA;
// UnityEngine.UI.SpriteState[]
struct SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0;
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A;
// System.UInt16[]
struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67;
// System.UInt64[]
struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871;
// UnityEngine.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817;
// UnityEngine.Camera/RenderRequest[]
struct RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664;
// Vuforia.CameraDevice/CameraField[]
struct CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1;
// Vuforia.CameraDevice/VideoModeData[]
struct VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3;
// Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey[]
struct TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F;
// Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey[]
struct TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A;
// System.Diagnostics.Tracing.EventProvider/SessionInfo[]
struct SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179;
// Vuforia.RawPtrVideoTextureUpdater/TextureData[]
struct TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05;
// Vuforia.TrackerData/TrackableResultData[]
struct TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7;
// Vuforia.TrackerData/VirtualButtonData[]
struct VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A;
// Vuforia.TrackerData/VuMarkTargetResultData[]
struct VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE;
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F;
// Vuforia.VuforiaManager/TrackableIdPair[]
struct TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA;
// Vuforia.WebCamProfile/ProfileData[]
struct ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900;
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord[]
struct TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C;
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// System.Globalization.CompareInfo
struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9;
// System.Collections.Comparer
struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57;
// System.Linq.Expressions.Interpreter.DebugInfo
struct DebugInfo_t2FD37DEB5529C6813FAD30E67627B4CEFE8033AC;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// System.Diagnostics.Tracing.EventFieldAttribute
struct EventFieldAttribute_t6DC6D86E65ACC7E5F1CCA4A916E735880D0740BE;
// System.Exception
struct Exception_t;
// UnityEngine.GameObject
struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// System.Collections.IEnumerator
struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105;
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Linq.Expressions.ParameterExpression
struct ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE;
// System.Diagnostics.Tracing.PropertyAnalysis
struct PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// UnityEngine.RenderTexture
struct RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// UnityEngine.UI.Selectable
struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C;
// UnityEngine.Sprite
struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9;
// System.String
struct String_t;
// UnityEngine.Texture2D
struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo
struct TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE;
// System.Type
struct Type_t;
// UnityEngine.Events.UnityAction
struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral1102619AA6FB2A4AADBDAA47DDC096AE04C772C0;
IL2CPP_EXTERN_C String_t* _stringLiteral12D34C4D5361DBE1804B6F49EDED3C800B442095;
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4;
IL2CPP_EXTERN_C String_t* _stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70;
IL2CPP_EXTERN_C String_t* _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5;
IL2CPP_EXTERN_C String_t* _stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8;
IL2CPP_EXTERN_C String_t* _stringLiteral90D481902E4536C7CAECF03F50C5BF454D5968A7;
IL2CPP_EXTERN_C String_t* _stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5;
IL2CPP_EXTERN_C String_t* _stringLiteralA8C70AB8B855A781DF3541F1547162C258CABAE8;
IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
IL2CPP_EXTERN_C String_t* _stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m21AA08EAC3CB55DD13DD15294A65A3A38CD26369_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m5681137DDD80F50D3152FC42807E5A4541103AB7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m87B4AC4ED5A23F3953D52755BDAEEFFA5D797ABC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m9A78719E23491D44F84525E318E18C48B5DC38C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_mA0F9FED80A04B8240F1430808339D9CBF5CE16DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_ThrowForEmptyQueue_mC958C16A48E2BF4501AB513CAB5C4AAA1D0BDB81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_Insert_mA0D3D0D3D15604DFCC06A3434F7AA597B45917D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_RemoveAt_m867AE95741DFBE550BCF3B1F8BEA4977F0ED3F51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_System_Collections_ICollection_CopyTo_m7586A65777FF0B62E1A742AA659E0D20D186CEB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_System_Collections_IList_Add_m89E746EF561D6B9B17533A5BF2AE6B9BB800B67D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_System_Collections_IList_Insert_mD1511918CA19470A3ABFAB3AAEDA7966FBFC14E5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_System_Collections_IList_set_Item_m21B8C91BDCBE009ACBC11A63DF7D362EAFFFFFAB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_ValidateNullValue_mB92892E3C440C5156EB592020728F1674F778824_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_get_Item_mA480C4D9034B6E08B403E192A5D3A1061F82DFA7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_set_Capacity_m9EB7C1C7E2BEB4A752D4290DDDF86F1D0882D1F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollectionBuilder_1_set_Item_mCB378B931579FC3430CED07ADA2EE7A9C55015E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D;
struct KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9;
struct KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C;
struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C;
struct ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A;
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
struct CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8;
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2;
struct ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863;
struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451;
struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98;
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
struct DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1;
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB;
struct GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8;
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD;
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
struct InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283;
struct JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801;
struct Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82;
struct NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
struct PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A;
struct RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09;
struct RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D;
struct ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4;
struct ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093;
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA;
struct SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2;
struct UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0;
struct UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69;
struct UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A;
struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67;
struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2;
struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4;
struct Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871;
struct OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817;
struct RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664;
struct CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1;
struct VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3;
struct TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F;
struct TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A;
struct SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179;
struct TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05;
struct TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7;
struct VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A;
struct VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE;
struct WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F;
struct TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA;
struct ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900;
struct TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C;
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
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Byte>
struct Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<Vuforia.CameraMode>
struct Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Char>
struct Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Color32>
struct Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Collections.DictionaryEntry>
struct Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Double>
struct Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Guid>
struct Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Int32>
struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Int32Enum>
struct Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.IntPtr>
struct Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Object>
struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Pose>
struct Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>
struct Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>
struct Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>
struct Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Single>
struct Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>
struct Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>
struct Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>
struct Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.UInt64>
struct Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Vector3>
struct Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Vector4>
struct Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Camera/RenderRequest>
struct Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/CameraField>
struct Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/VideoModeData>
struct Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<Vuforia.TrackerData/TrackableResultData>
struct Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Linq.EnumerableSorter`1<Vuforia.CameraMode>
struct EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 : public RuntimeObject
{
public:
public:
};
// System.Linq.EnumerableSorter`1<System.Int32>
struct EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C : public RuntimeObject
{
public:
public:
};
// System.Linq.EnumerableSorter`1<System.Object>
struct EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A : public RuntimeObject
{
public:
public:
};
// System.Linq.EnumerableSorter`1<UnityEngine.RaycastHit>
struct EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 : public RuntimeObject
{
public:
public:
};
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>
struct Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B : public RuntimeObject
{
public:
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<T> System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_builder
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * ____builder_0;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_index
int32_t ____index_2;
// T System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_current
RuntimeObject * ____current_3;
public:
inline static int32_t get_offset_of__builder_0() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____builder_0)); }
inline ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * get__builder_0() const { return ____builder_0; }
inline ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F ** get_address_of__builder_0() { return &____builder_0; }
inline void set__builder_0(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * value)
{
____builder_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____builder_0), (void*)value);
}
inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____version_1)); }
inline int32_t get__version_1() const { return ____version_1; }
inline int32_t* get_address_of__version_1() { return &____version_1; }
inline void set__version_1(int32_t value)
{
____version_1 = value;
}
inline static int32_t get_offset_of__index_2() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____index_2)); }
inline int32_t get__index_2() const { return ____index_2; }
inline int32_t* get_address_of__index_2() { return &____index_2; }
inline void set__index_2(int32_t value)
{
____index_2 = value;
}
inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____current_3)); }
inline RuntimeObject * get__current_3() const { return ____current_3; }
inline RuntimeObject ** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(RuntimeObject * value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Boolean>
struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Byte>
struct EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.CameraMode>
struct EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Char>
struct EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>
struct EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>
struct EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Collections.DictionaryEntry>
struct EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Double>
struct EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Guid>
struct EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Int32>
struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Int32Enum>
struct EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.IntPtr>
struct EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>
struct EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>
struct EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Pose>
struct EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.RaycastHit2D>
struct EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>
struct EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>
struct EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>
struct EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Single>
struct EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>
struct EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>
struct EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>
struct EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>
struct EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.UInt16>
struct EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.UInt64>
struct EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>
struct EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>
struct EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Camera/RenderRequest>
struct EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>
struct EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/VideoModeData>
struct EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>
struct EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>
struct EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>
struct EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>
struct EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>
struct EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>
struct EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>
struct EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// UnityEngine.UI.ObjectPool`1<System.Object>
struct ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 : public RuntimeObject
{
public:
// System.Collections.Generic.Stack`1<T> UnityEngine.UI.ObjectPool`1::m_Stack
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * ___m_Stack_0;
// UnityEngine.Events.UnityAction`1<T> UnityEngine.UI.ObjectPool`1::m_ActionOnGet
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___m_ActionOnGet_1;
// UnityEngine.Events.UnityAction`1<T> UnityEngine.UI.ObjectPool`1::m_ActionOnRelease
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___m_ActionOnRelease_2;
// System.Int32 UnityEngine.UI.ObjectPool`1::<countAll>k__BackingField
int32_t ___U3CcountAllU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_m_Stack_0() { return static_cast<int32_t>(offsetof(ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8, ___m_Stack_0)); }
inline Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * get_m_Stack_0() const { return ___m_Stack_0; }
inline Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 ** get_address_of_m_Stack_0() { return &___m_Stack_0; }
inline void set_m_Stack_0(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * value)
{
___m_Stack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Stack_0), (void*)value);
}
inline static int32_t get_offset_of_m_ActionOnGet_1() { return static_cast<int32_t>(offsetof(ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8, ___m_ActionOnGet_1)); }
inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * get_m_ActionOnGet_1() const { return ___m_ActionOnGet_1; }
inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A ** get_address_of_m_ActionOnGet_1() { return &___m_ActionOnGet_1; }
inline void set_m_ActionOnGet_1(UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * value)
{
___m_ActionOnGet_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionOnGet_1), (void*)value);
}
inline static int32_t get_offset_of_m_ActionOnRelease_2() { return static_cast<int32_t>(offsetof(ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8, ___m_ActionOnRelease_2)); }
inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * get_m_ActionOnRelease_2() const { return ___m_ActionOnRelease_2; }
inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A ** get_address_of_m_ActionOnRelease_2() { return &___m_ActionOnRelease_2; }
inline void set_m_ActionOnRelease_2(UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * value)
{
___m_ActionOnRelease_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionOnRelease_2), (void*)value);
}
inline static int32_t get_offset_of_U3CcountAllU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8, ___U3CcountAllU3Ek__BackingField_3)); }
inline int32_t get_U3CcountAllU3Ek__BackingField_3() const { return ___U3CcountAllU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CcountAllU3Ek__BackingField_3() { return &___U3CcountAllU3Ek__BackingField_3; }
inline void set_U3CcountAllU3Ek__BackingField_3(int32_t value)
{
___U3CcountAllU3Ek__BackingField_3 = value;
}
};
// System.Linq.OrderedEnumerable`1<Vuforia.CameraMode>
struct OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 : public RuntimeObject
{
public:
// System.Collections.Generic.IEnumerable`1<TElement> System.Linq.OrderedEnumerable`1::source
RuntimeObject* ___source_0;
public:
inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432, ___source_0)); }
inline RuntimeObject* get_source_0() const { return ___source_0; }
inline RuntimeObject** get_address_of_source_0() { return &___source_0; }
inline void set_source_0(RuntimeObject* value)
{
___source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value);
}
};
// System.Linq.OrderedEnumerable`1<System.Int32>
struct OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE : public RuntimeObject
{
public:
// System.Collections.Generic.IEnumerable`1<TElement> System.Linq.OrderedEnumerable`1::source
RuntimeObject* ___source_0;
public:
inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE, ___source_0)); }
inline RuntimeObject* get_source_0() const { return ___source_0; }
inline RuntimeObject** get_address_of_source_0() { return &___source_0; }
inline void set_source_0(RuntimeObject* value)
{
___source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value);
}
};
// System.Linq.OrderedEnumerable`1<System.Object>
struct OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F : public RuntimeObject
{
public:
// System.Collections.Generic.IEnumerable`1<TElement> System.Linq.OrderedEnumerable`1::source
RuntimeObject* ___source_0;
public:
inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F, ___source_0)); }
inline RuntimeObject* get_source_0() const { return ___source_0; }
inline RuntimeObject** get_address_of_source_0() { return &___source_0; }
inline void set_source_0(RuntimeObject* value)
{
___source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value);
}
};
// System.Linq.OrderedEnumerable`1<UnityEngine.RaycastHit>
struct OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB : public RuntimeObject
{
public:
// System.Collections.Generic.IEnumerable`1<TElement> System.Linq.OrderedEnumerable`1::source
RuntimeObject* ___source_0;
public:
inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB, ___source_0)); }
inline RuntimeObject* get_source_0() const { return ___source_0; }
inline RuntimeObject** get_address_of_source_0() { return &___source_0; }
inline void set_source_0(RuntimeObject* value)
{
___source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value);
}
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Boolean>
struct PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Byte>
struct PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Char>
struct PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTime>
struct PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTimeOffset>
struct PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Decimal>
struct PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Double>
struct PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Diagnostics.Tracing.EmptyStruct>
struct PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Guid>
struct PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Int16>
struct PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Int32>
struct PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Int64>
struct PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.IntPtr>
struct PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Object>
struct PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.SByte>
struct PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.Single>
struct PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.TimeSpan>
struct PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt16>
struct PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21 : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt32>
struct PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt64>
struct PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UIntPtr>
struct PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.QueueDebugView`1<System.Object>
struct QueueDebugView_1_t9ACA1221970605C74215E9E112CB7F14A80BD104 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Queue`1<System.Object>
struct Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Queue`1::_array
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0;
// System.Int32 System.Collections.Generic.Queue`1::_head
int32_t ____head_1;
// System.Int32 System.Collections.Generic.Queue`1::_tail
int32_t ____tail_2;
// System.Int32 System.Collections.Generic.Queue`1::_size
int32_t ____size_3;
// System.Int32 System.Collections.Generic.Queue`1::_version
int32_t ____version_4;
// System.Object System.Collections.Generic.Queue`1::_syncRoot
RuntimeObject * ____syncRoot_5;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____array_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__head_1() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____head_1)); }
inline int32_t get__head_1() const { return ____head_1; }
inline int32_t* get_address_of__head_1() { return &____head_1; }
inline void set__head_1(int32_t value)
{
____head_1 = value;
}
inline static int32_t get_offset_of__tail_2() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____tail_2)); }
inline int32_t get__tail_2() const { return ____tail_2; }
inline int32_t* get_address_of__tail_2() { return &____tail_2; }
inline void set__tail_2(int32_t value)
{
____tail_2 = value;
}
inline static int32_t get_offset_of__size_3() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____size_3)); }
inline int32_t get__size_3() const { return ____size_3; }
inline int32_t* get_address_of__size_3() { return &____size_3; }
inline void set__size_3(int32_t value)
{
____size_3 = value;
}
inline static int32_t get_offset_of__version_4() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____version_4)); }
inline int32_t get__version_4() const { return ____version_4; }
inline int32_t* get_address_of__version_4() { return &____version_4; }
inline void set__version_4(int32_t value)
{
____version_4 = value;
}
inline static int32_t get_offset_of__syncRoot_5() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____syncRoot_5)); }
inline RuntimeObject * get__syncRoot_5() const { return ____syncRoot_5; }
inline RuntimeObject ** get_address_of__syncRoot_5() { return &____syncRoot_5; }
inline void set__syncRoot_5(RuntimeObject * value)
{
____syncRoot_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_5), (void*)value);
}
};
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>
struct ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F : public RuntimeObject
{
public:
// T[] System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_0;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1::_size
int32_t ____size_1;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1::_version
int32_t ____version_2;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F, ____items_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_0() const { return ____items_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>
struct ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0, ___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);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>
struct ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294, ___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);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3, ___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);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____array_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Collections.Comparer
struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 : public RuntimeObject
{
public:
// System.Globalization.CompareInfo System.Collections.Comparer::m_compareInfo
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_compareInfo_0;
public:
inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57, ___m_compareInfo_0)); }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_m_compareInfo_0() const { return ___m_compareInfo_0; }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; }
inline void set_m_compareInfo_0(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value)
{
___m_compareInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value);
}
};
struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields
{
public:
// System.Collections.Comparer System.Collections.Comparer::Default
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * ___Default_1;
// System.Collections.Comparer System.Collections.Comparer::DefaultInvariant
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * ___DefaultInvariant_2;
public:
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields, ___Default_1)); }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * get_Default_1() const { return ___Default_1; }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 ** get_address_of_Default_1() { return &___Default_1; }
inline void set_Default_1(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * value)
{
___Default_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
}
inline static int32_t get_offset_of_DefaultInvariant_2() { return static_cast<int32_t>(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields, ___DefaultInvariant_2)); }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * get_DefaultInvariant_2() const { return ___DefaultInvariant_2; }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 ** get_address_of_DefaultInvariant_2() { return &___DefaultInvariant_2; }
inline void set_DefaultInvariant_2(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * value)
{
___DefaultInvariant_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultInvariant_2), (void*)value);
}
};
// System.Linq.Expressions.Expression
struct Expression_t30A004209C10C2D9A9785B2F74EEED431A4D4660 : public RuntimeObject
{
public:
public:
};
struct Expression_t30A004209C10C2D9A9785B2F74EEED431A4D4660_StaticFields
{
public:
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Reflection.MethodInfo> System.Linq.Expressions.Expression::s_lambdaDelegateCache
CacheDict_2_t23833FEB97C42D87EBF4B5FE3B56AA1336D7B3CE * ___s_lambdaDelegateCache_0;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Func`5<System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>,System.Linq.Expressions.LambdaExpression>> modreq(System.Runtime.CompilerServices.IsVolatile) System.Linq.Expressions.Expression::s_lambdaFactories
CacheDict_2_t9FD97836EA998D29FFE492313652BD241E48F2C6 * ___s_lambdaFactories_1;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Linq.Expressions.Expression,System.Linq.Expressions.Expression/ExtensionInfo> System.Linq.Expressions.Expression::s_legacyCtorSupportTable
ConditionalWeakTable_2_t53315BD762B310982B9C8EEAA1BEB06E4E8D0815 * ___s_legacyCtorSupportTable_2;
public:
inline static int32_t get_offset_of_s_lambdaDelegateCache_0() { return static_cast<int32_t>(offsetof(Expression_t30A004209C10C2D9A9785B2F74EEED431A4D4660_StaticFields, ___s_lambdaDelegateCache_0)); }
inline CacheDict_2_t23833FEB97C42D87EBF4B5FE3B56AA1336D7B3CE * get_s_lambdaDelegateCache_0() const { return ___s_lambdaDelegateCache_0; }
inline CacheDict_2_t23833FEB97C42D87EBF4B5FE3B56AA1336D7B3CE ** get_address_of_s_lambdaDelegateCache_0() { return &___s_lambdaDelegateCache_0; }
inline void set_s_lambdaDelegateCache_0(CacheDict_2_t23833FEB97C42D87EBF4B5FE3B56AA1336D7B3CE * value)
{
___s_lambdaDelegateCache_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_lambdaDelegateCache_0), (void*)value);
}
inline static int32_t get_offset_of_s_lambdaFactories_1() { return static_cast<int32_t>(offsetof(Expression_t30A004209C10C2D9A9785B2F74EEED431A4D4660_StaticFields, ___s_lambdaFactories_1)); }
inline CacheDict_2_t9FD97836EA998D29FFE492313652BD241E48F2C6 * get_s_lambdaFactories_1() const { return ___s_lambdaFactories_1; }
inline CacheDict_2_t9FD97836EA998D29FFE492313652BD241E48F2C6 ** get_address_of_s_lambdaFactories_1() { return &___s_lambdaFactories_1; }
inline void set_s_lambdaFactories_1(CacheDict_2_t9FD97836EA998D29FFE492313652BD241E48F2C6 * value)
{
___s_lambdaFactories_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_lambdaFactories_1), (void*)value);
}
inline static int32_t get_offset_of_s_legacyCtorSupportTable_2() { return static_cast<int32_t>(offsetof(Expression_t30A004209C10C2D9A9785B2F74EEED431A4D4660_StaticFields, ___s_legacyCtorSupportTable_2)); }
inline ConditionalWeakTable_2_t53315BD762B310982B9C8EEAA1BEB06E4E8D0815 * get_s_legacyCtorSupportTable_2() const { return ___s_legacyCtorSupportTable_2; }
inline ConditionalWeakTable_2_t53315BD762B310982B9C8EEAA1BEB06E4E8D0815 ** get_address_of_s_legacyCtorSupportTable_2() { return &___s_legacyCtorSupportTable_2; }
inline void set_s_legacyCtorSupportTable_2(ConditionalWeakTable_2_t53315BD762B310982B9C8EEAA1BEB06E4E8D0815 * value)
{
___s_legacyCtorSupportTable_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_legacyCtorSupportTable_2), (void*)value);
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Diagnostics.Tracing.PropertyAnalysis
struct PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 : public RuntimeObject
{
public:
// System.String System.Diagnostics.Tracing.PropertyAnalysis::name
String_t* ___name_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.PropertyAnalysis::getterInfo
MethodInfo_t * ___getterInfo_1;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.PropertyAnalysis::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_2;
// System.Diagnostics.Tracing.EventFieldAttribute System.Diagnostics.Tracing.PropertyAnalysis::fieldAttribute
EventFieldAttribute_t6DC6D86E65ACC7E5F1CCA4A916E735880D0740BE * ___fieldAttribute_3;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8, ___typeInfo_2)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_2() const { return ___typeInfo_2; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_2() { return &___typeInfo_2; }
inline void set_typeInfo_2(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_2), (void*)value);
}
inline static int32_t get_offset_of_fieldAttribute_3() { return static_cast<int32_t>(offsetof(PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8, ___fieldAttribute_3)); }
inline EventFieldAttribute_t6DC6D86E65ACC7E5F1CCA4A916E735880D0740BE * get_fieldAttribute_3() const { return ___fieldAttribute_3; }
inline EventFieldAttribute_t6DC6D86E65ACC7E5F1CCA4A916E735880D0740BE ** get_address_of_fieldAttribute_3() { return &___fieldAttribute_3; }
inline void set_fieldAttribute_3(EventFieldAttribute_t6DC6D86E65ACC7E5F1CCA4A916E735880D0740BE * value)
{
___fieldAttribute_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fieldAttribute_3), (void*)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.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// System.Linq.Buffer`1<Vuforia.CameraMode>
struct Buffer_1_tE8598DE8EC1401C54DE5B7B35D4B973F0129E40F
{
public:
// TElement[] System.Linq.Buffer`1::items
CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_tE8598DE8EC1401C54DE5B7B35D4B973F0129E40F, ___items_0)); }
inline CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* get_items_0() const { return ___items_0; }
inline CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_tE8598DE8EC1401C54DE5B7B35D4B973F0129E40F, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Buffer`1<System.Int32>
struct Buffer_1_t087969E39A0FFD1A50B5A885FC6FBFEA235A7395
{
public:
// TElement[] System.Linq.Buffer`1::items
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t087969E39A0FFD1A50B5A885FC6FBFEA235A7395, ___items_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_items_0() const { return ___items_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t087969E39A0FFD1A50B5A885FC6FBFEA235A7395, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Buffer`1<System.Object>
struct Buffer_1_tB294332D6A9005ABB8E979A62BA34A1CB39C10A7
{
public:
// TElement[] System.Linq.Buffer`1::items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_tB294332D6A9005ABB8E979A62BA34A1CB39C10A7, ___items_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_items_0() const { return ___items_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_tB294332D6A9005ABB8E979A62BA34A1CB39C10A7, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Buffer`1<UnityEngine.RaycastHit>
struct Buffer_1_tCED3A02F754F6026F55A2CE8DB062AF606BE2187
{
public:
// TElement[] System.Linq.Buffer`1::items
RaycastHitU5BU5D_t6778DB95346906446AAD3A1A36904F1846435A09* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_tCED3A02F754F6026F55A2CE8DB062AF606BE2187, ___items_0)); }
inline RaycastHitU5BU5D_t6778DB95346906446AAD3A1A36904F1846435A09* get_items_0() const { return ___items_0; }
inline RaycastHitU5BU5D_t6778DB95346906446AAD3A1A36904F1846435A09** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(RaycastHitU5BU5D_t6778DB95346906446AAD3A1A36904F1846435A09* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_tCED3A02F754F6026F55A2CE8DB062AF606BE2187, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int32>
struct ClassPropertyWriter_2_t8E5EBF34D14508F8F9AD8506B39A2025C4CC472B : public PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t50056CC31DCB80C7B63CBB12617592AB54375939 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t8E5EBF34D14508F8F9AD8506B39A2025C4CC472B, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t8E5EBF34D14508F8F9AD8506B39A2025C4CC472B, ___getter_1)); }
inline Getter_t50056CC31DCB80C7B63CBB12617592AB54375939 * get_getter_1() const { return ___getter_1; }
inline Getter_t50056CC31DCB80C7B63CBB12617592AB54375939 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t50056CC31DCB80C7B63CBB12617592AB54375939 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>
struct ClassPropertyWriter_2_tF98FBD7A2F0B5D42B9BDFF5E7C9EB1A2EE2D9AF6 : public PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t0224B0C93B9AEBE23A8BC6BF3DDA3E333A94A4D0 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tF98FBD7A2F0B5D42B9BDFF5E7C9EB1A2EE2D9AF6, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tF98FBD7A2F0B5D42B9BDFF5E7C9EB1A2EE2D9AF6, ___getter_1)); }
inline Getter_t0224B0C93B9AEBE23A8BC6BF3DDA3E333A94A4D0 * get_getter_1() const { return ___getter_1; }
inline Getter_t0224B0C93B9AEBE23A8BC6BF3DDA3E333A94A4D0 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t0224B0C93B9AEBE23A8BC6BF3DDA3E333A94A4D0 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.String>
struct ClassPropertyWriter_2_tD223943C05CB71F26C93750B159F0B9932FA221E : public PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tEC9FCD923E15C8E28D9687F55B907381EE8E23AF * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tD223943C05CB71F26C93750B159F0B9932FA221E, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tD223943C05CB71F26C93750B159F0B9932FA221E, ___getter_1)); }
inline Getter_tEC9FCD923E15C8E28D9687F55B907381EE8E23AF * get_getter_1() const { return ___getter_1; }
inline Getter_tEC9FCD923E15C8E28D9687F55B907381EE8E23AF ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tEC9FCD923E15C8E28D9687F55B907381EE8E23AF * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Boolean,System.Int32>
struct ClassPropertyWriter_2_tD56D3E1B0BDC144C6658D8B62644CE8291710052 : public PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t16D19F7E55B68E6850A137CED3582B09E68FF38F * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tD56D3E1B0BDC144C6658D8B62644CE8291710052, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tD56D3E1B0BDC144C6658D8B62644CE8291710052, ___getter_1)); }
inline Getter_t16D19F7E55B68E6850A137CED3582B09E68FF38F * get_getter_1() const { return ___getter_1; }
inline Getter_t16D19F7E55B68E6850A137CED3582B09E68FF38F ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t16D19F7E55B68E6850A137CED3582B09E68FF38F * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Boolean,System.Int64>
struct ClassPropertyWriter_2_t37423612841AFEF6B4C781C75C939D14A30C0616 : public PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t057D6CFA10B08A14836A21DA451BC9876093B708 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t37423612841AFEF6B4C781C75C939D14A30C0616, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t37423612841AFEF6B4C781C75C939D14A30C0616, ___getter_1)); }
inline Getter_t057D6CFA10B08A14836A21DA451BC9876093B708 * get_getter_1() const { return ___getter_1; }
inline Getter_t057D6CFA10B08A14836A21DA451BC9876093B708 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t057D6CFA10B08A14836A21DA451BC9876093B708 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Boolean,System.String>
struct ClassPropertyWriter_2_t2F4AE407160B771C1A6A6C7D31C809988E91684A : public PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t299527E78B56C41FFACD66795D350E935BCE71F9 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2F4AE407160B771C1A6A6C7D31C809988E91684A, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2F4AE407160B771C1A6A6C7D31C809988E91684A, ___getter_1)); }
inline Getter_t299527E78B56C41FFACD66795D350E935BCE71F9 * get_getter_1() const { return ___getter_1; }
inline Getter_t299527E78B56C41FFACD66795D350E935BCE71F9 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t299527E78B56C41FFACD66795D350E935BCE71F9 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Byte,System.Int32>
struct ClassPropertyWriter_2_t630510585728A596FEE0389363D05CC24D5B5637 : public PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t885E4485986C96CA4CD3B7878D5DED30FC1EE833 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t630510585728A596FEE0389363D05CC24D5B5637, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t630510585728A596FEE0389363D05CC24D5B5637, ___getter_1)); }
inline Getter_t885E4485986C96CA4CD3B7878D5DED30FC1EE833 * get_getter_1() const { return ___getter_1; }
inline Getter_t885E4485986C96CA4CD3B7878D5DED30FC1EE833 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t885E4485986C96CA4CD3B7878D5DED30FC1EE833 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Byte,System.Int64>
struct ClassPropertyWriter_2_t932AE1EFFACBE5817FFF49F1101738CE12B2D1E3 : public PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t796D7F1B65A8B86384AE55DE223A645B323EB739 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t932AE1EFFACBE5817FFF49F1101738CE12B2D1E3, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t932AE1EFFACBE5817FFF49F1101738CE12B2D1E3, ___getter_1)); }
inline Getter_t796D7F1B65A8B86384AE55DE223A645B323EB739 * get_getter_1() const { return ___getter_1; }
inline Getter_t796D7F1B65A8B86384AE55DE223A645B323EB739 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t796D7F1B65A8B86384AE55DE223A645B323EB739 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Byte,System.String>
struct ClassPropertyWriter_2_t36EE3413A1D0B5766EA6B294A9306F3C1911B6EC : public PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tF96B07E3C68F1B01FE1D3522C1B774A2F532E623 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t36EE3413A1D0B5766EA6B294A9306F3C1911B6EC, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t36EE3413A1D0B5766EA6B294A9306F3C1911B6EC, ___getter_1)); }
inline Getter_tF96B07E3C68F1B01FE1D3522C1B774A2F532E623 * get_getter_1() const { return ___getter_1; }
inline Getter_tF96B07E3C68F1B01FE1D3522C1B774A2F532E623 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tF96B07E3C68F1B01FE1D3522C1B774A2F532E623 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Char,System.Int32>
struct ClassPropertyWriter_2_t7093F2962BC1C9885CD14E7DEE34BCE4E1CDDD8F : public PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t41AF0A04434E8FE608FC78EBE2E0306FC7B4CC24 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t7093F2962BC1C9885CD14E7DEE34BCE4E1CDDD8F, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t7093F2962BC1C9885CD14E7DEE34BCE4E1CDDD8F, ___getter_1)); }
inline Getter_t41AF0A04434E8FE608FC78EBE2E0306FC7B4CC24 * get_getter_1() const { return ___getter_1; }
inline Getter_t41AF0A04434E8FE608FC78EBE2E0306FC7B4CC24 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t41AF0A04434E8FE608FC78EBE2E0306FC7B4CC24 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Char,System.Int64>
struct ClassPropertyWriter_2_t2F2CB0E97FDC8D613A72309295594398CB2F51F7 : public PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tB611C7196589AB96F628704A50A65569D0C76B68 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2F2CB0E97FDC8D613A72309295594398CB2F51F7, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2F2CB0E97FDC8D613A72309295594398CB2F51F7, ___getter_1)); }
inline Getter_tB611C7196589AB96F628704A50A65569D0C76B68 * get_getter_1() const { return ___getter_1; }
inline Getter_tB611C7196589AB96F628704A50A65569D0C76B68 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tB611C7196589AB96F628704A50A65569D0C76B68 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Char,System.String>
struct ClassPropertyWriter_2_tB0207930C8705ADD53F0F13D5A40D3956E7D5921 : public PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tE7F9884B7C89C5541F991F6BFF8CF52CF6FA0D1E * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tB0207930C8705ADD53F0F13D5A40D3956E7D5921, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tB0207930C8705ADD53F0F13D5A40D3956E7D5921, ___getter_1)); }
inline Getter_tE7F9884B7C89C5541F991F6BFF8CF52CF6FA0D1E * get_getter_1() const { return ___getter_1; }
inline Getter_tE7F9884B7C89C5541F991F6BFF8CF52CF6FA0D1E ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tE7F9884B7C89C5541F991F6BFF8CF52CF6FA0D1E * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.DateTime,System.Int32>
struct ClassPropertyWriter_2_tABBC704BBD87A0021D029587D34ACC8C7294349D : public PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tCDD7EAB18DBA52FFC9A01C4547B566FDC38C3650 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tABBC704BBD87A0021D029587D34ACC8C7294349D, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tABBC704BBD87A0021D029587D34ACC8C7294349D, ___getter_1)); }
inline Getter_tCDD7EAB18DBA52FFC9A01C4547B566FDC38C3650 * get_getter_1() const { return ___getter_1; }
inline Getter_tCDD7EAB18DBA52FFC9A01C4547B566FDC38C3650 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tCDD7EAB18DBA52FFC9A01C4547B566FDC38C3650 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.DateTime,System.Int64>
struct ClassPropertyWriter_2_t919AD58056A7498F9B2A7EDCA283B4B4EF010AD0 : public PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t0F0881E76D9097DC2EA2C1F90255A778FF3814D1 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t919AD58056A7498F9B2A7EDCA283B4B4EF010AD0, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t919AD58056A7498F9B2A7EDCA283B4B4EF010AD0, ___getter_1)); }
inline Getter_t0F0881E76D9097DC2EA2C1F90255A778FF3814D1 * get_getter_1() const { return ___getter_1; }
inline Getter_t0F0881E76D9097DC2EA2C1F90255A778FF3814D1 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t0F0881E76D9097DC2EA2C1F90255A778FF3814D1 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.DateTime,System.String>
struct ClassPropertyWriter_2_t54DE170CFA16BFE5E929E26F6CD82B3C9B7D2A66 : public PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t9F31A74E73CC0DB4EEB8172D282F2747C18D67D6 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t54DE170CFA16BFE5E929E26F6CD82B3C9B7D2A66, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t54DE170CFA16BFE5E929E26F6CD82B3C9B7D2A66, ___getter_1)); }
inline Getter_t9F31A74E73CC0DB4EEB8172D282F2747C18D67D6 * get_getter_1() const { return ___getter_1; }
inline Getter_t9F31A74E73CC0DB4EEB8172D282F2747C18D67D6 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t9F31A74E73CC0DB4EEB8172D282F2747C18D67D6 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.DateTimeOffset,System.Int32>
struct ClassPropertyWriter_2_t5EA2E4F76B0E6F97EB6182152BDE5526FA758AEF : public PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t0A4C957651C334C3E10B473DD9466EC579A9A8CD * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t5EA2E4F76B0E6F97EB6182152BDE5526FA758AEF, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t5EA2E4F76B0E6F97EB6182152BDE5526FA758AEF, ___getter_1)); }
inline Getter_t0A4C957651C334C3E10B473DD9466EC579A9A8CD * get_getter_1() const { return ___getter_1; }
inline Getter_t0A4C957651C334C3E10B473DD9466EC579A9A8CD ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t0A4C957651C334C3E10B473DD9466EC579A9A8CD * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.DateTimeOffset,System.Int64>
struct ClassPropertyWriter_2_t5A2BB6B3CEC371042AFD877DADCF91B0CAE761ED : public PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tE64590CE8F91002F4504F11DFEAC79D7C1F000B0 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t5A2BB6B3CEC371042AFD877DADCF91B0CAE761ED, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t5A2BB6B3CEC371042AFD877DADCF91B0CAE761ED, ___getter_1)); }
inline Getter_tE64590CE8F91002F4504F11DFEAC79D7C1F000B0 * get_getter_1() const { return ___getter_1; }
inline Getter_tE64590CE8F91002F4504F11DFEAC79D7C1F000B0 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tE64590CE8F91002F4504F11DFEAC79D7C1F000B0 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.DateTimeOffset,System.String>
struct ClassPropertyWriter_2_t4619412744646B00CDCB2437F366C02DA6C830B6 : public PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t55B79D00C13D02FB4CFBB68E0E4729B97E2B8DF6 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4619412744646B00CDCB2437F366C02DA6C830B6, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4619412744646B00CDCB2437F366C02DA6C830B6, ___getter_1)); }
inline Getter_t55B79D00C13D02FB4CFBB68E0E4729B97E2B8DF6 * get_getter_1() const { return ___getter_1; }
inline Getter_t55B79D00C13D02FB4CFBB68E0E4729B97E2B8DF6 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t55B79D00C13D02FB4CFBB68E0E4729B97E2B8DF6 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Decimal,System.Int32>
struct ClassPropertyWriter_2_tC770AD0CF6F72E1F1BC1B60AEE3A3C61480AC974 : public PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t5701EA7DB950B8528FAAD8DAA4237343AF9A879D * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC770AD0CF6F72E1F1BC1B60AEE3A3C61480AC974, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC770AD0CF6F72E1F1BC1B60AEE3A3C61480AC974, ___getter_1)); }
inline Getter_t5701EA7DB950B8528FAAD8DAA4237343AF9A879D * get_getter_1() const { return ___getter_1; }
inline Getter_t5701EA7DB950B8528FAAD8DAA4237343AF9A879D ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t5701EA7DB950B8528FAAD8DAA4237343AF9A879D * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Decimal,System.Int64>
struct ClassPropertyWriter_2_t1F477846C3236B63EC6EF761DA0F68FABD304C5A : public PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tB130CBCCCBF49AC51DF24E18BD95802B20D45224 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1F477846C3236B63EC6EF761DA0F68FABD304C5A, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1F477846C3236B63EC6EF761DA0F68FABD304C5A, ___getter_1)); }
inline Getter_tB130CBCCCBF49AC51DF24E18BD95802B20D45224 * get_getter_1() const { return ___getter_1; }
inline Getter_tB130CBCCCBF49AC51DF24E18BD95802B20D45224 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tB130CBCCCBF49AC51DF24E18BD95802B20D45224 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Decimal,System.String>
struct ClassPropertyWriter_2_tFFA7036DCF282842132CEA24D36B55548BAC49F2 : public PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tEC87017CE4DE9B4491648EEA084716C3713AABC9 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tFFA7036DCF282842132CEA24D36B55548BAC49F2, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tFFA7036DCF282842132CEA24D36B55548BAC49F2, ___getter_1)); }
inline Getter_tEC87017CE4DE9B4491648EEA084716C3713AABC9 * get_getter_1() const { return ___getter_1; }
inline Getter_tEC87017CE4DE9B4491648EEA084716C3713AABC9 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tEC87017CE4DE9B4491648EEA084716C3713AABC9 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Double,System.Int32>
struct ClassPropertyWriter_2_t3B62A654BA7A1286C9DDACD9E93D05053C2301D9 : public PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t2D4883EFD3717A321C9EF59A98DEC3451FDF70B8 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t3B62A654BA7A1286C9DDACD9E93D05053C2301D9, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t3B62A654BA7A1286C9DDACD9E93D05053C2301D9, ___getter_1)); }
inline Getter_t2D4883EFD3717A321C9EF59A98DEC3451FDF70B8 * get_getter_1() const { return ___getter_1; }
inline Getter_t2D4883EFD3717A321C9EF59A98DEC3451FDF70B8 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t2D4883EFD3717A321C9EF59A98DEC3451FDF70B8 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Double,System.Int64>
struct ClassPropertyWriter_2_tB4948B25ADBBF4D198306F33E6137667E06C8976 : public PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t4E8F1ED61DDC0554650AFBC5CC56FD8676946CCD * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tB4948B25ADBBF4D198306F33E6137667E06C8976, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tB4948B25ADBBF4D198306F33E6137667E06C8976, ___getter_1)); }
inline Getter_t4E8F1ED61DDC0554650AFBC5CC56FD8676946CCD * get_getter_1() const { return ___getter_1; }
inline Getter_t4E8F1ED61DDC0554650AFBC5CC56FD8676946CCD ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t4E8F1ED61DDC0554650AFBC5CC56FD8676946CCD * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Double,System.String>
struct ClassPropertyWriter_2_tB566CEFF6297969CB7DB5E53F97462FA04F4763D : public PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t80DD6741026703851924BC4D15659AB99BAAFA47 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tB566CEFF6297969CB7DB5E53F97462FA04F4763D, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tB566CEFF6297969CB7DB5E53F97462FA04F4763D, ___getter_1)); }
inline Getter_t80DD6741026703851924BC4D15659AB99BAAFA47 * get_getter_1() const { return ___getter_1; }
inline Getter_t80DD6741026703851924BC4D15659AB99BAAFA47 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t80DD6741026703851924BC4D15659AB99BAAFA47 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Diagnostics.Tracing.EmptyStruct,System.Int32>
struct ClassPropertyWriter_2_t30F13FB2C19E51B35F5A73BEDA3F181639483A6C : public PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t37DF71DBAE0604AA3BA75C19CCA01FECE0CCFB18 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t30F13FB2C19E51B35F5A73BEDA3F181639483A6C, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t30F13FB2C19E51B35F5A73BEDA3F181639483A6C, ___getter_1)); }
inline Getter_t37DF71DBAE0604AA3BA75C19CCA01FECE0CCFB18 * get_getter_1() const { return ___getter_1; }
inline Getter_t37DF71DBAE0604AA3BA75C19CCA01FECE0CCFB18 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t37DF71DBAE0604AA3BA75C19CCA01FECE0CCFB18 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Diagnostics.Tracing.EmptyStruct,System.Int64>
struct ClassPropertyWriter_2_tAE61DA715936A204280D65B60D4EF7E97A53CA13 : public PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t47E4930DA251CC5AF9BDE9CA60279E7B69C1159C * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tAE61DA715936A204280D65B60D4EF7E97A53CA13, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tAE61DA715936A204280D65B60D4EF7E97A53CA13, ___getter_1)); }
inline Getter_t47E4930DA251CC5AF9BDE9CA60279E7B69C1159C * get_getter_1() const { return ___getter_1; }
inline Getter_t47E4930DA251CC5AF9BDE9CA60279E7B69C1159C ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t47E4930DA251CC5AF9BDE9CA60279E7B69C1159C * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Diagnostics.Tracing.EmptyStruct,System.String>
struct ClassPropertyWriter_2_t6D8AC527FFEE61E02A1DDF70A067D10144718CF6 : public PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t232CE618A062A041C722246F7EC5202D76DB7A8C * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t6D8AC527FFEE61E02A1DDF70A067D10144718CF6, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t6D8AC527FFEE61E02A1DDF70A067D10144718CF6, ___getter_1)); }
inline Getter_t232CE618A062A041C722246F7EC5202D76DB7A8C * get_getter_1() const { return ___getter_1; }
inline Getter_t232CE618A062A041C722246F7EC5202D76DB7A8C ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t232CE618A062A041C722246F7EC5202D76DB7A8C * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Guid,System.Int32>
struct ClassPropertyWriter_2_tE81CED90CCA1C354C5A5C24589D75F2FAE7801A1 : public PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tDCE2AB4915C5ECEE1BD892E3D13F2B94E7BC4758 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tE81CED90CCA1C354C5A5C24589D75F2FAE7801A1, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tE81CED90CCA1C354C5A5C24589D75F2FAE7801A1, ___getter_1)); }
inline Getter_tDCE2AB4915C5ECEE1BD892E3D13F2B94E7BC4758 * get_getter_1() const { return ___getter_1; }
inline Getter_tDCE2AB4915C5ECEE1BD892E3D13F2B94E7BC4758 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tDCE2AB4915C5ECEE1BD892E3D13F2B94E7BC4758 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Guid,System.Int64>
struct ClassPropertyWriter_2_tBDFAEBA0D7674084BC9F611F573D55E942B99D4C : public PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tF3976BBF10263994464FEBD9DFA5DE04C1302B3E * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tBDFAEBA0D7674084BC9F611F573D55E942B99D4C, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tBDFAEBA0D7674084BC9F611F573D55E942B99D4C, ___getter_1)); }
inline Getter_tF3976BBF10263994464FEBD9DFA5DE04C1302B3E * get_getter_1() const { return ___getter_1; }
inline Getter_tF3976BBF10263994464FEBD9DFA5DE04C1302B3E ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tF3976BBF10263994464FEBD9DFA5DE04C1302B3E * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Guid,System.String>
struct ClassPropertyWriter_2_tE952D207A01433A0BD8F994DC92F84D69775C913 : public PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t55134A104600D5142C7694EF181F6C00D83EC53D * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tE952D207A01433A0BD8F994DC92F84D69775C913, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tE952D207A01433A0BD8F994DC92F84D69775C913, ___getter_1)); }
inline Getter_t55134A104600D5142C7694EF181F6C00D83EC53D * get_getter_1() const { return ___getter_1; }
inline Getter_t55134A104600D5142C7694EF181F6C00D83EC53D ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t55134A104600D5142C7694EF181F6C00D83EC53D * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int16,System.Int32>
struct ClassPropertyWriter_2_tCFDC526DC431C60747377DBAC6BAE9B6BAEFA88B : public PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tC236FF3CC59BBBEF254BEBF707EA55C444F3CC8B * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tCFDC526DC431C60747377DBAC6BAE9B6BAEFA88B, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tCFDC526DC431C60747377DBAC6BAE9B6BAEFA88B, ___getter_1)); }
inline Getter_tC236FF3CC59BBBEF254BEBF707EA55C444F3CC8B * get_getter_1() const { return ___getter_1; }
inline Getter_tC236FF3CC59BBBEF254BEBF707EA55C444F3CC8B ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tC236FF3CC59BBBEF254BEBF707EA55C444F3CC8B * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int16,System.Int64>
struct ClassPropertyWriter_2_tBA7C5D3D8116DCDF7A4F1D4745818141E3426B0D : public PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t06827863204819F02ECAB7EF32872748C60BA820 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tBA7C5D3D8116DCDF7A4F1D4745818141E3426B0D, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tBA7C5D3D8116DCDF7A4F1D4745818141E3426B0D, ___getter_1)); }
inline Getter_t06827863204819F02ECAB7EF32872748C60BA820 * get_getter_1() const { return ___getter_1; }
inline Getter_t06827863204819F02ECAB7EF32872748C60BA820 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t06827863204819F02ECAB7EF32872748C60BA820 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int16,System.String>
struct ClassPropertyWriter_2_t1A27EDD3A5D2E99CAECE2883BE322824FD51E36A : public PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t26B1BE31C746657E4ED0333F37D92824F7ABE228 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1A27EDD3A5D2E99CAECE2883BE322824FD51E36A, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1A27EDD3A5D2E99CAECE2883BE322824FD51E36A, ___getter_1)); }
inline Getter_t26B1BE31C746657E4ED0333F37D92824F7ABE228 * get_getter_1() const { return ___getter_1; }
inline Getter_t26B1BE31C746657E4ED0333F37D92824F7ABE228 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t26B1BE31C746657E4ED0333F37D92824F7ABE228 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int32,System.Int32>
struct ClassPropertyWriter_2_t2F752F5F01E79860D4BFCF01063D8C55610D1E83 : public PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t1FD99759FE29DBAD9F9658011B2287C541B23DBF * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2F752F5F01E79860D4BFCF01063D8C55610D1E83, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2F752F5F01E79860D4BFCF01063D8C55610D1E83, ___getter_1)); }
inline Getter_t1FD99759FE29DBAD9F9658011B2287C541B23DBF * get_getter_1() const { return ___getter_1; }
inline Getter_t1FD99759FE29DBAD9F9658011B2287C541B23DBF ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t1FD99759FE29DBAD9F9658011B2287C541B23DBF * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int32,System.Int64>
struct ClassPropertyWriter_2_t4F8C396DA0C8A6D2A25B7542748C959EDE574E2E : public PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tC2695AA24715F5F73C89C1E5993B59398EB2586C * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4F8C396DA0C8A6D2A25B7542748C959EDE574E2E, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4F8C396DA0C8A6D2A25B7542748C959EDE574E2E, ___getter_1)); }
inline Getter_tC2695AA24715F5F73C89C1E5993B59398EB2586C * get_getter_1() const { return ___getter_1; }
inline Getter_tC2695AA24715F5F73C89C1E5993B59398EB2586C ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tC2695AA24715F5F73C89C1E5993B59398EB2586C * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int32,System.String>
struct ClassPropertyWriter_2_tC20C29073A558140D346D6DBB5CDCD3DC02BA6C7 : public PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tCD1C825C4C9086D1EB2B294DECB9787780573297 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC20C29073A558140D346D6DBB5CDCD3DC02BA6C7, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC20C29073A558140D346D6DBB5CDCD3DC02BA6C7, ___getter_1)); }
inline Getter_tCD1C825C4C9086D1EB2B294DECB9787780573297 * get_getter_1() const { return ___getter_1; }
inline Getter_tCD1C825C4C9086D1EB2B294DECB9787780573297 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tCD1C825C4C9086D1EB2B294DECB9787780573297 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int64,System.Int32>
struct ClassPropertyWriter_2_t6A8D9240BC3899740B7435CDD20DC393F3CB05C7 : public PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tAF26A1C123A42213E430C101406A8BB1D0668B79 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t6A8D9240BC3899740B7435CDD20DC393F3CB05C7, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t6A8D9240BC3899740B7435CDD20DC393F3CB05C7, ___getter_1)); }
inline Getter_tAF26A1C123A42213E430C101406A8BB1D0668B79 * get_getter_1() const { return ___getter_1; }
inline Getter_tAF26A1C123A42213E430C101406A8BB1D0668B79 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tAF26A1C123A42213E430C101406A8BB1D0668B79 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int64,System.Int64>
struct ClassPropertyWriter_2_t7C1D02DB86939A8F6B558AAEF54531594E287FC0 : public PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tBEFDA7BA43638105CBDEB6F80647386F4D2759E1 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t7C1D02DB86939A8F6B558AAEF54531594E287FC0, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t7C1D02DB86939A8F6B558AAEF54531594E287FC0, ___getter_1)); }
inline Getter_tBEFDA7BA43638105CBDEB6F80647386F4D2759E1 * get_getter_1() const { return ___getter_1; }
inline Getter_tBEFDA7BA43638105CBDEB6F80647386F4D2759E1 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tBEFDA7BA43638105CBDEB6F80647386F4D2759E1 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Int64,System.String>
struct ClassPropertyWriter_2_t4AC6E61C553646779BD3B5D96576F6E42DDE0740 : public PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tBFF00B84F98F38AE04FC98F1F998256E38FD69B6 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4AC6E61C553646779BD3B5D96576F6E42DDE0740, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4AC6E61C553646779BD3B5D96576F6E42DDE0740, ___getter_1)); }
inline Getter_tBFF00B84F98F38AE04FC98F1F998256E38FD69B6 * get_getter_1() const { return ___getter_1; }
inline Getter_tBFF00B84F98F38AE04FC98F1F998256E38FD69B6 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tBFF00B84F98F38AE04FC98F1F998256E38FD69B6 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.IntPtr,System.Int32>
struct ClassPropertyWriter_2_t0C9FF46B37FD6B6109FCFC31B6B571C2188C6776 : public PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t033A6314246EF208F1B035501AAE1C3324D13C84 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t0C9FF46B37FD6B6109FCFC31B6B571C2188C6776, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t0C9FF46B37FD6B6109FCFC31B6B571C2188C6776, ___getter_1)); }
inline Getter_t033A6314246EF208F1B035501AAE1C3324D13C84 * get_getter_1() const { return ___getter_1; }
inline Getter_t033A6314246EF208F1B035501AAE1C3324D13C84 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t033A6314246EF208F1B035501AAE1C3324D13C84 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.IntPtr,System.Int64>
struct ClassPropertyWriter_2_t2E6911F84E5742E801A560BDBBC49886A4A675FC : public PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t98D88E8BC26F327DAF8E3960479CC371C3A256D7 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2E6911F84E5742E801A560BDBBC49886A4A675FC, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t2E6911F84E5742E801A560BDBBC49886A4A675FC, ___getter_1)); }
inline Getter_t98D88E8BC26F327DAF8E3960479CC371C3A256D7 * get_getter_1() const { return ___getter_1; }
inline Getter_t98D88E8BC26F327DAF8E3960479CC371C3A256D7 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t98D88E8BC26F327DAF8E3960479CC371C3A256D7 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.IntPtr,System.String>
struct ClassPropertyWriter_2_t4DDFB2C1340BCD9B2D67B6011FA636B38324D37D : public PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tD8772AC9833C1EDC0756AB11F574AB7825D10661 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4DDFB2C1340BCD9B2D67B6011FA636B38324D37D, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4DDFB2C1340BCD9B2D67B6011FA636B38324D37D, ___getter_1)); }
inline Getter_tD8772AC9833C1EDC0756AB11F574AB7825D10661 * get_getter_1() const { return ___getter_1; }
inline Getter_tD8772AC9833C1EDC0756AB11F574AB7825D10661 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tD8772AC9833C1EDC0756AB11F574AB7825D10661 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Object,System.Int32>
struct ClassPropertyWriter_2_t034C93F5242925EAFCC7186ABB3D0F7EC4B0DA5B : public PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t1D11F3DECE492E86289072691EEC6100A6907291 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t034C93F5242925EAFCC7186ABB3D0F7EC4B0DA5B, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t034C93F5242925EAFCC7186ABB3D0F7EC4B0DA5B, ___getter_1)); }
inline Getter_t1D11F3DECE492E86289072691EEC6100A6907291 * get_getter_1() const { return ___getter_1; }
inline Getter_t1D11F3DECE492E86289072691EEC6100A6907291 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t1D11F3DECE492E86289072691EEC6100A6907291 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Object,System.Int64>
struct ClassPropertyWriter_2_t7B24EF03B89F190F1593F3ED60D12377EC1AF04E : public PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t23B0C3370812C56B1ABEE0B1717747C621D367DC * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t7B24EF03B89F190F1593F3ED60D12377EC1AF04E, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t7B24EF03B89F190F1593F3ED60D12377EC1AF04E, ___getter_1)); }
inline Getter_t23B0C3370812C56B1ABEE0B1717747C621D367DC * get_getter_1() const { return ___getter_1; }
inline Getter_t23B0C3370812C56B1ABEE0B1717747C621D367DC ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t23B0C3370812C56B1ABEE0B1717747C621D367DC * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Object,System.String>
struct ClassPropertyWriter_2_t157216E6F102645DA7CA8FC481D733F40206D03D : public PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tF89D04F8E170A0B10C182333BB00FBC9AA64D586 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t157216E6F102645DA7CA8FC481D733F40206D03D, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t157216E6F102645DA7CA8FC481D733F40206D03D, ___getter_1)); }
inline Getter_tF89D04F8E170A0B10C182333BB00FBC9AA64D586 * get_getter_1() const { return ___getter_1; }
inline Getter_tF89D04F8E170A0B10C182333BB00FBC9AA64D586 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tF89D04F8E170A0B10C182333BB00FBC9AA64D586 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.SByte,System.Int32>
struct ClassPropertyWriter_2_tC00C9009CCD35486E6905494D216EF21B50D5326 : public PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t70AEF3CA04FB9B813CB1F765EA3338118AC27026 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC00C9009CCD35486E6905494D216EF21B50D5326, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC00C9009CCD35486E6905494D216EF21B50D5326, ___getter_1)); }
inline Getter_t70AEF3CA04FB9B813CB1F765EA3338118AC27026 * get_getter_1() const { return ___getter_1; }
inline Getter_t70AEF3CA04FB9B813CB1F765EA3338118AC27026 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t70AEF3CA04FB9B813CB1F765EA3338118AC27026 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.SByte,System.Int64>
struct ClassPropertyWriter_2_t1F8790E8DCDC610FB8186D75E694095382C321A4 : public PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t4396616477F7EBC40858FA69B7BBC8E666A2FBFF * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1F8790E8DCDC610FB8186D75E694095382C321A4, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1F8790E8DCDC610FB8186D75E694095382C321A4, ___getter_1)); }
inline Getter_t4396616477F7EBC40858FA69B7BBC8E666A2FBFF * get_getter_1() const { return ___getter_1; }
inline Getter_t4396616477F7EBC40858FA69B7BBC8E666A2FBFF ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t4396616477F7EBC40858FA69B7BBC8E666A2FBFF * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.SByte,System.String>
struct ClassPropertyWriter_2_t22C11AAC0794EA3FF163E6D122B2BE38597A0F9F : public PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t613F7E00EF69EA343F3354E14D221CD43841D9AD * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t22C11AAC0794EA3FF163E6D122B2BE38597A0F9F, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t22C11AAC0794EA3FF163E6D122B2BE38597A0F9F, ___getter_1)); }
inline Getter_t613F7E00EF69EA343F3354E14D221CD43841D9AD * get_getter_1() const { return ___getter_1; }
inline Getter_t613F7E00EF69EA343F3354E14D221CD43841D9AD ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t613F7E00EF69EA343F3354E14D221CD43841D9AD * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Single,System.Int32>
struct ClassPropertyWriter_2_t20357810B3755BDCE236C0F2C0944CB37FF817BE : public PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t98EAD7BA545AF5818055C7F809BE405AA9F9598F * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t20357810B3755BDCE236C0F2C0944CB37FF817BE, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t20357810B3755BDCE236C0F2C0944CB37FF817BE, ___getter_1)); }
inline Getter_t98EAD7BA545AF5818055C7F809BE405AA9F9598F * get_getter_1() const { return ___getter_1; }
inline Getter_t98EAD7BA545AF5818055C7F809BE405AA9F9598F ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t98EAD7BA545AF5818055C7F809BE405AA9F9598F * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Single,System.Int64>
struct ClassPropertyWriter_2_tA06CD6AD4C3637AAE6C7D80BFA9A01169DBED1B6 : public PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t096A763B4ACF183EF6C9F416ADF863ECB5525792 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tA06CD6AD4C3637AAE6C7D80BFA9A01169DBED1B6, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tA06CD6AD4C3637AAE6C7D80BFA9A01169DBED1B6, ___getter_1)); }
inline Getter_t096A763B4ACF183EF6C9F416ADF863ECB5525792 * get_getter_1() const { return ___getter_1; }
inline Getter_t096A763B4ACF183EF6C9F416ADF863ECB5525792 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t096A763B4ACF183EF6C9F416ADF863ECB5525792 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.Single,System.String>
struct ClassPropertyWriter_2_t9F55D491391F2816BB4EB30ED697DB4F827A6AF5 : public PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tD547F4B9B8D904FEF0F2F7273EBA2A909DD114DB * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t9F55D491391F2816BB4EB30ED697DB4F827A6AF5, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t9F55D491391F2816BB4EB30ED697DB4F827A6AF5, ___getter_1)); }
inline Getter_tD547F4B9B8D904FEF0F2F7273EBA2A909DD114DB * get_getter_1() const { return ___getter_1; }
inline Getter_tD547F4B9B8D904FEF0F2F7273EBA2A909DD114DB ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tD547F4B9B8D904FEF0F2F7273EBA2A909DD114DB * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.TimeSpan,System.Int32>
struct ClassPropertyWriter_2_t1E4DC21046E133D75BD29CD2DDB1FD6062B2164C : public PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t4F6F0ECFD9C064AA23BF4AD68E8D8AF61DB2B434 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1E4DC21046E133D75BD29CD2DDB1FD6062B2164C, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t1E4DC21046E133D75BD29CD2DDB1FD6062B2164C, ___getter_1)); }
inline Getter_t4F6F0ECFD9C064AA23BF4AD68E8D8AF61DB2B434 * get_getter_1() const { return ___getter_1; }
inline Getter_t4F6F0ECFD9C064AA23BF4AD68E8D8AF61DB2B434 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t4F6F0ECFD9C064AA23BF4AD68E8D8AF61DB2B434 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.TimeSpan,System.Int64>
struct ClassPropertyWriter_2_tF24C3C9214C34FB079A0044485630B280A015590 : public PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t715844BC979ED5AE1FEA7165F41F131FB1731995 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tF24C3C9214C34FB079A0044485630B280A015590, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tF24C3C9214C34FB079A0044485630B280A015590, ___getter_1)); }
inline Getter_t715844BC979ED5AE1FEA7165F41F131FB1731995 * get_getter_1() const { return ___getter_1; }
inline Getter_t715844BC979ED5AE1FEA7165F41F131FB1731995 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t715844BC979ED5AE1FEA7165F41F131FB1731995 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.TimeSpan,System.String>
struct ClassPropertyWriter_2_tEE34BB7581582956800E2282ECD16D12BC5B606E : public PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t25B7EEFCE9200A0F7B1DEA2516C8E55F973A43B3 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tEE34BB7581582956800E2282ECD16D12BC5B606E, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tEE34BB7581582956800E2282ECD16D12BC5B606E, ___getter_1)); }
inline Getter_t25B7EEFCE9200A0F7B1DEA2516C8E55F973A43B3 * get_getter_1() const { return ___getter_1; }
inline Getter_t25B7EEFCE9200A0F7B1DEA2516C8E55F973A43B3 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t25B7EEFCE9200A0F7B1DEA2516C8E55F973A43B3 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt16,System.Int32>
struct ClassPropertyWriter_2_t89F57C5C9109599B5E873E3C6A87057E5E84CFD9 : public PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tBD7D9EAC3BCB30C188F58A6BFC84C0254EFFEC3E * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t89F57C5C9109599B5E873E3C6A87057E5E84CFD9, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t89F57C5C9109599B5E873E3C6A87057E5E84CFD9, ___getter_1)); }
inline Getter_tBD7D9EAC3BCB30C188F58A6BFC84C0254EFFEC3E * get_getter_1() const { return ___getter_1; }
inline Getter_tBD7D9EAC3BCB30C188F58A6BFC84C0254EFFEC3E ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tBD7D9EAC3BCB30C188F58A6BFC84C0254EFFEC3E * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt16,System.Int64>
struct ClassPropertyWriter_2_t4CA1BCD97AE0976B7FF75700B5E1B3A6C0CB0790 : public PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t40D511FEC96B5B50C3C73543DE6C3063BA588754 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4CA1BCD97AE0976B7FF75700B5E1B3A6C0CB0790, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t4CA1BCD97AE0976B7FF75700B5E1B3A6C0CB0790, ___getter_1)); }
inline Getter_t40D511FEC96B5B50C3C73543DE6C3063BA588754 * get_getter_1() const { return ___getter_1; }
inline Getter_t40D511FEC96B5B50C3C73543DE6C3063BA588754 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t40D511FEC96B5B50C3C73543DE6C3063BA588754 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt16,System.String>
struct ClassPropertyWriter_2_tC6F266431552C56602322B6FE82DEE021FBDAA53 : public PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tBCE7E33ABEF434C0E1C994C893C77F9D5D209F29 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC6F266431552C56602322B6FE82DEE021FBDAA53, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tC6F266431552C56602322B6FE82DEE021FBDAA53, ___getter_1)); }
inline Getter_tBCE7E33ABEF434C0E1C994C893C77F9D5D209F29 * get_getter_1() const { return ___getter_1; }
inline Getter_tBCE7E33ABEF434C0E1C994C893C77F9D5D209F29 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tBCE7E33ABEF434C0E1C994C893C77F9D5D209F29 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt32,System.Int32>
struct ClassPropertyWriter_2_t057FD76299C818ED36B3F21D2439F7680E696FAE : public PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t9747785F55764C6162657B7B89104E50342A1B2C * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t057FD76299C818ED36B3F21D2439F7680E696FAE, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t057FD76299C818ED36B3F21D2439F7680E696FAE, ___getter_1)); }
inline Getter_t9747785F55764C6162657B7B89104E50342A1B2C * get_getter_1() const { return ___getter_1; }
inline Getter_t9747785F55764C6162657B7B89104E50342A1B2C ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t9747785F55764C6162657B7B89104E50342A1B2C * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt32,System.Int64>
struct ClassPropertyWriter_2_tA410044ACC07B9972A9211342B43ADA4866B2440 : public PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t3C79EDA57B580601D4BC8D84869A7FDC3CEA4B3E * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tA410044ACC07B9972A9211342B43ADA4866B2440, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tA410044ACC07B9972A9211342B43ADA4866B2440, ___getter_1)); }
inline Getter_t3C79EDA57B580601D4BC8D84869A7FDC3CEA4B3E * get_getter_1() const { return ___getter_1; }
inline Getter_t3C79EDA57B580601D4BC8D84869A7FDC3CEA4B3E ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t3C79EDA57B580601D4BC8D84869A7FDC3CEA4B3E * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt32,System.String>
struct ClassPropertyWriter_2_t52BB43825080A7BE9478E30B9A4D0801DBBFF6A7 : public PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tB43971C380EE010343A86C90DC4B5A1C520B48E2 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t52BB43825080A7BE9478E30B9A4D0801DBBFF6A7, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t52BB43825080A7BE9478E30B9A4D0801DBBFF6A7, ___getter_1)); }
inline Getter_tB43971C380EE010343A86C90DC4B5A1C520B48E2 * get_getter_1() const { return ___getter_1; }
inline Getter_tB43971C380EE010343A86C90DC4B5A1C520B48E2 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tB43971C380EE010343A86C90DC4B5A1C520B48E2 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt64,System.Int32>
struct ClassPropertyWriter_2_tE169B905310BAA91F3F5F8D9C609DEBD0D649E95 : public PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t82FF1BF53C7BA7666470122124A6EF50DC42A7A3 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tE169B905310BAA91F3F5F8D9C609DEBD0D649E95, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tE169B905310BAA91F3F5F8D9C609DEBD0D649E95, ___getter_1)); }
inline Getter_t82FF1BF53C7BA7666470122124A6EF50DC42A7A3 * get_getter_1() const { return ___getter_1; }
inline Getter_t82FF1BF53C7BA7666470122124A6EF50DC42A7A3 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t82FF1BF53C7BA7666470122124A6EF50DC42A7A3 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt64,System.Int64>
struct ClassPropertyWriter_2_t8A5885C24696BD3A52E07812D24C5FE07F78941D : public PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t9CE4FC7BFDE1FE4AE588C6F625279566C1A28DE6 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t8A5885C24696BD3A52E07812D24C5FE07F78941D, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t8A5885C24696BD3A52E07812D24C5FE07F78941D, ___getter_1)); }
inline Getter_t9CE4FC7BFDE1FE4AE588C6F625279566C1A28DE6 * get_getter_1() const { return ___getter_1; }
inline Getter_t9CE4FC7BFDE1FE4AE588C6F625279566C1A28DE6 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t9CE4FC7BFDE1FE4AE588C6F625279566C1A28DE6 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UInt64,System.String>
struct ClassPropertyWriter_2_t5CF2F9B0D70BD112BE21AC8E0F54A6DB3A260E9B : public PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t77E240813D83DCFE7ACD7BA448EC8FD211A9E971 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t5CF2F9B0D70BD112BE21AC8E0F54A6DB3A260E9B, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t5CF2F9B0D70BD112BE21AC8E0F54A6DB3A260E9B, ___getter_1)); }
inline Getter_t77E240813D83DCFE7ACD7BA448EC8FD211A9E971 * get_getter_1() const { return ___getter_1; }
inline Getter_t77E240813D83DCFE7ACD7BA448EC8FD211A9E971 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t77E240813D83DCFE7ACD7BA448EC8FD211A9E971 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UIntPtr,System.Int32>
struct ClassPropertyWriter_2_tD1DAF5D385CC8EBCC398D62A71FEC973743EDC97 : public PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_tF02051A3B76548D99F76F1D124DD1B613BDC3642 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tD1DAF5D385CC8EBCC398D62A71FEC973743EDC97, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tC3E216D7BD16AEC469B9ADA1544BF7A54F8F5878 * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tD1DAF5D385CC8EBCC398D62A71FEC973743EDC97, ___getter_1)); }
inline Getter_tF02051A3B76548D99F76F1D124DD1B613BDC3642 * get_getter_1() const { return ___getter_1; }
inline Getter_tF02051A3B76548D99F76F1D124DD1B613BDC3642 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_tF02051A3B76548D99F76F1D124DD1B613BDC3642 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UIntPtr,System.Int64>
struct ClassPropertyWriter_2_tA9C5466708D179695E4A58FE963AEC364C259A80 : public PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t60F864AFBDF48BA7EC15437EE4E7214DA1CB6AC0 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tA9C5466708D179695E4A58FE963AEC364C259A80, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_tF33AC29BBABEE752B432A303BA55EC74658EC78F * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_tA9C5466708D179695E4A58FE963AEC364C259A80, ___getter_1)); }
inline Getter_t60F864AFBDF48BA7EC15437EE4E7214DA1CB6AC0 * get_getter_1() const { return ___getter_1; }
inline Getter_t60F864AFBDF48BA7EC15437EE4E7214DA1CB6AC0 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t60F864AFBDF48BA7EC15437EE4E7214DA1CB6AC0 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Diagnostics.Tracing.ClassPropertyWriter`2<System.UIntPtr,System.String>
struct ClassPropertyWriter_2_t85477C32B73241908B20794F1E82BF9948EF5942 : public PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::valueTypeInfo
TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * ___valueTypeInfo_0;
// System.Diagnostics.Tracing.ClassPropertyWriter`2/Getter<ContainerType,ValueType> System.Diagnostics.Tracing.ClassPropertyWriter`2::getter
Getter_t94F6FDF20BE1EA350E7FBA83A34CB373FC820216 * ___getter_1;
public:
inline static int32_t get_offset_of_valueTypeInfo_0() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t85477C32B73241908B20794F1E82BF9948EF5942, ___valueTypeInfo_0)); }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * get_valueTypeInfo_0() const { return ___valueTypeInfo_0; }
inline TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D ** get_address_of_valueTypeInfo_0() { return &___valueTypeInfo_0; }
inline void set_valueTypeInfo_0(TraceLoggingTypeInfo_1_t5E18E727AF2767C3545A043941582AE57A9CA86D * value)
{
___valueTypeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueTypeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getter_1() { return static_cast<int32_t>(offsetof(ClassPropertyWriter_2_t85477C32B73241908B20794F1E82BF9948EF5942, ___getter_1)); }
inline Getter_t94F6FDF20BE1EA350E7FBA83A34CB373FC820216 * get_getter_1() const { return ___getter_1; }
inline Getter_t94F6FDF20BE1EA350E7FBA83A34CB373FC820216 ** get_address_of_getter_1() { return &___getter_1; }
inline void set_getter_1(Getter_t94F6FDF20BE1EA350E7FBA83A34CB373FC820216 * value)
{
___getter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getter_1), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<Vuforia.CameraMode,System.Int32>
struct EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC : public EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC, ___keySelector_0)); }
inline Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC, ___next_3)); }
inline EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC, ___keys_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_keys_4() const { return ___keys_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<System.Int32,System.Int32>
struct EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F : public EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F, ___keySelector_0)); }
inline Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F, ___next_3)); }
inline EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F, ___keys_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_keys_4() const { return ___keys_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<System.Object,System.Int32>
struct EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B : public EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___keySelector_0)); }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___next_3)); }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___keys_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_keys_4() const { return ___keys_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<System.Object,System.Object>
struct EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 : public EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___keySelector_0)); }
inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___next_3)); }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___keys_4)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_keys_4() const { return ___keys_4; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<UnityEngine.RaycastHit,System.Single>
struct EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB : public EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB, ___keySelector_0)); }
inline Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB, ___next_3)); }
inline EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB, ___keys_4)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_keys_4() const { return ___keys_4; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Collections.Generic.Queue`1/Enumerator<System.Object>
struct Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C
{
public:
// System.Collections.Generic.Queue`1<T> System.Collections.Generic.Queue`1/Enumerator::_q
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ____q_0;
// System.Int32 System.Collections.Generic.Queue`1/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Queue`1/Enumerator::_index
int32_t ____index_2;
// T System.Collections.Generic.Queue`1/Enumerator::_currentElement
RuntimeObject * ____currentElement_3;
public:
inline static int32_t get_offset_of__q_0() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____q_0)); }
inline Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * get__q_0() const { return ____q_0; }
inline Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 ** get_address_of__q_0() { return &____q_0; }
inline void set__q_0(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * value)
{
____q_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____q_0), (void*)value);
}
inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____version_1)); }
inline int32_t get__version_1() const { return ____version_1; }
inline int32_t* get_address_of__version_1() { return &____version_1; }
inline void set__version_1(int32_t value)
{
____version_1 = value;
}
inline static int32_t get_offset_of__index_2() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____index_2)); }
inline int32_t get__index_2() const { return ____index_2; }
inline int32_t* get_address_of__index_2() { return &____index_2; }
inline void set__index_2(int32_t value)
{
____index_2 = value;
}
inline static int32_t get_offset_of__currentElement_3() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____currentElement_3)); }
inline RuntimeObject * get__currentElement_3() const { return ____currentElement_3; }
inline RuntimeObject ** get_address_of__currentElement_3() { return &____currentElement_3; }
inline void set__currentElement_3(RuntimeObject * value)
{
____currentElement_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____currentElement_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>
struct KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
bool ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___value_1)); }
inline bool get_value_1() const { return ___value_1; }
inline bool* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(bool value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct NonGenericProperytWriter_1_t7A0FC10F2A25A4245329CF9FC89E2EB7E23F5734 : public PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t7A0FC10F2A25A4245329CF9FC89E2EB7E23F5734, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t7A0FC10F2A25A4245329CF9FC89E2EB7E23F5734, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Boolean>
struct NonGenericProperytWriter_1_tDDDAD7F4E467A7F979EE2E04272527B7CD3350E6 : public PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tDDDAD7F4E467A7F979EE2E04272527B7CD3350E6, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tDDDAD7F4E467A7F979EE2E04272527B7CD3350E6, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Byte>
struct NonGenericProperytWriter_1_t6D0ACB5AD3FD2D18900F23C47CB6A65FFB886A6C : public PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t6D0ACB5AD3FD2D18900F23C47CB6A65FFB886A6C, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t6D0ACB5AD3FD2D18900F23C47CB6A65FFB886A6C, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Char>
struct NonGenericProperytWriter_1_t63EA1E2FA6F31E7A0631C513A75F319F8EA2E039 : public PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t63EA1E2FA6F31E7A0631C513A75F319F8EA2E039, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t63EA1E2FA6F31E7A0631C513A75F319F8EA2E039, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.DateTime>
struct NonGenericProperytWriter_1_tAACE1D6E1024894B0BA92DDF444B215EA92F58C7 : public PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tAACE1D6E1024894B0BA92DDF444B215EA92F58C7, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tAACE1D6E1024894B0BA92DDF444B215EA92F58C7, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.DateTimeOffset>
struct NonGenericProperytWriter_1_tB67B9B4550D46A983F1531451B2133E6B0C0AE30 : public PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tB67B9B4550D46A983F1531451B2133E6B0C0AE30, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tB67B9B4550D46A983F1531451B2133E6B0C0AE30, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Decimal>
struct NonGenericProperytWriter_1_tA5F10D92375B451BE759462D646C3B4A80553E6F : public PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tA5F10D92375B451BE759462D646C3B4A80553E6F, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tA5F10D92375B451BE759462D646C3B4A80553E6F, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Double>
struct NonGenericProperytWriter_1_tAA12A3CDBFAD2461390298B07F668222AF77323E : public PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tAA12A3CDBFAD2461390298B07F668222AF77323E, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tAA12A3CDBFAD2461390298B07F668222AF77323E, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Diagnostics.Tracing.EmptyStruct>
struct NonGenericProperytWriter_1_t21CD80CF56AD380C457F3E1AC75B3EF0CB4E060F : public PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t21CD80CF56AD380C457F3E1AC75B3EF0CB4E060F, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t21CD80CF56AD380C457F3E1AC75B3EF0CB4E060F, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Guid>
struct NonGenericProperytWriter_1_tF4896FC005696FE37292DF5ECC269C807C443F9D : public PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tF4896FC005696FE37292DF5ECC269C807C443F9D, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tF4896FC005696FE37292DF5ECC269C807C443F9D, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Int16>
struct NonGenericProperytWriter_1_tA01A051F265746E61056A7FE23C725CEA9DF28AD : public PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tA01A051F265746E61056A7FE23C725CEA9DF28AD, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tA01A051F265746E61056A7FE23C725CEA9DF28AD, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Int32>
struct NonGenericProperytWriter_1_tFF1941890ABFE79BD86C5B387620E5BBEA9D22E5 : public PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tFF1941890ABFE79BD86C5B387620E5BBEA9D22E5, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tFF1941890ABFE79BD86C5B387620E5BBEA9D22E5, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Int64>
struct NonGenericProperytWriter_1_t65514CFCC998D5B4A85A57CDF0DA8DF3EB55746C : public PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t65514CFCC998D5B4A85A57CDF0DA8DF3EB55746C, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t65514CFCC998D5B4A85A57CDF0DA8DF3EB55746C, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.IntPtr>
struct NonGenericProperytWriter_1_tD4CF2A5C8363E9873B3F661D1851A80805D12F1C : public PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tD4CF2A5C8363E9873B3F661D1851A80805D12F1C, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tD4CF2A5C8363E9873B3F661D1851A80805D12F1C, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Object>
struct NonGenericProperytWriter_1_t20ACCEDE83D8C0A6F23ABD6FB345A862B05E9960 : public PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t20ACCEDE83D8C0A6F23ABD6FB345A862B05E9960, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t20ACCEDE83D8C0A6F23ABD6FB345A862B05E9960, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.SByte>
struct NonGenericProperytWriter_1_t0FC71C381941C039562B8AF5743A4E2C0AF20560 : public PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t0FC71C381941C039562B8AF5743A4E2C0AF20560, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t0FC71C381941C039562B8AF5743A4E2C0AF20560, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.Single>
struct NonGenericProperytWriter_1_t48C561BDC2B801C0966CF6283AE9B27607BE672F : public PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t48C561BDC2B801C0966CF6283AE9B27607BE672F, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t48C561BDC2B801C0966CF6283AE9B27607BE672F, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.TimeSpan>
struct NonGenericProperytWriter_1_tA5DDFE59ADE43F456123F01099754D2FFF59126C : public PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tA5DDFE59ADE43F456123F01099754D2FFF59126C, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tA5DDFE59ADE43F456123F01099754D2FFF59126C, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.UInt16>
struct NonGenericProperytWriter_1_tC0A91768BBDF47A61312AC7A626D4EC2C2FFAEDD : public PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tC0A91768BBDF47A61312AC7A626D4EC2C2FFAEDD, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tC0A91768BBDF47A61312AC7A626D4EC2C2FFAEDD, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.UInt32>
struct NonGenericProperytWriter_1_tE0FE4488BCB9E99453A8F92F2FB7C897DEAA6242 : public PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tE0FE4488BCB9E99453A8F92F2FB7C897DEAA6242, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_tE0FE4488BCB9E99453A8F92F2FB7C897DEAA6242, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.UInt64>
struct NonGenericProperytWriter_1_t27098BA6601CE21300B7FB748FAD9F318C274039 : public PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t27098BA6601CE21300B7FB748FAD9F318C274039, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t27098BA6601CE21300B7FB748FAD9F318C274039, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Diagnostics.Tracing.NonGenericProperytWriter`1<System.UIntPtr>
struct NonGenericProperytWriter_1_t192AF6D36935C379274DD39DB70CE6F58377A053 : public PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::typeInfo
TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * ___typeInfo_0;
// System.Reflection.MethodInfo System.Diagnostics.Tracing.NonGenericProperytWriter`1::getterInfo
MethodInfo_t * ___getterInfo_1;
public:
inline static int32_t get_offset_of_typeInfo_0() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t192AF6D36935C379274DD39DB70CE6F58377A053, ___typeInfo_0)); }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * get_typeInfo_0() const { return ___typeInfo_0; }
inline TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE ** get_address_of_typeInfo_0() { return &___typeInfo_0; }
inline void set_typeInfo_0(TraceLoggingTypeInfo_t1A7BD5C2E0BF5D1AC23EEE6C22D724CBAA91CDDE * value)
{
___typeInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_0), (void*)value);
}
inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(NonGenericProperytWriter_1_t192AF6D36935C379274DD39DB70CE6F58377A053, ___getterInfo_1)); }
inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; }
inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; }
inline void set_getterInfo_1(MethodInfo_t * value)
{
___getterInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value);
}
};
// System.Nullable`1<System.UInt32>
struct Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9
{
public:
// T System.Nullable`1::value
uint32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9, ___value_0)); }
inline uint32_t get_value_0() const { return ___value_0; }
inline uint32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(uint32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.UInt64>
struct Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C
{
public:
// T System.Nullable`1::value
uint64_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C, ___value_0)); }
inline uint64_t get_value_0() const { return ___value_0; }
inline uint64_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(uint64_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A : public Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C : public Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC : public Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817 : public Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7 : public Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E : public Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Byte>
struct ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834 : public Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<Vuforia.CameraMode>
struct ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3 : public Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Char>
struct ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8 : public Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>
struct ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006 : public Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Collections.DictionaryEntry>
struct ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7 : public Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Double>
struct ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A : public Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Guid>
struct ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7 : public Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Int32>
struct ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795 : public Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Int32Enum>
struct ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F : public Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.IntPtr>
struct ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4 : public Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA : public Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D : public Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Object>
struct ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C : public Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Pose>
struct ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28 : public Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>
struct ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D : public Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit2D>
struct ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6 : public Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>
struct ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124 : public Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Single>
struct ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA : public Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>
struct ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711 : public Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>
struct ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF : public Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>
struct ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87 : public Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.UInt64>
struct ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129 : public Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>
struct ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71 : public Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>
struct ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1 : public Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89 : public Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>
struct ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E : public Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>
struct ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B : public Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/VideoModeData>
struct ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24 : public Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2 : public Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3 : public Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>
struct ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780 : public Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C : public Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5 : public Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 : public EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 : public EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 : public EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB : public EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>
struct ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 : public EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>
struct ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 : public EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>
struct ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD : public EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>
struct ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA : public EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Char>
struct ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 : public EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>
struct ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 : public EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>
struct ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 : public EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>
struct ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 : public EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Double>
struct ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 : public EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>
struct ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 : public EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>
struct ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC : public EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>
struct ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC : public EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>
struct ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE : public EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 : public EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 : public EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>
struct ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F : public EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>
struct ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A : public EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Object>
struct ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 : public EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>
struct ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D : public EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>
struct ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 : public EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>
struct ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 : public EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>
struct ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F : public EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>
struct ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 : public EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Single>
struct ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C : public EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>
struct ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 : public EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>
struct ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A : public EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>
struct ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 : public EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>
struct ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 : public EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>
struct ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 : public EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>
struct ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C : public EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>
struct ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D : public EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>
struct ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 : public EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 : public EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>
struct ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB : public EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>
struct ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 : public EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>
struct ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 : public EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>
struct ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 : public EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>
struct ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 : public EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 : public EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B : public EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>
struct ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 : public EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>
struct ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F : public EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>
struct ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A : public EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC : public EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>
struct ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E : public EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>
struct ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 : public EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7
{
public:
public:
};
// System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>
struct ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 : public EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5
{
public:
public:
};
// System.Linq.OrderedEnumerable`2<Vuforia.CameraMode,System.Int32>
struct OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 : public OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432
{
public:
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent
OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * ___parent_1;
// System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector
Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * ___keySelector_2;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer
RuntimeObject* ___comparer_3;
// System.Boolean System.Linq.OrderedEnumerable`2::descending
bool ___descending_4;
public:
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27, ___parent_1)); }
inline OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * get_parent_1() const { return ___parent_1; }
inline OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 ** get_address_of_parent_1() { return &___parent_1; }
inline void set_parent_1(OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * value)
{
___parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
}
inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27, ___keySelector_2)); }
inline Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * get_keySelector_2() const { return ___keySelector_2; }
inline Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C ** get_address_of_keySelector_2() { return &___keySelector_2; }
inline void set_keySelector_2(Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * value)
{
___keySelector_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value);
}
inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27, ___descending_4)); }
inline bool get_descending_4() const { return ___descending_4; }
inline bool* get_address_of_descending_4() { return &___descending_4; }
inline void set_descending_4(bool value)
{
___descending_4 = value;
}
};
// System.Linq.OrderedEnumerable`2<System.Int32,System.Int32>
struct OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C : public OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE
{
public:
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent
OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * ___parent_1;
// System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector
Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * ___keySelector_2;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer
RuntimeObject* ___comparer_3;
// System.Boolean System.Linq.OrderedEnumerable`2::descending
bool ___descending_4;
public:
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C, ___parent_1)); }
inline OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * get_parent_1() const { return ___parent_1; }
inline OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE ** get_address_of_parent_1() { return &___parent_1; }
inline void set_parent_1(OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * value)
{
___parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
}
inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C, ___keySelector_2)); }
inline Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * get_keySelector_2() const { return ___keySelector_2; }
inline Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA ** get_address_of_keySelector_2() { return &___keySelector_2; }
inline void set_keySelector_2(Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * value)
{
___keySelector_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value);
}
inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C, ___descending_4)); }
inline bool get_descending_4() const { return ___descending_4; }
inline bool* get_address_of_descending_4() { return &___descending_4; }
inline void set_descending_4(bool value)
{
___descending_4 = value;
}
};
// System.Linq.OrderedEnumerable`2<System.Object,System.Int32>
struct OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 : public OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F
{
public:
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent
OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * ___parent_1;
// System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___keySelector_2;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer
RuntimeObject* ___comparer_3;
// System.Boolean System.Linq.OrderedEnumerable`2::descending
bool ___descending_4;
public:
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43, ___parent_1)); }
inline OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * get_parent_1() const { return ___parent_1; }
inline OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F ** get_address_of_parent_1() { return &___parent_1; }
inline void set_parent_1(OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * value)
{
___parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
}
inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43, ___keySelector_2)); }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get_keySelector_2() const { return ___keySelector_2; }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of_keySelector_2() { return &___keySelector_2; }
inline void set_keySelector_2(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value)
{
___keySelector_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value);
}
inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43, ___descending_4)); }
inline bool get_descending_4() const { return ___descending_4; }
inline bool* get_address_of_descending_4() { return &___descending_4; }
inline void set_descending_4(bool value)
{
___descending_4 = value;
}
};
// System.Linq.OrderedEnumerable`2<System.Object,System.Object>
struct OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA : public OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F
{
public:
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent
OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * ___parent_1;
// System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___keySelector_2;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer
RuntimeObject* ___comparer_3;
// System.Boolean System.Linq.OrderedEnumerable`2::descending
bool ___descending_4;
public:
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA, ___parent_1)); }
inline OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * get_parent_1() const { return ___parent_1; }
inline OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F ** get_address_of_parent_1() { return &___parent_1; }
inline void set_parent_1(OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * value)
{
___parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
}
inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA, ___keySelector_2)); }
inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * get_keySelector_2() const { return ___keySelector_2; }
inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 ** get_address_of_keySelector_2() { return &___keySelector_2; }
inline void set_keySelector_2(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * value)
{
___keySelector_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value);
}
inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA, ___descending_4)); }
inline bool get_descending_4() const { return ___descending_4; }
inline bool* get_address_of_descending_4() { return &___descending_4; }
inline void set_descending_4(bool value)
{
___descending_4 = value;
}
};
// System.Linq.OrderedEnumerable`2<UnityEngine.RaycastHit,System.Single>
struct OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A : public OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB
{
public:
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent
OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * ___parent_1;
// System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector
Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * ___keySelector_2;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer
RuntimeObject* ___comparer_3;
// System.Boolean System.Linq.OrderedEnumerable`2::descending
bool ___descending_4;
public:
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A, ___parent_1)); }
inline OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * get_parent_1() const { return ___parent_1; }
inline OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB ** get_address_of_parent_1() { return &___parent_1; }
inline void set_parent_1(OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * value)
{
___parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
}
inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A, ___keySelector_2)); }
inline Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * get_keySelector_2() const { return ___keySelector_2; }
inline Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A ** get_address_of_keySelector_2() { return &___keySelector_2; }
inline void set_keySelector_2(Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * value)
{
___keySelector_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value);
}
inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A, ___descending_4)); }
inline bool get_descending_4() const { return ___descending_4; }
inline bool* get_address_of_descending_4() { return &___descending_4; }
inline void set_descending_4(bool value)
{
___descending_4 = value;
}
};
// System.Runtime.CompilerServices.TrueReadOnlyCollection`1<System.Object>
struct TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A : public ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3
{
public:
public:
};
// System.ValueTuple`2<System.Object,System.Object>
struct ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403
{
public:
// T1 System.ValueTuple`2::Item1
RuntimeObject * ___Item1_0;
// T2 System.ValueTuple`2::Item2
RuntimeObject * ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item1_0)); }
inline RuntimeObject * get_Item1_0() const { return ___Item1_0; }
inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(RuntimeObject * value)
{
___Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item2_1)); }
inline RuntimeObject * get_Item2_1() const { return ___Item2_1; }
inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(RuntimeObject * value)
{
___Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value);
}
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
{
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_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___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;
}
};
// Vuforia.CameraMode
#pragma pack(push, tp, 1)
struct CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B
{
public:
// System.Int32 Vuforia.CameraMode::Width
int32_t ___Width_0;
// System.Int32 Vuforia.CameraMode::Height
int32_t ___Height_1;
// System.Int32 Vuforia.CameraMode::Fps
int32_t ___Fps_2;
// System.Int32 Vuforia.CameraMode::Format
int32_t ___Format_3;
public:
inline static int32_t get_offset_of_Width_0() { return static_cast<int32_t>(offsetof(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B, ___Width_0)); }
inline int32_t get_Width_0() const { return ___Width_0; }
inline int32_t* get_address_of_Width_0() { return &___Width_0; }
inline void set_Width_0(int32_t value)
{
___Width_0 = value;
}
inline static int32_t get_offset_of_Height_1() { return static_cast<int32_t>(offsetof(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B, ___Height_1)); }
inline int32_t get_Height_1() const { return ___Height_1; }
inline int32_t* get_address_of_Height_1() { return &___Height_1; }
inline void set_Height_1(int32_t value)
{
___Height_1 = value;
}
inline static int32_t get_offset_of_Fps_2() { return static_cast<int32_t>(offsetof(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B, ___Fps_2)); }
inline int32_t get_Fps_2() const { return ___Fps_2; }
inline int32_t* get_address_of_Fps_2() { return &___Fps_2; }
inline void set_Fps_2(int32_t value)
{
___Fps_2 = value;
}
inline static int32_t get_offset_of_Format_3() { return static_cast<int32_t>(offsetof(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B, ___Format_3)); }
inline int32_t get_Format_3() const { return ___Format_3; }
inline int32_t* get_address_of_Format_3() { return &___Format_3; }
inline void set_Format_3(int32_t value)
{
___Format_3 = value;
}
};
#pragma pack(pop, tp)
// System.Char
struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14
{
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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// UnityEngine.Color
struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.Color32
struct Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910
{
public:
// System.Type System.Reflection.CustomAttributeTypedArgument::argumentType
Type_t * ___argumentType_0;
// System.Object System.Reflection.CustomAttributeTypedArgument::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// System.DateTime
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405
{
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_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MaxValue_32 = value;
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Double
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
{
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_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
};
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Linq.Expressions.Interpreter.InterpretedFrameInfo
struct InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7
{
public:
// System.String System.Linq.Expressions.Interpreter.InterpretedFrameInfo::_methodName
String_t* ____methodName_0;
// System.Linq.Expressions.Interpreter.DebugInfo System.Linq.Expressions.Interpreter.InterpretedFrameInfo::_debugInfo
DebugInfo_t2FD37DEB5529C6813FAD30E67627B4CEFE8033AC * ____debugInfo_1;
public:
inline static int32_t get_offset_of__methodName_0() { return static_cast<int32_t>(offsetof(InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7, ____methodName_0)); }
inline String_t* get__methodName_0() const { return ____methodName_0; }
inline String_t** get_address_of__methodName_0() { return &____methodName_0; }
inline void set__methodName_0(String_t* value)
{
____methodName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodName_0), (void*)value);
}
inline static int32_t get_offset_of__debugInfo_1() { return static_cast<int32_t>(offsetof(InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7, ____debugInfo_1)); }
inline DebugInfo_t2FD37DEB5529C6813FAD30E67627B4CEFE8033AC * get__debugInfo_1() const { return ____debugInfo_1; }
inline DebugInfo_t2FD37DEB5529C6813FAD30E67627B4CEFE8033AC ** get_address_of__debugInfo_1() { return &____debugInfo_1; }
inline void set__debugInfo_1(DebugInfo_t2FD37DEB5529C6813FAD30E67627B4CEFE8033AC * value)
{
____debugInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____debugInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Linq.Expressions.Interpreter.InterpretedFrameInfo
struct InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7_marshaled_pinvoke
{
char* ____methodName_0;
DebugInfo_t2FD37DEB5529C6813FAD30E67627B4CEFE8033AC * ____debugInfo_1;
};
// Native definition for COM marshalling of System.Linq.Expressions.Interpreter.InterpretedFrameInfo
struct InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7_marshaled_com
{
Il2CppChar* ____methodName_0;
DebugInfo_t2FD37DEB5529C6813FAD30E67627B4CEFE8033AC * ____debugInfo_1;
};
// UnityEngine.Matrix4x4
struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___identityMatrix_17 = value;
}
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
// System.Linq.Expressions.ParameterExpression
struct ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE : public Expression_t30A004209C10C2D9A9785B2F74EEED431A4D4660
{
public:
// System.String System.Linq.Expressions.ParameterExpression::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE, ___U3CNameU3Ek__BackingField_3)); }
inline String_t* get_U3CNameU3Ek__BackingField_3() const { return ___U3CNameU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CNameU3Ek__BackingField_3() { return &___U3CNameU3Ek__BackingField_3; }
inline void set_U3CNameU3Ek__BackingField_3(String_t* value)
{
___U3CNameU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.Quaternion
struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___identityQuaternion_4 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey
struct ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873
{
public:
// System.Type Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey::_resolverType
Type_t * ____resolverType_0;
// System.Type Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey::_contractType
Type_t * ____contractType_1;
public:
inline static int32_t get_offset_of__resolverType_0() { return static_cast<int32_t>(offsetof(ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873, ____resolverType_0)); }
inline Type_t * get__resolverType_0() const { return ____resolverType_0; }
inline Type_t ** get_address_of__resolverType_0() { return &____resolverType_0; }
inline void set__resolverType_0(Type_t * value)
{
____resolverType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resolverType_0), (void*)value);
}
inline static int32_t get_offset_of__contractType_1() { return static_cast<int32_t>(offsetof(ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873, ____contractType_1)); }
inline Type_t * get__contractType_1() const { return ____contractType_1; }
inline Type_t ** get_address_of__contractType_1() { return &____contractType_1; }
inline void set__contractType_1(Type_t * value)
{
____contractType_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____contractType_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey
struct ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873_marshaled_pinvoke
{
Type_t * ____resolverType_0;
Type_t * ____contractType_1;
};
// Native definition for COM marshalling of Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey
struct ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873_marshaled_com
{
Type_t * ____resolverType_0;
Type_t * ____contractType_1;
};
// System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11
{
public:
// System.Object System.Resources.ResourceLocator::_value
RuntimeObject * ____value_0;
// System.Int32 System.Resources.ResourceLocator::_dataPos
int32_t ____dataPos_1;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____value_0)); }
inline RuntimeObject * get__value_0() const { return ____value_0; }
inline RuntimeObject ** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(RuntimeObject * value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____dataPos_1)); }
inline int32_t get__dataPos_1() const { return ____dataPos_1; }
inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; }
inline void set__dataPos_1(int32_t value)
{
____dataPos_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// System.Single
struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// UnityEngine.UI.SpriteState
struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_HighlightedSprite_0)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_PressedSprite_1)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_SelectedSprite_2)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_DisabledSprite_3)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_pinvoke
{
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_com
{
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3;
};
// UnityEngine.UILineInfo
struct UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
// System.UInt16
struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD
{
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_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___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_tE60352A06233E4E69DD198BCC67142159F686B15
{
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_tE60352A06233E4E69DD198BCC67142159F686B15, ___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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
{
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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___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;
}
};
// UnityEngine.Vector2
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___negativeInfinityVector_8 = value;
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback
UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___callback_1)); }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_callback_1() const { return ___callback_1; }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Vuforia.CameraDevice/VideoModeData
#pragma pack(push, tp, 1)
struct VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA
{
public:
// System.Int32 Vuforia.CameraDevice/VideoModeData::width
int32_t ___width_0;
// System.Int32 Vuforia.CameraDevice/VideoModeData::height
int32_t ___height_1;
// System.Single Vuforia.CameraDevice/VideoModeData::frameRate
float ___frameRate_2;
// System.Int32 Vuforia.CameraDevice/VideoModeData::format
int32_t ___format_3;
public:
inline static int32_t get_offset_of_width_0() { return static_cast<int32_t>(offsetof(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA, ___width_0)); }
inline int32_t get_width_0() const { return ___width_0; }
inline int32_t* get_address_of_width_0() { return &___width_0; }
inline void set_width_0(int32_t value)
{
___width_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_frameRate_2() { return static_cast<int32_t>(offsetof(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA, ___frameRate_2)); }
inline float get_frameRate_2() const { return ___frameRate_2; }
inline float* get_address_of_frameRate_2() { return &___frameRate_2; }
inline void set_frameRate_2(float value)
{
___frameRate_2 = value;
}
inline static int32_t get_offset_of_format_3() { return static_cast<int32_t>(offsetof(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA, ___format_3)); }
inline int32_t get_format_3() const { return ___format_3; }
inline int32_t* get_address_of_format_3() { return &___format_3; }
inline void set_format_3(int32_t value)
{
___format_3 = value;
}
};
#pragma pack(pop, tp)
// Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey
struct TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C
{
public:
// System.Type Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::_initialType
Type_t * ____initialType_0;
// System.Type Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::_targetType
Type_t * ____targetType_1;
public:
inline static int32_t get_offset_of__initialType_0() { return static_cast<int32_t>(offsetof(TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C, ____initialType_0)); }
inline Type_t * get__initialType_0() const { return ____initialType_0; }
inline Type_t ** get_address_of__initialType_0() { return &____initialType_0; }
inline void set__initialType_0(Type_t * value)
{
____initialType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____initialType_0), (void*)value);
}
inline static int32_t get_offset_of__targetType_1() { return static_cast<int32_t>(offsetof(TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C, ____targetType_1)); }
inline Type_t * get__targetType_1() const { return ____targetType_1; }
inline Type_t ** get_address_of__targetType_1() { return &____targetType_1; }
inline void set__targetType_1(Type_t * value)
{
____targetType_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetType_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey
struct TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C_marshaled_pinvoke
{
Type_t * ____initialType_0;
Type_t * ____targetType_1;
};
// Native definition for COM marshalling of Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey
struct TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C_marshaled_com
{
Type_t * ____initialType_0;
Type_t * ____targetType_1;
};
// Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
struct TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00
{
public:
// System.String Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::AssemblyName
String_t* ___AssemblyName_0;
// System.String Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::TypeName
String_t* ___TypeName_1;
public:
inline static int32_t get_offset_of_AssemblyName_0() { return static_cast<int32_t>(offsetof(TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00, ___AssemblyName_0)); }
inline String_t* get_AssemblyName_0() const { return ___AssemblyName_0; }
inline String_t** get_address_of_AssemblyName_0() { return &___AssemblyName_0; }
inline void set_AssemblyName_0(String_t* value)
{
___AssemblyName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeName_1() { return static_cast<int32_t>(offsetof(TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00, ___TypeName_1)); }
inline String_t* get_TypeName_1() const { return ___TypeName_1; }
inline String_t** get_address_of_TypeName_1() { return &___TypeName_1; }
inline void set_TypeName_1(String_t* value)
{
___TypeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeName_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
struct TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00_marshaled_pinvoke
{
char* ___AssemblyName_0;
char* ___TypeName_1;
};
// Native definition for COM marshalling of Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
struct TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00_marshaled_com
{
Il2CppChar* ___AssemblyName_0;
Il2CppChar* ___TypeName_1;
};
// System.Diagnostics.Tracing.EventProvider/SessionInfo
struct SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7
{
public:
// System.Int32 System.Diagnostics.Tracing.EventProvider/SessionInfo::sessionIdBit
int32_t ___sessionIdBit_0;
// System.Int32 System.Diagnostics.Tracing.EventProvider/SessionInfo::etwSessionId
int32_t ___etwSessionId_1;
public:
inline static int32_t get_offset_of_sessionIdBit_0() { return static_cast<int32_t>(offsetof(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7, ___sessionIdBit_0)); }
inline int32_t get_sessionIdBit_0() const { return ___sessionIdBit_0; }
inline int32_t* get_address_of_sessionIdBit_0() { return &___sessionIdBit_0; }
inline void set_sessionIdBit_0(int32_t value)
{
___sessionIdBit_0 = value;
}
inline static int32_t get_offset_of_etwSessionId_1() { return static_cast<int32_t>(offsetof(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7, ___etwSessionId_1)); }
inline int32_t get_etwSessionId_1() const { return ___etwSessionId_1; }
inline int32_t* get_address_of_etwSessionId_1() { return &___etwSessionId_1; }
inline void set_etwSessionId_1(int32_t value)
{
___etwSessionId_1 = value;
}
};
// Vuforia.RawPtrVideoTextureUpdater/TextureData
struct TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8
{
public:
// UnityEngine.Texture2D Vuforia.RawPtrVideoTextureUpdater/TextureData::Texture
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___Texture_0;
// System.Int32 Vuforia.RawPtrVideoTextureUpdater/TextureData::BufferLength
int32_t ___BufferLength_1;
public:
inline static int32_t get_offset_of_Texture_0() { return static_cast<int32_t>(offsetof(TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8, ___Texture_0)); }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_Texture_0() const { return ___Texture_0; }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_Texture_0() { return &___Texture_0; }
inline void set_Texture_0(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value)
{
___Texture_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Texture_0), (void*)value);
}
inline static int32_t get_offset_of_BufferLength_1() { return static_cast<int32_t>(offsetof(TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8, ___BufferLength_1)); }
inline int32_t get_BufferLength_1() const { return ___BufferLength_1; }
inline int32_t* get_address_of_BufferLength_1() { return &___BufferLength_1; }
inline void set_BufferLength_1(int32_t value)
{
___BufferLength_1 = value;
}
};
// Native definition for P/Invoke marshalling of Vuforia.RawPtrVideoTextureUpdater/TextureData
struct TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8_marshaled_pinvoke
{
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___Texture_0;
int32_t ___BufferLength_1;
};
// Native definition for COM marshalling of Vuforia.RawPtrVideoTextureUpdater/TextureData
struct TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8_marshaled_com
{
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___Texture_0;
int32_t ___BufferLength_1;
};
// Vuforia.TrackerData/VirtualButtonData
#pragma pack(push, tp, 1)
struct VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545
{
public:
// System.Int32 Vuforia.TrackerData/VirtualButtonData::id
int32_t ___id_0;
// System.Int32 Vuforia.TrackerData/VirtualButtonData::isPressed
int32_t ___isPressed_1;
public:
inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545, ___id_0)); }
inline int32_t get_id_0() const { return ___id_0; }
inline int32_t* get_address_of_id_0() { return &___id_0; }
inline void set_id_0(int32_t value)
{
___id_0 = value;
}
inline static int32_t get_offset_of_isPressed_1() { return static_cast<int32_t>(offsetof(VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545, ___isPressed_1)); }
inline int32_t get_isPressed_1() const { return ___isPressed_1; }
inline int32_t* get_address_of_isPressed_1() { return &___isPressed_1; }
inline void set_isPressed_1(int32_t value)
{
___isPressed_1 = value;
}
};
#pragma pack(pop, tp)
// UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback
SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_WaitHandle_2)); }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
};
// Vuforia.VuforiaManager/TrackableIdPair
struct TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB
{
public:
// System.Int32 Vuforia.VuforiaManager/TrackableIdPair::TrackableId
int32_t ___TrackableId_0;
// System.Int32 Vuforia.VuforiaManager/TrackableIdPair::ResultId
int32_t ___ResultId_1;
public:
inline static int32_t get_offset_of_TrackableId_0() { return static_cast<int32_t>(offsetof(TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB, ___TrackableId_0)); }
inline int32_t get_TrackableId_0() const { return ___TrackableId_0; }
inline int32_t* get_address_of_TrackableId_0() { return &___TrackableId_0; }
inline void set_TrackableId_0(int32_t value)
{
___TrackableId_0 = value;
}
inline static int32_t get_offset_of_ResultId_1() { return static_cast<int32_t>(offsetof(TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB, ___ResultId_1)); }
inline int32_t get_ResultId_1() const { return ___ResultId_1; }
inline int32_t* get_address_of_ResultId_1() { return &___ResultId_1; }
inline void set_ResultId_1(int32_t value)
{
___ResultId_1 = value;
}
};
// Vuforia.VuforiaRenderer/Vec2I
#pragma pack(push, tp, 1)
struct Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6
{
public:
// System.Int32 Vuforia.VuforiaRenderer/Vec2I::x
int32_t ___x_0;
// System.Int32 Vuforia.VuforiaRenderer/Vec2I::y
int32_t ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6, ___x_0)); }
inline int32_t get_x_0() const { return ___x_0; }
inline int32_t* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(int32_t value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6, ___y_1)); }
inline int32_t get_y_1() const { return ___y_1; }
inline int32_t* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(int32_t value)
{
___y_1 = value;
}
};
#pragma pack(pop, tp)
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord
struct TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901
{
public:
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord::tileX
int32_t ___tileX_0;
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord::tileZ
int32_t ___tileZ_1;
public:
inline static int32_t get_offset_of_tileX_0() { return static_cast<int32_t>(offsetof(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901, ___tileX_0)); }
inline int32_t get_tileX_0() const { return ___tileX_0; }
inline int32_t* get_address_of_tileX_0() { return &___tileX_0; }
inline void set_tileX_0(int32_t value)
{
___tileX_0 = value;
}
inline static int32_t get_offset_of_tileZ_1() { return static_cast<int32_t>(offsetof(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901, ___tileZ_1)); }
inline int32_t get_tileZ_1() const { return ___tileZ_1; }
inline int32_t* get_address_of_tileZ_1() { return &___tileZ_1; }
inline void set_tileZ_1(int32_t value)
{
___tileZ_1 = value;
}
};
// System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1<Vuforia.CameraMode>
struct U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2 : public RuntimeObject
{
public:
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>1__state
int32_t ___U3CU3E1__state_0;
// TElement System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>2__current
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___U3CU3E2__current_1;
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>4__this
OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * ___U3CU3E4__this_2;
// System.Linq.Buffer`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<buffer>5__1
Buffer_1_tE8598DE8EC1401C54DE5B7B35D4B973F0129E40F ___U3CbufferU3E5__1_3;
// System.Int32[] System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<map>5__2
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___U3CmapU3E5__2_4;
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<i>5__3
int32_t ___U3CiU3E5__3_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2, ___U3CU3E2__current_1)); }
inline CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B value)
{
___U3CU3E2__current_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2, ___U3CU3E4__this_2)); }
inline OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CbufferU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2, ___U3CbufferU3E5__1_3)); }
inline Buffer_1_tE8598DE8EC1401C54DE5B7B35D4B973F0129E40F get_U3CbufferU3E5__1_3() const { return ___U3CbufferU3E5__1_3; }
inline Buffer_1_tE8598DE8EC1401C54DE5B7B35D4B973F0129E40F * get_address_of_U3CbufferU3E5__1_3() { return &___U3CbufferU3E5__1_3; }
inline void set_U3CbufferU3E5__1_3(Buffer_1_tE8598DE8EC1401C54DE5B7B35D4B973F0129E40F value)
{
___U3CbufferU3E5__1_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CbufferU3E5__1_3))->___items_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CmapU3E5__2_4() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2, ___U3CmapU3E5__2_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_U3CmapU3E5__2_4() const { return ___U3CmapU3E5__2_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_U3CmapU3E5__2_4() { return &___U3CmapU3E5__2_4; }
inline void set_U3CmapU3E5__2_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___U3CmapU3E5__2_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmapU3E5__2_4), (void*)value);
}
inline static int32_t get_offset_of_U3CiU3E5__3_5() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2, ___U3CiU3E5__3_5)); }
inline int32_t get_U3CiU3E5__3_5() const { return ___U3CiU3E5__3_5; }
inline int32_t* get_address_of_U3CiU3E5__3_5() { return &___U3CiU3E5__3_5; }
inline void set_U3CiU3E5__3_5(int32_t value)
{
___U3CiU3E5__3_5 = value;
}
};
// System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1<System.Int32>
struct U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0 : public RuntimeObject
{
public:
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>1__state
int32_t ___U3CU3E1__state_0;
// TElement System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>2__current
int32_t ___U3CU3E2__current_1;
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>4__this
OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * ___U3CU3E4__this_2;
// System.Linq.Buffer`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<buffer>5__1
Buffer_1_t087969E39A0FFD1A50B5A885FC6FBFEA235A7395 ___U3CbufferU3E5__1_3;
// System.Int32[] System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<map>5__2
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___U3CmapU3E5__2_4;
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<i>5__3
int32_t ___U3CiU3E5__3_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0, ___U3CU3E2__current_1)); }
inline int32_t get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline int32_t* get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(int32_t value)
{
___U3CU3E2__current_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0, ___U3CU3E4__this_2)); }
inline OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CbufferU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0, ___U3CbufferU3E5__1_3)); }
inline Buffer_1_t087969E39A0FFD1A50B5A885FC6FBFEA235A7395 get_U3CbufferU3E5__1_3() const { return ___U3CbufferU3E5__1_3; }
inline Buffer_1_t087969E39A0FFD1A50B5A885FC6FBFEA235A7395 * get_address_of_U3CbufferU3E5__1_3() { return &___U3CbufferU3E5__1_3; }
inline void set_U3CbufferU3E5__1_3(Buffer_1_t087969E39A0FFD1A50B5A885FC6FBFEA235A7395 value)
{
___U3CbufferU3E5__1_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CbufferU3E5__1_3))->___items_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CmapU3E5__2_4() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0, ___U3CmapU3E5__2_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_U3CmapU3E5__2_4() const { return ___U3CmapU3E5__2_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_U3CmapU3E5__2_4() { return &___U3CmapU3E5__2_4; }
inline void set_U3CmapU3E5__2_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___U3CmapU3E5__2_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmapU3E5__2_4), (void*)value);
}
inline static int32_t get_offset_of_U3CiU3E5__3_5() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0, ___U3CiU3E5__3_5)); }
inline int32_t get_U3CiU3E5__3_5() const { return ___U3CiU3E5__3_5; }
inline int32_t* get_address_of_U3CiU3E5__3_5() { return &___U3CiU3E5__3_5; }
inline void set_U3CiU3E5__3_5(int32_t value)
{
___U3CiU3E5__3_5 = value;
}
};
// System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1<System.Object>
struct U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A : public RuntimeObject
{
public:
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>1__state
int32_t ___U3CU3E1__state_0;
// TElement System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>4__this
OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * ___U3CU3E4__this_2;
// System.Linq.Buffer`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<buffer>5__1
Buffer_1_tB294332D6A9005ABB8E979A62BA34A1CB39C10A7 ___U3CbufferU3E5__1_3;
// System.Int32[] System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<map>5__2
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___U3CmapU3E5__2_4;
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<i>5__3
int32_t ___U3CiU3E5__3_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A, ___U3CU3E4__this_2)); }
inline OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CbufferU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A, ___U3CbufferU3E5__1_3)); }
inline Buffer_1_tB294332D6A9005ABB8E979A62BA34A1CB39C10A7 get_U3CbufferU3E5__1_3() const { return ___U3CbufferU3E5__1_3; }
inline Buffer_1_tB294332D6A9005ABB8E979A62BA34A1CB39C10A7 * get_address_of_U3CbufferU3E5__1_3() { return &___U3CbufferU3E5__1_3; }
inline void set_U3CbufferU3E5__1_3(Buffer_1_tB294332D6A9005ABB8E979A62BA34A1CB39C10A7 value)
{
___U3CbufferU3E5__1_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CbufferU3E5__1_3))->___items_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CmapU3E5__2_4() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A, ___U3CmapU3E5__2_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_U3CmapU3E5__2_4() const { return ___U3CmapU3E5__2_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_U3CmapU3E5__2_4() { return &___U3CmapU3E5__2_4; }
inline void set_U3CmapU3E5__2_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___U3CmapU3E5__2_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmapU3E5__2_4), (void*)value);
}
inline static int32_t get_offset_of_U3CiU3E5__3_5() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A, ___U3CiU3E5__3_5)); }
inline int32_t get_U3CiU3E5__3_5() const { return ___U3CiU3E5__3_5; }
inline int32_t* get_address_of_U3CiU3E5__3_5() { return &___U3CiU3E5__3_5; }
inline void set_U3CiU3E5__3_5(int32_t value)
{
___U3CiU3E5__3_5 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___key_0)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_key_0() const { return ___key_0; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>
struct KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Nullable`1<UnityEngine.Vector4>
struct Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB
{
public:
// T System.Nullable`1::value
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB, ___value_0)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_value_0() const { return ___value_0; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>
struct PrimitiveParameterExpression_1_tD2A2010948DFBCAAA2571D16D58E4F7B86AC3D83 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>
struct PrimitiveParameterExpression_1_tA44C59B221B96B1C70AB5DB0A88ABAB58AC2C0C6 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>
struct PrimitiveParameterExpression_1_tDCD6C1652FBDC3F3399DC1721E23DED5924CA00E : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>
struct PrimitiveParameterExpression_1_tFD8158721E22D6F8BB8C28399A5CB9B2CCB401E8 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>
struct PrimitiveParameterExpression_1_tD158CE97701C44A26E08527DD2E78DB18500C859 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>
struct PrimitiveParameterExpression_1_t73AA1B524F282649462AD9AA80B5869A9D1A87D6 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>
struct PrimitiveParameterExpression_1_t4E3A4B65DD267F43C22E1A4DF7D14E7FDFB18705 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>
struct PrimitiveParameterExpression_1_tFCAE899655D8FEDB4F2DCAB56C7B7B412ABE111D : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>
struct PrimitiveParameterExpression_1_tF1A363D78BF901D401930060EB909B3806B6C80B : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>
struct PrimitiveParameterExpression_1_t6415C2B65C6EE7ACF44AC513A0B9C892D7199145 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>
struct PrimitiveParameterExpression_1_t15F37BE7B34262F3F8EB69738B55C746C4A249CA : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>
struct PrimitiveParameterExpression_1_t021CF2C0089A8999BAF3F13712426186D9CB443D : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>
struct PrimitiveParameterExpression_1_t8651DC562B151904B7F6CAEBAB6AE965F95709C5 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>
struct PrimitiveParameterExpression_1_tFD1DAFE55FC516B146D1FA4FF89D6A6809D7A1E9 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>
struct PrimitiveParameterExpression_1_t66A5B478E1D45B5151C9C6ACFC535C92EEA97608 : public ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE
{
public:
public:
};
// System.Reflection.BindingFlags
struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.ColorBlock
struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_NormalColor_0)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_HighlightedColor_1)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_PressedColor_2)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_SelectedColor_3)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_DisabledColor_4)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields
{
public:
// UnityEngine.UI.ColorBlock UnityEngine.UI.ColorBlock::defaultColorBlock
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___defaultColorBlock_7;
public:
inline static int32_t get_offset_of_defaultColorBlock_7() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields, ___defaultColorBlock_7)); }
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 get_defaultColorBlock_7() const { return ___defaultColorBlock_7; }
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * get_address_of_defaultColorBlock_7() { return &___defaultColorBlock_7; }
inline void set_defaultColorBlock_7(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value)
{
___defaultColorBlock_7 = value;
}
};
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___typedArgument_0;
// System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo
MemberInfo_t * ___memberInfo_1;
public:
inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value)
{
___typedArgument_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_pinvoke
{
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_com
{
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.ExceptionArgument
struct ExceptionArgument_t750CCD4C657BCB2C185560CC68330BC0313B8737
{
public:
// System.Int32 System.ExceptionArgument::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_t750CCD4C657BCB2C185560CC68330BC0313B8737, ___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.ExceptionResource
struct ExceptionResource_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA
{
public:
// System.Int32 System.ExceptionResource::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA, ___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.Int32Enum
struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Vuforia.Newtonsoft.Json.JsonContainerType
struct JsonContainerType_t6B3090CDF4829011AB51DB1C635D5A1D97341481
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.JsonContainerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonContainerType_t6B3090CDF4829011AB51DB1C635D5A1D97341481, ___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.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
// UnityEngine.Pose
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A
{
public:
// UnityEngine.Vector3 UnityEngine.Pose::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Quaternion UnityEngine.Pose::rotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_1;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___rotation_1)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_1() const { return ___rotation_1; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_1() { return &___rotation_1; }
inline void set_rotation_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___rotation_1 = value;
}
};
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields
{
public:
// UnityEngine.Pose UnityEngine.Pose::k_Identity
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___k_Identity_2;
public:
inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields, ___k_Identity_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_k_Identity_2() const { return ___k_Identity_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_k_Identity_2() { return &___k_Identity_2; }
inline void set_k_Identity_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___k_Identity_2 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Point_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Normal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_UV_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Centroid_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Point_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Normal_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___m_GameObject_0)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___module_1)); }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldPosition_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldNormal_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___screenPosition_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___screenPosition_9 = value;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_pinvoke
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_com
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// UnityEngine.UICharInfo
struct UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A, ___cursorPos_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
// UnityEngine.UIVertex
struct UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_3;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv0
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv0_4;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv1
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv1_5;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv2
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv2_6;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv3
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___normal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_normal_1() const { return ___normal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___tangent_2)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_tangent_2() const { return ___tangent_2; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___color_3)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_3() const { return ___color_3; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv0_4)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv0_4() const { return ___uv0_4; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv1_5)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv1_5() const { return ___uv1_5; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv2_6)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv2_6() const { return ___uv2_6; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv3_7)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv3_7() const { return ___uv3_7; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv3_7 = value;
}
};
struct UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields, ___s_DefaultColor_8)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields, ___simpleVert_10)); }
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A value)
{
___simpleVert_10 = value;
}
};
// UnityEngine.Camera/RenderRequestMode
struct RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313
{
public:
// System.Int32 UnityEngine.Camera/RenderRequestMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313, ___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;
}
};
// UnityEngine.Camera/RenderRequestOutputSpace
struct RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5
{
public:
// System.Int32 UnityEngine.Camera/RenderRequestOutputSpace::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5, ___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;
}
};
// UnityEngine.UI.Navigation/Mode
struct Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F
{
public:
// System.Int32 UnityEngine.UI.Navigation/Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F, ___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;
}
};
// Vuforia.TrackerData/PoseData
#pragma pack(push, tp, 1)
struct PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66
{
public:
// UnityEngine.Vector3 Vuforia.TrackerData/PoseData::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Quaternion Vuforia.TrackerData/PoseData::orientation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___orientation_1;
// System.Int32 Vuforia.TrackerData/PoseData::unused
int32_t ___unused_2;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_orientation_1() { return static_cast<int32_t>(offsetof(PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66, ___orientation_1)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_orientation_1() const { return ___orientation_1; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_orientation_1() { return &___orientation_1; }
inline void set_orientation_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___orientation_1 = value;
}
inline static int32_t get_offset_of_unused_2() { return static_cast<int32_t>(offsetof(PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66, ___unused_2)); }
inline int32_t get_unused_2() const { return ___unused_2; }
inline int32_t* get_address_of_unused_2() { return &___unused_2; }
inline void set_unused_2(int32_t value)
{
___unused_2 = value;
}
};
#pragma pack(pop, tp)
// Vuforia.WebCamProfile/ProfileData
struct ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959
{
public:
// Vuforia.VuforiaRenderer/Vec2I Vuforia.WebCamProfile/ProfileData::RequestedTextureSize
Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 ___RequestedTextureSize_0;
// Vuforia.VuforiaRenderer/Vec2I Vuforia.WebCamProfile/ProfileData::ResampledTextureSize
Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 ___ResampledTextureSize_1;
// System.Int32 Vuforia.WebCamProfile/ProfileData::RequestedFPS
int32_t ___RequestedFPS_2;
public:
inline static int32_t get_offset_of_RequestedTextureSize_0() { return static_cast<int32_t>(offsetof(ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959, ___RequestedTextureSize_0)); }
inline Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 get_RequestedTextureSize_0() const { return ___RequestedTextureSize_0; }
inline Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 * get_address_of_RequestedTextureSize_0() { return &___RequestedTextureSize_0; }
inline void set_RequestedTextureSize_0(Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 value)
{
___RequestedTextureSize_0 = value;
}
inline static int32_t get_offset_of_ResampledTextureSize_1() { return static_cast<int32_t>(offsetof(ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959, ___ResampledTextureSize_1)); }
inline Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 get_ResampledTextureSize_1() const { return ___ResampledTextureSize_1; }
inline Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 * get_address_of_ResampledTextureSize_1() { return &___ResampledTextureSize_1; }
inline void set_ResampledTextureSize_1(Vec2I_t89611FC3D37F821986A602F9652B3B012737D7C6 value)
{
___ResampledTextureSize_1 = value;
}
inline static int32_t get_offset_of_RequestedFPS_2() { return static_cast<int32_t>(offsetof(ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959, ___RequestedFPS_2)); }
inline int32_t get_RequestedFPS_2() const { return ___RequestedFPS_2; }
inline int32_t* get_address_of_RequestedFPS_2() { return &___RequestedFPS_2; }
inline void set_RequestedFPS_2(int32_t value)
{
___RequestedFPS_2 = value;
}
};
// Vuforia.CameraDevice/CameraField/DataType
struct DataType_t47F1019E06F8160C77A07135DE692EE1E7B9BACB
{
public:
// System.Int32 Vuforia.CameraDevice/CameraField/DataType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DataType_t47F1019E06F8160C77A07135DE692EE1E7B9BACB, ___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.Linq.OrderedEnumerable`1/<GetEnumerator>d__1<UnityEngine.RaycastHit>
struct U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02 : public RuntimeObject
{
public:
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>1__state
int32_t ___U3CU3E1__state_0;
// TElement System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>2__current
RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___U3CU3E2__current_1;
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<>4__this
OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * ___U3CU3E4__this_2;
// System.Linq.Buffer`1<TElement> System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<buffer>5__1
Buffer_1_tCED3A02F754F6026F55A2CE8DB062AF606BE2187 ___U3CbufferU3E5__1_3;
// System.Int32[] System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<map>5__2
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___U3CmapU3E5__2_4;
// System.Int32 System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1::<i>5__3
int32_t ___U3CiU3E5__3_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02, ___U3CU3E2__current_1)); }
inline RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 value)
{
___U3CU3E2__current_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02, ___U3CU3E4__this_2)); }
inline OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CbufferU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02, ___U3CbufferU3E5__1_3)); }
inline Buffer_1_tCED3A02F754F6026F55A2CE8DB062AF606BE2187 get_U3CbufferU3E5__1_3() const { return ___U3CbufferU3E5__1_3; }
inline Buffer_1_tCED3A02F754F6026F55A2CE8DB062AF606BE2187 * get_address_of_U3CbufferU3E5__1_3() { return &___U3CbufferU3E5__1_3; }
inline void set_U3CbufferU3E5__1_3(Buffer_1_tCED3A02F754F6026F55A2CE8DB062AF606BE2187 value)
{
___U3CbufferU3E5__1_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CbufferU3E5__1_3))->___items_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CmapU3E5__2_4() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02, ___U3CmapU3E5__2_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_U3CmapU3E5__2_4() const { return ___U3CmapU3E5__2_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_U3CmapU3E5__2_4() { return &___U3CmapU3E5__2_4; }
inline void set_U3CmapU3E5__2_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___U3CmapU3E5__2_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmapU3E5__2_4), (void*)value);
}
inline static int32_t get_offset_of_U3CiU3E5__3_5() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02, ___U3CiU3E5__3_5)); }
inline int32_t get_U3CiU3E5__3_5() const { return ___U3CiU3E5__3_5; }
inline int32_t* get_address_of_U3CiU3E5__3_5() { return &___U3CiU3E5__3_5; }
inline void set_U3CiU3E5__3_5(int32_t value)
{
___U3CiU3E5__3_5 = value;
}
};
// Vuforia.Newtonsoft.Json.JsonPosition
struct JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B
{
public:
// Vuforia.Newtonsoft.Json.JsonContainerType Vuforia.Newtonsoft.Json.JsonPosition::Type
int32_t ___Type_1;
// System.Int32 Vuforia.Newtonsoft.Json.JsonPosition::Position
int32_t ___Position_2;
// System.String Vuforia.Newtonsoft.Json.JsonPosition::PropertyName
String_t* ___PropertyName_3;
// System.Boolean Vuforia.Newtonsoft.Json.JsonPosition::HasIndex
bool ___HasIndex_4;
public:
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B, ___Type_1)); }
inline int32_t get_Type_1() const { return ___Type_1; }
inline int32_t* get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(int32_t value)
{
___Type_1 = value;
}
inline static int32_t get_offset_of_Position_2() { return static_cast<int32_t>(offsetof(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B, ___Position_2)); }
inline int32_t get_Position_2() const { return ___Position_2; }
inline int32_t* get_address_of_Position_2() { return &___Position_2; }
inline void set_Position_2(int32_t value)
{
___Position_2 = value;
}
inline static int32_t get_offset_of_PropertyName_3() { return static_cast<int32_t>(offsetof(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B, ___PropertyName_3)); }
inline String_t* get_PropertyName_3() const { return ___PropertyName_3; }
inline String_t** get_address_of_PropertyName_3() { return &___PropertyName_3; }
inline void set_PropertyName_3(String_t* value)
{
___PropertyName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropertyName_3), (void*)value);
}
inline static int32_t get_offset_of_HasIndex_4() { return static_cast<int32_t>(offsetof(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B, ___HasIndex_4)); }
inline bool get_HasIndex_4() const { return ___HasIndex_4; }
inline bool* get_address_of_HasIndex_4() { return &___HasIndex_4; }
inline void set_HasIndex_4(bool value)
{
___HasIndex_4 = value;
}
};
struct JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B_StaticFields
{
public:
// System.Char[] Vuforia.Newtonsoft.Json.JsonPosition::SpecialCharacters
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___SpecialCharacters_0;
public:
inline static int32_t get_offset_of_SpecialCharacters_0() { return static_cast<int32_t>(offsetof(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B_StaticFields, ___SpecialCharacters_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_SpecialCharacters_0() const { return ___SpecialCharacters_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_SpecialCharacters_0() { return &___SpecialCharacters_0; }
inline void set_SpecialCharacters_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___SpecialCharacters_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SpecialCharacters_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.JsonPosition
struct JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B_marshaled_pinvoke
{
int32_t ___Type_1;
int32_t ___Position_2;
char* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// Native definition for COM marshalling of Vuforia.Newtonsoft.Json.JsonPosition
struct JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B_marshaled_com
{
int32_t ___Type_1;
int32_t ___Position_2;
Il2CppChar* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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;
};
// UnityEngine.UI.Navigation
struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A
{
public:
// UnityEngine.UI.Navigation/Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// System.Boolean UnityEngine.UI.Navigation::m_WrapAround
bool ___m_WrapAround_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_Mode_0)); }
inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
inline void set_m_Mode_0(int32_t value)
{
___m_Mode_0 = value;
}
inline static int32_t get_offset_of_m_WrapAround_1() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_WrapAround_1)); }
inline bool get_m_WrapAround_1() const { return ___m_WrapAround_1; }
inline bool* get_address_of_m_WrapAround_1() { return &___m_WrapAround_1; }
inline void set_m_WrapAround_1(bool value)
{
___m_WrapAround_1 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_2() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnUp_2)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnUp_2() const { return ___m_SelectOnUp_2; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnUp_2() { return &___m_SelectOnUp_2; }
inline void set_m_SelectOnUp_2(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnUp_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_3() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnDown_3)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnDown_3() const { return ___m_SelectOnDown_3; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnDown_3() { return &___m_SelectOnDown_3; }
inline void set_m_SelectOnDown_3(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnDown_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_4() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnLeft_4)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnLeft_4() const { return ___m_SelectOnLeft_4; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnLeft_4() { return &___m_SelectOnLeft_4; }
inline void set_m_SelectOnLeft_4(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnLeft_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_4), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_5() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnRight_5)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnRight_5() const { return ___m_SelectOnRight_5; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnRight_5() { return &___m_SelectOnRight_5; }
inline void set_m_SelectOnRight_5(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnRight_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_pinvoke
{
int32_t ___m_Mode_0;
int32_t ___m_WrapAround_1;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_com
{
int32_t ___m_Mode_0;
int32_t ___m_WrapAround_1;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5;
};
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94
{
public:
// UnityEngine.Camera/RenderRequestMode UnityEngine.Camera/RenderRequest::m_CameraRenderMode
int32_t ___m_CameraRenderMode_0;
// UnityEngine.RenderTexture UnityEngine.Camera/RenderRequest::m_ResultRT
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
// UnityEngine.Camera/RenderRequestOutputSpace UnityEngine.Camera/RenderRequest::m_OutputSpace
int32_t ___m_OutputSpace_2;
public:
inline static int32_t get_offset_of_m_CameraRenderMode_0() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_CameraRenderMode_0)); }
inline int32_t get_m_CameraRenderMode_0() const { return ___m_CameraRenderMode_0; }
inline int32_t* get_address_of_m_CameraRenderMode_0() { return &___m_CameraRenderMode_0; }
inline void set_m_CameraRenderMode_0(int32_t value)
{
___m_CameraRenderMode_0 = value;
}
inline static int32_t get_offset_of_m_ResultRT_1() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_ResultRT_1)); }
inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * get_m_ResultRT_1() const { return ___m_ResultRT_1; }
inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 ** get_address_of_m_ResultRT_1() { return &___m_ResultRT_1; }
inline void set_m_ResultRT_1(RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * value)
{
___m_ResultRT_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ResultRT_1), (void*)value);
}
inline static int32_t get_offset_of_m_OutputSpace_2() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_OutputSpace_2)); }
inline int32_t get_m_OutputSpace_2() const { return ___m_OutputSpace_2; }
inline int32_t* get_address_of_m_OutputSpace_2() { return &___m_OutputSpace_2; }
inline void set_m_OutputSpace_2(int32_t value)
{
___m_OutputSpace_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_pinvoke
{
int32_t ___m_CameraRenderMode_0;
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
int32_t ___m_OutputSpace_2;
};
// Native definition for COM marshalling of UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_com
{
int32_t ___m_CameraRenderMode_0;
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
int32_t ___m_OutputSpace_2;
};
// Vuforia.CameraDevice/CameraField
struct CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4
{
public:
// Vuforia.CameraDevice/CameraField/DataType Vuforia.CameraDevice/CameraField::Type
int32_t ___Type_0;
// System.String Vuforia.CameraDevice/CameraField::Key
String_t* ___Key_1;
public:
inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4, ___Type_0)); }
inline int32_t get_Type_0() const { return ___Type_0; }
inline int32_t* get_address_of_Type_0() { return &___Type_0; }
inline void set_Type_0(int32_t value)
{
___Type_0 = value;
}
inline static int32_t get_offset_of_Key_1() { return static_cast<int32_t>(offsetof(CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4, ___Key_1)); }
inline String_t* get_Key_1() const { return ___Key_1; }
inline String_t** get_address_of_Key_1() { return &___Key_1; }
inline void set_Key_1(String_t* value)
{
___Key_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Key_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Vuforia.CameraDevice/CameraField
struct CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4_marshaled_pinvoke
{
int32_t ___Type_0;
char* ___Key_1;
};
// Native definition for COM marshalling of Vuforia.CameraDevice/CameraField
struct CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4_marshaled_com
{
int32_t ___Type_0;
Il2CppChar* ___Key_1;
};
// Vuforia.TrackerData/TrackableResultData
#pragma pack(push, tp, 1)
struct TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED
{
public:
// Vuforia.TrackerData/PoseData Vuforia.TrackerData/TrackableResultData::pose
PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 ___pose_0;
// System.Double Vuforia.TrackerData/TrackableResultData::timeStamp
double ___timeStamp_1;
// System.Int32 Vuforia.TrackerData/TrackableResultData::statusInteger
int32_t ___statusInteger_2;
// System.Int32 Vuforia.TrackerData/TrackableResultData::statusInfo
int32_t ___statusInfo_3;
// System.Int32 Vuforia.TrackerData/TrackableResultData::id
int32_t ___id_4;
// System.Int32 Vuforia.TrackerData/TrackableResultData::unused
int32_t ___unused_5;
public:
inline static int32_t get_offset_of_pose_0() { return static_cast<int32_t>(offsetof(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED, ___pose_0)); }
inline PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 get_pose_0() const { return ___pose_0; }
inline PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 * get_address_of_pose_0() { return &___pose_0; }
inline void set_pose_0(PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 value)
{
___pose_0 = value;
}
inline static int32_t get_offset_of_timeStamp_1() { return static_cast<int32_t>(offsetof(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED, ___timeStamp_1)); }
inline double get_timeStamp_1() const { return ___timeStamp_1; }
inline double* get_address_of_timeStamp_1() { return &___timeStamp_1; }
inline void set_timeStamp_1(double value)
{
___timeStamp_1 = value;
}
inline static int32_t get_offset_of_statusInteger_2() { return static_cast<int32_t>(offsetof(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED, ___statusInteger_2)); }
inline int32_t get_statusInteger_2() const { return ___statusInteger_2; }
inline int32_t* get_address_of_statusInteger_2() { return &___statusInteger_2; }
inline void set_statusInteger_2(int32_t value)
{
___statusInteger_2 = value;
}
inline static int32_t get_offset_of_statusInfo_3() { return static_cast<int32_t>(offsetof(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED, ___statusInfo_3)); }
inline int32_t get_statusInfo_3() const { return ___statusInfo_3; }
inline int32_t* get_address_of_statusInfo_3() { return &___statusInfo_3; }
inline void set_statusInfo_3(int32_t value)
{
___statusInfo_3 = value;
}
inline static int32_t get_offset_of_id_4() { return static_cast<int32_t>(offsetof(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED, ___id_4)); }
inline int32_t get_id_4() const { return ___id_4; }
inline int32_t* get_address_of_id_4() { return &___id_4; }
inline void set_id_4(int32_t value)
{
___id_4 = value;
}
inline static int32_t get_offset_of_unused_5() { return static_cast<int32_t>(offsetof(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED, ___unused_5)); }
inline int32_t get_unused_5() const { return ___unused_5; }
inline int32_t* get_address_of_unused_5() { return &___unused_5; }
inline void set_unused_5(int32_t value)
{
___unused_5 = value;
}
};
#pragma pack(pop, tp)
// Vuforia.TrackerData/VuMarkTargetResultData
#pragma pack(push, tp, 1)
struct VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA
{
public:
// Vuforia.TrackerData/PoseData Vuforia.TrackerData/VuMarkTargetResultData::pose
PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 ___pose_0;
// System.Double Vuforia.TrackerData/VuMarkTargetResultData::timeStamp
double ___timeStamp_1;
// System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::statusInteger
int32_t ___statusInteger_2;
// System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::targetID
int32_t ___targetID_3;
// System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::resultID
int32_t ___resultID_4;
// System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::unused
int32_t ___unused_5;
public:
inline static int32_t get_offset_of_pose_0() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA, ___pose_0)); }
inline PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 get_pose_0() const { return ___pose_0; }
inline PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 * get_address_of_pose_0() { return &___pose_0; }
inline void set_pose_0(PoseData_tD57C92B1B9B94696180EEA2A4461A191E541BF66 value)
{
___pose_0 = value;
}
inline static int32_t get_offset_of_timeStamp_1() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA, ___timeStamp_1)); }
inline double get_timeStamp_1() const { return ___timeStamp_1; }
inline double* get_address_of_timeStamp_1() { return &___timeStamp_1; }
inline void set_timeStamp_1(double value)
{
___timeStamp_1 = value;
}
inline static int32_t get_offset_of_statusInteger_2() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA, ___statusInteger_2)); }
inline int32_t get_statusInteger_2() const { return ___statusInteger_2; }
inline int32_t* get_address_of_statusInteger_2() { return &___statusInteger_2; }
inline void set_statusInteger_2(int32_t value)
{
___statusInteger_2 = value;
}
inline static int32_t get_offset_of_targetID_3() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA, ___targetID_3)); }
inline int32_t get_targetID_3() const { return ___targetID_3; }
inline int32_t* get_address_of_targetID_3() { return &___targetID_3; }
inline void set_targetID_3(int32_t value)
{
___targetID_3 = value;
}
inline static int32_t get_offset_of_resultID_4() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA, ___resultID_4)); }
inline int32_t get_resultID_4() const { return ___resultID_4; }
inline int32_t* get_address_of_resultID_4() { return &___resultID_4; }
inline void set_resultID_4(int32_t value)
{
___resultID_4 = value;
}
inline static int32_t get_offset_of_unused_5() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA, ___unused_5)); }
inline int32_t get_unused_5() const { return ___unused_5; }
inline int32_t* get_address_of_unused_5() { return &___unused_5; }
inline void set_unused_5(int32_t value)
{
___unused_5 = value;
}
};
#pragma pack(pop, tp)
// System.Func`2<Vuforia.CameraMode,System.Int32>
struct Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Int32,System.Int32>
struct Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Int32>
struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Object>
struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<UnityEngine.RaycastHit,System.Single>
struct Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A : public MulticastDelegate_t
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t600CD64268FD91D4F064E49867A166B8E9766B13 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct Predicate_1_tD8CFC68D3FD2CAFDE997FB42F04FA9B896DDA4D1 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct Predicate_1_t648A13B6D5246C930A8086ACD20A7B4FAB10D51D : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Predicate_1_t78E36256E7141DFF7633B77FF87BCF9B83E602D8 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.ValueTuple`2<System.Object,System.Object>>
struct Predicate_1_tF6BFBED754D517C93ABC2B1F3522F005E01BC70B : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Byte>
struct Predicate_1_t842A4F020A7223F89AAD26B7AD9110DCAD811E0F : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.CameraMode>
struct Predicate_1_tDE3BC87716E4543F875BC43A749B02C4A6F6FD6F : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Char>
struct Predicate_1_t954B92A28F72E25951E55FC9B1A87DA3F93B2D0E : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.Color32>
struct Predicate_1_t93F7DA898B9782B61675EAFF1A2C6B68D454627E : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Collections.DictionaryEntry>
struct Predicate_1_tADDB20A46F1D89FE7BAEEB939961FF3303826F4E : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Double>
struct Predicate_1_t0E330E9BFAE196FB8D650A01EF09715D5B3C63DC : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Guid>
struct Predicate_1_t30F9B115B7755782EC109C2927AB398BF851816E : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Int32>
struct Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Int32Enum>
struct Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>
struct Predicate_1_tA1B517116B3565A97FB0B2D4AAB1C5D66E17C479 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct Predicate_1_t419DB74DEFDC47632026D9ECFBF111FB3EE5B81B : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Object>
struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.Pose>
struct Predicate_1_t781F56F00E55374D95A5BBFFE2F553AF85D0FC9F : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.RaycastHit2D>
struct Predicate_1_t9055FDFD9CFCC052508081AE0A90D9254ADD0DEE : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.EventSystems.RaycastResult>
struct Predicate_1_tE4AA40EAD3542E24130BEF8BF181659B017A5F64 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Single>
struct Predicate_1_t7712DE0490F6460AC78C03DE1DDBAB8AA5FDCD10 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.UICharInfo>
struct Predicate_1_tD9E496B0AAFD32E7F08682985D991B0E8494B5FF : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.UILineInfo>
struct Predicate_1_t67FB874DC27C7A70F3D5CBB972EF1985F8D77EC1 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.UIVertex>
struct Predicate_1_t86245C691294F4CAF9A0D4CB0AB8090805BD5564 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.UInt64>
struct Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.Vector3>
struct Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.Vector4>
struct Predicate_1_t7159ED2567E0DF400A0E86969D4E4229BD5DF948 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.Camera/RenderRequest>
struct Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.CameraDevice/CameraField>
struct Predicate_1_tF0B1F77CE14965CE85496D58B7F95B85650235DE : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.CameraDevice/VideoModeData>
struct Predicate_1_t9D9F9BF9B0BA74094B4411757AE65062808555A9 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct Predicate_1_tAC089F33165C7442E3D66161C56B4B7771CAF217 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>
struct Predicate_1_tA7669BAC6A8C640E4E79ECD665204291395E1DDA : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.TrackerData/TrackableResultData>
struct Predicate_1_t5835F5EA03D0A3D9130744B47777352F58074E75 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>
struct Predicate_1_t9D17490F46AB30F97CBFEE210400343FA4702521 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>
struct Predicate_1_tB669DD2D4E828B0960153B03E1DD552E11DE7737 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Object>
struct UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.ArrayTypeMismatchException
struct ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t
{
public:
public:
};
// System.InvalidCastException
struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : 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.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 m_Items[1];
public:
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[]
struct KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 m_Items[1];
public:
inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[]
struct KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A m_Items[1];
public:
inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 m_Items[1];
public:
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.ValueTuple`2<System.Object,System.Object>[]
struct ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A : public RuntimeArray
{
public:
ALIGN_FIELD (8) ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 m_Items[1];
public:
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item2_1), (void*)NULL);
#endif
}
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item2_1), (void*)NULL);
#endif
}
};
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : 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;
}
};
// Vuforia.CameraMode[]
struct CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B m_Items[1];
public:
inline CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B * 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, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : 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;
}
};
// UnityEngine.Color32[]
struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D m_Items[1];
public:
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * 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, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
m_Items[index] = value;
}
};
// UnityEngine.UI.ColorBlock[]
struct ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 m_Items[1];
public:
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * 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, ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value)
{
m_Items[index] = value;
}
};
// System.Collections.DictionaryEntry[]
struct DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 m_Items[1];
public:
inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_1), (void*)NULL);
#endif
}
inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_1), (void*)NULL);
#endif
}
};
// System.Double[]
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB : 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.Guid[]
struct GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Guid_t m_Items[1];
public:
inline Guid_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Guid_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, Guid_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Int32Enum[]
struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) intptr_t m_Items[1];
public:
inline intptr_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline intptr_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, intptr_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline intptr_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline intptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, intptr_t value)
{
m_Items[index] = value;
}
};
// System.Linq.Expressions.Interpreter.InterpretedFrameInfo[]
struct InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 m_Items[1];
public:
inline InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 * 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, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____methodName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____debugInfo_1), (void*)NULL);
#endif
}
inline InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____methodName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____debugInfo_1), (void*)NULL);
#endif
}
};
// Vuforia.Newtonsoft.Json.JsonPosition[]
struct JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801 : public RuntimeArray
{
public:
ALIGN_FIELD (8) JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B m_Items[1];
public:
inline JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B * 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, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___PropertyName_3), (void*)NULL);
}
inline JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___PropertyName_3), (void*)NULL);
}
};
// UnityEngine.Matrix4x4[]
struct Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 m_Items[1];
public:
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * 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, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UI.Navigation[]
struct NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A m_Items[1];
public:
inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A * 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, Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnUp_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnDown_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnLeft_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnRight_5), (void*)NULL);
#endif
}
inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnUp_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnDown_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnLeft_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnRight_5), (void*)NULL);
#endif
}
};
// UnityEngine.Pose[]
struct PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A : public RuntimeArray
{
public:
ALIGN_FIELD (8) Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A m_Items[1];
public:
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * 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, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 m_Items[1];
public:
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * 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, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 value)
{
m_Items[index] = value;
}
};
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE m_Items[1];
public:
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE * 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, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
};
// Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey[]
struct ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 m_Items[1];
public:
inline ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 * 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, ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____resolverType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____contractType_1), (void*)NULL);
#endif
}
inline ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____resolverType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____contractType_1), (void*)NULL);
#endif
}
};
// System.Resources.ResourceLocator[]
struct ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 m_Items[1];
public:
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_0), (void*)NULL);
}
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_0), (void*)NULL);
}
};
// System.Single[]
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA : public RuntimeArray
{
public:
ALIGN_FIELD (8) float m_Items[1];
public:
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// UnityEngine.UI.SpriteState[]
struct SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E m_Items[1];
public:
inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E * 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, SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DisabledSprite_3), (void*)NULL);
#endif
}
inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DisabledSprite_3), (void*)NULL);
#endif
}
};
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A m_Items[1];
public:
inline UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A * 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, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A value)
{
m_Items[index] = value;
}
};
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C m_Items[1];
public:
inline UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C * 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, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C value)
{
m_Items[index] = value;
}
};
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A : public RuntimeArray
{
public:
ALIGN_FIELD (8) UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A m_Items[1];
public:
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A * 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, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A value)
{
m_Items[index] = value;
}
};
// System.UInt16[]
struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint16_t m_Items[1];
public:
inline uint16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint16_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, uint16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value)
{
m_Items[index] = value;
}
};
// System.UInt64[]
struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint64_t m_Items[1];
public:
inline uint64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint64_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, uint64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E m_Items[1];
public:
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector4[]
struct Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 m_Items[1];
public:
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * 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, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
m_Items[index] = value;
}
};
// UnityEngine.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817 : public RuntimeArray
{
public:
ALIGN_FIELD (8) OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 m_Items[1];
public:
inline OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 * 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, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
inline OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
};
// UnityEngine.Camera/RenderRequest[]
struct RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 m_Items[1];
public:
inline RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 * 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, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_ResultRT_1), (void*)NULL);
}
inline RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_ResultRT_1), (void*)NULL);
}
};
// Vuforia.CameraDevice/CameraField[]
struct CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 m_Items[1];
public:
inline CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 * 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, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Key_1), (void*)NULL);
}
inline CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Key_1), (void*)NULL);
}
};
// Vuforia.CameraDevice/VideoModeData[]
struct VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3 : public RuntimeArray
{
public:
ALIGN_FIELD (8) VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA m_Items[1];
public:
inline VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA * 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, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA value)
{
m_Items[index] = value;
}
};
// Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey[]
struct TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F : public RuntimeArray
{
public:
ALIGN_FIELD (8) TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C m_Items[1];
public:
inline TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C * 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, TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____initialType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____targetType_1), (void*)NULL);
#endif
}
inline TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____initialType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____targetType_1), (void*)NULL);
#endif
}
};
// Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey[]
struct TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A : public RuntimeArray
{
public:
ALIGN_FIELD (8) TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 m_Items[1];
public:
inline TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 * 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, TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___AssemblyName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___TypeName_1), (void*)NULL);
#endif
}
inline TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___AssemblyName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___TypeName_1), (void*)NULL);
#endif
}
};
// System.Diagnostics.Tracing.EventProvider/SessionInfo[]
struct SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 m_Items[1];
public:
inline SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 * 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, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 value)
{
m_Items[index] = value;
}
};
// Vuforia.RawPtrVideoTextureUpdater/TextureData[]
struct TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 m_Items[1];
public:
inline TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 * 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, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Texture_0), (void*)NULL);
}
inline TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Texture_0), (void*)NULL);
}
};
// Vuforia.TrackerData/TrackableResultData[]
struct TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED m_Items[1];
public:
inline TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED * 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, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED value)
{
m_Items[index] = value;
}
};
// Vuforia.TrackerData/VirtualButtonData[]
struct VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A : public RuntimeArray
{
public:
ALIGN_FIELD (8) VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 m_Items[1];
public:
inline VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 * 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, VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 value)
{
m_Items[index] = value;
}
};
// Vuforia.TrackerData/VuMarkTargetResultData[]
struct VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE : public RuntimeArray
{
public:
ALIGN_FIELD (8) VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA m_Items[1];
public:
inline VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA * 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, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA value)
{
m_Items[index] = value;
}
};
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F : public RuntimeArray
{
public:
ALIGN_FIELD (8) WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 m_Items[1];
public:
inline WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 * 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, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
inline WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
};
// Vuforia.VuforiaManager/TrackableIdPair[]
struct TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA : public RuntimeArray
{
public:
ALIGN_FIELD (8) TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB m_Items[1];
public:
inline TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB * 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, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB value)
{
m_Items[index] = value;
}
};
// Vuforia.WebCamProfile/ProfileData[]
struct ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 m_Items[1];
public:
inline ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 * 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, ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord[]
struct TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C : public RuntimeArray
{
public:
ALIGN_FIELD (8) TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 m_Items[1];
public:
inline TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 * 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, TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 value)
{
m_Items[index] = value;
}
};
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA m_Items[1];
public:
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA * 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, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
};
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 m_Items[1];
public:
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * 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, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.Void System.Nullable`1<System.UInt32>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m755D804CE949DA06E57925317DD31EBCBD632F7A_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.UInt32>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m8418F0A41AEC8419D1566F2EDA19D3A018E7ED56_gshared_inline (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method);
// T System.Nullable`1<System.UInt32>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.UInt32>::Equals(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m2C6C6844DF6567E0C791D49416BF1C93FC0BA409_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 ___other0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.UInt32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mC73B137110588A85B0A6BB83E4F4E2AC3E66D879_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<System.UInt32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m2F21656EDB23C4B85500D796D75EDDF69FAA4335_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method);
// T System.Nullable`1<System.UInt32>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Nullable_1_GetValueOrDefault_m2F7A999B4898CADF9F5530F9F209DAAD77CA075F_gshared_inline (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method);
// T System.Nullable`1<System.UInt32>::GetValueOrDefault(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Nullable_1_GetValueOrDefault_mF9F89F36CECD097F8E85C2F867390E62AE7A6B07_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, uint32_t ___defaultValue0, const RuntimeMethod* method);
// System.String System.Nullable`1<System.UInt32>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m873CE77C1769332FD445254BA8BBE2186F970CAD_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.UInt64>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD8A1120D15C55A920006A55BF25539E1627CAB1D_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.UInt64>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB2420C0D6B3AA027BB9C15B0E9B3FFEFB30C0662_gshared_inline (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method);
// T System.Nullable`1<System.UInt64>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.UInt64>::Equals(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mF193276401F1D0720E82AF4F1E7F4829A630037D_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C ___other0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.UInt64>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m1A6FE15165F5535AF856D6198B78A8DCA4FCB456_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<System.UInt64>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mF74A086D839CEC932B00E0EBADF695CC65070297_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method);
// T System.Nullable`1<System.UInt64>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Nullable_1_GetValueOrDefault_m383BBE1EE86EB198DE5E7182B3001F757590D9BA_gshared_inline (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method);
// T System.Nullable`1<System.UInt64>::GetValueOrDefault(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Nullable_1_GetValueOrDefault_m30647ED3EC7A7B4EB6B0921C22D4278AD7620D6D_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, uint64_t ___defaultValue0, const RuntimeMethod* method);
// System.String System.Nullable`1<System.UInt64>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m15E450D5734F119D7A2BF799157273B69ED25631_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<UnityEngine.Vector4>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD1583D7176671EB4CC7D6892965EFEC204BF7D11_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD19AE8AE4A6DC528095A78B4FD597474B36D9435_gshared_inline (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method);
// T System.Nullable`1<UnityEngine.Vector4>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::Equals(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m4A59576F9AE9F816A4523D73F18ECF285BD193D0_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB ___other0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m801AEB2373BE31EE1733A77B0AFEDA32D697A23C_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<UnityEngine.Vector4>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mE5E613C554D4DA45CF15B4B80EDB7E4F9E64B646_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method);
// T System.Nullable`1<UnityEngine.Vector4>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m5B9598A3D5819C35102F0659AA9F3618DDEDA644_gshared_inline (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method);
// T System.Nullable`1<UnityEngine.Vector4>::GetValueOrDefault(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m0AB7E8321FAFCBE3A3A3A47ABD151CDEFD48AF85_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___defaultValue0, const RuntimeMethod* method);
// System.String System.Nullable`1<UnityEngine.Vector4>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mC0A737D8FA059A31E61614FFA10B5FB1B1FDDFD2_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Queue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ___q0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.UInt32>::.ctor(T)
inline void Nullable_1__ctor_m755D804CE949DA06E57925317DD31EBCBD632F7A (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, uint32_t, const RuntimeMethod*))Nullable_1__ctor_m755D804CE949DA06E57925317DD31EBCBD632F7A_gshared)(__this, ___value0, method);
}
// System.Boolean System.Nullable`1<System.UInt32>::get_HasValue()
inline bool Nullable_1_get_HasValue_m8418F0A41AEC8419D1566F2EDA19D3A018E7ED56_inline (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, const RuntimeMethod*))Nullable_1_get_HasValue_m8418F0A41AEC8419D1566F2EDA19D3A018E7ED56_gshared_inline)(__this, method);
}
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method);
// T System.Nullable`1<System.UInt32>::get_Value()
inline uint32_t Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0 (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, const RuntimeMethod*))Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0_gshared)(__this, method);
}
// System.Boolean System.Nullable`1<System.UInt32>::Equals(System.Nullable`1<T>)
inline bool Nullable_1_Equals_m2C6C6844DF6567E0C791D49416BF1C93FC0BA409 (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 ___other0, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 , const RuntimeMethod*))Nullable_1_Equals_m2C6C6844DF6567E0C791D49416BF1C93FC0BA409_gshared)(__this, ___other0, method);
}
// System.Boolean System.Nullable`1<System.UInt32>::Equals(System.Object)
inline bool Nullable_1_Equals_mC73B137110588A85B0A6BB83E4F4E2AC3E66D879 (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_mC73B137110588A85B0A6BB83E4F4E2AC3E66D879_gshared)(__this, ___other0, method);
}
// System.Boolean System.UInt32::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt32_Equals_mDA42052033ADC930E6360CE7421A4E08DE72FC42 (uint32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.UInt32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt32_GetHashCode_m60E3A243F3D79311A64836148AE1AC23C679FC45 (uint32_t* __this, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<System.UInt32>::GetHashCode()
inline int32_t Nullable_1_GetHashCode_m2F21656EDB23C4B85500D796D75EDDF69FAA4335 (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, const RuntimeMethod*))Nullable_1_GetHashCode_m2F21656EDB23C4B85500D796D75EDDF69FAA4335_gshared)(__this, method);
}
// T System.Nullable`1<System.UInt32>::GetValueOrDefault()
inline uint32_t Nullable_1_GetValueOrDefault_m2F7A999B4898CADF9F5530F9F209DAAD77CA075F_inline (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m2F7A999B4898CADF9F5530F9F209DAAD77CA075F_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.UInt32>::GetValueOrDefault(T)
inline uint32_t Nullable_1_GetValueOrDefault_mF9F89F36CECD097F8E85C2F867390E62AE7A6B07 (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, uint32_t ___defaultValue0, const RuntimeMethod* method)
{
return (( uint32_t (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, uint32_t, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mF9F89F36CECD097F8E85C2F867390E62AE7A6B07_gshared)(__this, ___defaultValue0, method);
}
// System.String System.UInt32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_mEB55F257429D34ED2BF41AE9567096F1F969B9A0 (uint32_t* __this, const RuntimeMethod* method);
// System.String System.Nullable`1<System.UInt32>::ToString()
inline String_t* Nullable_1_ToString_m873CE77C1769332FD445254BA8BBE2186F970CAD (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *, const RuntimeMethod*))Nullable_1_ToString_m873CE77C1769332FD445254BA8BBE2186F970CAD_gshared)(__this, method);
}
// System.Void System.Nullable`1<System.UInt64>::.ctor(T)
inline void Nullable_1__ctor_mD8A1120D15C55A920006A55BF25539E1627CAB1D (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, uint64_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, uint64_t, const RuntimeMethod*))Nullable_1__ctor_mD8A1120D15C55A920006A55BF25539E1627CAB1D_gshared)(__this, ___value0, method);
}
// System.Boolean System.Nullable`1<System.UInt64>::get_HasValue()
inline bool Nullable_1_get_HasValue_mB2420C0D6B3AA027BB9C15B0E9B3FFEFB30C0662_inline (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, const RuntimeMethod*))Nullable_1_get_HasValue_mB2420C0D6B3AA027BB9C15B0E9B3FFEFB30C0662_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.UInt64>::get_Value()
inline uint64_t Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
return (( uint64_t (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, const RuntimeMethod*))Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB_gshared)(__this, method);
}
// System.Boolean System.Nullable`1<System.UInt64>::Equals(System.Nullable`1<T>)
inline bool Nullable_1_Equals_mF193276401F1D0720E82AF4F1E7F4829A630037D (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C ___other0, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C , const RuntimeMethod*))Nullable_1_Equals_mF193276401F1D0720E82AF4F1E7F4829A630037D_gshared)(__this, ___other0, method);
}
// System.Boolean System.Nullable`1<System.UInt64>::Equals(System.Object)
inline bool Nullable_1_Equals_m1A6FE15165F5535AF856D6198B78A8DCA4FCB456 (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_m1A6FE15165F5535AF856D6198B78A8DCA4FCB456_gshared)(__this, ___other0, method);
}
// System.Boolean System.UInt64::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt64_Equals_mE3F11FA30AC7187802CFFC59DF5F2C9965E8789F (uint64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.UInt64::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33 (uint64_t* __this, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<System.UInt64>::GetHashCode()
inline int32_t Nullable_1_GetHashCode_mF74A086D839CEC932B00E0EBADF695CC65070297 (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, const RuntimeMethod*))Nullable_1_GetHashCode_mF74A086D839CEC932B00E0EBADF695CC65070297_gshared)(__this, method);
}
// T System.Nullable`1<System.UInt64>::GetValueOrDefault()
inline uint64_t Nullable_1_GetValueOrDefault_m383BBE1EE86EB198DE5E7182B3001F757590D9BA_inline (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
return (( uint64_t (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m383BBE1EE86EB198DE5E7182B3001F757590D9BA_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.UInt64>::GetValueOrDefault(T)
inline uint64_t Nullable_1_GetValueOrDefault_m30647ED3EC7A7B4EB6B0921C22D4278AD7620D6D (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, uint64_t ___defaultValue0, const RuntimeMethod* method)
{
return (( uint64_t (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, uint64_t, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m30647ED3EC7A7B4EB6B0921C22D4278AD7620D6D_gshared)(__this, ___defaultValue0, method);
}
// System.String System.UInt64::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_m3644686F0A0E32CB94D300CF891DBD7920396F37 (uint64_t* __this, const RuntimeMethod* method);
// System.String System.Nullable`1<System.UInt64>::ToString()
inline String_t* Nullable_1_ToString_m15E450D5734F119D7A2BF799157273B69ED25631 (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *, const RuntimeMethod*))Nullable_1_ToString_m15E450D5734F119D7A2BF799157273B69ED25631_gshared)(__this, method);
}
// System.Void System.Nullable`1<UnityEngine.Vector4>::.ctor(T)
inline void Nullable_1__ctor_mD1583D7176671EB4CC7D6892965EFEC204BF7D11 (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , const RuntimeMethod*))Nullable_1__ctor_mD1583D7176671EB4CC7D6892965EFEC204BF7D11_gshared)(__this, ___value0, method);
}
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::get_HasValue()
inline bool Nullable_1_get_HasValue_mD19AE8AE4A6DC528095A78B4FD597474B36D9435_inline (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, const RuntimeMethod*))Nullable_1_get_HasValue_mD19AE8AE4A6DC528095A78B4FD597474B36D9435_gshared_inline)(__this, method);
}
// T System.Nullable`1<UnityEngine.Vector4>::get_Value()
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
return (( Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, const RuntimeMethod*))Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE_gshared)(__this, method);
}
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::Equals(System.Nullable`1<T>)
inline bool Nullable_1_Equals_m4A59576F9AE9F816A4523D73F18ECF285BD193D0 (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB ___other0, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB , const RuntimeMethod*))Nullable_1_Equals_m4A59576F9AE9F816A4523D73F18ECF285BD193D0_gshared)(__this, ___other0, method);
}
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::Equals(System.Object)
inline bool Nullable_1_Equals_m801AEB2373BE31EE1733A77B0AFEDA32D697A23C (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_m801AEB2373BE31EE1733A77B0AFEDA32D697A23C_gshared)(__this, ___other0, method);
}
// System.Boolean UnityEngine.Vector4::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector4_Equals_m71D14F39651C3FBEDE17214455DFA727921F07AA (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector4::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895 (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * __this, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<UnityEngine.Vector4>::GetHashCode()
inline int32_t Nullable_1_GetHashCode_mE5E613C554D4DA45CF15B4B80EDB7E4F9E64B646 (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, const RuntimeMethod*))Nullable_1_GetHashCode_mE5E613C554D4DA45CF15B4B80EDB7E4F9E64B646_gshared)(__this, method);
}
// T System.Nullable`1<UnityEngine.Vector4>::GetValueOrDefault()
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m5B9598A3D5819C35102F0659AA9F3618DDEDA644_inline (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
return (( Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m5B9598A3D5819C35102F0659AA9F3618DDEDA644_gshared_inline)(__this, method);
}
// T System.Nullable`1<UnityEngine.Vector4>::GetValueOrDefault(T)
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m0AB7E8321FAFCBE3A3A3A47ABD151CDEFD48AF85 (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___defaultValue0, const RuntimeMethod* method)
{
return (( Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , const RuntimeMethod*))Nullable_1_GetValueOrDefault_m0AB7E8321FAFCBE3A3A3A47ABD151CDEFD48AF85_gshared)(__this, ___defaultValue0, method);
}
// System.String UnityEngine.Vector4::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040 (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * __this, const RuntimeMethod* method);
// System.String System.Nullable`1<UnityEngine.Vector4>::ToString()
inline String_t* Nullable_1_ToString_mC0A737D8FA059A31E61614FFA10B5FB1B1FDDFD2 (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *, const RuntimeMethod*))Nullable_1_ToString_mC0A737D8FA059A31E61614FFA10B5FB1B1FDDFD2_gshared)(__this, method);
}
// System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3 (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method);
// System.Boolean System.Boolean::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Boolean::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411 (bool* __this, const RuntimeMethod* method);
// System.Boolean System.Byte::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3 (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Byte::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_m5111B9229C948E0B734597AED742936F9542E093 (uint8_t* __this, const RuntimeMethod* method);
// System.Boolean System.Char::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Char::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_mC265A6C986A17DD86981F26BBB0BE362DBE45B1B (Il2CppChar* __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.ColorBlock::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_Equals_m4A08484E3305C07A0CBE38C0205E21CDF05C88D7 (ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.ColorBlock::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ColorBlock_GetHashCode_m26AE64D514B61123616F54D3FC820A3FE11AA40E (ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * __this, const RuntimeMethod* method);
// System.Boolean System.Double::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m6D41B1207C7D8EAEC4935EC94E18014BC86E5086 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Double::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m33CB20AA5674C6F4367B7B08340B33FB979F9F39 (double* __this, const RuntimeMethod* method);
// System.Boolean System.Guid::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_Equals_mEBBDC6C362491914BFCF918799AC1E0AE156E027 (Guid_t * __this, RuntimeObject * ___o0, const RuntimeMethod* method);
// System.Int32 System.Guid::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_GetHashCode_mD32F5054E937C98B3D082594B3849808F1E92AE7 (Guid_t * __this, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_m5F032BFC65C340C98050D3DF2D76101914774464 (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667 (int32_t* __this, const RuntimeMethod* method);
// System.Boolean System.IntPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_Equals_m8ABF0A82F61F3B236B11DD4A1E19CEC5CC5A50F0 (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.IntPtr::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D (intptr_t* __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Matrix4x4::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Matrix4x4_Equals_mF6EB7A6D466F5AE1D1A872451359645D1C69843D (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Matrix4x4::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Matrix4x4_GetHashCode_m102B903082CD1C786C221268A19679820E365B59 (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Pose::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Pose_Equals_m93B87D733C2FBE5B400140040826521DCA4A2BB5 (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Pose::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367 (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ResolverContractKey_Equals_mD49A576A6E0E61FE3A2E1D0802DF231F42620CCB (ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ResolverContractKey_GetHashCode_m11A9D6B4275F416C5A3E5D34475892121190F83D (ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 * __this, const RuntimeMethod* method);
// System.Boolean System.Single::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_m94AA41817D00A9347BD3565F6BB8993361B81EB1 (float* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Single::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9 (float* __this, const RuntimeMethod* method);
// System.Boolean System.UInt16::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt16_Equals_m5140B1357E775CBD813A0853D6D3DFAA3E2CD2D0 (uint16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.UInt16::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt16_GetHashCode_mDA01CAA4AF8C22A63972F93F26AF7E888CEBD2AA (uint16_t* __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector3::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector3_Equals_m210CB160B594355581D44D4B87CF3D3994ABFED0 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector3::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector3_GetHashCode_m9F18401DA6025110A012F55BBB5ACABD36FA9A0A (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConvertKey_Equals_m7C1F1F351C365CAB6024E3F811389982DEEA341C (TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeConvertKey_GetHashCode_m38A5A208A7A4DE6C27584A52BA1C6ED3E01E0DFE (TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeNameKey_Equals_mE0ABF940FF9FEB459B9D7B43398BD2F8D34C3EB8 (TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeNameKey_GetHashCode_m2DEBBDEE942F1A8BA61ABC949280FC11F1ED6B62 (TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogError(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Exception System.Linq.Error::ArgumentNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E (String_t* ___s0, const RuntimeMethod* method);
// System.Void System.Linq.Expressions.ParameterExpression::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB (ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
// System.Boolean System.Diagnostics.Tracing.Statics::IsValueType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Int32 System.Array::GetLowerBound(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Queue`1<T>)
inline void Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8 (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ___q0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *, const RuntimeMethod*))Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8_gshared)(__this, ___q0, method);
}
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method);
// System.Exception System.Linq.Expressions.Error::InvalidTypeException(System.Object,System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_InvalidTypeException_m5E952D1990031D96800EBED45B638CEF527F719E (RuntimeObject * ___value0, Type_t * ___type1, String_t* ___paramName2, const RuntimeMethod* method);
// System.Exception System.Linq.Expressions.Error::InvalidNullValue(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_InvalidNullValue_mAF462550F9BE099D09E778C49B8F510632B213D1 (Type_t * ___type0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5 (int32_t ___argument0, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowNotSupportedException(System.ExceptionResource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E (int32_t ___resource0, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A (int32_t ___resource0, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Nullable`1<System.UInt32>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m755D804CE949DA06E57925317DD31EBCBD632F7A_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
{
__this->set_has_value_1((bool)1);
uint32_t L_0 = ___value0;
__this->set_value_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Nullable_1__ctor_m755D804CE949DA06E57925317DD31EBCBD632F7A_AdjustorThunk (RuntimeObject * __this, uint32_t ___value0, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
Nullable_1__ctor_m755D804CE949DA06E57925317DD31EBCBD632F7A(&_thisAdjusted, ___value0, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
}
// System.Boolean System.Nullable`1<System.UInt32>::get_HasValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m8418F0A41AEC8419D1566F2EDA19D3A018E7ED56_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_m8418F0A41AEC8419D1566F2EDA19D3A018E7ED56_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_get_HasValue_m8418F0A41AEC8419D1566F2EDA19D3A018E7ED56_inline(&_thisAdjusted, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<System.UInt32>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA8C70AB8B855A781DF3541F1547162C258CABAE8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0_RuntimeMethod_var)));
}
IL_0013:
{
uint32_t L_2 = (uint32_t)__this->get_value_0();
return (uint32_t)L_2;
}
}
IL2CPP_EXTERN_C uint32_t Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
uint32_t _returnValue;
_returnValue = Nullable_1_get_Value_mA098CC657B8EE4A9A7BEE20D901316C4B8B6B3C0(&_thisAdjusted, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Boolean System.Nullable`1<System.UInt32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mC73B137110588A85B0A6BB83E4F4E2AC3E66D879_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_000d;
}
}
{
bool L_1 = (bool)__this->get_has_value_1();
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
IL_000d:
{
RuntimeObject * L_2 = ___other0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))
{
goto IL_0017;
}
}
{
return (bool)0;
}
IL_0017:
{
RuntimeObject * L_3 = ___other0;
void* L_4 = alloca(sizeof(Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 ));
UnBoxNullable(L_3, UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, L_4);
bool L_5;
L_5 = Nullable_1_Equals_m2C6C6844DF6567E0C791D49416BF1C93FC0BA409((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)__this, (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 )((*(Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (bool)L_5;
}
}
IL2CPP_EXTERN_C bool Nullable_1_Equals_mC73B137110588A85B0A6BB83E4F4E2AC3E66D879_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_Equals_mC73B137110588A85B0A6BB83E4F4E2AC3E66D879(&_thisAdjusted, ___other0, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Boolean System.Nullable`1<System.UInt32>::Equals(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m2C6C6844DF6567E0C791D49416BF1C93FC0BA409_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 ___other0, const RuntimeMethod* method)
{
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 L_0 = ___other0;
bool L_1 = (bool)L_0.get_has_value_1();
bool L_2 = (bool)__this->get_has_value_1();
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_0010;
}
}
{
return (bool)0;
}
IL_0010:
{
bool L_3 = (bool)__this->get_has_value_1();
if (L_3)
{
goto IL_001a;
}
}
{
return (bool)1;
}
IL_001a:
{
uint32_t* L_4 = (uint32_t*)(&___other0)->get_address_of_value_0();
uint32_t L_5 = (uint32_t)__this->get_value_0();
uint32_t L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
bool L_8;
L_8 = UInt32_Equals_mDA42052033ADC930E6360CE7421A4E08DE72FC42((uint32_t*)(uint32_t*)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL);
return (bool)L_8;
}
}
IL2CPP_EXTERN_C bool Nullable_1_Equals_m2C6C6844DF6567E0C791D49416BF1C93FC0BA409_AdjustorThunk (RuntimeObject * __this, Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 ___other0, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_Equals_m2C6C6844DF6567E0C791D49416BF1C93FC0BA409(&_thisAdjusted, ___other0, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Int32 System.Nullable`1<System.UInt32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m2F21656EDB23C4B85500D796D75EDDF69FAA4335_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_000a;
}
}
{
return (int32_t)0;
}
IL_000a:
{
uint32_t* L_1 = (uint32_t*)__this->get_address_of_value_0();
int32_t L_2;
L_2 = UInt32_GetHashCode_m60E3A243F3D79311A64836148AE1AC23C679FC45((uint32_t*)(uint32_t*)L_1, /*hidden argument*/NULL);
return (int32_t)L_2;
}
}
IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_m2F21656EDB23C4B85500D796D75EDDF69FAA4335_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
int32_t _returnValue;
_returnValue = Nullable_1_GetHashCode_m2F21656EDB23C4B85500D796D75EDDF69FAA4335(&_thisAdjusted, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<System.UInt32>::GetValueOrDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Nullable_1_GetValueOrDefault_m2F7A999B4898CADF9F5530F9F209DAAD77CA075F_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
{
uint32_t L_0 = (uint32_t)__this->get_value_0();
return (uint32_t)L_0;
}
}
IL2CPP_EXTERN_C uint32_t Nullable_1_GetValueOrDefault_m2F7A999B4898CADF9F5530F9F209DAAD77CA075F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
uint32_t _returnValue;
_returnValue = Nullable_1_GetValueOrDefault_m2F7A999B4898CADF9F5530F9F209DAAD77CA075F_inline(&_thisAdjusted, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<System.UInt32>::GetValueOrDefault(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Nullable_1_GetValueOrDefault_mF9F89F36CECD097F8E85C2F867390E62AE7A6B07_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, uint32_t ___defaultValue0, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_000a;
}
}
{
uint32_t L_1 = ___defaultValue0;
return (uint32_t)L_1;
}
IL_000a:
{
uint32_t L_2 = (uint32_t)__this->get_value_0();
return (uint32_t)L_2;
}
}
IL2CPP_EXTERN_C uint32_t Nullable_1_GetValueOrDefault_mF9F89F36CECD097F8E85C2F867390E62AE7A6B07_AdjustorThunk (RuntimeObject * __this, uint32_t ___defaultValue0, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
uint32_t _returnValue;
_returnValue = Nullable_1_GetValueOrDefault_mF9F89F36CECD097F8E85C2F867390E62AE7A6B07(&_thisAdjusted, ___defaultValue0, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.String System.Nullable`1<System.UInt32>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m873CE77C1769332FD445254BA8BBE2186F970CAD_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = (bool)__this->get_has_value_1();
if (!L_0)
{
goto IL_001a;
}
}
{
uint32_t* L_1 = (uint32_t*)__this->get_address_of_value_0();
String_t* L_2;
L_2 = UInt32_ToString_mEB55F257429D34ED2BF41AE9567096F1F969B9A0((uint32_t*)(uint32_t*)L_1, /*hidden argument*/NULL);
return (String_t*)L_2;
}
IL_001a:
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return (String_t*)L_3;
}
}
IL2CPP_EXTERN_C String_t* Nullable_1_ToString_m873CE77C1769332FD445254BA8BBE2186F970CAD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint32_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 *)(__this + 1))->get_has_value_1());
}
String_t* _returnValue;
_returnValue = Nullable_1_ToString_m873CE77C1769332FD445254BA8BBE2186F970CAD(&_thisAdjusted, method);
*reinterpret_cast<uint32_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Object System.Nullable`1<System.UInt32>::Box(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_mC8AF28AEAACA687039519D3277CCFE7BE4BEB445_gshared (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 ___o0, const RuntimeMethod* method)
{
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 L_0 = ___o0;
bool L_1 = (bool)L_0.get_has_value_1();
if (L_1)
{
goto IL_000a;
}
}
{
return (RuntimeObject *)NULL;
}
IL_000a:
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 L_2 = ___o0;
uint32_t L_3 = (uint32_t)L_2.get_value_0();
uint32_t L_4 = L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4);
return (RuntimeObject *)L_5;
}
}
// System.Nullable`1<T> System.Nullable`1<System.UInt32>::Unbox(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 Nullable_1_Unbox_mFF3A157435787E2209059271A1AC4AA49A486F17_gshared (RuntimeObject * ___o0, const RuntimeMethod* method)
{
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___o0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 ));
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 L_1 = V_0;
return (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 )L_1;
}
IL_000d:
{
RuntimeObject * L_2 = ___o0;
Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 L_3;
memset((&L_3), 0, sizeof(L_3));
Nullable_1__ctor_m755D804CE949DA06E57925317DD31EBCBD632F7A((&L_3), (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
return (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 )L_3;
}
}
#ifdef __clang__
#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.Nullable`1<System.UInt64>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD8A1120D15C55A920006A55BF25539E1627CAB1D_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
__this->set_has_value_1((bool)1);
uint64_t L_0 = ___value0;
__this->set_value_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Nullable_1__ctor_mD8A1120D15C55A920006A55BF25539E1627CAB1D_AdjustorThunk (RuntimeObject * __this, uint64_t ___value0, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
Nullable_1__ctor_mD8A1120D15C55A920006A55BF25539E1627CAB1D(&_thisAdjusted, ___value0, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
}
// System.Boolean System.Nullable`1<System.UInt64>::get_HasValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB2420C0D6B3AA027BB9C15B0E9B3FFEFB30C0662_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_mB2420C0D6B3AA027BB9C15B0E9B3FFEFB30C0662_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_get_HasValue_mB2420C0D6B3AA027BB9C15B0E9B3FFEFB30C0662_inline(&_thisAdjusted, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<System.UInt64>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA8C70AB8B855A781DF3541F1547162C258CABAE8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB_RuntimeMethod_var)));
}
IL_0013:
{
uint64_t L_2 = (uint64_t)__this->get_value_0();
return (uint64_t)L_2;
}
}
IL2CPP_EXTERN_C uint64_t Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
uint64_t _returnValue;
_returnValue = Nullable_1_get_Value_m90FA9FBA39DBC4811AB9700983A957D5F2845EAB(&_thisAdjusted, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Boolean System.Nullable`1<System.UInt64>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m1A6FE15165F5535AF856D6198B78A8DCA4FCB456_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_000d;
}
}
{
bool L_1 = (bool)__this->get_has_value_1();
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
IL_000d:
{
RuntimeObject * L_2 = ___other0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))
{
goto IL_0017;
}
}
{
return (bool)0;
}
IL_0017:
{
RuntimeObject * L_3 = ___other0;
void* L_4 = alloca(sizeof(Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C ));
UnBoxNullable(L_3, UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, L_4);
bool L_5;
L_5 = Nullable_1_Equals_mF193276401F1D0720E82AF4F1E7F4829A630037D((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)__this, (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C )((*(Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (bool)L_5;
}
}
IL2CPP_EXTERN_C bool Nullable_1_Equals_m1A6FE15165F5535AF856D6198B78A8DCA4FCB456_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_Equals_m1A6FE15165F5535AF856D6198B78A8DCA4FCB456(&_thisAdjusted, ___other0, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Boolean System.Nullable`1<System.UInt64>::Equals(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mF193276401F1D0720E82AF4F1E7F4829A630037D_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C ___other0, const RuntimeMethod* method)
{
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C L_0 = ___other0;
bool L_1 = (bool)L_0.get_has_value_1();
bool L_2 = (bool)__this->get_has_value_1();
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_0010;
}
}
{
return (bool)0;
}
IL_0010:
{
bool L_3 = (bool)__this->get_has_value_1();
if (L_3)
{
goto IL_001a;
}
}
{
return (bool)1;
}
IL_001a:
{
uint64_t* L_4 = (uint64_t*)(&___other0)->get_address_of_value_0();
uint64_t L_5 = (uint64_t)__this->get_value_0();
uint64_t L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
bool L_8;
L_8 = UInt64_Equals_mE3F11FA30AC7187802CFFC59DF5F2C9965E8789F((uint64_t*)(uint64_t*)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL);
return (bool)L_8;
}
}
IL2CPP_EXTERN_C bool Nullable_1_Equals_mF193276401F1D0720E82AF4F1E7F4829A630037D_AdjustorThunk (RuntimeObject * __this, Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C ___other0, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_Equals_mF193276401F1D0720E82AF4F1E7F4829A630037D(&_thisAdjusted, ___other0, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Int32 System.Nullable`1<System.UInt64>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mF74A086D839CEC932B00E0EBADF695CC65070297_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_000a;
}
}
{
return (int32_t)0;
}
IL_000a:
{
uint64_t* L_1 = (uint64_t*)__this->get_address_of_value_0();
int32_t L_2;
L_2 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)(uint64_t*)L_1, /*hidden argument*/NULL);
return (int32_t)L_2;
}
}
IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_mF74A086D839CEC932B00E0EBADF695CC65070297_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
int32_t _returnValue;
_returnValue = Nullable_1_GetHashCode_mF74A086D839CEC932B00E0EBADF695CC65070297(&_thisAdjusted, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<System.UInt64>::GetValueOrDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Nullable_1_GetValueOrDefault_m383BBE1EE86EB198DE5E7182B3001F757590D9BA_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = (uint64_t)__this->get_value_0();
return (uint64_t)L_0;
}
}
IL2CPP_EXTERN_C uint64_t Nullable_1_GetValueOrDefault_m383BBE1EE86EB198DE5E7182B3001F757590D9BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
uint64_t _returnValue;
_returnValue = Nullable_1_GetValueOrDefault_m383BBE1EE86EB198DE5E7182B3001F757590D9BA_inline(&_thisAdjusted, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<System.UInt64>::GetValueOrDefault(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Nullable_1_GetValueOrDefault_m30647ED3EC7A7B4EB6B0921C22D4278AD7620D6D_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, uint64_t ___defaultValue0, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_000a;
}
}
{
uint64_t L_1 = ___defaultValue0;
return (uint64_t)L_1;
}
IL_000a:
{
uint64_t L_2 = (uint64_t)__this->get_value_0();
return (uint64_t)L_2;
}
}
IL2CPP_EXTERN_C uint64_t Nullable_1_GetValueOrDefault_m30647ED3EC7A7B4EB6B0921C22D4278AD7620D6D_AdjustorThunk (RuntimeObject * __this, uint64_t ___defaultValue0, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
uint64_t _returnValue;
_returnValue = Nullable_1_GetValueOrDefault_m30647ED3EC7A7B4EB6B0921C22D4278AD7620D6D(&_thisAdjusted, ___defaultValue0, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.String System.Nullable`1<System.UInt64>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m15E450D5734F119D7A2BF799157273B69ED25631_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = (bool)__this->get_has_value_1();
if (!L_0)
{
goto IL_001a;
}
}
{
uint64_t* L_1 = (uint64_t*)__this->get_address_of_value_0();
String_t* L_2;
L_2 = UInt64_ToString_m3644686F0A0E32CB94D300CF891DBD7920396F37((uint64_t*)(uint64_t*)L_1, /*hidden argument*/NULL);
return (String_t*)L_2;
}
IL_001a:
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return (String_t*)L_3;
}
}
IL2CPP_EXTERN_C String_t* Nullable_1_ToString_m15E450D5734F119D7A2BF799157273B69ED25631_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<uint64_t*>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C *)(__this + 1))->get_has_value_1());
}
String_t* _returnValue;
_returnValue = Nullable_1_ToString_m15E450D5734F119D7A2BF799157273B69ED25631(&_thisAdjusted, method);
*reinterpret_cast<uint64_t*>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Object System.Nullable`1<System.UInt64>::Box(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_mAA371AFE1CB2D6011F363DBBF169222005A3547E_gshared (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C ___o0, const RuntimeMethod* method)
{
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C L_0 = ___o0;
bool L_1 = (bool)L_0.get_has_value_1();
if (L_1)
{
goto IL_000a;
}
}
{
return (RuntimeObject *)NULL;
}
IL_000a:
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C L_2 = ___o0;
uint64_t L_3 = (uint64_t)L_2.get_value_0();
uint64_t L_4 = L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4);
return (RuntimeObject *)L_5;
}
}
// System.Nullable`1<T> System.Nullable`1<System.UInt64>::Unbox(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C Nullable_1_Unbox_mA1C34E6744DD541FA6F0BEF7BA3D9B61B66C9D86_gshared (RuntimeObject * ___o0, const RuntimeMethod* method)
{
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___o0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C ));
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C L_1 = V_0;
return (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C )L_1;
}
IL_000d:
{
RuntimeObject * L_2 = ___o0;
Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C L_3;
memset((&L_3), 0, sizeof(L_3));
Nullable_1__ctor_mD8A1120D15C55A920006A55BF25539E1627CAB1D((&L_3), (uint64_t)((*(uint64_t*)((uint64_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
return (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C )L_3;
}
}
#ifdef __clang__
#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.Nullable`1<UnityEngine.Vector4>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD1583D7176671EB4CC7D6892965EFEC204BF7D11_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___value0, const RuntimeMethod* method)
{
{
__this->set_has_value_1((bool)1);
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_0 = ___value0;
__this->set_value_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Nullable_1__ctor_mD1583D7176671EB4CC7D6892965EFEC204BF7D11_AdjustorThunk (RuntimeObject * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___value0, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
Nullable_1__ctor_mD1583D7176671EB4CC7D6892965EFEC204BF7D11(&_thisAdjusted, ___value0, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
}
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::get_HasValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD19AE8AE4A6DC528095A78B4FD597474B36D9435_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_mD19AE8AE4A6DC528095A78B4FD597474B36D9435_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_get_HasValue_mD19AE8AE4A6DC528095A78B4FD597474B36D9435_inline(&_thisAdjusted, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<UnityEngine.Vector4>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA8C70AB8B855A781DF3541F1547162C258CABAE8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE_RuntimeMethod_var)));
}
IL_0013:
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_value_0();
return (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2;
}
}
IL2CPP_EXTERN_C Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 _returnValue;
_returnValue = Nullable_1_get_Value_m6D5F435D8D38E885BB3A7566121C153C753748AE(&_thisAdjusted, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m801AEB2373BE31EE1733A77B0AFEDA32D697A23C_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_000d;
}
}
{
bool L_1 = (bool)__this->get_has_value_1();
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
IL_000d:
{
RuntimeObject * L_2 = ___other0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))
{
goto IL_0017;
}
}
{
return (bool)0;
}
IL_0017:
{
RuntimeObject * L_3 = ___other0;
void* L_4 = alloca(sizeof(Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB ));
UnBoxNullable(L_3, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var, L_4);
bool L_5;
L_5 = Nullable_1_Equals_m4A59576F9AE9F816A4523D73F18ECF285BD193D0((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)__this, (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB )((*(Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (bool)L_5;
}
}
IL2CPP_EXTERN_C bool Nullable_1_Equals_m801AEB2373BE31EE1733A77B0AFEDA32D697A23C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_Equals_m801AEB2373BE31EE1733A77B0AFEDA32D697A23C(&_thisAdjusted, ___other0, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Boolean System.Nullable`1<UnityEngine.Vector4>::Equals(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m4A59576F9AE9F816A4523D73F18ECF285BD193D0_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB ___other0, const RuntimeMethod* method)
{
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB L_0 = ___other0;
bool L_1 = (bool)L_0.get_has_value_1();
bool L_2 = (bool)__this->get_has_value_1();
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_0010;
}
}
{
return (bool)0;
}
IL_0010:
{
bool L_3 = (bool)__this->get_has_value_1();
if (L_3)
{
goto IL_001a;
}
}
{
return (bool)1;
}
IL_001a:
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_4 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(&___other0)->get_address_of_value_0();
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_5 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_value_0();
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_6 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
bool L_8;
L_8 = Vector4_Equals_m71D14F39651C3FBEDE17214455DFA727921F07AA((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL);
return (bool)L_8;
}
}
IL2CPP_EXTERN_C bool Nullable_1_Equals_m4A59576F9AE9F816A4523D73F18ECF285BD193D0_AdjustorThunk (RuntimeObject * __this, Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB ___other0, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
bool _returnValue;
_returnValue = Nullable_1_Equals_m4A59576F9AE9F816A4523D73F18ECF285BD193D0(&_thisAdjusted, ___other0, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Int32 System.Nullable`1<UnityEngine.Vector4>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mE5E613C554D4DA45CF15B4B80EDB7E4F9E64B646_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_000a;
}
}
{
return (int32_t)0;
}
IL_000a:
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_value_0();
int32_t L_2;
L_2 = Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)L_1, /*hidden argument*/NULL);
return (int32_t)L_2;
}
}
IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_mE5E613C554D4DA45CF15B4B80EDB7E4F9E64B646_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
int32_t _returnValue;
_returnValue = Nullable_1_GetHashCode_mE5E613C554D4DA45CF15B4B80EDB7E4F9E64B646(&_thisAdjusted, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<UnityEngine.Vector4>::GetValueOrDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m5B9598A3D5819C35102F0659AA9F3618DDEDA644_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_value_0();
return (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_0;
}
}
IL2CPP_EXTERN_C Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m5B9598A3D5819C35102F0659AA9F3618DDEDA644_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 _returnValue;
_returnValue = Nullable_1_GetValueOrDefault_m5B9598A3D5819C35102F0659AA9F3618DDEDA644_inline(&_thisAdjusted, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// T System.Nullable`1<UnityEngine.Vector4>::GetValueOrDefault(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m0AB7E8321FAFCBE3A3A3A47ABD151CDEFD48AF85_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___defaultValue0, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
if (L_0)
{
goto IL_000a;
}
}
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = ___defaultValue0;
return (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_1;
}
IL_000a:
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_value_0();
return (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2;
}
}
IL2CPP_EXTERN_C Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m0AB7E8321FAFCBE3A3A3A47ABD151CDEFD48AF85_AdjustorThunk (RuntimeObject * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___defaultValue0, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 _returnValue;
_returnValue = Nullable_1_GetValueOrDefault_m0AB7E8321FAFCBE3A3A3A47ABD151CDEFD48AF85(&_thisAdjusted, ___defaultValue0, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.String System.Nullable`1<UnityEngine.Vector4>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mC0A737D8FA059A31E61614FFA10B5FB1B1FDDFD2_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = (bool)__this->get_has_value_1();
if (!L_0)
{
goto IL_001a;
}
}
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_value_0();
String_t* L_2;
L_2 = Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)L_1, /*hidden argument*/NULL);
return (String_t*)L_2;
}
IL_001a:
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return (String_t*)L_3;
}
}
IL2CPP_EXTERN_C String_t* Nullable_1_ToString_mC0A737D8FA059A31E61614FFA10B5FB1B1FDDFD2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB _thisAdjusted;
if (!il2cpp_codegen_is_fake_boxed_object(__this))
{
_thisAdjusted.set_value_0(*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1));
_thisAdjusted.set_has_value_1(true);
}
else
{
_thisAdjusted.set_value_0(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_value_0());
_thisAdjusted.set_has_value_1(((Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB *)(__this + 1))->get_has_value_1());
}
String_t* _returnValue;
_returnValue = Nullable_1_ToString_mC0A737D8FA059A31E61614FFA10B5FB1B1FDDFD2(&_thisAdjusted, method);
*reinterpret_cast<Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *>(__this + 1) = _thisAdjusted.get_value_0();
return _returnValue;
}
// System.Object System.Nullable`1<UnityEngine.Vector4>::Box(System.Nullable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_mFB3CFBF2CEB3AE68ABAA358F7C6D9F2AC1D93512_gshared (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB ___o0, const RuntimeMethod* method)
{
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB L_0 = ___o0;
bool L_1 = (bool)L_0.get_has_value_1();
if (L_1)
{
goto IL_000a;
}
}
{
return (RuntimeObject *)NULL;
}
IL_000a:
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB L_2 = ___o0;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2.get_value_0();
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_4 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4);
return (RuntimeObject *)L_5;
}
}
// System.Nullable`1<T> System.Nullable`1<UnityEngine.Vector4>::Unbox(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB Nullable_1_Unbox_mBBA458B24C0B000F4FE41F6BDA7D2101DDB70958_gshared (RuntimeObject * ___o0, const RuntimeMethod* method)
{
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___o0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB ));
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB L_1 = V_0;
return (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB )L_1;
}
IL_000d:
{
RuntimeObject * L_2 = ___o0;
Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB L_3;
memset((&L_3), 0, sizeof(L_3));
Nullable_1__ctor_mD1583D7176671EB4CC7D6892965EFEC204BF7D11((&L_3), (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )((*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
return (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB )L_3;
}
}
#ifdef __clang__
#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.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m4A3FF7D0907C8AC9E36BEFC03D2C81853FFF341F_gshared (ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___x0, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_1 = ___x0;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_2 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_4 = ___y1;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_5 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mE879AC9823130741E333F9EA74094188D8C3B0B6_gshared (ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A *)((ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mA8CD9463685ED4BB7CB3C99CBF5DE8EB4575A1FD_gshared (ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m69F4F5D3B257FE3FF46A5EEDF7DF34D6F6959385_gshared (ObjectComparer_1_tC253AB6F61278B662ACE3A987507FB1D0354DD0A * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 *)__this);
(( void (*) (Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tE2DA70DC3121CF7B0B3C6B12459177EB44B70FF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mDFF4B94F3B791E9082476C86E31E7CA418EF2A4B_gshared (ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C * __this, KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 ___x0, KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 L_1 = ___x0;
KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 L_2 = (KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 L_4 = ___y1;
KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 L_5 = (KeyValuePair_2_tD19B66260C7C9D60E4EA4CE576A9DC5979BBA242 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mDB1EE257DCB00268C0E3E2781C7BC198F1531D72_gshared (ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C *)((ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m255DF7DC44B2B0E32627CC623FCBA33095B86BC8_gshared (ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mF2B90239E773AE06FE825F08EE22EE4BD4597617_gshared (ObjectComparer_1_t05E198E03B05C4ACE1D5AD9BA78851B16F00EA1C * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 *)__this);
(( void (*) (Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t418D6548737C36437C3B26526F77602C9BFDC7F7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m89AAB73D275FBF1678E1C5BC39036CE3A6E4BAE2_gshared (ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC * __this, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___x0, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_1 = ___x0;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_2 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_4 = ___y1;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_5 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mC5C52E002F7E87FF2A24A8838BD9A853AB2E04AC_gshared (ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC *)((ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mF6748DAA65BBB6F6D933C324A2D417DD465B7487_gshared (ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m6B2968922F62D65EF5CF1450F034E24DEE112E51_gshared (ObjectComparer_1_tD677301F12E712BC4581CBA745E1DBDA0EE44ACC * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 *)__this);
(( void (*) (Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t07782C5F575BC43FB0B1EEAB07EB542B85D310A7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m41429F7C28658C9376FA683D23FAE773EA3353F1_gshared (ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817 * __this, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___x0, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_1 = ___x0;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_2 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_4 = ___y1;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_5 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m89D5A614D9237FA44A418D1B21326A1A18D387B7_gshared (ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817 *)((ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mDC9E42863B1479FDC42FD8BC70CCEFE627A7316C_gshared (ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mD4E255C7140625D6A143F1EBC7CDAFD7716B4B13_gshared (ObjectComparer_1_t608753E8E608D18AEBB6CAC71D14754DC7451817 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F *)__this);
(( void (*) (Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t1C811D2FC74E7594F1B3F34F2E9ED14E03D20C7F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mD10CF99D1B6F1259CBE90C670D542CBD18A1916F_gshared (ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___x0, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_1 = ___x0;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_2 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_4 = ___y1;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m4EE46D3A4907FD8ADC85757F114C07703A4D9FF4_gshared (ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7 *)((ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mC5D6A5BFA7CB05E77D51B5C05DBAA08BB639094B_gshared (ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m7BFBA2A0887E15F8C67B864416436155D9C54568_gshared (ObjectComparer_1_t4F893CD5D99A856A3E87D65C04D122AF0123DDD7 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF *)__this);
(( void (*) (Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tE46A35440A3EDDFD6425EA0C3DC86ED6CA172EAF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.ValueTuple`2<System.Object,System.Object>>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mE09F105C951C1C7A26D3498441A336C406BDBE81_gshared (ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___x0, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_1 = ___x0;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_4 = ___y1;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_5 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.ValueTuple`2<System.Object,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m5D4B7206A2CC28BCB9120DDFF1A8101352F80E25_gshared (ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E *)((ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.ValueTuple`2<System.Object,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m8C46127ADD6B72E402DEBE1C13128C51C6B9875D_gshared (ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.ValueTuple`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m12BF2EA38584989E0204DDC0B3C075B66F2FE138_gshared (ObjectComparer_1_t5335B94BC5ECFB6AE44083E5F7AA049C319B2E6E * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B *)__this);
(( void (*) (Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tB52753308D5C17F9F011C93514BF6F3E0FB5335B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Byte>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m2343C3A060814B2114FA1687FE56D29F80F228A1_gshared (ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834 * __this, uint8_t ___x0, uint8_t ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
uint8_t L_1 = ___x0;
uint8_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
uint8_t L_4 = ___y1;
uint8_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Byte>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mD48CEA571B3DBC1D3C70BEA26E3BF4813F7E55C9_gshared (ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834 *)((ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Byte>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m944B88159C80C2CABAA2F9770333FEF688932907_gshared (ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Byte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mA8121059E8F7D28BB6017523C0E10DE1681453CF_gshared (ObjectComparer_1_tD5BCA615F562DCBB2EF1C2C2753B08E08C3C4834 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D *)__this);
(( void (*) (Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t346664F08452EB01EAF33D1A6102E414E093D66D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraMode>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m6E45BBF019581E801FFC0C7EA76A386B488CA480_gshared (ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3 * __this, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___x0, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_1 = ___x0;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_2 = (CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_4 = ___y1;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_5 = (CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.CameraMode>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mC5A0D6E320752F4B46B2F91A42A2A87657839909_gshared (ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3 *)((ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraMode>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mC0465E61548B50263E7A96C211D7B105F473E6C7_gshared (ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.CameraMode>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m489F7C32D2BBF8BC21B9510A027A81A41E60BB45_gshared (ObjectComparer_1_tB7C0546F5BB148A5F2AB6C8E4F75BE72D97FC5A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 *)__this);
(( void (*) (Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tB381ED7C6C67A622D2B8504182AB3C8C15451291 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Char>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mA7982D5A92CD537028905530AC2A233ED7D35EB9_gshared (ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8 * __this, Il2CppChar ___x0, Il2CppChar ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
Il2CppChar L_1 = ___x0;
Il2CppChar L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
Il2CppChar L_4 = ___y1;
Il2CppChar L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Char>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m7C13E4EE0320ACA570E05EFB61FC70648CC0C12A_gshared (ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8 *)((ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Char>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m08734A5CD4047DDCA571B034F5CA9740F7071B95_gshared (ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Char>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m90AC33FC891BD84B75C86183DC15B44BFFBCC394_gshared (ObjectComparer_1_tDB860299281A9B4B5472041A445A1B8E056191B8 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 *)__this);
(( void (*) (Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tC38AB2E5AE44DA7D8AE64184D06825F6EEA94EB4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mF5CDFCC200DE8FF112250B002C4B0CBCADF16DC9_gshared (ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___x0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = ___x0;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_2 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_4 = ___y1;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m6B2102E181BF90947DF7D4ABA8558C40DE693164_gshared (ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006 *)((ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mBD4D7C5089034F747E659DB0CE8B9B2C743AE2B6_gshared (ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m197F4A0080DC5956C56047374FC958C4A47DEF68_gshared (ObjectComparer_1_t81FDEF490507A5D753D868F3B33C130C17FE1006 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 *)__this);
(( void (*) (Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t06A148CCE1860B6B5057FF01C119673090F064F5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.DictionaryEntry>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mCC078EC089B9E2B6B17C2B996963192F12174675_gshared (ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7 * __this, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___x0, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_1 = ___x0;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_2 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_4 = ___y1;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_5 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.DictionaryEntry>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m9C8126B50439931F2156F46FE13500E642E16D81_gshared (ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7 *)((ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.DictionaryEntry>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m10EB5A81ADAF8C24745D4A191F9D44895617CFB7_gshared (ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.DictionaryEntry>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m1277F73688826D7AD5577769BC93040D18FB8E07_gshared (ObjectComparer_1_tF7FAC4448BCAF2E4FE60A247C58FDA5335EE18F7 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 *)__this);
(( void (*) (Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t805FE7B166494727415F2892F43AC79301B0CCC9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Double>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m104D793CCD4A47E6CD85100A01B9BB09574CE9E0_gshared (ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A * __this, double ___x0, double ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
double L_1 = ___x0;
double L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
double L_4 = ___y1;
double L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Double>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m7B2E9EB74E5EDD1D4F8A408B268F08953E6C21CC_gshared (ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A *)((ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Double>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m5E48B7F6106C2FC43CECE8DFFCF2A4AD395B6B58_gshared (ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Double>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mB0170AA9928F54E97DE00D83696B7566D561E070_gshared (ObjectComparer_1_t3387DFA6A77D1821667FA4EAEAC91CC87890AB4A * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C *)__this);
(( void (*) (Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tFA7BB54D9C304F3F609A9370166110D973A8307C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Guid>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m34F7B584F784ED1551ABC549BBAB838A18D46E8E_gshared (ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7 * __this, Guid_t ___x0, Guid_t ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
Guid_t L_1 = ___x0;
Guid_t L_2 = (Guid_t )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
Guid_t L_4 = ___y1;
Guid_t L_5 = (Guid_t )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Guid>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m704F7B342778E8656C2A9F40C540A6211420E325_gshared (ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7 *)((ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Guid>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mCCE0F5B1A8654D43945805CC6EB7D32813C0DB54_gshared (ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Guid>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mC6F1325A907A533DF0188EC3D48D8B8A2646BDD2_gshared (ObjectComparer_1_t85DAEFB1B0126B11C9421306856F22C9FFC0C2F7 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E *)__this);
(( void (*) (Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t2EB7657A4870B636EBF36EC87C0E9BEAD4EB994E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m45F20D223314592306BFB77057E9CD83D2435B9B_gshared (ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795 * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
int32_t L_1 = ___x0;
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
int32_t L_4 = ___y1;
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Int32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mC1B18AC6319D1648654D79109BD15030093FE4C2_gshared (ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795 *)((ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m1B295B63487A8F2EB0FA54C3A9CE248F20D6F7FD_gshared (ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mC08C20AE9E4027AB8C4848E7DAB8F355B88638D0_gshared (ObjectComparer_1_tB096C83670BAEF1F988C209B6998C5FDBC310795 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)__this);
(( void (*) (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m942872FBB6D2D901ECE1B3E66AD6355B92C70594_gshared (ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
int32_t L_1 = ___x0;
int32_t L_2 = (int32_t)L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
int32_t L_4 = ___y1;
int32_t L_5 = (int32_t)L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mEDC3E13BFD339D098BE589D01FEEB044F3C5F532_gshared (ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F *)((ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mBF28F75737C90D4372CACC2383035889CA3EAAFB_gshared (ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mFEFAC4E76EECD3BC233E7244A87FE8C2D4A78340_gshared (ObjectComparer_1_t6811CC7693519D234EB841F6E97588B3BC079E8F * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 *)__this);
(( void (*) (Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t0D4A8BA5B0F975F811F185B35E597041D0D23BD4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.IntPtr>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mB922CFB19A11BD48395F6799D9F66A14194E1996_gshared (ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4 * __this, intptr_t ___x0, intptr_t ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
intptr_t L_1 = ___x0;
intptr_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
intptr_t L_4 = ___y1;
intptr_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.IntPtr>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m2542417F1D6E743F6A6D37D02C4B09D596D50A3B_gshared (ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4 *)((ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.IntPtr>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mB94458A3038C5B81E71212D0920214838244E0C7_gshared (ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.IntPtr>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m4EF561C3ECC570BEA5CB74DB8193F3232EF9CAF2_gshared (ObjectComparer_1_tD7D8E6DA9BB6487F675E19E271F34A2772C8A5B4 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A *)__this);
(( void (*) (Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t6FAF826BD1476A3417732D08E55F53DD870E369A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m62C2D7367C6E052274040BBE0E9A690CB3608E97_gshared (ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA * __this, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___x0, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_1 = ___x0;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_2 = (InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_4 = ___y1;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_5 = (InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m8E19EB4B01BC68B72F89810D467111CB7699D177_gshared (ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA *)((ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m05A05FFCE7160A6B606FC640E03B816B74FB7455_gshared (ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m887DC7568DB1319D109D2B07630F3D760FF6A2D6_gshared (ObjectComparer_1_t13EE618C0BCBDE682A51889AADB846229A34B0EA * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 *)__this);
(( void (*) (Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t263EB54CA1238067D867DA25B24F5354423883A1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mE11D3DA7B43CB9FBB5E0A6659B3EFC7ED526CF7A_gshared (ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D * __this, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___x0, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_1 = ___x0;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_2 = (JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_4 = ___y1;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_5 = (JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mD3771016F9807D21BCB093D7FC4A1DFD967CFC3C_gshared (ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D *)((ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m04253664473CF2641260A36613D3C7868FDC6920_gshared (ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mE2B0C70812DDA91EEFA1E8A020965D1F330280AB_gshared (ObjectComparer_1_t50E6BFEB231171518BA45157DBB3AB395C88794D * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA *)__this);
(( void (*) (Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t5A28AC65787152854090BD87B19FAEF4F6DE7CBA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Object>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mB82152DB7C6D100B4BDB80652D5F8F7B83E68A6E_gshared (ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
RuntimeObject * L_1 = ___x0;
RuntimeObject * L_2 = ___y1;
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_3;
L_3 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL);
return (int32_t)L_3;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m39F8C2662B26009F37D00FA5766A6156DB63B3EC_gshared (ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C *)((ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mCD8A8C794E14C55482C55CA8500D1A1B3AD8A9B0_gshared (ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m74121E1E712C56CA171B66FFC2EB5E5A19E5460C_gshared (ObjectComparer_1_t07763AB55BC155871BF3551E8F6E101084AFBE6C * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)__this);
(( void (*) (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Pose>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mE2E2488AEABD37F866D56A2BC79C341B3DBE03F7_gshared (ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28 * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___x0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1 = ___x0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2 = (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_4 = ___y1;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_5 = (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Pose>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mFC57B9E069DF92D71E721C32C5E11923BD96F978_gshared (ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28 *)((ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Pose>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m49442D62D3D4C593B2DC44CC3AC6362871EDB2E4_gshared (ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Pose>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m24758103F53199CC78516985F6B31C3822B83143_gshared (ObjectComparer_1_t9B659017A7457FD05BF7DA85C274A0946ECE8D28 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 *)__this);
(( void (*) (Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tB4C4515C59F0DE88EB6C19CD26F655600D6E7F27 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m6B7C09DFCD1B1EEB33EEF72A5DB361AA4D5F2CA5_gshared (ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D * __this, RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___x0, RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 L_1 = ___x0;
RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 L_2 = (RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 L_4 = ___y1;
RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 L_5 = (RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m7618CE962A3FF9E67F4096E8919A083F10071AFD_gshared (ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D *)((ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m359BA87713C8274A0666288C259AB9784B72D198_gshared (ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mE5C4B30FC4E821EB57FE19137F523BF33867F3B0_gshared (ObjectComparer_1_t3B66870D4F242274B47C4504E6C84033E5BB8E6D * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE *)__this);
(( void (*) (Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t6B41EF98D8EF5ED2DF263D2048884490495BB6FE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit2D>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m27B82CF8D3E6924C217F949A95E1473105B67DA0_gshared (ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6 * __this, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___x0, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_1 = ___x0;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_2 = (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_4 = ___y1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_5 = (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit2D>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m15DBFF9BFAE572526D88B8A3D5DD0CC33A3C89A8_gshared (ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6 *)((ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit2D>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m17C3099B4D873AA8C3994757C213C058C83F9E93_gshared (ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit2D>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mF117FE4B25D4598FDFA24D86CA5B6953D1692A26_gshared (ObjectComparer_1_t95520F963DA9EB9FE96717D8463DD1FED936C1A6 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF *)__this);
(( void (*) (Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t450DE416723EEE0FC16FFADA21EFC30EDB58F1DF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m3D0E5E3A5B1C9ACA60F336990191DB6357483190_gshared (ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124 * __this, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___x0, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_1 = ___x0;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_2 = (RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_4 = ___y1;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_5 = (RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m20172AB18288EBF94C1D3AED0D3A4B8490CD18AA_gshared (ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124 *)((ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mD35E062B07437754E1DA99FE35C148464163BDE3_gshared (ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m2F2C054B21C7CC62922D5380F9548D331FC888BD_gshared (ObjectComparer_1_t84751645F4C1E4A1BD7DB78E1AA8799D31B3D124 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 *)__this);
(( void (*) (Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t122DF37193E7C1DD43B321EE314A59FF2370B833 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Single>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mE6FA64F94D03AB240CD32DED1FA7493E1DA1B744_gshared (ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA * __this, float ___x0, float ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
float L_1 = ___x0;
float L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
float L_4 = ___y1;
float L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Single>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m1A56F2B1AE2323D57058FA79F9F81C36E4DFFCBA_gshared (ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA *)((ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Single>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m7054F70C235363202D8E1BA58917638D7BA51EFD_gshared (ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mEA9CE505072A76416912B56D22A0B658887FAFF0_gshared (ObjectComparer_1_tC9F0E4A61331116717D96C2A4394E69CEA6CC7AA * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD *)__this);
(( void (*) (Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m116185C073442D42DD914CA778C0FA42FE440814_gshared (ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711 * __this, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___x0, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_1 = ___x0;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_2 = (UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_4 = ___y1;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_5 = (UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mCB061FF352528D31C7E9337C264221F74A59D0C8_gshared (ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711 *)((ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m75A1F394A13A3E5E8962C3B4CD9D552962032F3B_gshared (ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m6DF0C879420A81F95A4B56600BE342267B934F13_gshared (ObjectComparer_1_t58952328ADBEBF0A9E89D7556D676DAE93B4D711 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A *)__this);
(( void (*) (Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tDAC338D261861F21179649AADD50C1D46DF57D9A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m6F3A9226946A5031D732E99DD2D19C0A838C34A0_gshared (ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF * __this, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___x0, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_1 = ___x0;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_2 = (UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_4 = ___y1;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_5 = (UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mC2FD70E9761151347B2B6CBD9955E5E75E70EA49_gshared (ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF *)((ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mADF612FFD000A38BABCCB0AAE6E2D1F00BC20212_gshared (ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m28AF00298F915837C9CBA5CC3DE652EE69B4769B_gshared (ObjectComparer_1_tA9C48A839B1AF0C3BC0BB28DBA794B5DB847ECEF * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD *)__this);
(( void (*) (Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t9BF34F851963BFE05A60674AB56FCD36FEFE47FD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m016CEA1A6D7B701D247E875894FCCE5B384B954D_gshared (ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87 * __this, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___x0, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_1 = ___x0;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_2 = (UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_4 = ___y1;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_5 = (UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m97A96122C805ADA7B52A68FCAD0BE2F0412FDFCF_gshared (ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87 *)((ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mAC35F875318D85A87909ACF29A1A463CC3312ADF_gshared (ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m8C35A0717480997FBB054B1C62E01CF371EE114E_gshared (ObjectComparer_1_tA7F47DAA7BC215753A3B8675703ECEBE56736D87 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 *)__this);
(( void (*) (Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tF5716C24BE33C596DC399671D6519A39F4B35AF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.UInt64>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m186433AC489DE12217F57E7F9A88856D2994E4EC_gshared (ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129 * __this, uint64_t ___x0, uint64_t ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
uint64_t L_1 = ___x0;
uint64_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
uint64_t L_4 = ___y1;
uint64_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.UInt64>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m0F52A7CFA33BF87697D13743FC986C0342EF17BB_gshared (ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129 *)((ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.UInt64>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m0F9267CF97BA904E34463536FAEDF364776B0917_gshared (ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.UInt64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mD8D758118398027F2C04C24A23BB0C896CC22E93_gshared (ObjectComparer_1_t83D490089B71FFB693AC2858994D441C151BD129 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F *)__this);
(( void (*) (Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tC3C563568EC17388448E86C396D6A5F6E342724F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m18B51DA058EA63BB63CDB261AE7E1DAE4383D9BE_gshared (ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___x0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1 = ___x0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = ___y1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m8FEAC00B1B347F7520DBF2EA86D0C2CBF0D4D67B_gshared (ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71 *)((ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m7657195047F86697AA79CD07BB3EFC5105C4B36D_gshared (ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m1440D2A9385775A75EE57DE15D07E1FE9F5BBC84_gshared (ObjectComparer_1_t83C3387726AEE57503DCE019AD0F3367C7270F71 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 *)__this);
(( void (*) (Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tB646E122EA51FB5B9B706DC10AE1A798E993C227 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m78431E02CE3E987ABDB43A2C9AB1491ABF467C91_gshared (ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___x0, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = ___x0;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_4 = ___y1;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_5 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m6DABA7A879540957F2F04AABAEED38478BFF6CB6_gshared (ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1 *)((ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m43B38D6C7A57F0DA4756499DFADD5BA07A847CEE_gshared (ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mEC1D2EE6CA7385779176257CCCE25761A1E83F6A_gshared (ObjectComparer_1_t0634554197C6411CA652A508FC24F09C545D09E1 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)__this);
(( void (*) (Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m66123EB0EC759A0120F37E1076AADC7BF8FACE1D_gshared (ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89 * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___x0, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_1 = ___x0;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_2 = (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_4 = ___y1;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_5 = (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m04DA2B0991912C01898E8747749FB7CEE1B64B03_gshared (ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89 *)((ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m53B6B85B5C94B17C0855519E7ADD29334A26D3EB_gshared (ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m28E19D62AA4666CE16C7B9BAAC1407F468F68F36_gshared (ObjectComparer_1_t9A66FDC7C66514C441C460252E9B1FB39B576B89 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 *)__this);
(( void (*) (Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t87B2A189D9846C5C9569EC488262A644421C7123 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mB8633F8D9BE496F7A097907771419C15F9D3D29F_gshared (ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___x0, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_1 = ___x0;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_2 = (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_4 = ___y1;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_5 = (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m03DDB8E2E8C58D85CC49A453487457D3AE28023F_gshared (ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E *)((ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m7CD670C29E1121D4EA43AFE3E00841C6562F4B19_gshared (ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m70B2621CD674C59AB34C74C040A25D083C4CCAD6_gshared (ObjectComparer_1_tE578D10E26E67392CB622484D16FE20D7BB69B3E * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 *)__this);
(( void (*) (Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tC385DC6A40A657ACBEA63B9617EB719252162207 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m6F6ACF57B49FF0E1B4120011B6EB898435D0647B_gshared (ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B * __this, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___x0, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_1 = ___x0;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_2 = (CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_4 = ___y1;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_5 = (CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mDBE928EB84AFADB7F5D195D5811850544A480BCE_gshared (ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B *)((ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m3FF53920975749726030502C5983A1C77A2F3E6D_gshared (ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m182E936FB7CC1498167B379ABB8B7AA47F7FBDEA_gshared (ObjectComparer_1_t22912964237A97032FB743FBB3332660FC10BD5B * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC *)__this);
(( void (*) (Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t625BCBAA7A1B6A79897CE2E53B6F5FC48C6B90EC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/VideoModeData>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m2825CD6A0C35745CAE57FB7C4866C563E9DFB850_gshared (ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24 * __this, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___x0, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_1 = ___x0;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_2 = (VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_4 = ___y1;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_5 = (VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/VideoModeData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m7DFEC07519CB572E9CFCB56420894F95C10D587E_gshared (ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24 *)((ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/VideoModeData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m904901B659A8964ECD273B76A922E7F1BB755492_gshared (ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/VideoModeData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m8C79989B118B0F73ED0C03359A87B87BC068BA12_gshared (ObjectComparer_1_tFFB43B64EA05D37556FFD453760D3D624517AB24 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 *)__this);
(( void (*) (Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tED0FEE17CEA664392709B81D6D59F8ABC98FCEC9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m71599FF3012C9158A2D33A5F5C8EB38B8ECEA0A5_gshared (ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2 * __this, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___x0, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_1 = ___x0;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_2 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_4 = ___y1;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_5 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m3B7140DC1F96C1FFC578BD6DD8ACD24B3C66B36E_gshared (ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2 *)((ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mE45CF9938EC24F7E75F40CD272E369D6F2A295BF_gshared (ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_mEAB58EFFF6FAB09E0E5D025592278432909753D5_gshared (ObjectComparer_1_t65961F19F2FBF3938FEF1DAB12E69F54260D06B2 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 *)__this);
(( void (*) (Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tDE664C2B573DD6F2C3524275CBDCD6ED4EA0E950 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m8FD03C06A525B5C2170CDB5881CA0D3BC4492E9F_gshared (ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3 * __this, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___x0, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_1 = ___x0;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_2 = (TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_4 = ___y1;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_5 = (TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mF28C7AF9F037A7B065539B7383588C56D57B1D02_gshared (ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3 *)((ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m7C6CAFF4C8913391A2B787CD7CC27E548547E62E_gshared (ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m6B23F080EFF2A0264AD98B67D14A42621499C489_gshared (ObjectComparer_1_tD348195BCEFCA59AE5746FE3E931EA565A0400A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E *)__this);
(( void (*) (Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tD769B37981A132717DFE1803DEB62AB13F1A145E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m3A2BCC36E3918339CE888E0559851FCC60E3793B_gshared (ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780 * __this, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___x0, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_1 = ___x0;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_2 = (TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_4 = ___y1;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_5 = (TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mBF8C680743A7217006A0C1F6DB4D334A8487A54C_gshared (ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780 *)((ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m481212D9EA4CA94FA564A94128FFB7D191DA9813_gshared (ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m3868F2A6E4A02E986518CBE4CE9EC14DDBF49746_gshared (ObjectComparer_1_tAD185C448004605722CB8CE39A3249D674ADB780 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 *)__this);
(( void (*) (Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t1835DBB000E9400B69E8FF1723BD923AAFD0CBE3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_m5CB50D2B9F58602F4F91C5B30701B4DDE029BF23_gshared (ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___x0, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_1 = ___x0;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_2 = (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_4 = ___y1;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_5 = (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_mD9209238D4943C089E04754574979396EE179985_gshared (ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C *)((ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_m695A990D46B51853E551654C338450626ADA3304_gshared (ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m05868D3F06D44F887998106D1429807F69D454AC_gshared (ObjectComparer_1_t54228A537A8C19F9C7F4803F31209571B36F216C * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F *)__this);
(( void (*) (Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_tA2D54D24CE2EB15DBD84D6F83A060AC420EEFF6F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Compare(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_Compare_mF0E4B50FEDF967798444F0F9B245DF89CDDC01C0_gshared (ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5 * __this, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___x0, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_0 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_1 = ___x0;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_2 = (TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB )L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_4 = ___y1;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_5 = (TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_5);
NullCheck((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0);
int32_t L_7;
L_7 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)L_0, (RuntimeObject *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
return (int32_t)L_7;
}
}
// System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectComparer_1_Equals_m7835EFFD8993E817C09311548280A99FE96D00D3_gshared (ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5 *)((ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectComparer_1_GetHashCode_mF569D3F6759F679084F449E0BD7D8BAF1D0C1CBF_gshared (ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectComparer_1__ctor_m1E095F438C730DD1138B0524E6E55AC102BDE4FA_gshared (ObjectComparer_1_t14633A850C9DE9E07CF798717E2E79D09742B0B5 * __this, const RuntimeMethod* method)
{
{
NullCheck((Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 *)__this);
(( void (*) (Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Comparer_1_t476BA5B0B8DBC6033761D8AABB932A8AAE6E6C89 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectConstructor_1__ctor_m00B73FF4C580838ACE06F1D9AC644540A5BAD947_gshared (ObjectConstructor_1_t600CD64268FD91D4F064E49867A166B8E9766B13 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::Invoke(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ObjectConstructor_1_Invoke_mBDD0C60001ED65FAF1CBE1220455413E8D1664EC_gshared (ObjectConstructor_1_t600CD64268FD91D4F064E49867A166B8E9766B13 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args0, const RuntimeMethod* method)
{
RuntimeObject * result = NULL;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef RuntimeObject * (*FunctionPointerType) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___args0, targetMethod);
}
else
{
// closed
typedef RuntimeObject * (*FunctionPointerType) (void*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___args0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ___args0);
else
result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ___args0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___args0);
else
result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___args0);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___args0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(targetMethod, targetThis, ___args0);
else
result = GenericVirtFuncInvoker1< RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(targetMethod, targetThis, ___args0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___args0);
else
result = VirtFuncInvoker1< RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___args0);
}
}
else
{
if (targetThis == NULL)
{
typedef RuntimeObject * (*FunctionPointerType) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___args0, targetMethod);
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (void*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___args0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::BeginInvoke(System.Object[],System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ObjectConstructor_1_BeginInvoke_m7E5C2C8DE557BFB104A1FAD61E811C544C8D26DE_gshared (ObjectConstructor_1_t600CD64268FD91D4F064E49867A166B8E9766B13 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___args0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ObjectConstructor_1_EndInvoke_m7F5AC57FB71901EA1A5535DA25AC26A250FE9CE6_gshared (ObjectConstructor_1_t600CD64268FD91D4F064E49867A166B8E9766B13 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (RuntimeObject *)__result;;
}
#ifdef __clang__
#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.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mEBECF0AEA05ECD5657ACE2788529CDA3F87FB90C_gshared (ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___x0, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_2 = ___y1;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_3 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m5BDA81809478438631CA1D88E8C2C55C79470640_gshared (ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mE41A91E2471437D955748304F5F183C66FCFB92A_gshared (ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 * __this, KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* ___array0, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_7 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_16 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_19 = ___value1;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_20 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mC948B27FD177C9BE9612EA8E7417DA5DF6ABA588_gshared (ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 * __this, KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* ___array0, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_7 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_16 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_19 = ___value1;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_20 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m3DC1EAD216E34534C49031B436CD06CD93B9E513_gshared (ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 *)((ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m4942C057CADF331AA2924BEF73E1D19F1C4D287F_gshared (ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m4A0AF3017B5E66DA69A9C1F3AD2B165AB335A7D9_gshared (ObjectEqualityComparer_1_tCE6F3207F5A8C50D8351DF2A954A322F99A97047 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA *)__this);
(( void (*) (EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tEFECEF9BD24787D199B80C055EE44F316C4B6CDA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9A13DDAA2131474A7B5BD3D8F4221E604984E7AF_gshared (ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 * __this, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___x0, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_2 = ___y1;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_3 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m85127A77ADA1FEA26E49FBB9A76F5EA7A712DF23_gshared (ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 * __this, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m7B45EC8FF94B607A807EE673F1C8B736484182A1_gshared (ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 * __this, KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* ___array0, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_7 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_16 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_19 = ___value1;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_20 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m5191EEEC2FFEA710E98B0B9FE48719F4AFF34CD3_gshared (ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 * __this, KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* ___array0, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_7 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_16 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_t5E45801875EDB7AC8EE517B5CD941F08D7FAB1B9* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_19 = ___value1;
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_20 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mE8858EA0506CAE3B8BFC20099038159226140A30_gshared (ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 *)((ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m66482443AC636878B341FBCAD8B7E65C5618A975_gshared (ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mB7CDD1C797604B5904FBCA41621E9AF4C35D7020_gshared (ObjectEqualityComparer_1_tD9F9B5DCED47D19FF2B988DBADFCD36172A95191 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 *)__this);
(( void (*) (EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t729622188CE4808830BE6E696F9C20D747F13D98 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mA6F7561F519BB36141F4C2AF4BE1FE9862A6733F_gshared (ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 * __this, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___x0, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_2 = ___y1;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_3 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m5BB8154E5F8AD42EA6AE482E33C8C96524A087C1_gshared (ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 * __this, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m288EAE24AAF77F96E68707431B8EEE960A9EE32E_gshared (ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 * __this, KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* ___array0, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_7 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_16 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_19 = ___value1;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_20 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m3C16ACAC149A57FAE6A2CF5B2F24BC245D840C80_gshared (ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 * __this, KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* ___array0, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_7 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_16 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_t605D5D9F1852A63EA196D844EEA62F07F36B081C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_19 = ___value1;
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_20 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9FB60431E2E459A503F507E29CFABE5F64BCB434_gshared (ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 *)((ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m4306E5B73C42EC6E737AE22F8AA1A1B708B6D71D_gshared (ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mC09BE147E5F18044CE971FE5B089290738C20007_gshared (ObjectEqualityComparer_1_t7A7E766C3E8749E5AEBF1A771D1C08C2B5AAE0B4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 *)__this);
(( void (*) (EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t1EC8B4A78B128FF2829B178671413DE96CB1F393 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m165DBA5BE89924ACAC60BA98627A2D5F0D11A9AF_gshared (ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___x0, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_2 = ___y1;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_3 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m93D2B271DDC21871E164056975ECDC70349BDB54_gshared (ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m9AD7B51F8C24A869D40C99A671385CFAA465440E_gshared (ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB * __this, KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* ___array0, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_7 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_16 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_19 = ___value1;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_20 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m86C73482156C00E31FE23318CA09A9E9EC565CC4_gshared (ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB * __this, KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* ___array0, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_7 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_16 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_19 = ___value1;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_20 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m26248C36FBD08B248F8EB78D2BA47756BDBDABC2_gshared (ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB *)((ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m3AF4E149EB3520532E3D293DC27BCE846D7A7596_gshared (ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mB277520F3576B92F31566C52A1945277D974F1BC_gshared (ObjectEqualityComparer_1_tEB1ADDC8DE42B299239639073BD16CDF537C08CB * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 *)__this);
(( void (*) (EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t1081D82D8958685A1778AC51629A2B36825400C7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mF6F033BEF8C46812613C7E5F64DE8011D82A2AA8_gshared (ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___x0, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = ___y1;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_3 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
Il2CppFakeBox<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 > L_5(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
const VirtualInvokeData& il2cpp_virtual_invoke_data__30 = il2cpp_codegen_get_virtual_invoke_data(0, (&L_5));
bool L_6;
L_6 = (( bool (*) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__30.methodPtr)((RuntimeObject *)(&L_5), (RuntimeObject *)L_4, /*hidden argument*/il2cpp_virtual_invoke_data__30.method);
___x0 = L_5.m_Value;
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m69CE090B9D65D66A1A76A60D67D9814886FAF6B5_gshared (ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
Il2CppFakeBox<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 > L_1(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
const VirtualInvokeData& il2cpp_virtual_invoke_data__18 = il2cpp_codegen_get_virtual_invoke_data(2, (&L_1));
int32_t L_2;
L_2 = (( int32_t (*) (RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__18.methodPtr)((RuntimeObject *)(&L_1), /*hidden argument*/il2cpp_virtual_invoke_data__18.method);
___obj0 = L_1.m_Value;
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m1AAC88FCE4FA63C343ABA207130100F51B9C828E_gshared (ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 * __this, ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* ___array0, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_7 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_16 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_19 = ___value1;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_20 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
Il2CppFakeBox<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 > L_22(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
const VirtualInvokeData& il2cpp_virtual_invoke_data__82 = il2cpp_codegen_get_virtual_invoke_data(0, (&L_22));
bool L_23;
L_23 = (( bool (*) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__82.methodPtr)((RuntimeObject *)(&L_22), (RuntimeObject *)L_21, /*hidden argument*/il2cpp_virtual_invoke_data__82.method);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = L_22.m_Value;
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m161CBEDE37CB4E403B75D9A3A2BF5A228CE401CF_gshared (ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 * __this, ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* ___array0, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_7 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_16 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ValueTuple_2U5BU5D_tD132CAFC435A6E98F4DC6821CC5508CF6CED384A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_19 = ___value1;
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_20 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
Il2CppFakeBox<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 > L_22(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_virtual_invoke_data(0, (&L_22));
bool L_23;
L_23 = (( bool (*) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject *)(&L_22), (RuntimeObject *)L_21, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = L_22.m_Value;
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m7E52BFD21C73E8231FEB7AC5043C3355913FADEF_gshared (ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 *)((ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mF215812E8524CE77F4576A98C6863757F8D04CE6_gshared (ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.ValueTuple`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mA1A1B0A41F6A17E28992DD3D15103358596473A1_gshared (ObjectEqualityComparer_1_t4820A13272AB8125716F65A9D156F3655EC40DF5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 *)__this);
(( void (*) (EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t2B6643FA87E8AD63841B586702C5D8A72D817950 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mEE8B656924DA6486809C9CF5B575CAFCBF154D45_gshared (ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 * __this, bool ___x0, bool ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
bool L_2 = ___y1;
bool L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8((bool*)(bool*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m6106827F8A3783FCD6636E30596BA8D29F0BD00A_gshared (ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 * __this, bool ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(bool*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mB5831BA6E319F9503E5142645B46195E1C6D3CDF_gshared (ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___array0, bool ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
bool L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
bool L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
bool L_19 = ___value1;
bool L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8((bool*)(bool*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mA6CE74894603C2CECD5D0017168759A102FA7E20_gshared (ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___array0, bool ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
bool L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
bool L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
bool L_19 = ___value1;
bool L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8((bool*)(bool*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m21A370884C710CF02E89C17803798A997A9CB9CB_gshared (ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 *)((ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mFC526C6013B6F71D9DFA91DC7F7AF83CD347146D_gshared (ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m3EDE4D56540DB57B3211947F8C6E06834EBB3A16_gshared (ObjectEqualityComparer_1_tC2F1D227545E052E41D2D05D1954DD7C3D351223 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)__this);
(( void (*) (EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m1C00BC737CACB3A2F4477529E446E5C5C27F047E_gshared (ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD * __this, uint8_t ___x0, uint8_t ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
uint8_t L_2 = ___y1;
uint8_t L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3((uint8_t*)(uint8_t*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m10F6669B3786FC5C6ED687E958BCBBFD24714D0F_gshared (ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD * __this, uint8_t ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Byte_GetHashCode_m5111B9229C948E0B734597AED742936F9542E093((uint8_t*)(uint8_t*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m420EA57AA1710EB6AA45A12595830D4BBF371E5D_gshared (ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
uint8_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
uint8_t L_19 = ___value1;
uint8_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3((uint8_t*)(uint8_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m98CB0A0C5CBC9F04EB8B28B5D0CE039830AF94D1_gshared (ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
uint8_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
uint8_t L_19 = ___value1;
uint8_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3((uint8_t*)(uint8_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mD2906DB047339C27B3B3EA8F22C6C5A5E45F335E_gshared (ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD *)((ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m5D92C0A19ABC9A70F58112969B331950A11874CF_gshared (ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m26A7802F2740857B4D68A13F6B9DD7026031C664_gshared (ObjectEqualityComparer_1_tC7EB18DDAE572EB358C7EE7787772637D091F6CD * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 *)__this);
(( void (*) (EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m2E90E0BAC2BD986CE6010FCF323E9B44F34516EA_gshared (ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA * __this, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___x0, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_2 = ___y1;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_3 = (CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m33880C2AA2D0FBA7AF5A7D12124CA7BAE8195A39_gshared (ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA * __this, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m64ECC389CC3DE09D5D96096DE5D11287841BE424_gshared (ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA * __this, CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* ___array0, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_19 = ___value1;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_20 = (CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mEABB4AC7646714007EB3900378EFC3711E48819A_gshared (ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA * __this, CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* ___array0, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
CameraModeU5BU5D_tF80AD09F39591C68349F9E93EC50259C727C03B8* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_19 = ___value1;
CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B L_20 = (CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m551995C79F7B79C4F5C42BB47CDA6C5D0811B894_gshared (ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA *)((ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m9D88AB86F7AD0EA64ABC67700909BD433DFC7F44_gshared (ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraMode>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m12C3CCD85AD3DFD7B6C0085C65E667A96855DDCA_gshared (ObjectEqualityComparer_1_tC76F6B907D91D66F2680D6F84CB0B6787FA5E5DA * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C *)__this);
(( void (*) (EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t96514A4E84C0FC2785EA9644D0EE6AD10E5A786C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m1F47F1B24CB5F4780A68BBF35B053E3AE5423448_gshared (ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 * __this, Il2CppChar ___x0, Il2CppChar ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Il2CppChar L_2 = ___y1;
Il2CppChar L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8((Il2CppChar*)(Il2CppChar*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m1697E039C64A2C4F835DB94BDC41313798C73EA3_gshared (ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 * __this, Il2CppChar ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Char_GetHashCode_mC265A6C986A17DD86981F26BBB0BE362DBE45B1B((Il2CppChar*)(Il2CppChar*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mCA07C1FF66E38CCF6AC85E2CDAA352FF5E3C3543_gshared (ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___array0, Il2CppChar ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Il2CppChar L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Il2CppChar L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Il2CppChar L_19 = ___value1;
Il2CppChar L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8((Il2CppChar*)(Il2CppChar*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m9B8EA4BD5DA90E29B6CF6D02E7B414E743E21E7A_gshared (ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___array0, Il2CppChar ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Il2CppChar L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Il2CppChar L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Il2CppChar L_19 = ___value1;
Il2CppChar L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8((Il2CppChar*)(Il2CppChar*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m6B73483CD97505E87EDD7DD0E0EEB8038821EC86_gshared (ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 *)((ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mDA2BA24CD0B52039EC7B86A190BA5DD0B68D4FC1_gshared (ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m044873A9BC93518242BD0461613F9E37209B4EC6_gshared (ObjectEqualityComparer_1_tEDD07DD44B5AAF9D28523C6070EDF528EFDD67D4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 *)__this);
(( void (*) (EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t5A410E1AF4F49A297AB2DC20A45E858B099B3D30 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m38D204C4B9EFADBF6A7E49B1E398ACAFB41C0987_gshared (ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___x0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_2 = ___y1;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_3 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mFDB4D2664CF3862315FCBB774948D1923FB8A4A9_gshared (ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m6BF466833A58AFFB9DCC8E599E029A47BC63C1F9_gshared (ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 * __this, Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ___array0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_19 = ___value1;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_20 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m033CB34B35F64683F460C555CDCF5FA57DDE1FA6_gshared (ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 * __this, Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ___array0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_19 = ___value1;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_20 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mB162FF3C468CA2EA85105FF0B72D9AC9D46D78A4_gshared (ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 *)((ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m57AC3D7DD342499D73F22C6713A543902F6AAB85_gshared (ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mDE0FAE3E42A1F09ECB05478B65B22A313287727B_gshared (ObjectEqualityComparer_1_t4D80DCFC46A5027A6268E4EDE16C052ACFCB8993 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 *)__this);
(( void (*) (EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t2A96FB8DFC770B71EEA338DE7A96120575599ED5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m80A5A1F6BFDFB5BB0820409D3AE06D6E8B94D156_gshared (ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 * __this, ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___x0, ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_2 = ___y1;
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_3 = (ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = ColorBlock_Equals_m4A08484E3305C07A0CBE38C0205E21CDF05C88D7((ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m9F4A1D9BF77CB69AB36D825A90AD6D83D2DD55E9_gshared (ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 * __this, ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = ColorBlock_GetHashCode_m26AE64D514B61123616F54D3FC820A3FE11AA40E((ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m1A97BAF5CB2BEAA2AAFDE248F2E10A83292127BA_gshared (ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 * __this, ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* ___array0, ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_19 = ___value1;
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_20 = (ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = ColorBlock_Equals_m4A08484E3305C07A0CBE38C0205E21CDF05C88D7((ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m306EE58D2D1B55DB838C6DC58AAF2E60030AD462_gshared (ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 * __this, ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* ___array0, ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ColorBlockU5BU5D_t1C82C1DFC57466CF06722E6C0252B226D3068863* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_19 = ___value1;
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_20 = (ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = ColorBlock_Equals_m4A08484E3305C07A0CBE38C0205E21CDF05C88D7((ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m8808F6FA4E5157EEAE64E6AB99A0244281E401D1_gshared (ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 *)((ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mD6BF1B015F7CB92FD6E66F4362FC713C3A2C22D8_gshared (ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mBAAA55B27CC9E53514A962D4AE70B4B8AF539C36_gshared (ObjectEqualityComparer_1_tED4799A234213E556AF36F80D28003462D5AB058 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 *)__this);
(( void (*) (EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tC05F233506704F39DCBB67A7941137171132CD40 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mDB768CC427EEF2D26CFE2052F2B00B512FD435A3_gshared (ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 * __this, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___x0, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_2 = ___y1;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_3 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m26F7622F7F2443BB96A4AB5A9237B5A319F70B89_gshared (ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 * __this, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m240E69FDE11DFFFCA92C1BD3E82BF6F509E15B09_gshared (ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 * __this, DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* ___array0, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_19 = ___value1;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_20 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mF187D74919894CB905FA5B1B4387681418D67ED2_gshared (ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 * __this, DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* ___array0, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
DictionaryEntryU5BU5D_t33D15CB512B443D0720CE6253811B8F4FA7179B1* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_19 = ___value1;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_20 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mC1A23F74418EA499B8D2965BDE62E23292F801F7_gshared (ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 *)((ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mE061735432B3243027EFBD2CB23791A6180BFA4D_gshared (ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.DictionaryEntry>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m37897C49D58608192F15051DE1233197AC9C33A2_gshared (ObjectEqualityComparer_1_tED0A6BBE9737FBBAD0104803FBE2C0446B309CF5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 *)__this);
(( void (*) (EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t68BEC150A847FA5A6AD2C065637BD1B25BB61056 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Double>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m21B4C262816D6B7006C57FFEDC5813A229E807B7_gshared (ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 * __this, double ___x0, double ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
double L_2 = ___y1;
double L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Double_Equals_m6D41B1207C7D8EAEC4935EC94E18014BC86E5086((double*)(double*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Double>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m85E1F8B91FACEC85CDC87EB8FBCDDD5FD5825B52_gshared (ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 * __this, double ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Double_GetHashCode_m33CB20AA5674C6F4367B7B08340B33FB979F9F39((double*)(double*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Double>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m813FA855A397EC7E1E5696DAD7ECEBAE91E75215_gshared (ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 * __this, DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
double L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
double L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
double L_19 = ___value1;
double L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Double_Equals_m6D41B1207C7D8EAEC4935EC94E18014BC86E5086((double*)(double*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Double>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m8B0EABB9D019020AE3900DE3746859C5419ADAA8_gshared (ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 * __this, DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
double L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
double L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
double L_19 = ___value1;
double L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Double_Equals_m6D41B1207C7D8EAEC4935EC94E18014BC86E5086((double*)(double*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Double>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m20260DA05C4FE0DAA0A114B86EBFC4822C02BF04_gshared (ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 *)((ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Double>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m2D99A9FAB3334BFAEF11AF199E828D5478BE3326_gshared (ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Double>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mA66D7F9B24FCDD4CCE5E2C139947A9A590928670_gshared (ObjectEqualityComparer_1_t62B66F29BAC66D074B0D372B6EEEAAC4DEEF1135 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 *)__this);
(( void (*) (EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t0B28105570C969D8B3F60B337DF2ACDF8C63C825 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m761BB8C756FC285060EABBB6B358997ADAD5B946_gshared (ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 * __this, Guid_t ___x0, Guid_t ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Guid_t L_2 = ___y1;
Guid_t L_3 = (Guid_t )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Guid_Equals_mEBBDC6C362491914BFCF918799AC1E0AE156E027((Guid_t *)(Guid_t *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mE63BB0E6A3C1161D7F2CE9DDE255B27B65DE2689_gshared (ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 * __this, Guid_t ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Guid_GetHashCode_mD32F5054E937C98B3D082594B3849808F1E92AE7((Guid_t *)(Guid_t *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mBA321C391014AD502131EBD2BD16633303EC968D_gshared (ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 * __this, GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* ___array0, Guid_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Guid_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Guid_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Guid_t L_19 = ___value1;
Guid_t L_20 = (Guid_t )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Guid_Equals_mEBBDC6C362491914BFCF918799AC1E0AE156E027((Guid_t *)(Guid_t *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mC255DB6BFF7153E8D824A3E258F02673206419C6_gshared (ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 * __this, GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* ___array0, Guid_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Guid_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Guid_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
GuidU5BU5D_t6DCED1B9FC5592C43FAA73D81705104BD18151B8* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Guid_t L_19 = ___value1;
Guid_t L_20 = (Guid_t )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Guid_Equals_mEBBDC6C362491914BFCF918799AC1E0AE156E027((Guid_t *)(Guid_t *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mBEA485E2A3C6A0AE3F1955A031BE6C2B1DB11AA7_gshared (ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 *)((ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m9AD71A3EBB34BE6048146311E51EB67D028CE21C_gshared (ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Guid>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m948A13B4F6EF12D8BCCF6993DD6A0CACB61193B0_gshared (ObjectEqualityComparer_1_tB728B451F9761486FDD9EB312892C81C4E5C8625 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 *)__this);
(( void (*) (EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t849388D8CBD1E8DE2761E3F77AFB6CC0B007AAB7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mE0B80544AF182707ECF76001626B28CBF85CDCA1_gshared (ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
int32_t L_2 = ___y1;
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Int32_Equals_m5F032BFC65C340C98050D3DF2D76101914774464((int32_t*)(int32_t*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m6D186C8297EC5F6DC142DAEAB57DC77C004BF818_gshared (ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC * __this, int32_t ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m67FEEE61383C81C94A04C4A1400E82B8D9387E4F_gshared (ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
int32_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = ___value1;
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Int32_Equals_m5F032BFC65C340C98050D3DF2D76101914774464((int32_t*)(int32_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m6EA842F2EE2FA608B8D1C279F6EFB336DFE9527A_gshared (ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
int32_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = ___value1;
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Int32_Equals_m5F032BFC65C340C98050D3DF2D76101914774464((int32_t*)(int32_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mDD4C9FBD106C0014FB58A2B3099CA80FB6102451_gshared (ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC *)((ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mF4109200C13E1A258D1F124BC870426ADD5B7F52_gshared (ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m3B6E86A904EFC3B85683B4790FCF0EDB5F0AA6E4_gshared (ObjectEqualityComparer_1_t7F086B789BE62B628101FF4B3CCDD4840D97CEAC * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)__this);
(( void (*) (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m88418B60931C21A915B20E04D4AEFAE7B1A1E9D6_gshared (ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
int32_t L_2 = ___y1;
int32_t L_3 = (int32_t)L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
Il2CppFakeBox<int32_t> L_5(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_5), (RuntimeObject *)L_4);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m111367EE5A835EE9E069A03CA0CF7C34D0AD234D_gshared (ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC * __this, int32_t ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
Il2CppFakeBox<int32_t> L_1(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(&L_1));
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mD405BF1884CAF258ACBE40956F12B9BD6C8682AA_gshared (ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC * __this, Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
int32_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = ___value1;
int32_t L_20 = (int32_t)L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
Il2CppFakeBox<int32_t> L_22(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_22), (RuntimeObject *)L_21);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mBC63ADE41762FF8E39066DD3F9CD5114E7BA6E10_gshared (ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC * __this, Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
int32_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = ___value1;
int32_t L_20 = (int32_t)L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
Il2CppFakeBox<int32_t> L_22(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_22), (RuntimeObject *)L_21);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m807B67878C42626095D56EB3104FC8BC6057E1D0_gshared (ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC *)((ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m853E8B7480BBC86CC25FD11C5CA02846ED0FE8AF_gshared (ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m3E4262D3357DD379F94BB28BA102B2BFDABB6F1B_gshared (ObjectEqualityComparer_1_t1D849A7393F75B22BA46376AFDDD86F0FF0082FC * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *)__this);
(( void (*) (EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m34D47AE6718E5E142B983BE20C7EF313F4166978_gshared (ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE * __this, intptr_t ___x0, intptr_t ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
intptr_t L_2 = ___y1;
intptr_t L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = IntPtr_Equals_m8ABF0A82F61F3B236B11DD4A1E19CEC5CC5A50F0((intptr_t*)(intptr_t*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m49213237B4D92FBCCEA07FCDA8518A140F5345E3_gshared (ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE * __this, intptr_t ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)(intptr_t*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m3938F9BCF065EB1CD33ED2B2B8C299BA8208F6B5_gshared (ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE * __this, IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___array0, intptr_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
intptr_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
intptr_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
intptr_t L_19 = ___value1;
intptr_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = IntPtr_Equals_m8ABF0A82F61F3B236B11DD4A1E19CEC5CC5A50F0((intptr_t*)(intptr_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m61AB2450475246885B6E415C9EF25E13B393A958_gshared (ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE * __this, IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___array0, intptr_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
intptr_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
intptr_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
intptr_t L_19 = ___value1;
intptr_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = IntPtr_Equals_m8ABF0A82F61F3B236B11DD4A1E19CEC5CC5A50F0((intptr_t*)(intptr_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m6BFB19067E260CA29714D53659DAFF154DFD03FD_gshared (ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE *)((ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m86DDDF4172390FD2ECF2CC7A09706CB512E6D86E_gshared (ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.IntPtr>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mD5784491B640D7B7294C528716543C651B51AB15_gshared (ObjectEqualityComparer_1_t601B1E02CEB6366FBCD1C251323588CC062DDECE * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB *)__this);
(( void (*) (EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tBFF1F05772E0EE545FCC931B8440C75EE805D6DB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m52D17A95E74AFFF75C4BECCD81D6752B47DA7B96_gshared (ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 * __this, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___x0, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_2 = ___y1;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_3 = (InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mD716840AB5D0458C23AAC2CCECE80B5E05B41FEF_gshared (ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 * __this, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mBB90C1050304B8C920EC9FDCB18DAD218DB17E6E_gshared (ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 * __this, InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* ___array0, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_19 = ___value1;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_20 = (InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m2FA146B309CCE09CC331F10A1656AFAE3ACC0B58_gshared (ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 * __this, InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* ___array0, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
InterpretedFrameInfoU5BU5D_tFA6FBE1C8684475BB4DC1E02532B6DE5C3845283* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_19 = ___value1;
InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 L_20 = (InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mD5547D6721D2712BB48FF04603422417F34ED840_gshared (ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 *)((ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mB691DE07DD1774545768819B6EFBC99F10FF3A00_gshared (ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m32B255F3BF405348147DD781B8A5CA5D99B31CB0_gshared (ObjectEqualityComparer_1_t0AAC50A00E9D65AADC6D1F6DDC4A2C50D5A31EB9 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 *)__this);
(( void (*) (EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t88A74ACCCE3D00FC960FAB7D0121204389032F11 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m36FD590000FC1BEF79537E7A0D8FE4748689E235_gshared (ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 * __this, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___x0, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_2 = ___y1;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_3 = (JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m3C3F0F1A43F62BDB2131F3DB198F75FAFCD50A5D_gshared (ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 * __this, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m8DF3A3C8AE28FE6D7B8CD75A8F53ED696AF94B97_gshared (ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 * __this, JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* ___array0, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_19 = ___value1;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_20 = (JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m5024CA3EF4CBF043CC874E72E921220E42C6A551_gshared (ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 * __this, JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* ___array0, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
JsonPositionU5BU5D_tFE634CFE0635EA9FF92F34F3FC2FB15D02EC5801* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_19 = ___value1;
JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B L_20 = (JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mB7754E015585B5394E1706E73AC2063B1051BF91_gshared (ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 *)((ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m01AD95FF4E93D99FAD0C78FD2F1A1A0CCFB4164D_gshared (ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.JsonPosition>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m5047FFFE961595929C69A5C5FECE870D43B42F29_gshared (ObjectEqualityComparer_1_t607B839724BA9E840D826F87DE79B57751638DB8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 *)__this);
(( void (*) (EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t2285ECDDDC9C298BF8650E91FC6E869B85122846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m273CA5522AFAD1E96D8F76F8390B364F4B874711_gshared (ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F * __this, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___x0, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_2 = ___y1;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_3 = (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Matrix4x4_Equals_mF6EB7A6D466F5AE1D1A872451359645D1C69843D((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m37CC499068C0544408907B8E66DFB9A28CCC1836_gshared (ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F * __this, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Matrix4x4_GetHashCode_m102B903082CD1C786C221268A19679820E365B59((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m1985390E36F5D136149B4F5F788197EA1688BBDB_gshared (ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F * __this, Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* ___array0, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_19 = ___value1;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_20 = (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Matrix4x4_Equals_mF6EB7A6D466F5AE1D1A872451359645D1C69843D((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mBDDC9305327BB6DEC9363655D03DCD599321571E_gshared (ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F * __this, Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* ___array0, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Matrix4x4U5BU5D_tE53F71E9C9110DD439281A6AB8B699F9F85D8F82* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_19 = ___value1;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_20 = (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Matrix4x4_Equals_mF6EB7A6D466F5AE1D1A872451359645D1C69843D((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m54AAB3680F9C6C6DB051B212795E682B6D0ACE42_gshared (ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F *)((ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m03180E89BB471C6A0415AA3A7D0D260A46FEBB6C_gshared (ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mF9828137570A1D3048C0E416564E35F6BFEED49F_gshared (ObjectEqualityComparer_1_t84B506D6F4487BC2C37CD081B38FF4ACBAD9B28F * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 *)__this);
(( void (*) (EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tFFD659A51F757C1302F9BC8683C4D5F7F8FE5755 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m2A60F9906082B9D4CD68C49FDFEEC8AA70F0B973_gshared (ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A * __this, Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A ___x0, Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_2 = ___y1;
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_3 = (Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m4DD7F09AC854BB4D885530BECF17353128757D3D_gshared (ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A * __this, Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m9EA429402548660A17D1C3D9746B3BF7331B0081_gshared (ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A * __this, NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* ___array0, Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_19 = ___value1;
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_20 = (Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m9FB37D8E54309B23C4C77D6118D6EB7D0526118D_gshared (ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A * __this, NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* ___array0, Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
NavigationU5BU5D_t8211405B1C7198010F3151FBC4AFB86A5D138012* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_19 = ___value1;
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_20 = (Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mFF0033E5C3971B7DCAB83BDF64347FFA611DC32E_gshared (ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A *)((ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m94F2FF3B35182F5B0CE88C55598AA0CCC061C44E_gshared (ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m5AA067E92CB44D7E22F70DFE65F0DED4BE3CFE07_gshared (ObjectEqualityComparer_1_t3DE765DC6827DF0CDC04989FB4AE76F957A0CC8A * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC *)__this);
(( void (*) (EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tB3688C71063583EF32963F86697F4216C40489BC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m1F3F85651CBF0A41D15FD4B4D5668F160F2CC0C7_gshared (ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (!L_0)
{
goto IL_0026;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0024;
}
}
{
RuntimeObject * L_2 = ___y1;
NullCheck((RuntimeObject *)(___x0));
bool L_3;
L_3 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(___x0), (RuntimeObject *)L_2);
return (bool)L_3;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
RuntimeObject * L_4 = ___y1;
if (!L_4)
{
goto IL_0030;
}
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m1E8C730635A5B0ECE717C2498A1A7BD57A8AEE51_gshared (ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_000a;
}
}
{
return (int32_t)0;
}
IL_000a:
{
NullCheck((RuntimeObject *)(___obj0));
int32_t L_1;
L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(___obj0));
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m468E4EDFEC6D8074326930B93CB5CA6C56FCFD24_gshared (ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
RuntimeObject * L_2 = ___value1;
if (L_2)
{
goto IL_002b;
}
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
if (L_7)
{
goto IL_0021;
}
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RuntimeObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
if (!L_16)
{
goto IL_005b;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RuntimeObject * L_19 = ___value1;
NullCheck((RuntimeObject *)(*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))));
bool L_20;
L_20 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))), (RuntimeObject *)L_19);
if (!L_20)
{
goto IL_005b;
}
}
{
int32_t L_21 = V_2;
return (int32_t)L_21;
}
IL_005b:
{
int32_t L_22 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_005f:
{
int32_t L_23 = V_2;
int32_t L_24 = V_0;
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m6AB52C974E6DF2F9C18EBAD4950A72C9EA23282F_gshared (ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
RuntimeObject * L_2 = ___value1;
if (L_2)
{
goto IL_002d;
}
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
if (L_7)
{
goto IL_0023;
}
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RuntimeObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
if (!L_16)
{
goto IL_005d;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RuntimeObject * L_19 = ___value1;
NullCheck((RuntimeObject *)(*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))));
bool L_20;
L_20 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))), (RuntimeObject *)L_19);
if (!L_20)
{
goto IL_005d;
}
}
{
int32_t L_21 = V_2;
return (int32_t)L_21;
}
IL_005d:
{
int32_t L_22 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1));
}
IL_0061:
{
int32_t L_23 = V_2;
int32_t L_24 = V_0;
if ((((int32_t)L_23) >= ((int32_t)L_24)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m378C908FB083212BF86519EEEED187A02E25C325_gshared (ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 *)((ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m84CCBDC94BA005C0F83DBA0CCF1292B4A8E6C867_gshared (ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mA9F0AF0A6DD78383674BEF4B655B26CC8751D840_gshared (ObjectEqualityComparer_1_tEE1792A64FD8DC89887F123CA11E735B54507197 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)__this);
(( void (*) (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m40F309FB4A2DE9A91AE0DBA948C4FC4DEDCAB369_gshared (ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___x0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2 = ___y1;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_3 = (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Pose_Equals_m93B87D733C2FBE5B400140040826521DCA4A2BB5((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mDAB4C86C097FFB65E4F7B1216BE999CBC3201A19_gshared (ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m9474A192E3A7619B9E557027B401FD0B4D62DBF2_gshared (ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D * __this, PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* ___array0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_19 = ___value1;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_20 = (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Pose_Equals_m93B87D733C2FBE5B400140040826521DCA4A2BB5((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mCD46A041D17E3FBA944DFFFF45AFAB8381A51810_gshared (ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D * __this, PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* ___array0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
PoseU5BU5D_t45D2BAE8FDADEBC22E30236BB871C3E59C3A455A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_19 = ___value1;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_20 = (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Pose_Equals_m93B87D733C2FBE5B400140040826521DCA4A2BB5((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m8141489780EA4E029476E56D98610E810FF315FB_gshared (ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D *)((ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mC432CCD5F636BCD981F9C8B46BD0F9BEA0A9BB94_gshared (ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Pose>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m7DAB58F0546BAE0B320D764F02AF335350271561_gshared (ObjectEqualityComparer_1_tE32A41B475F179E7F0D0667C1102201E1F4E1E7D * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 *)__this);
(( void (*) (EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t0B4FF9695E83FA4D875D56399116BB288A6B4B15 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m5760229BC3A4154E21755A40F9B69A7962BB95DD_gshared (ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 * __this, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___x0, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_2 = ___y1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_3 = (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m4CC900D2E34DD407FE6D372D9F72A770E9763E3F_gshared (ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 * __this, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mA2C5C4C076E33B46C2BDD44548FBC338CB8A48A2_gshared (ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 * __this, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___array0, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_19 = ___value1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_20 = (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m0A34C641EEC5E9EB86773D1CE017AF3E584E695B_gshared (ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 * __this, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___array0, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_19 = ___value1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_20 = (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m586CCD9DC88AB2CD6E5D64B003E7BA1AF7CECE37_gshared (ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 *)((ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m95489E14F6B071C76663BFB67D639F256D2C2AEF_gshared (ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.RaycastHit2D>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mDEC26044771C3964196354142414F862C1FE34D4_gshared (ObjectEqualityComparer_1_tC80AB86D43B9B7B043421227C33A18155342EBE7 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 *)__this);
(( void (*) (EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tACC51A89C90F0C73EA15B5F75CD1AC2E1C61E094 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mC839F9BE4278EF46058661423940B2D69378E785_gshared (ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 * __this, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___x0, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_2 = ___y1;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_3 = (RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mBBBCEAB6118B832BA5D33EBF2D4B505729B565F2_gshared (ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 * __this, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m5FA0F7AC03C0888832B5E6D3FA3AECDCFF2B72C9_gshared (ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 * __this, RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* ___array0, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_19 = ___value1;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_20 = (RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mF3DCF4CFBCEDC11542B74AB0F19F97DE9565C796_gshared (ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 * __this, RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* ___array0, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_19 = ___value1;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_20 = (RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m3D5A12A85A42DF3E90ACE62A34EDFE9B2801E113_gshared (ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 *)((ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m6AC933340C94FC2D6D7406AC24AD92BADB5A84A7_gshared (ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m6D47502695ED000A3F0103F6070633CB14620FA4_gshared (ObjectEqualityComparer_1_tF5AD42EC33C17504A098BAB0A997BEACD8406080 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E *)__this);
(( void (*) (EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tD0037D51E6363B57954033486B2BF58738433B8E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mF2E50B85FEC5AD0943CC95ABBBA7DA1B4AB65068_gshared (ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F * __this, ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 ___x0, ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_2 = ___y1;
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_3 = (ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = ResolverContractKey_Equals_mD49A576A6E0E61FE3A2E1D0802DF231F42620CCB((ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)(ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m634A3420600821EB36F55C1DBAD3A3D6CFFA29BF_gshared (ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F * __this, ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = ResolverContractKey_GetHashCode_m11A9D6B4275F416C5A3E5D34475892121190F83D((ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)(ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m3927463304CB178ADCB8116C4F8095A330460406_gshared (ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F * __this, ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* ___array0, ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_19 = ___value1;
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_20 = (ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = ResolverContractKey_Equals_mD49A576A6E0E61FE3A2E1D0802DF231F42620CCB((ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)(ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m4E93F690D9CDE3A8ED01E8FAD813A2ADD69DF5E9_gshared (ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F * __this, ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* ___array0, ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ResolverContractKeyU5BU5D_t6AC94E00B52D20019276681CB9D5189D086E9FA4* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_19 = ___value1;
ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 L_20 = (ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = ResolverContractKey_Equals_mD49A576A6E0E61FE3A2E1D0802DF231F42620CCB((ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)(ResolverContractKey_t1E91AFBA68B2DD9932C930A5B98359F04BD38873 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mD1CF4E0073584F3E989DE12C88D5E5AE3E0A62AA_gshared (ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F *)((ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mAEE7ED273CD81C80B6E6775190880912B26631B4_gshared (ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mF78D15C6647FFD2D6825419B431B9DA5985FB137_gshared (ObjectEqualityComparer_1_t2916092AFE56D32738CAA67513A6B5B93394793F * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 *)__this);
(( void (*) (EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t2FE6420C0FC2D2FE84BB466132345A94655323B1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mFB650C7E3000AEB6D6E0FF83553545A6E9E41859_gshared (ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 * __this, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___x0, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_2 = ___y1;
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_3 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mB7875A611708159DEEF35DCA22102FBB35D50C4D_gshared (ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 * __this, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m379B3268024EC72A6847379ABC3515F18ACE035B_gshared (ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 * __this, ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* ___array0, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_19 = ___value1;
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_20 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m589226E9607E4B698B58B0B1D00EF5074F77DA7C_gshared (ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 * __this, ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* ___array0, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_19 = ___value1;
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_20 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m59E71A367DDDD23AA202064B63C165567093D90E_gshared (ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 *)((ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m733C6E4AB161BE8C576C6F5B6ECA1135BD0E3E63_gshared (ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m4D0713910ACD08F58E045B8DD7600BBE8C21FC38_gshared (ObjectEqualityComparer_1_t0D2FB9963DCD4B10BC91917CC5E21F3270F6F590 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E *)__this);
(( void (*) (EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tBA1136E2BA4CAD53C59DBF4C4094A9676225F08E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mDCB84AC2A44B950F7ED7652F35394FE05E28CF59_gshared (ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C * __this, float ___x0, float ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
float L_2 = ___y1;
float L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Single_Equals_m94AA41817D00A9347BD3565F6BB8993361B81EB1((float*)(float*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m1D33DA3C4D97A41F5DF3DCF78D429165AE05BB18_gshared (ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C * __this, float ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)(float*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m5F1057587774C5C3E8C64FDB90D86996B71B637D_gshared (ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
float L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
float L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
float L_19 = ___value1;
float L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Single_Equals_m94AA41817D00A9347BD3565F6BB8993361B81EB1((float*)(float*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m66AB8ACC5D23388DA50CFDE7CE3EB21A30B8AF56_gshared (ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
float L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
float L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
float L_19 = ___value1;
float L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Single_Equals_m94AA41817D00A9347BD3565F6BB8993361B81EB1((float*)(float*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m6E44327984D833A0C4C39ADB1F159BFF19569CC4_gshared (ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C *)((ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mE839522ED57137743AA5CB12ECE5C3CE2042B52D_gshared (ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m63E7F09068C1C34B4158EAD59A17A9BD8FB5F750_gshared (ObjectEqualityComparer_1_t099B9C2C84D30A86E118759F263243AF5A2AEE3C * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F *)__this);
(( void (*) (EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m56B07CB20E3B3CB66D6A1F3BB8F69A8C9333AE3B_gshared (ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 * __this, SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E ___x0, SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_2 = ___y1;
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_3 = (SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m19C3DEB478F3AB78AA8E0382E8CFC7E994DD3A86_gshared (ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 * __this, SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mC5BBA96F6B79D30D71B9CF3C15D072C7F855F130_gshared (ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 * __this, SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* ___array0, SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_19 = ___value1;
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_20 = (SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m9B0DF3D409FDF43AE94F9063A7F3277B59E194CA_gshared (ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 * __this, SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* ___array0, SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
SpriteStateU5BU5D_t6D782A5A3418D1E23EE5D15E531A2B8CEE22DFF2* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_19 = ___value1;
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_20 = (SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m71EDCFED40762B9341329E68A616256A82E529AF_gshared (ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 *)((ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m334ACE903D34F057F816B569DD7FDC709A2238D2_gshared (ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mFCAF03A8359FE81C614573C6CDCEF8E19192AF92_gshared (ObjectEqualityComparer_1_t775D73708BA19E61D304E15F1FB6337476EECC45 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 *)__this);
(( void (*) (EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tE2AE720166A82757E1ECCBD4453EF08913187030 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mF5C1DD0E16C82A8F0BDA6D6436048F8F32D0FAD1_gshared (ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A * __this, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___x0, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_2 = ___y1;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_3 = (UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m47F37DEED0B3F2747E5B6E0A1D5B7284855746E0_gshared (ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A * __this, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m3F87D2F7F46DF7FA94DF25BDC0E3F9993F837A0F_gshared (ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A * __this, UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* ___array0, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_19 = ___value1;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_20 = (UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m344C698DFB30C4B722C40FB2A8B6CFD8D7CA72D6_gshared (ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A * __this, UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* ___array0, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UICharInfoU5BU5D_t5B6AEA3245EC021FAA20582D295434FF61FBF1F0* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_19 = ___value1;
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_20 = (UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m22590AB64F83E67F6D1CCA08E1AD109E95E8B09B_gshared (ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A *)((ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mC29731D4FA63718813017E6431D22F72EA50AEA7_gshared (ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mBAC780D62B6A3311552C083F3458B34B0FC2CF39_gshared (ObjectEqualityComparer_1_t500E7EE0704DBC9BB6D692F75F0317497D18D04A * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 *)__this);
(( void (*) (EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t290DD173FACA97F400C1127A5C7A758A53677210 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mC1405A71BFFC10ADC5471138B8E23A751A010A4D_gshared (ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 * __this, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___x0, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_2 = ___y1;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_3 = (UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m57CA3064172289B0BAF72776F8FB2781D85E2941_gshared (ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 * __this, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m9B1325B6EB5E43B75BF3CBEADFA758F9244C79E0_gshared (ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 * __this, UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* ___array0, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_19 = ___value1;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_20 = (UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m9A0B914BBBB8D1D521D84FA57802C9E9B2728B5F_gshared (ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 * __this, UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* ___array0, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UILineInfoU5BU5D_tBE1D9E4EC8C7A5A1F98B7CCF93D8A8A2FF9B2F69* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_19 = ___value1;
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_20 = (UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9B2A4D32C59CE0AD4C48A4E68F52BA62D7F08E0B_gshared (ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 *)((ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m6ADB810E87CB996AEFE00AC8D8C21B40B695D247_gshared (ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m84CFEE092B1A6AF32F8BBCA4606D31E200A987DB_gshared (ObjectEqualityComparer_1_t4C99A12A1C7F18CC9DBD3B840DF2C9787B6B8971 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B *)__this);
(( void (*) (EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t906CC08AF3C90173A8217B5E4F41B4A1D8A17D0B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mE4607C216F9C7B5C61DBC9EC8A19B004EBDC7CB3_gshared (ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 * __this, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___x0, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_2 = ___y1;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_3 = (UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m460E44E9201EF66D222A1026E7E2407B3BF3E6EA_gshared (ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 * __this, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mDB8A11F6836FF5AA9FFFB54E814974CBA5347574_gshared (ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 * __this, UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ___array0, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_19 = ___value1;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_20 = (UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m66A22B69329C8343EEA512C318AF1EDDBB02C67F_gshared (ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 * __this, UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ___array0, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_19 = ___value1;
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_20 = (UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mABD5A20233C073F4C57133DC2B94AF1D1226A894_gshared (ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 *)((ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mF63C4E20A877A265B6C2507BB5EC22473C3BA6DB_gshared (ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m909268877CA9E700488B7243E5F38CAF0E9F5365_gshared (ObjectEqualityComparer_1_t61C75EA325DBBF56AFB8C8CE5F55FB5D0AE177C1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 *)__this);
(( void (*) (EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t1A201EA4D36D150B1EDD81F1738845AE9EB44676 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mC4C70F2C527F97A54F250717CB4221CC3B90F335_gshared (ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 * __this, uint16_t ___x0, uint16_t ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
uint16_t L_2 = ___y1;
uint16_t L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = UInt16_Equals_m5140B1357E775CBD813A0853D6D3DFAA3E2CD2D0((uint16_t*)(uint16_t*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mDD7C2264789306E367644E0AC760F7D8AC2CD3B8_gshared (ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 * __this, uint16_t ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = UInt16_GetHashCode_mDA01CAA4AF8C22A63972F93F26AF7E888CEBD2AA((uint16_t*)(uint16_t*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mCE2572A1EB7E8D3911156ADF94B30DE9C9D79EEB_gshared (ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 * __this, UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___array0, uint16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
uint16_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
uint16_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
uint16_t L_19 = ___value1;
uint16_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = UInt16_Equals_m5140B1357E775CBD813A0853D6D3DFAA3E2CD2D0((uint16_t*)(uint16_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m95D7A2357CA9592780124A23679619294A181CCE_gshared (ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 * __this, UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___array0, uint16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
uint16_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
uint16_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
uint16_t L_19 = ___value1;
uint16_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = UInt16_Equals_m5140B1357E775CBD813A0853D6D3DFAA3E2CD2D0((uint16_t*)(uint16_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mF76DFA88F97E9DE290E716DDA8D0F4115CCDEB70_gshared (ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 *)((ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m55BE9FCB5CD0E05E8B1BF5458748B8C899A24F56_gshared (ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m059E290DF0377677D410BCDA7F3807CCD98B5611_gshared (ObjectEqualityComparer_1_tC45857914F73F0F5E31FD2931951AE7F2DCBD385 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 *)__this);
(( void (*) (EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t45FE802EF352C34CAA3F4A0584E100DDCC9198D5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mC2B397B0EFA34B18BBC1853DDBE55EAE104B025F_gshared (ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C * __this, uint64_t ___x0, uint64_t ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
uint64_t L_2 = ___y1;
uint64_t L_3 = L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = UInt64_Equals_mE3F11FA30AC7187802CFFC59DF5F2C9965E8789F((uint64_t*)(uint64_t*)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m87225263121F8CEB7FE691012A3752D57BD1AB75_gshared (ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C * __this, uint64_t ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)(uint64_t*)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m94EBAB93DAD6B0722F0299028444523C670C7D71_gshared (ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C * __this, UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* ___array0, uint64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
uint64_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
uint64_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
uint64_t L_19 = ___value1;
uint64_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = UInt64_Equals_mE3F11FA30AC7187802CFFC59DF5F2C9965E8789F((uint64_t*)(uint64_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m9FFA6E56F1B9326E7111523D2BD737F4974CB62C_gshared (ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C * __this, UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* ___array0, uint64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
uint64_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
uint64_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
uint64_t L_19 = ___value1;
uint64_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = UInt64_Equals_mE3F11FA30AC7187802CFFC59DF5F2C9965E8789F((uint64_t*)(uint64_t*)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m00694258CA114434ED6FDA29EAECA806DD900ACB_gshared (ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C *)((ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m2BB36A59F06AAF9356D72512BED6E56FEF71A3A1_gshared (ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.UInt64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m0DA6D544014DC261E03DD9FF7D896BC6B5A4F1C5_gshared (ObjectEqualityComparer_1_tD81E4B1AA017CFD730A34398447EAD958608B72C * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 *)__this);
(( void (*) (EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tEF889E22D9D4DCC61B29BF0A769116B233F1AF94 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m68E2FCBA52920AD3D5701AAE8D15987248F43CA5_gshared (ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___x0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___y1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Vector3_Equals_m210CB160B594355581D44D4B87CF3D3994ABFED0((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m48847A0E9A45A3377FD67E26DBEBD1D816C7521E_gshared (ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Vector3_GetHashCode_m9F18401DA6025110A012F55BBB5ACABD36FA9A0A((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mF388A81E4BDD983D297C11ADD02A3E2F5AC4416D_gshared (ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D * __this, Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___array0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = ___value1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_20 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Vector3_Equals_m210CB160B594355581D44D4B87CF3D3994ABFED0((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mC8E956B558C4821EE3DF213A57E99F902647FEB6_gshared (ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D * __this, Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___array0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = ___value1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_20 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Vector3_Equals_m210CB160B594355581D44D4B87CF3D3994ABFED0((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m82DE02F5A39AD8BBF8F8D780B0433CBA63FDA193_gshared (ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D *)((ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mA39862770D206ED2D092BAA5AB1B6331539742DB_gshared (ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m309DA37164B00BB15DBC0C798D5D5218F16229F0_gshared (ObjectEqualityComparer_1_tAB38EB08B57C56C4AE6C06A146BDCFDA9F0F145D * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 *)__this);
(( void (*) (EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t3BB33804F138CAE0908623F6BFE2C7416362B9A7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m904452A814A3E829282C752D7C6667675E9F5A1E_gshared (ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___x0, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = ___y1;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = Vector4_Equals_m71D14F39651C3FBEDE17214455DFA727921F07AA((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mB49D6705AA346A34FA63C7830D43A5B77F8F3035_gshared (ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m9576CFCFE2D621AAABD1B120D5E525517886192E_gshared (ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 * __this, Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* ___array0, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_19 = ___value1;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_20 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Vector4_Equals_m71D14F39651C3FBEDE17214455DFA727921F07AA((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mE7DD82C68FEA10E8D2FB8E49265F3B4F7F59AD7C_gshared (ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 * __this, Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* ___array0, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_19 = ___value1;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_20 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = Vector4_Equals_m71D14F39651C3FBEDE17214455DFA727921F07AA((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9C9F0C1EEA2486DECFBDFF64FAC44528FD87E632_gshared (ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 *)((ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mD9806F4909AF46C2A90B5E5DC1366369BA086BF2_gshared (ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m8E10E64399FEA2D8D20D771A28B2D6866DF7FFFB_gshared (ObjectEqualityComparer_1_tA6516BD40809F9C0942852D49DD86AEFF3356E96 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)__this);
(( void (*) (EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mF1344EE46C06FCF2A8524672E7BA340DDA5A918E_gshared (ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___x0, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_2 = ___y1;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_3 = (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m0BCAFF218123F3FA333252A411A1DBD659BFFC46_gshared (ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m0C1FFC800893EB912A5FB8C8A5F7D6E0D2761F58_gshared (ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 * __this, OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* ___array0, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_19 = ___value1;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_20 = (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mCCC57FBABEFCA721708795F2FFCD09B6B92B7A00_gshared (ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 * __this, OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* ___array0, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
OrderBlockU5BU5D_tA6CA8293A67A97712BD2A0D7ABBA77E770053817* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_19 = ___value1;
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_20 = (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mDE2BF442172CE5E4E9D77367DCEFD48C9C335549_gshared (ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 *)((ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m5BD48A89A14D0329137929FEE083B7F5B542F951_gshared (ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mAAABF8B5B0EAD26377E022D733DA2AD6B497EA38_gshared (ObjectEqualityComparer_1_tD0B7228E9053015B7170425B2BE0280A4911FDE3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 *)__this);
(( void (*) (EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tCE1E074B8086BD74052325934835347938939412 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m7E587844D94587C249B7751037235EABAC81F851_gshared (ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___x0, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_2 = ___y1;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_3 = (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m4F5CD62A607C25456FA2BBDBE02D2BC3C5D5B128_gshared (ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m1A13019B2EC252C772CC1DC4583708E0535974EC_gshared (ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB * __this, RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* ___array0, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_19 = ___value1;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_20 = (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m6B8BD3B294C30E7912C809FD154A8D90964B7E7D_gshared (ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB * __this, RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* ___array0, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
RenderRequestU5BU5D_t2D09D44B1472DED405E7676210574FBDE93EF664* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_19 = ___value1;
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_20 = (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9FC40667A00F84C144284CDE2341DC86E940099D_gshared (ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB *)((ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mE417B55F44F052F4F54755A082177E510EE4696F_gshared (ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m76C48DAE1AD6328F3534E1CD7550DAB7A5D25A99_gshared (ObjectEqualityComparer_1_t7B95BCDE3CB60E13B180C8EB3CA4894F323982AB * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 *)__this);
(( void (*) (EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t9886DA9419AD18F17F6D589F94F26DF1933417C2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m903448EAAFF5C30979A027DBFC8A4A8B0729CE62_gshared (ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 * __this, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___x0, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_2 = ___y1;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_3 = (CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mE594DFF56E6D3BF73CE4BB700B6C8EA3CBC78189_gshared (ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 * __this, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mA9081204ED265D1D191173D831F1CA13D15A9498_gshared (ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 * __this, CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* ___array0, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_19 = ___value1;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_20 = (CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m7BA1D8FFB2F5B788930A10677C2E59B57D7C3CA9_gshared (ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 * __this, CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* ___array0, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
CameraFieldU5BU5D_t782ACCA7D8100B1E2E7F3C578C805DFC62161FE1* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_19 = ___value1;
CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 L_20 = (CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9E3797C787ADB53F135D47083249B38692F9A02D_gshared (ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 *)((ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m524B3051D76BB073462FEA9A3C4092AB408D5CB1_gshared (ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m1C2ED9B2EBB05DA300039E176BFD24BB98536B79_gshared (ObjectEqualityComparer_1_t87DB594BC5B42CF6BC632485F462CD2AD8530D53 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD *)__this);
(( void (*) (EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tD68B3CD424B6E1313E5C8582CA4AE3C920925EDD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mECC98CEFE3E3A82D83A25AB4116AD924395D6E99_gshared (ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 * __this, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___x0, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_2 = ___y1;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_3 = (VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m191AAA4553240B54A87AA7C4789C2E760D07639C_gshared (ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 * __this, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m8F24FFF612FA0DDEDE454911594E4B7C3993B087_gshared (ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 * __this, VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* ___array0, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_19 = ___value1;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_20 = (VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m774FCF72126A45F1E2AEE24C89C26EC3B8C1D231_gshared (ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 * __this, VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* ___array0, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
VideoModeDataU5BU5D_t1B9C8048BD109EFFF9D80F3F8F1029FD8C30CFC3* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_19 = ___value1;
VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA L_20 = (VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m07F11E498F22537ABD557D2FD9D12CA0A901B253_gshared (ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 *)((ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m6763CD9E3546537ABDF6273CBB5D91D2B2ED01F7_gshared (ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/VideoModeData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m9878F41601118E20E800A3236A81BD2A88DA6165_gshared (ObjectEqualityComparer_1_tA3C256DBE719CCD76B72C5F5BE4C07061B2D5769 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 *)__this);
(( void (*) (EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t5FF9A803A0B0F24933DF7AA33F1206414A0FEF35 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m7A69C029751946A15B708ECA75754B7216F096E5_gshared (ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 * __this, TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C ___x0, TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_2 = ___y1;
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_3 = (TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = TypeConvertKey_Equals_m7C1F1F351C365CAB6024E3F811389982DEEA341C((TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)(TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mC7E2D1C6C60D029370CEA9CDCD4EFA02B512D656_gshared (ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 * __this, TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = TypeConvertKey_GetHashCode_m38A5A208A7A4DE6C27584A52BA1C6ED3E01E0DFE((TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)(TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m30F66A99FCE9FDB3AC3F432E494CAC151C965EB5_gshared (ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 * __this, TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* ___array0, TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_19 = ___value1;
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_20 = (TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = TypeConvertKey_Equals_m7C1F1F351C365CAB6024E3F811389982DEEA341C((TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)(TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mA7C6E19D306A41B8AB1FE2E35ED575BCC53C78B0_gshared (ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 * __this, TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* ___array0, TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TypeConvertKeyU5BU5D_tF9E328E4974FAA7A5A77A57DC52C7107A79CFE0F* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_19 = ___value1;
TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C L_20 = (TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = TypeConvertKey_Equals_m7C1F1F351C365CAB6024E3F811389982DEEA341C((TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)(TypeConvertKey_t71815CE29603A5405BF3AD05280233A86AD10D9C *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mDF3BBA7CC352F96756DEAE9224D2E2312DB57EBB_gshared (ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 *)((ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mD0EC903B6B0850480214423AA301F5DB651A1398_gshared (ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_mF0F89F3C1A867A5BDC880DA2D99AB7102F27B0B0_gshared (ObjectEqualityComparer_1_tA6A5D37DC46B3169455F58BD7F9B44B175264729 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A *)__this);
(( void (*) (EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t7C1AB08541AE47B2866ED453AF382B554827735A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mC77E12CE7773D6B74DD0EE0B316031FAE8078E2F_gshared (ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 * __this, TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 ___x0, TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_2 = ___y1;
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_3 = (TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
bool L_5;
L_5 = TypeNameKey_Equals_mE0ABF940FF9FEB459B9D7B43398BD2F8D34C3EB8((TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)(TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)(&___x0), (RuntimeObject *)L_4, /*hidden argument*/NULL);
return (bool)L_5;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m90B70C111077DB4F6205AB5B5D1D54B84E8C34F5_gshared (ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 * __this, TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
int32_t L_1;
L_1 = TypeNameKey_GetHashCode_m2DEBBDEE942F1A8BA61ABC949280FC11F1ED6B62((TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)(TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)(&___obj0), /*hidden argument*/NULL);
return (int32_t)L_1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mA19FB7BEAA05085894DDCA6CC62CA430F6003DC8_gshared (ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 * __this, TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* ___array0, TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_19 = ___value1;
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_20 = (TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = TypeNameKey_Equals_mE0ABF940FF9FEB459B9D7B43398BD2F8D34C3EB8((TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)(TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005b;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005b:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_005f:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m7C21FCE97FC8309BF076404EFDEEF143A343F410_gshared (ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 * __this, TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* ___array0, TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TypeNameKeyU5BU5D_tBE8225BD18DFFFACF32EE02FC105F39BAC067F4A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_19 = ___value1;
TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 L_20 = (TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
bool L_22;
L_22 = TypeNameKey_Equals_mE0ABF940FF9FEB459B9D7B43398BD2F8D34C3EB8((TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)(TypeNameKey_t2F1071DD5071C4A0C71F1C773760BA1F29A5DF00 *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), (RuntimeObject *)L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_005d;
}
}
{
int32_t L_23 = V_2;
return (int32_t)L_23;
}
IL_005d:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_0061:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m5075DCA88AA8FEB3454283850A4FD6BCC836C17C_gshared (ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 *)((ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mE0DDCD1A14433F02A2D2853A2DD38291F9C36DC5_gshared (ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m4D677AFCB9126B343D1DDA349AB72288BD58A0AC_gshared (ObjectEqualityComparer_1_tBB375C329B63F69E434532A9802B52B35B444E85 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 *)__this);
(( void (*) (EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t354A1B3068A28B9E2CA5671D6DA43F41C5522108 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m4CA602A3806CCFB4329FA347170C4EE945BF20DB_gshared (ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 * __this, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___x0, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_2 = ___y1;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_3 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mFACFF49DBA36C4543DE4EDA8932C5E448B43DA94_gshared (ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 * __this, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m788DAABBA3354E0E872C4502CA7D7005FAD53B7E_gshared (ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 * __this, SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* ___array0, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_19 = ___value1;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_20 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mEC88B4C55FF27CD9EC6E3291CA0B058E337F95F9_gshared (ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 * __this, SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* ___array0, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
SessionInfoU5BU5D_t42BA9C3B2898F9EDC1FF64FF2B6D4C6F8FC4F179* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_19 = ___value1;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_20 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m8D0EE5B6402CDCA8A5D81032F9248BFD53BF5F23_gshared (ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 *)((ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m09A4F218AE8097E5090B4F92493CF5BB38A13D62_gshared (ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m87F612FFE538AD041B68641815AA0913A45A9A14_gshared (ObjectEqualityComparer_1_t8F7DFEE17C2D0268E71704D9B65701E18FA858E3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A *)__this);
(( void (*) (EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t48E44F73C910E82A2272540059891028138AEE5A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9983E18B260EA8E4E897F2293668F2889B2CB276_gshared (ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B * __this, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___x0, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_2 = ___y1;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_3 = (TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mABE9B44E5B3338927D947CBC8DB383BBDC246E54_gshared (ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B * __this, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m2B30DDCD403DBE96F50E143F9F73CB182A3EF867_gshared (ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B * __this, TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* ___array0, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_19 = ___value1;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_20 = (TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m64CFB5DD7A3AC933F2D740DD46681BD55893866F_gshared (ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B * __this, TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* ___array0, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TextureDataU5BU5D_t19EDE09A2EB6D0A51873FF24FD7D5E512B7F3F05* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_19 = ___value1;
TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 L_20 = (TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m9B0BAD18208EA0431DE4518DE7E0164EF31EF460_gshared (ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B *)((ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m14BA4137B9A5823D88A9366B538574A2F288A103_gshared (ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m665B9747CC89E06A0E319C15CEC2FD15F2F63280_gshared (ObjectEqualityComparer_1_t1E337EC92B21284EF5EA56478FF8B456304AA29B * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E *)__this);
(( void (*) (EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tE7A1E7A8D040606F3029FB3EDECDFC32BFC4416E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m106092E014C20B5B033772210D0CEC8BA4C48FC9_gshared (ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 * __this, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___x0, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_2 = ___y1;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_3 = (TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m314ADFE43897DF8A3290A781BC80E0385E0D5198_gshared (ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 * __this, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mE93E11A2826FCB7EB3EFD2FD1CE285C8A366020F_gshared (ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 * __this, TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* ___array0, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_19 = ___value1;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_20 = (TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_mC23B8D6AA766E78210E8960169A88DDFA50A5F6A_gshared (ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 * __this, TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* ___array0, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TrackableResultDataU5BU5D_t929887E7EF0F4842D6E80E8E1825C329FE49B4E7* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_19 = ___value1;
TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED L_20 = (TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mF94B96FE298715D3194B66B1DC7CB54DA196ED26_gshared (ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 *)((ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mAC058F2035146B2C1F13828EDEB476FBE43CBC49_gshared (ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m7A87C95EEBDFD33A83FEAC75A2977B5431F6038C_gshared (ObjectEqualityComparer_1_t9CCE21CF1792DA49CEE532DEE05C60F826FD8258 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E *)__this);
(( void (*) (EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tB27E87AE9D71DE3CEA3FA59005C0072F79D4782E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m6BDCC64E6D2A89C30EDA7F278F48272A0FF85759_gshared (ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F * __this, VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 ___x0, VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_2 = ___y1;
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_3 = (VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mC6A18043BE62E0EA956FBC7834AE946A2310E1B4_gshared (ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F * __this, VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mD68FFCDACAEEADA462BE4CF4210C01E5624493F5_gshared (ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F * __this, VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* ___array0, VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_19 = ___value1;
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_20 = (VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m4B937DB0DFAD4334F09E30AED6170C8F50A098A4_gshared (ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F * __this, VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* ___array0, VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
VirtualButtonDataU5BU5D_tBA7AEB1B1D3BCA358EB4087AC2B761B2E154FC9A* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_19 = ___value1;
VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 L_20 = (VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(VirtualButtonData_tF91C778A75412C8CD5C674083455117DA9DC8545 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m2C73EF83D23A12F8EF28CBF7C26B41433414B377_gshared (ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F *)((ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mF5C2636F3DA91CF21488608B687447464F871C0E_gshared (ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m65F8A1B2DFACE50A9F8E07021B7D0AA6E80C4677_gshared (ObjectEqualityComparer_1_t011881B15F051415235E02F1BAD80BEEBEB5D14F * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 *)__this);
(( void (*) (EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t1ACDB57EDCA4A6649F65411C9802CABF06714EB8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mEBC415C08F892470815D7F1D1C943939CBC3FE9C_gshared (ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A * __this, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA ___x0, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_2 = ___y1;
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_3 = (VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mDCE03755D4617FA541949E8BFA1DD7ED6B1A9817_gshared (ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A * __this, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mE910C33F3DB6D837122DD83A77FC50605D22F54B_gshared (ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A * __this, VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* ___array0, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_19 = ___value1;
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_20 = (VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m75D2FFDF65D9000A0676B28DBA7387D78F21C74B_gshared (ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A * __this, VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* ___array0, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
VuMarkTargetResultDataU5BU5D_t77E6ADF1D73E9BC7D8DB76CC55B58F1F2F491BAE* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_19 = ___value1;
VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA L_20 = (VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mF43FBF75B1B52D72C3460E329BA8AAAD86BD00B3_gshared (ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A *)((ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mC81FA2BD2EEFF0E19ED6C28F4C574E8147CBAD1B_gshared (ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m3F6366E88CF7971561060E34444108E1C63BD7E6_gshared (ObjectEqualityComparer_1_t6A0A5E74830405EEBA92CCA5EC8B7AA1CFDCFD5A * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 *)__this);
(( void (*) (EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_tA9D5BC083833735F15C3822575E347D0D4FA1B78 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m5298E3C41D8392E6782DF665621439DD7A925365_gshared (ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___x0, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_2 = ___y1;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_3 = (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mB7220A01A1D727874EC7D0F45FDA3B81EDB9C565_gshared (ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_mE52DEA860907232A7FDE8E4715711D2F50E0FD17_gshared (ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC * __this, WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* ___array0, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_19 = ___value1;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_20 = (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m6FFC3088ED2DEFDD3D4308DAADF4AD4170F2A5B2_gshared (ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC * __this, WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* ___array0, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
WorkRequestU5BU5D_tFD014E941739D5AFA0353EDFE7D9CD61E8A43A3F* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_19 = ___value1;
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_20 = (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m840F713A60EFF07E3D7F5CE2530F35B7F6B610BF_gshared (ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC *)((ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mBE4672CD3C28EB8A9E60A54DA7CE73B39C712A6B_gshared (ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m52A71AF91E608D19708F14FF9DBFD5AC02162122_gshared (ObjectEqualityComparer_1_t93368D337566084DE32D758C51A2CFB4CE9FDDAC * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D *)__this);
(( void (*) (EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t9E29605F47D17DB737066B127517BF205E10444D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m71A64AC390DC55EB06E268716D89864443A5A9B0_gshared (ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E * __this, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___x0, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_2 = ___y1;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_3 = (TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_mEFA6373C19A1ACA5141C46BA013B9B77AEFCFDED_gshared (ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E * __this, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m29AA1658559E0BF7C307D93BEF3A9F3AA1684467_gshared (ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E * __this, TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* ___array0, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_19 = ___value1;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_20 = (TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m7707017F57A793F69AAA122DAF91EA2B080FBFC7_gshared (ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E * __this, TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* ___array0, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TrackableIdPairU5BU5D_tF3FD4D52F9432718E55DD420DFF14775A9738DDA* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_19 = ___value1;
TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB L_20 = (TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m73879A1A57681048D03E52AA1F56DC5B95E56E0A_gshared (ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E *)((ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m4B39B522D94D93954A62CCC41A2C709A7FDD6E50_gshared (ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m05488B81FBDA3A91F2657575E67B15001756E840_gshared (ObjectEqualityComparer_1_tA3B29923F3C880B36D8042B5EAC720C6290EE52E * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 *)__this);
(( void (*) (EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t30C43D1077D2052A9DE4A46D0C1A6A19060AF485 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m3677E30CC8DAF2797713C76BA7DAB6A8061C2107_gshared (ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 * __this, ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 ___x0, ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_2 = ___y1;
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_3 = (ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m9EFA0F7BFCBEDF6E63908B929A9B45188BD4EC95_gshared (ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 * __this, ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m20981EED1EA693429DB827C40CE7B8894AFD537F_gshared (ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 * __this, ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* ___array0, ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_19 = ___value1;
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_20 = (ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m5EC89F87CCFE95B7CB6895CD9DA104B4C64BBFD4_gshared (ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 * __this, ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* ___array0, ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
ProfileDataU5BU5D_t8F26949FDEB105195624D19A002609185022A900* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_19 = ___value1;
ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 L_20 = (ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(ProfileData_tD5A4CF46FEF9AF6CB3449DD17B118B0E9ED57959 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_m3C012778D25C170F6E8DC08DAF1100F7172C3526_gshared (ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 *)((ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m3C57C40B9568D612D2EC854157DC7615B69D775E_gshared (ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m30F70C8ECF6EB3B64EFA5E431D6E804F297FDCB9_gshared (ObjectEqualityComparer_1_t8DA3711D374571AF376454D091CE71E48549C703 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 *)__this);
(( void (*) (EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t9497D9FFFA1E7856833732CD6109E7AD4C861DB7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mCED558C7FD561BD55C542DCCC19C131EFDF5AD9A_gshared (ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 * __this, TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 ___x0, TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 ___y1, const RuntimeMethod* method)
{
{
}
{
}
{
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_2 = ___y1;
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_3 = (TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_3);
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___x0));
NullCheck((RuntimeObject *)L_5);
bool L_6;
L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_5, (RuntimeObject *)L_4);
___x0 = *(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 *)UnBox(L_5);
return (bool)L_6;
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
}
{
return (bool)0;
}
IL_0030:
{
return (bool)1;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m6350CDB4EFCFE4C6E54982A8202CCC1C719665A1_gshared (ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 * __this, TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 ___obj0, const RuntimeMethod* method)
{
{
goto IL_000a;
}
{
return (int32_t)0;
}
IL_000a:
{
RuntimeObject * L_1 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (&___obj0));
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
___obj0 = *(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 *)UnBox(L_1);
return (int32_t)L_2;
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>::IndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_IndexOf_m750CA29B2D0BD15C899E296081DC8ACDA6243D5C_gshared (ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 * __this, TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* ___array0, TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
goto IL_002b;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0025;
}
IL_0011:
{
TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0021;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0021:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0025:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0011;
}
}
{
goto IL_0063;
}
IL_002b:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_005f;
}
IL_002f:
{
TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_19 = ___value1;
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_20 = (TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 *)UnBox(L_22);
if (!L_23)
{
goto IL_005b;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005b:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_002f;
}
}
IL_0063:
{
return (int32_t)(-1);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>::LastIndexOf(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_LastIndexOf_m7D040B40469FE1671343A42CCC8CB6997E52ED4E_gshared (ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 * __this, TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* ___array0, TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
goto IL_002d;
}
{
int32_t L_3 = ___startIndex2;
V_1 = (int32_t)L_3;
goto IL_0027;
}
IL_0013:
{
TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* L_4 = ___array0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
goto IL_0023;
}
{
int32_t L_8 = V_1;
return (int32_t)L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0013;
}
}
{
goto IL_0065;
}
IL_002d:
{
int32_t L_12 = ___startIndex2;
V_2 = (int32_t)L_12;
goto IL_0061;
}
IL_0031:
{
TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* L_13 = ___array0;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
}
{
TileCoordU5BU5D_tFB110BCE61953DECB5C41844C8D0919852EFC09C* L_17 = ___array0;
int32_t L_18 = V_2;
NullCheck(L_17);
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_19 = ___value1;
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 L_20 = (TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 )L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_20);
RuntimeObject * L_22 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))));
NullCheck((RuntimeObject *)L_22);
bool L_23;
L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_22, (RuntimeObject *)L_21);
*((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))) = *(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 *)UnBox(L_22);
if (!L_23)
{
goto IL_005d;
}
}
{
int32_t L_24 = V_2;
return (int32_t)L_24;
}
IL_005d:
{
int32_t L_25 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0061:
{
int32_t L_26 = V_2;
int32_t L_27 = V_0;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_0031;
}
}
IL_0065:
{
return (int32_t)(-1);
}
}
// System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_1_Equals_mBA9186974A7A23A71590A02CD0532531983E5788_gshared (ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 *)((ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_1_GetHashCode_m30F1E6A0877890C4C39299F3DCCD35C6C9B07C1D_gshared (ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer_1__ctor_m4B43C994B58D7C2617DC6E2CBFD3E1ABFF1E0949_gshared (ObjectEqualityComparer_1_tF2C5983682511814B8FF3EC2E793AD127F90BCB2 * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 *)__this);
(( void (*) (EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EqualityComparer_1_t36F59BE8A7D09DAD053C946F6A3C52D5990604F5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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.Int32 UnityEngine.UI.ObjectPool`1<System.Object>::get_countAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectPool_1_get_countAll_mCFF42E7C95A75D68A21B886822C1B79E0C819B1B_gshared (ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 * __this, const RuntimeMethod* method)
{
{
// public int countAll { get; private set; }
int32_t L_0 = (int32_t)__this->get_U3CcountAllU3Ek__BackingField_3();
return (int32_t)L_0;
}
}
// System.Void UnityEngine.UI.ObjectPool`1<System.Object>::set_countAll(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1_set_countAll_m5A9D85FF9187228D27DA2B3D8A730337E92E8763_gshared (ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int countAll { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CcountAllU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.UI.ObjectPool`1<System.Object>::.ctor(UnityEngine.Events.UnityAction`1<T>,UnityEngine.Events.UnityAction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1__ctor_m9DA9370FCF1650F92A088F1E3E483564C0CB0D53_gshared (ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 * __this, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___actionOnGet0, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___actionOnRelease1, const RuntimeMethod* method)
{
{
// private readonly Stack<T> m_Stack = new Stack<T>();
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_0 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0));
(( void (*) (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
__this->set_m_Stack_0(L_0);
// public ObjectPool(UnityAction<T> actionOnGet, UnityAction<T> actionOnRelease)
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
// m_ActionOnGet = actionOnGet;
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_1 = ___actionOnGet0;
__this->set_m_ActionOnGet_1(L_1);
// m_ActionOnRelease = actionOnRelease;
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_2 = ___actionOnRelease1;
__this->set_m_ActionOnRelease_2(L_2);
// }
return;
}
}
// T UnityEngine.UI.ObjectPool`1<System.Object>::Get()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ObjectPool_1_Get_m337CD568F7C5B46D54450BDDABFC797DA8A71C0D_gshared (ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
{
// if (m_Stack.Count == 0)
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_0 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get_m_Stack_0();
NullCheck((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_0);
int32_t L_1;
L_1 = (( int32_t (*) (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if (L_1)
{
goto IL_0025;
}
}
{
// element = new T();
RuntimeObject * L_2;
L_2 = (( RuntimeObject * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
V_0 = (RuntimeObject *)L_2;
// countAll++;
NullCheck((ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 *)__this);
int32_t L_3;
L_3 = (( int32_t (*) (ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_1 = (int32_t)L_3;
int32_t L_4 = V_1;
NullCheck((ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 *)__this);
(( void (*) (ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
// }
goto IL_0031;
}
IL_0025:
{
// element = m_Stack.Pop();
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_5 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get_m_Stack_0();
NullCheck((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_5);
RuntimeObject * L_6;
L_6 = (( RuntimeObject * (*) (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
V_0 = (RuntimeObject *)L_6;
}
IL_0031:
{
// if (m_ActionOnGet != null)
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_7 = (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)__this->get_m_ActionOnGet_1();
if (!L_7)
{
goto IL_0045;
}
}
{
// m_ActionOnGet(element);
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_8 = (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)__this->get_m_ActionOnGet_1();
RuntimeObject * L_9 = V_0;
NullCheck((UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_8);
(( void (*) (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
}
IL_0045:
{
// return element;
RuntimeObject * L_10 = V_0;
return (RuntimeObject *)L_10;
}
}
// System.Void UnityEngine.UI.ObjectPool`1<System.Object>::Release(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1_Release_m4C7377DB6AE42BD6A4EC954E2D6712429D804D53_gshared (ObjectPool_1_t01F849BC89347782368DAF27F5DB539BBF0623C8 * __this, RuntimeObject * ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral90D481902E4536C7CAECF03F50C5BF454D5968A7);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Stack.Count > 0 && ReferenceEquals(m_Stack.Peek(), element))
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_0 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get_m_Stack_0();
NullCheck((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_0);
int32_t L_1;
L_1 = (( int32_t (*) (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)L_1) <= ((int32_t)0)))
{
goto IL_0030;
}
}
{
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_2 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get_m_Stack_0();
NullCheck((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_2);
RuntimeObject * L_3;
L_3 = (( RuntimeObject * (*) (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject * L_4 = ___element0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_3) == ((RuntimeObject*)(RuntimeObject *)L_4))))
{
goto IL_0030;
}
}
{
// Debug.LogError("Internal error. Trying to destroy object that is already released to pool.");
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485((RuntimeObject *)_stringLiteral90D481902E4536C7CAECF03F50C5BF454D5968A7, /*hidden argument*/NULL);
}
IL_0030:
{
// if (m_ActionOnRelease != null)
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_5 = (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)__this->get_m_ActionOnRelease_2();
if (!L_5)
{
goto IL_0044;
}
}
{
// m_ActionOnRelease(element);
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_6 = (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)__this->get_m_ActionOnRelease_2();
RuntimeObject * L_7 = ___element0;
NullCheck((UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_6);
(( void (*) (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
}
IL_0044:
{
// m_Stack.Push(element);
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_8 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get_m_Stack_0();
RuntimeObject * L_9 = ___element0;
NullCheck((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_8);
(( void (*) (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
// }
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.Collections.Generic.IEnumerator`1<TElement> System.Linq.OrderedEnumerable`1<Vuforia.CameraMode>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_GetEnumerator_mF85AD1BFBB1113025326BF8DC1078BAEA3B4AD85_gshared (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * __this, const RuntimeMethod* method)
{
{
U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2 * L_0 = (U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0));
(( void (*) (U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2 * L_1 = (U3CGetEnumeratorU3Ed__1_t106E0A366E087FDFAEB179D1B106F1B247AF5DC2 *)L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return (RuntimeObject*)L_1;
}
}
// System.Collections.IEnumerator System.Linq.OrderedEnumerable`1<Vuforia.CameraMode>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_m1B6F605B9F199275685174E90B5A8BBDCA5270E1_gshared (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * __this, const RuntimeMethod* method)
{
{
NullCheck((OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)__this);
RuntimeObject* L_0;
L_0 = (( RuntimeObject* (*) (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return (RuntimeObject*)L_0;
}
}
// System.Void System.Linq.OrderedEnumerable`1<Vuforia.CameraMode>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_1__ctor_m338AC396846B314020C926A439995C9EE57A8EEF_gshared (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.OrderedEnumerable`1<System.Int32>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_GetEnumerator_m0B88482CD086726554894D7960A6E64017EC2BD1_gshared (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * __this, const RuntimeMethod* method)
{
{
U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0 * L_0 = (U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0));
(( void (*) (U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0 * L_1 = (U3CGetEnumeratorU3Ed__1_t931B7688DBE9BCCA47D96C514F41F3DEC615B1D0 *)L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return (RuntimeObject*)L_1;
}
}
// System.Collections.IEnumerator System.Linq.OrderedEnumerable`1<System.Int32>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_m926675AD1B8D1F214F66FB59939EA9A4D7354007_gshared (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * __this, const RuntimeMethod* method)
{
{
NullCheck((OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)__this);
RuntimeObject* L_0;
L_0 = (( RuntimeObject* (*) (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return (RuntimeObject*)L_0;
}
}
// System.Void System.Linq.OrderedEnumerable`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_1__ctor_m2B7A67EA2807A400367962C18E0555FADD8A20DA_gshared (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_GetEnumerator_m5C5109FEB5C3D207C618CD0C2887BB22C4F5E720_gshared (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * __this, const RuntimeMethod* method)
{
{
U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A * L_0 = (U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0));
(( void (*) (U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A * L_1 = (U3CGetEnumeratorU3Ed__1_tEBAE875EBC55A1C5837CF869C16CEA686E39F88A *)L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return (RuntimeObject*)L_1;
}
}
// System.Collections.IEnumerator System.Linq.OrderedEnumerable`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_mB9AEFF8DE8C17CC9BD7A924876AF49C1552A8A20_gshared (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * __this, const RuntimeMethod* method)
{
{
NullCheck((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this);
RuntimeObject* L_0;
L_0 = (( RuntimeObject* (*) (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return (RuntimeObject*)L_0;
}
}
// System.Void System.Linq.OrderedEnumerable`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_1__ctor_m4C874C82AE821765A22A04D060FA9157BCC3CC85_gshared (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.OrderedEnumerable`1<UnityEngine.RaycastHit>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_GetEnumerator_m0C596934377D0CD2C9694DD801F79DC8F8505996_gshared (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * __this, const RuntimeMethod* method)
{
{
U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02 * L_0 = (U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0));
(( void (*) (U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02 * L_1 = (U3CGetEnumeratorU3Ed__1_t5B323DD4DD4DE62CAD859E086916D700B1F42A02 *)L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return (RuntimeObject*)L_1;
}
}
// System.Collections.IEnumerator System.Linq.OrderedEnumerable`1<UnityEngine.RaycastHit>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_m0B4F6492C6BFF4A60EE1A95E0EEACFA588BA1AB4_gshared (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * __this, const RuntimeMethod* method)
{
{
NullCheck((OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)__this);
RuntimeObject* L_0;
L_0 = (( RuntimeObject* (*) (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return (RuntimeObject*)L_0;
}
}
// System.Void System.Linq.OrderedEnumerable`1<UnityEngine.RaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_1__ctor_m1EE7135EA6157708621CF6F44B5223BA4A1C0277_gshared (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.OrderedEnumerable`2<Vuforia.CameraMode,System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_m5681137DDD80F50D3152FC42807E5A4541103AB7_gshared (OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 * __this, RuntimeObject* ___source0, Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 * G_B6_0 = NULL;
OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 * G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 * G_B7_1 = NULL;
{
NullCheck((OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)__this);
(( void (*) (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_0014;
}
}
{
Exception_t * L_1;
L_1 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m5681137DDD80F50D3152FC42807E5A4541103AB7_RuntimeMethod_var)));
}
IL_0014:
{
Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * L_2 = ___keySelector1;
if (L_2)
{
goto IL_0022;
}
}
{
Exception_t * L_3;
L_3 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral12D34C4D5361DBE1804B6F49EDED3C800B442095)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m5681137DDD80F50D3152FC42807E5A4541103AB7_RuntimeMethod_var)));
}
IL_0022:
{
RuntimeObject* L_4 = ___source0;
((OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)__this)->set_source_0(L_4);
__this->set_parent_1((OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)NULL);
Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * L_5 = ___keySelector1;
__this->set_keySelector_2(L_5);
RuntimeObject* L_6 = ___comparer2;
G_B5_0 = ((OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 *)(__this));
if (L_6)
{
G_B6_0 = ((OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 *)(__this));
goto IL_0044;
}
}
{
Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_7;
L_7 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (RuntimeObject*)L_7;
RuntimeObject* L_8 = V_0;
G_B7_0 = L_8;
G_B7_1 = ((OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 *)(G_B5_0));
goto IL_0045;
}
IL_0044:
{
RuntimeObject* L_9 = ___comparer2;
G_B7_0 = L_9;
G_B7_1 = ((OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 *)(G_B6_0));
}
IL_0045:
{
NullCheck(G_B7_1);
G_B7_1->set_comparer_3(G_B7_0);
bool L_10 = ___descending3;
__this->set_descending_4(L_10);
return;
}
}
// System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<Vuforia.CameraMode,System.Int32>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * OrderedEnumerable_2_GetEnumerableSorter_mCE164B3ABFD58C3E629BB677A597A6F36AA81079_gshared (OrderedEnumerable_2_tE05705FE30333565040CF188156921F363FF4A27 * __this, EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * ___next0, const RuntimeMethod* method)
{
EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * V_0 = NULL;
{
Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C * L_0 = (Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C *)__this->get_keySelector_2();
RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3();
bool L_2 = (bool)__this->get_descending_4();
EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * L_3 = ___next0;
EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC * L_4 = (EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4));
(( void (*) (EnumerableSorter_2_t63852856897FA42DB3E8B42C97191CD5700E2DDC *, Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C *, RuntimeObject*, bool, EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_t3F6C8704156635D0C76F0B3DA876EDBDF5D9555C *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_0 = (EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 *)L_4;
OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * L_5 = (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)__this->get_parent_1();
if (!L_5)
{
goto IL_002e;
}
}
{
OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 * L_6 = (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)__this->get_parent_1();
EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * L_7 = V_0;
NullCheck((OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)L_6);
EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * L_8;
L_8 = VirtFuncInvoker1< EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 *, EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<Vuforia.CameraMode>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_tF45D66F610256AC87BDBD96E36EA8FB16A708432 *)L_6, (EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 *)L_7);
V_0 = (EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 *)L_8;
}
IL_002e:
{
EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 * L_9 = V_0;
return (EnumerableSorter_1_tEC8C1891E74D39D37AAAB27AC30753BD6C5C28B9 *)L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.OrderedEnumerable`2<System.Int32,System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_m9A78719E23491D44F84525E318E18C48B5DC38C9_gshared (OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C * __this, RuntimeObject* ___source0, Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C * G_B6_0 = NULL;
OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C * G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C * G_B7_1 = NULL;
{
NullCheck((OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)__this);
(( void (*) (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_0014;
}
}
{
Exception_t * L_1;
L_1 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m9A78719E23491D44F84525E318E18C48B5DC38C9_RuntimeMethod_var)));
}
IL_0014:
{
Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * L_2 = ___keySelector1;
if (L_2)
{
goto IL_0022;
}
}
{
Exception_t * L_3;
L_3 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral12D34C4D5361DBE1804B6F49EDED3C800B442095)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m9A78719E23491D44F84525E318E18C48B5DC38C9_RuntimeMethod_var)));
}
IL_0022:
{
RuntimeObject* L_4 = ___source0;
((OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)__this)->set_source_0(L_4);
__this->set_parent_1((OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)NULL);
Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * L_5 = ___keySelector1;
__this->set_keySelector_2(L_5);
RuntimeObject* L_6 = ___comparer2;
G_B5_0 = ((OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C *)(__this));
if (L_6)
{
G_B6_0 = ((OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C *)(__this));
goto IL_0044;
}
}
{
Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_7;
L_7 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (RuntimeObject*)L_7;
RuntimeObject* L_8 = V_0;
G_B7_0 = L_8;
G_B7_1 = ((OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C *)(G_B5_0));
goto IL_0045;
}
IL_0044:
{
RuntimeObject* L_9 = ___comparer2;
G_B7_0 = L_9;
G_B7_1 = ((OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C *)(G_B6_0));
}
IL_0045:
{
NullCheck(G_B7_1);
G_B7_1->set_comparer_3(G_B7_0);
bool L_10 = ___descending3;
__this->set_descending_4(L_10);
return;
}
}
// System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<System.Int32,System.Int32>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * OrderedEnumerable_2_GetEnumerableSorter_mBC9BD962D08C8B06DF27230542453ACC7B9F523D_gshared (OrderedEnumerable_2_t9C8693E36F69588575127CA8DC174DFE9013668C * __this, EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * ___next0, const RuntimeMethod* method)
{
EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * V_0 = NULL;
{
Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA * L_0 = (Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA *)__this->get_keySelector_2();
RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3();
bool L_2 = (bool)__this->get_descending_4();
EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * L_3 = ___next0;
EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F * L_4 = (EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4));
(( void (*) (EnumerableSorter_2_t69D0FCB5B77BD69427C82E283CDC471F4DDF531F *, Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA *, RuntimeObject*, bool, EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_tFF6AE79EFD0857556AD37A1A1594C43F76012FEA *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_0 = (EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C *)L_4;
OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * L_5 = (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)__this->get_parent_1();
if (!L_5)
{
goto IL_002e;
}
}
{
OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE * L_6 = (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)__this->get_parent_1();
EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * L_7 = V_0;
NullCheck((OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)L_6);
EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * L_8;
L_8 = VirtFuncInvoker1< EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C *, EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<System.Int32>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t938A35591ED5CA8A006A7C2AFBAAB1F42B2E2DFE *)L_6, (EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C *)L_7);
V_0 = (EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C *)L_8;
}
IL_002e:
{
EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C * L_9 = V_0;
return (EnumerableSorter_1_t1B19D70DFC5A0D12D82DE2ED15B4ADEC28AD511C *)L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.OrderedEnumerable`2<System.Object,System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_m21AA08EAC3CB55DD13DD15294A65A3A38CD26369_gshared (OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 * __this, RuntimeObject* ___source0, Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 * G_B6_0 = NULL;
OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 * G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 * G_B7_1 = NULL;
{
NullCheck((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this);
(( void (*) (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_0014;
}
}
{
Exception_t * L_1;
L_1 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m21AA08EAC3CB55DD13DD15294A65A3A38CD26369_RuntimeMethod_var)));
}
IL_0014:
{
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_2 = ___keySelector1;
if (L_2)
{
goto IL_0022;
}
}
{
Exception_t * L_3;
L_3 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral12D34C4D5361DBE1804B6F49EDED3C800B442095)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m21AA08EAC3CB55DD13DD15294A65A3A38CD26369_RuntimeMethod_var)));
}
IL_0022:
{
RuntimeObject* L_4 = ___source0;
((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this)->set_source_0(L_4);
__this->set_parent_1((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)NULL);
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_5 = ___keySelector1;
__this->set_keySelector_2(L_5);
RuntimeObject* L_6 = ___comparer2;
G_B5_0 = ((OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 *)(__this));
if (L_6)
{
G_B6_0 = ((OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 *)(__this));
goto IL_0044;
}
}
{
Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_7;
L_7 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (RuntimeObject*)L_7;
RuntimeObject* L_8 = V_0;
G_B7_0 = L_8;
G_B7_1 = ((OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 *)(G_B5_0));
goto IL_0045;
}
IL_0044:
{
RuntimeObject* L_9 = ___comparer2;
G_B7_0 = L_9;
G_B7_1 = ((OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 *)(G_B6_0));
}
IL_0045:
{
NullCheck(G_B7_1);
G_B7_1->set_comparer_3(G_B7_0);
bool L_10 = ___descending3;
__this->set_descending_4(L_10);
return;
}
}
// System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<System.Object,System.Int32>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * OrderedEnumerable_2_GetEnumerableSorter_m0860A1CFE36F8736D638D67B19B64B58B83A43EF_gshared (OrderedEnumerable_2_t5721FCE5C4CA549578B68F391DC2712E163DFC43 * __this, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next0, const RuntimeMethod* method)
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * V_0 = NULL;
{
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_0 = (Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)__this->get_keySelector_2();
RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3();
bool L_2 = (bool)__this->get_descending_4();
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_3 = ___next0;
EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B * L_4 = (EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4));
(( void (*) (EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B *, Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *, RuntimeObject*, bool, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_0 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_4;
OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * L_5 = (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this->get_parent_1();
if (!L_5)
{
goto IL_002e;
}
}
{
OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * L_6 = (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this->get_parent_1();
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_7 = V_0;
NullCheck((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)L_6);
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_8;
L_8 = VirtFuncInvoker1< EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)L_6, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_7);
V_0 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_8;
}
IL_002e:
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_9 = V_0;
return (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.OrderedEnumerable`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_mA0F9FED80A04B8240F1430808339D9CBF5CE16DA_gshared (OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA * __this, RuntimeObject* ___source0, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA * G_B6_0 = NULL;
OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA * G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA * G_B7_1 = NULL;
{
NullCheck((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this);
(( void (*) (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_0014;
}
}
{
Exception_t * L_1;
L_1 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_mA0F9FED80A04B8240F1430808339D9CBF5CE16DA_RuntimeMethod_var)));
}
IL_0014:
{
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_2 = ___keySelector1;
if (L_2)
{
goto IL_0022;
}
}
{
Exception_t * L_3;
L_3 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral12D34C4D5361DBE1804B6F49EDED3C800B442095)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_mA0F9FED80A04B8240F1430808339D9CBF5CE16DA_RuntimeMethod_var)));
}
IL_0022:
{
RuntimeObject* L_4 = ___source0;
((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this)->set_source_0(L_4);
__this->set_parent_1((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)NULL);
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_5 = ___keySelector1;
__this->set_keySelector_2(L_5);
RuntimeObject* L_6 = ___comparer2;
G_B5_0 = ((OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA *)(__this));
if (L_6)
{
G_B6_0 = ((OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA *)(__this));
goto IL_0044;
}
}
{
Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7;
L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (RuntimeObject*)L_7;
RuntimeObject* L_8 = V_0;
G_B7_0 = L_8;
G_B7_1 = ((OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA *)(G_B5_0));
goto IL_0045;
}
IL_0044:
{
RuntimeObject* L_9 = ___comparer2;
G_B7_0 = L_9;
G_B7_1 = ((OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA *)(G_B6_0));
}
IL_0045:
{
NullCheck(G_B7_1);
G_B7_1->set_comparer_3(G_B7_0);
bool L_10 = ___descending3;
__this->set_descending_4(L_10);
return;
}
}
// System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<System.Object,System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * OrderedEnumerable_2_GetEnumerableSorter_mDBDE2687501F524534876EE2A00D5188DB19F7BF_gshared (OrderedEnumerable_2_t2D037583B9C1B804D9A950293C2165363EED62BA * __this, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next0, const RuntimeMethod* method)
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * V_0 = NULL;
{
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_0 = (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)__this->get_keySelector_2();
RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3();
bool L_2 = (bool)__this->get_descending_4();
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_3 = ___next0;
EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 * L_4 = (EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4));
(( void (*) (EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 *, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *, RuntimeObject*, bool, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_0 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_4;
OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * L_5 = (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this->get_parent_1();
if (!L_5)
{
goto IL_002e;
}
}
{
OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F * L_6 = (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)__this->get_parent_1();
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_7 = V_0;
NullCheck((OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)L_6);
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_8;
L_8 = VirtFuncInvoker1< EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t4ED7F4DE53F413B48E5FCFAFE1EFE1B04A7B5F6F *)L_6, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_7);
V_0 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_8;
}
IL_002e:
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_9 = V_0;
return (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.OrderedEnumerable`2<UnityEngine.RaycastHit,System.Single>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_m87B4AC4ED5A23F3953D52755BDAEEFFA5D797ABC_gshared (OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A * __this, RuntimeObject* ___source0, Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A * G_B6_0 = NULL;
OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A * G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A * G_B7_1 = NULL;
{
NullCheck((OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)__this);
(( void (*) (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_0014;
}
}
{
Exception_t * L_1;
L_1 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m87B4AC4ED5A23F3953D52755BDAEEFFA5D797ABC_RuntimeMethod_var)));
}
IL_0014:
{
Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * L_2 = ___keySelector1;
if (L_2)
{
goto IL_0022;
}
}
{
Exception_t * L_3;
L_3 = Error_ArgumentNull_m0EDA0D46D72CA692518E3E2EB75B48044D8FD41E((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral12D34C4D5361DBE1804B6F49EDED3C800B442095)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OrderedEnumerable_2__ctor_m87B4AC4ED5A23F3953D52755BDAEEFFA5D797ABC_RuntimeMethod_var)));
}
IL_0022:
{
RuntimeObject* L_4 = ___source0;
((OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)__this)->set_source_0(L_4);
__this->set_parent_1((OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)NULL);
Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * L_5 = ___keySelector1;
__this->set_keySelector_2(L_5);
RuntimeObject* L_6 = ___comparer2;
G_B5_0 = ((OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A *)(__this));
if (L_6)
{
G_B6_0 = ((OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A *)(__this));
goto IL_0044;
}
}
{
Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * L_7;
L_7 = (( Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (RuntimeObject*)L_7;
RuntimeObject* L_8 = V_0;
G_B7_0 = L_8;
G_B7_1 = ((OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A *)(G_B5_0));
goto IL_0045;
}
IL_0044:
{
RuntimeObject* L_9 = ___comparer2;
G_B7_0 = L_9;
G_B7_1 = ((OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A *)(G_B6_0));
}
IL_0045:
{
NullCheck(G_B7_1);
G_B7_1->set_comparer_3(G_B7_0);
bool L_10 = ___descending3;
__this->set_descending_4(L_10);
return;
}
}
// System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<UnityEngine.RaycastHit,System.Single>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * OrderedEnumerable_2_GetEnumerableSorter_m14F28F4325D15A64F50F69D48C1FDFCC06927F1B_gshared (OrderedEnumerable_2_tB0E32393F6CFC4945A9435C528019598B13AD24A * __this, EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * ___next0, const RuntimeMethod* method)
{
EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * V_0 = NULL;
{
Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A * L_0 = (Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A *)__this->get_keySelector_2();
RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3();
bool L_2 = (bool)__this->get_descending_4();
EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * L_3 = ___next0;
EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB * L_4 = (EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4));
(( void (*) (EnumerableSorter_2_tF980B7543238E9EBAB15DB919800692178213ECB *, Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A *, RuntimeObject*, bool, EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_t253D46ABB79DD652C4B14F298491AEECC980BF6A *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_0 = (EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 *)L_4;
OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * L_5 = (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)__this->get_parent_1();
if (!L_5)
{
goto IL_002e;
}
}
{
OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB * L_6 = (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)__this->get_parent_1();
EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * L_7 = V_0;
NullCheck((OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)L_6);
EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * L_8;
L_8 = VirtFuncInvoker1< EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 *, EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<UnityEngine.RaycastHit>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t12FA497F79AF64E2A32CFBEC777ECAA79FFAF8BB *)L_6, (EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 *)L_7);
V_0 = (EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 *)L_8;
}
IL_002e:
{
EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 * L_9 = V_0;
return (EnumerableSorter_1_t3BF011B418731B638856BD2D802AEBD6F075D1D7 *)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.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m6DDF071DE28B2B2AFB774BA6A79DAFAF42AF8CC9_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mFC4A9C842C594CE8A47D08444A331DE0F64D8CC4_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m12D7E28C790416B7F3E8738CD0C98213E744E19F_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mE6D0BC78CE5F328848C27C4411D47E3D285FE01E_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m8E1C36FBC01FF53D65F19A2C7B146C417D849AB2_gshared (Predicate_1_tD8CFC68D3FD2CAFDE997FB42F04FA9B896DDA4D1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m693A3553A1F4653815F210906CAED3E6C467EA7B_gshared (Predicate_1_tD8CFC68D3FD2CAFDE997FB42F04FA9B896DDA4D1 * __this, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mBB9980384E0EFD10551B7C0B6BEDCCD124197832_gshared (Predicate_1_tD8CFC68D3FD2CAFDE997FB42F04FA9B896DDA4D1 * __this, KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m307AF7850B71F95B0F594DCD9BBB5B6A13FBDD79_gshared (Predicate_1_tD8CFC68D3FD2CAFDE997FB42F04FA9B896DDA4D1 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m838669D7AC40BF28A0EBAF347A585F2C985352DA_gshared (Predicate_1_t648A13B6D5246C930A8086ACD20A7B4FAB10D51D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m1DC82529A03BC0A043FC85D050C60C76E5F88993_gshared (Predicate_1_t648A13B6D5246C930A8086ACD20A7B4FAB10D51D * __this, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mE7FE99C1320822C64CBD766C5D2AB8932DD87B54_gshared (Predicate_1_t648A13B6D5246C930A8086ACD20A7B4FAB10D51D * __this, KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m071BEC306B15126D1965F3E56622FB86D6070359_gshared (Predicate_1_t648A13B6D5246C930A8086ACD20A7B4FAB10D51D * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m2E99D39C5892DE87BD42687EC011FC5DA49151AC_gshared (Predicate_1_t78E36256E7141DFF7633B77FF87BCF9B83E602D8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mFBF9F498B5AE9CDB19D9079F4629A33CCDFC0C76_gshared (Predicate_1_t78E36256E7141DFF7633B77FF87BCF9B83E602D8 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m8F716D3F2633AAE2ECEA9C9A74FC060265FC3220_gshared (Predicate_1_t78E36256E7141DFF7633B77FF87BCF9B83E602D8 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mB557F05C9C2CD3A45D98C4EC31F58AAB5DDE80BC_gshared (Predicate_1_t78E36256E7141DFF7633B77FF87BCF9B83E602D8 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m870A653537A162D3456D0DE2F259F2C27088E886_gshared (Predicate_1_tF6BFBED754D517C93ABC2B1F3522F005E01BC70B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.ValueTuple`2<System.Object,System.Object>>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mA43138F479476C832C3FC4FA4CCFF76498381898_gshared (Predicate_1_tF6BFBED754D517C93ABC2B1F3522F005E01BC70B * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.ValueTuple`2<System.Object,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m1312ECB56995BD08012E48D9790FE4B48685FDD4_gshared (Predicate_1_tF6BFBED754D517C93ABC2B1F3522F005E01BC70B * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.ValueTuple`2<System.Object,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m2629AE22FE3CB393E0D7884A9D27AB041C86E73D_gshared (Predicate_1_tF6BFBED754D517C93ABC2B1F3522F005E01BC70B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Byte>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mEEABA867E10FB48EA9EA4247C413B26E0356A8C7_gshared (Predicate_1_t842A4F020A7223F89AAD26B7AD9110DCAD811E0F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Byte>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mE8423CF946834AC3115D96027E7ACB129635ECA2_gshared (Predicate_1_t842A4F020A7223F89AAD26B7AD9110DCAD811E0F * __this, uint8_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint8_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint8_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Byte>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m76E1E2F5B7FD416681B531B269999AEA56196703_gshared (Predicate_1_t842A4F020A7223F89AAD26B7AD9110DCAD811E0F * __this, uint8_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Byte>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mAC71508416325C0416B9C45DD6168795FF306461_gshared (Predicate_1_t842A4F020A7223F89AAD26B7AD9110DCAD811E0F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.CameraMode>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m648768A4384F38A8E4E79497223244D99A9A517F_gshared (Predicate_1_tDE3BC87716E4543F875BC43A749B02C4A6F6FD6F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.CameraMode>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mEC2B9F2A2344CE2B3980A48FDD53173CC20BD40B_gshared (Predicate_1_tDE3BC87716E4543F875BC43A749B02C4A6F6FD6F * __this, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.CameraMode>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2EFFB313E76CB00324390A60431F388A32C8984E_gshared (Predicate_1_tDE3BC87716E4543F875BC43A749B02C4A6F6FD6F * __this, CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(CameraMode_tB8489CC427335D88DE6B5ACE2CFB99BF7699A64B_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.CameraMode>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m766CF8BE6F60694FBFAB2DBF0C7F34F8C540B10C_gshared (Predicate_1_tDE3BC87716E4543F875BC43A749B02C4A6F6FD6F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Char>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mBC38BB06F9544CB32457970954DFF6EEC0994C55_gshared (Predicate_1_t954B92A28F72E25951E55FC9B1A87DA3F93B2D0E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Char>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m5EF78558D2BE26FE0A338E1F1EA37BEB0E95E864_gshared (Predicate_1_t954B92A28F72E25951E55FC9B1A87DA3F93B2D0E * __this, Il2CppChar ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Il2CppChar >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Il2CppChar >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Char>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mCBBE20E17CB9BBACB12B8C205DC92E70032B1BE2_gshared (Predicate_1_t954B92A28F72E25951E55FC9B1A87DA3F93B2D0E * __this, Il2CppChar ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Char>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mB14BEA10476BD575056BD1432819327823EE352C_gshared (Predicate_1_t954B92A28F72E25951E55FC9B1A87DA3F93B2D0E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.Color32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mB27BD79E8FC20179511FA8DFCBF261DDE9E6DF5D_gshared (Predicate_1_t93F7DA898B9782B61675EAFF1A2C6B68D454627E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Color32>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m4D68EF2A91A5F39D29E3F8DB1E711CABAC906F6A_gshared (Predicate_1_t93F7DA898B9782B61675EAFF1A2C6B68D454627E * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Color32>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m25EF0866CF0C1DFB9B2E35C3DF0F5BCA23B2B7DF_gshared (Predicate_1_t93F7DA898B9782B61675EAFF1A2C6B68D454627E * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.Color32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m171BA9848B66645345547013E7A92918CFEC1FBB_gshared (Predicate_1_t93F7DA898B9782B61675EAFF1A2C6B68D454627E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Collections.DictionaryEntry>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4B550B9D2D5AA88C165F974AF9B5A654906531A5_gshared (Predicate_1_tADDB20A46F1D89FE7BAEEB939961FF3303826F4E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Collections.DictionaryEntry>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mBCC31A3AB7851EE635DA1F9246A6562B51C98C38_gshared (Predicate_1_tADDB20A46F1D89FE7BAEEB939961FF3303826F4E * __this, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Collections.DictionaryEntry>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m8AC461E9B9DF738A154F16CCF3A61A22E2E7592D_gshared (Predicate_1_tADDB20A46F1D89FE7BAEEB939961FF3303826F4E * __this, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Collections.DictionaryEntry>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m98BA363E9BCE03AD4E7CF5E0C9547972167B139A_gshared (Predicate_1_tADDB20A46F1D89FE7BAEEB939961FF3303826F4E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Double>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m44AF51B3FE920553F66F43B6E19AE4625396ECBA_gshared (Predicate_1_t0E330E9BFAE196FB8D650A01EF09715D5B3C63DC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Double>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m25DEE78AB92853151CA44B79EB324F36A4BC757D_gshared (Predicate_1_t0E330E9BFAE196FB8D650A01EF09715D5B3C63DC * __this, double ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, double >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, double >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Double>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mAF26001969E3CED8CDB080D3BDACB80FD0DD66CE_gshared (Predicate_1_t0E330E9BFAE196FB8D650A01EF09715D5B3C63DC * __this, double ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Double>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m5FC0F662D9A957578654360F5B72C985E8628566_gshared (Predicate_1_t0E330E9BFAE196FB8D650A01EF09715D5B3C63DC * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Guid>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mB081A29A5C2D4058952EAF6222EEE5E82C5C4D7C_gshared (Predicate_1_t30F9B115B7755782EC109C2927AB398BF851816E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Guid>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m408E3C18A376B95DB424EFCE8F81B37F01C426E4_gshared (Predicate_1_t30F9B115B7755782EC109C2927AB398BF851816E * __this, Guid_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Guid_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Guid_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Guid>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m5C0C11A7B328D981894DEFED84603CAA58142207_gshared (Predicate_1_t30F9B115B7755782EC109C2927AB398BF851816E * __this, Guid_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Guid_t_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Guid>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m9AD23B254DB23AD948B0FE1B75011704B400B454_gshared (Predicate_1_t30F9B115B7755782EC109C2927AB398BF851816E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m15D44D0E044DB7B98816BEAF9CC9937AB75637E9_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Int32>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2CD0DAA41126E0DF23F140A7C6BECA0AB6592959_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __this, int32_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m82601F0455C2256B440D7CCD4A582FE006878A45_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __this, int32_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3CA4AEF257C04CBD04A01F2A160AF2EF76991DD2_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m153A7D35187FF7F4631C59D1584FAE7BE97DB0EC_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Int32Enum>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mD73508EF1CC48FF2AA3DBD127CBE9D40CEDB6A78_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __this, int32_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Int32Enum>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m6D680A16ABF97FEDB1462FC5C6E5B0E3AE452D43_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __this, int32_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Int32Enum>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mC8875FFE8A800DE94B35312FC7448DE653A17739_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4B13247586081020D3533FE8EC0C9A1FCF6F0E55_gshared (Predicate_1_tA1B517116B3565A97FB0B2D4AAB1C5D66E17C479 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCB9A232E776E81D5D1CAC272F5A1BB6CE9687678_gshared (Predicate_1_tA1B517116B3565A97FB0B2D4AAB1C5D66E17C479 * __this, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m874AAD04B24661BED6709A5164F2C80F0897F224_gshared (Predicate_1_tA1B517116B3565A97FB0B2D4AAB1C5D66E17C479 * __this, InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(InterpretedFrameInfo_tC2C153C83030E30AC9BEC762C0B549D6340A1DF7_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Linq.Expressions.Interpreter.InterpretedFrameInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m8EAE74E70FAB0874874F582D284BC703D55E3E8D_gshared (Predicate_1_tA1B517116B3565A97FB0B2D4AAB1C5D66E17C479 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.Newtonsoft.Json.JsonPosition>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4C2FFF87FB2BC3C353FAF773AE8E7E66FF882E23_gshared (Predicate_1_t419DB74DEFDC47632026D9ECFBF111FB3EE5B81B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.Newtonsoft.Json.JsonPosition>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mE929B30B4727E84A3AA45D34EEDD5A8AA4FD0D8B_gshared (Predicate_1_t419DB74DEFDC47632026D9ECFBF111FB3EE5B81B * __this, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.Newtonsoft.Json.JsonPosition>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m91C2E4EDC0097B72E34E7F19CCB281125270D9D8_gshared (Predicate_1_t419DB74DEFDC47632026D9ECFBF111FB3EE5B81B * __this, JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(JsonPosition_t0DE46AEAF3834A1CDC3FBF724F34FA7AFDE3CB0B_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.Newtonsoft.Json.JsonPosition>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mBFA46C52D2B911C5426AD5928A83D13EF147D207_gshared (Predicate_1_t419DB74DEFDC47632026D9ECFBF111FB3EE5B81B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Object>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6D3A43A54FAC38E55033FA2CCD04E7BD19C943CF_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker0< bool >::Invoke(targetMethod, ___obj0);
else
result = GenericVirtFuncInvoker0< bool >::Invoke(targetMethod, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___obj0);
else
result = VirtFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2BEA907731B8CDA9D4CA213637D54EBB1F7F8174_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___obj0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mD0302860893AAE37F05B1C30D2055E37D7C5A657_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.Pose>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4D022BC2A729C11909EB8759B75FD7B82E14F92F_gshared (Predicate_1_t781F56F00E55374D95A5BBFFE2F553AF85D0FC9F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Pose>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m33CF2E3AC29F4F9AC05702B9D8BBFC09FA25EA22_gshared (Predicate_1_t781F56F00E55374D95A5BBFFE2F553AF85D0FC9F * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Pose>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m4600BE5694553D7D5E39C751ED351706FA94A469_gshared (Predicate_1_t781F56F00E55374D95A5BBFFE2F553AF85D0FC9F * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.Pose>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m092C40BE28E7646C1C70C4D5324C1600C21EFEAF_gshared (Predicate_1_t781F56F00E55374D95A5BBFFE2F553AF85D0FC9F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.RaycastHit2D>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m7397D28C0B3F6CAF67F515510F94AAC16B1BB4C1_gshared (Predicate_1_t9055FDFD9CFCC052508081AE0A90D9254ADD0DEE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.RaycastHit2D>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m1E8585B8A4EB93ED7E20C485994CAAD7DE98A247_gshared (Predicate_1_t9055FDFD9CFCC052508081AE0A90D9254ADD0DEE * __this, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.RaycastHit2D>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m6F92DF2746DA73073EFE2050FFADA1F29B455673_gshared (Predicate_1_t9055FDFD9CFCC052508081AE0A90D9254ADD0DEE * __this, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.RaycastHit2D>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m047C2F6BBFE7C0DC670B9A5817DEB58D7068D846_gshared (Predicate_1_t9055FDFD9CFCC052508081AE0A90D9254ADD0DEE * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m7D880B4B4D397712F820845B7F693E03602990D5_gshared (Predicate_1_tE4AA40EAD3542E24130BEF8BF181659B017A5F64 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mA2951B5081671F86A2D3559809D7599A007DD4D5_gshared (Predicate_1_tE4AA40EAD3542E24130BEF8BF181659B017A5F64 * __this, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m0F7A9D7D8AEB32E4D6DECD241E7BA7A414A78A9A_gshared (Predicate_1_tE4AA40EAD3542E24130BEF8BF181659B017A5F64 * __this, RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m5E456B79B8D78736A0A8301B4B982CED58844172_gshared (Predicate_1_tE4AA40EAD3542E24130BEF8BF181659B017A5F64 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Single>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mA52A2A9B962B341F7638435B24A68A363ED5F9A3_gshared (Predicate_1_t7712DE0490F6460AC78C03DE1DDBAB8AA5FDCD10 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Single>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mB8279E88DAECAE7EE4B7E4977519C92586D79C5B_gshared (Predicate_1_t7712DE0490F6460AC78C03DE1DDBAB8AA5FDCD10 * __this, float ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Single>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mD86E957624E1BD20A122F26579C788E1152F7FD2_gshared (Predicate_1_t7712DE0490F6460AC78C03DE1DDBAB8AA5FDCD10 * __this, float ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Single>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m65AFFA9BCB00807BE12BAF3176E4548DDCCCD6B8_gshared (Predicate_1_t7712DE0490F6460AC78C03DE1DDBAB8AA5FDCD10 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.UICharInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mF62095A6B0AA3E6197C473358A2DA526863914EB_gshared (Predicate_1_tD9E496B0AAFD32E7F08682985D991B0E8494B5FF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m988ACA2CA2A3855ACC196E7666B40E6B2CBCA2FF_gshared (Predicate_1_tD9E496B0AAFD32E7F08682985D991B0E8494B5FF * __this, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.UICharInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mD3CD6AB82D1489ABECA8FDC05CDA8B8E5DA78752_gshared (Predicate_1_tD9E496B0AAFD32E7F08682985D991B0E8494B5FF * __this, UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m54E2D3C668B204DAA13026DFEFBE004B82D0027F_gshared (Predicate_1_tD9E496B0AAFD32E7F08682985D991B0E8494B5FF * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.UILineInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mAB2CEC39FCE5C76F41E303BCC9174A8A6D5F23E3_gshared (Predicate_1_t67FB874DC27C7A70F3D5CBB972EF1985F8D77EC1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mFA892F62C5846AB835B951DA353185C71F218D32_gshared (Predicate_1_t67FB874DC27C7A70F3D5CBB972EF1985F8D77EC1 * __this, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.UILineInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m7B65373893B03FFE8FD0B46333E4C0454CFF455B_gshared (Predicate_1_t67FB874DC27C7A70F3D5CBB972EF1985F8D77EC1 * __this, UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m34B4228F637967BEC73340C03CEDE1567707C3DA_gshared (Predicate_1_t67FB874DC27C7A70F3D5CBB972EF1985F8D77EC1 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.UIVertex>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mD9404304916FC86CFB88C20A6D362ADDE771244C_gshared (Predicate_1_t86245C691294F4CAF9A0D4CB0AB8090805BD5564 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.UIVertex>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m567BA4751EE4591318DEEBE7F3EE1FBAEE4D2906_gshared (Predicate_1_t86245C691294F4CAF9A0D4CB0AB8090805BD5564 * __this, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.UIVertex>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m96DD370B4847D160395D10FE4DF46508A0EB0DE7_gshared (Predicate_1_t86245C691294F4CAF9A0D4CB0AB8090805BD5564 * __this, UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.UIVertex>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m90F34A14002FE266C21B1C3D5478B5FB19C62609_gshared (Predicate_1_t86245C691294F4CAF9A0D4CB0AB8090805BD5564 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.UInt64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m10C8E7879ABB530F94BDCF745D66F8B2643A3EA0_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.UInt64>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6A92B10BBE951E6E989D4A5ED88067E83C49F288_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __this, uint64_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.UInt64>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m4DEA32367BA7003BA7CC43F58B2A35CDBCFD857D_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __this, uint64_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.UInt64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m7A92C14D8A6ADCC3B2042366AED5C2D2BE6D9CDD_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m753A323EFCEC0CFF32E4DAABEAA0F71EE7F2809F_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector3>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m8A46CD72E2849E47BCF38ABE5B3C0CA56A68C06E_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Vector3>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mBA970C920E69EA498F8FF4ACFF971B2E9A8ADD26_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m196C32984931A3BB771EDA03963C525FAE071BA8_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.Vector4>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mFE11C3D446BCF98560208564D1325AD30294BA18_gshared (Predicate_1_t7159ED2567E0DF400A0E86969D4E4229BD5DF948 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector4>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mA53E818AFA26461162E1FDA85071E8B7B84A362A_gshared (Predicate_1_t7159ED2567E0DF400A0E86969D4E4229BD5DF948 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Vector4>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mA6AE9DAA074A8D747F2BBABF1411D477E118D127_gshared (Predicate_1_t7159ED2567E0DF400A0E86969D4E4229BD5DF948 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.Vector4>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m7079F9BE5005ED0A81F4F08A9F01CFC5B268CDFB_gshared (Predicate_1_t7159ED2567E0DF400A0E86969D4E4229BD5DF948 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m7E44171AD6CE787A9CD91692FE20B2A164A9EC29_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m39F943F4658F60A061C8FB960995950D016208A3_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mADE188062858C4208D0CD63502F58F7B22F7F3DA_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mF4AA09CE0D4E9CA9D465A5D8A8E3C5DB9DA3907C_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.Camera/RenderRequest>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m9AE1FBB59C7804F43BB7F70F6616C066E08357CE_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Camera/RenderRequest>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mD7797CBE2273C74BD54ED7F5D4A3B161F3B1BB75_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Camera/RenderRequest>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m64DC80BAF17601C4F4088CD2D43FFFAECC036855_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.Camera/RenderRequest>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m288662FE7F0DFC2608C68B449142CD896DE8213D_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4641144DA959201124CAB0D9E2D4EB0A45DFE78D_gshared (Predicate_1_tF0B1F77CE14965CE85496D58B7F95B85650235DE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.CameraDevice/CameraField>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m039C475308CDCB66E8066C6545B73C2CCC911F28_gshared (Predicate_1_tF0B1F77CE14965CE85496D58B7F95B85650235DE * __this, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.CameraDevice/CameraField>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m061B48311D5620D7FB4B290E6D9D8A0F73CB9F3A_gshared (Predicate_1_tF0B1F77CE14965CE85496D58B7F95B85650235DE * __this, CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(CameraField_t17348A6EBF2907D433AEFCAAF92F7FDFE1F73CC4_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.CameraDevice/CameraField>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mCF779B31F7AE31990EE8AE3192ADA5977BFAD78F_gshared (Predicate_1_tF0B1F77CE14965CE85496D58B7F95B85650235DE * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.CameraDevice/VideoModeData>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mC3F023CF2429F6EA94546B999C2BDD420EEA993C_gshared (Predicate_1_t9D9F9BF9B0BA74094B4411757AE65062808555A9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.CameraDevice/VideoModeData>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m37CB36699D966FF212AA5D1CB8DE6A5E5C26FD29_gshared (Predicate_1_t9D9F9BF9B0BA74094B4411757AE65062808555A9 * __this, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.CameraDevice/VideoModeData>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m337FDAA616A374AD4F976B67F3668550E0F13EEA_gshared (Predicate_1_t9D9F9BF9B0BA74094B4411757AE65062808555A9 * __this, VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(VideoModeData_t7A41FEF7A9680C2D6DEFCDF8CCC7BC349BFCBCFA_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.CameraDevice/VideoModeData>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m8CCDA914BF04ED755178F6B5002E5ABF656E3DA7_gshared (Predicate_1_t9D9F9BF9B0BA74094B4411757AE65062808555A9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4D5B667A8082D726B5741503772535A0C16BC700_gshared (Predicate_1_tAC089F33165C7442E3D66161C56B4B7771CAF217 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2F33B04A9FAB0200B3B50001BAB733EA3D4FDF80_gshared (Predicate_1_tAC089F33165C7442E3D66161C56B4B7771CAF217 * __this, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mEEF08949C3F551B345FAFF8718F25ADDBB424F33_gshared (Predicate_1_tAC089F33165C7442E3D66161C56B4B7771CAF217 * __this, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mEB8D733D3E903A56242D3DD95DC3B618AB293CC1_gshared (Predicate_1_tAC089F33165C7442E3D66161C56B4B7771CAF217 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mF8ABEE58666CB0FBB9B69A99E4F966C7E81358F5_gshared (Predicate_1_tA7669BAC6A8C640E4E79ECD665204291395E1DDA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m22A03C79B7C91424415517A14200BD09C1F5E52C_gshared (Predicate_1_tA7669BAC6A8C640E4E79ECD665204291395E1DDA * __this, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mE5140633CF8A518040EFE2F6B45CE469EB669F07_gshared (Predicate_1_tA7669BAC6A8C640E4E79ECD665204291395E1DDA * __this, TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(TextureData_t1561AE51DF68734977A3EA5BF13C85A8D01753C8_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.RawPtrVideoTextureUpdater/TextureData>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m16F34069C22DAD73C6DAFDB1BC66B2C70AB8B36B_gshared (Predicate_1_tA7669BAC6A8C640E4E79ECD665204291395E1DDA * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m771C9104F913013A13D573A7EC527CEAD2D1A617_gshared (Predicate_1_t5835F5EA03D0A3D9130744B47777352F58074E75 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.TrackerData/TrackableResultData>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m165579E62BE2428E0EE6782E1E42D5CE5667D5E0_gshared (Predicate_1_t5835F5EA03D0A3D9130744B47777352F58074E75 * __this, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.TrackerData/TrackableResultData>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m66DBBA753F34D4C18F695AFEC81FADF61E14D04A_gshared (Predicate_1_t5835F5EA03D0A3D9130744B47777352F58074E75 * __this, TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(TrackableResultData_t14F0FAF9BA13FCD85C492B69F9EB5A994AB888ED_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.TrackerData/TrackableResultData>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mA98000BAEDBF31750490525477AD61405EE949C9_gshared (Predicate_1_t5835F5EA03D0A3D9130744B47777352F58074E75 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m0DFDE7F09A6ED8E7673F2EE5AEC11131B4C07B04_gshared (Predicate_1_t9D17490F46AB30F97CBFEE210400343FA4702521 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mFD88E56934FB859FDF4AB17B93053D63F8F636ED_gshared (Predicate_1_t9D17490F46AB30F97CBFEE210400343FA4702521 * __this, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2FE67950C3FEEDBCEB9044CC23283E9FFA5D0081_gshared (Predicate_1_t9D17490F46AB30F97CBFEE210400343FA4702521 * __this, VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(VuMarkTargetResultData_tAFFA035F21A15A40F019CECBD7B278499DDDEFDA_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mC23AE2F0A4E306703D64563CCEE68091351E5D8F_gshared (Predicate_1_t9D17490F46AB30F97CBFEE210400343FA4702521 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m8F857AB4515F540252A80981F665591BEFCCB2A0_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCD1DAC421B4FB481E03C84B48CA31C89C061E43D_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m9A5A4ED350C2539D89FD48792B05AA0795F501DA_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m9C48A7530861655B9C99D94F8F1558E9D66B647A_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#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.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mD0688E1FC20A80E22CD708E78CFD42C8AA26DFF3_gshared (Predicate_1_tB669DD2D4E828B0960153B03E1DD552E11DE7737 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m20CF2542DA115947103B9AA5DEB481F5EFD2C9EB_gshared (Predicate_1_tB669DD2D4E828B0960153B03E1DD552E11DE7737 * __this, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___obj0, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef bool (*FunctionPointerType) (TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2C7D66806458CF76DB5406CC6EA1CE4E3F1D74B2_gshared (Predicate_1_tB669DD2D4E828B0960153B03E1DD552E11DE7737 * __this, TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(TrackableIdPair_t1834B3718D923B929C66F9B8693C644C8E8CD0BB_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Boolean System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mD1676300293148F94FBAEF382FDF53D3CDADA2F7_gshared (Predicate_1_tB669DD2D4E828B0960153B03E1DD552E11DE7737 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_mC1D7368CDACA5AF17D68A69336D1791770E2E37E_gshared (PrimitiveParameterExpression_1_tD2A2010948DFBCAAA2571D16D58E4F7B86AC3D83 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m96DAA6307D80064A28BF902DF2138BFE47CF566A_gshared (PrimitiveParameterExpression_1_tD2A2010948DFBCAAA2571D16D58E4F7B86AC3D83 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m381C8C395038D87F2DC09A0CD512976A6088DA16_gshared (PrimitiveParameterExpression_1_tA44C59B221B96B1C70AB5DB0A88ABAB58AC2C0C6 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m99421EAB8D577E1AF710B69724D0F345BC6E7E31_gshared (PrimitiveParameterExpression_1_tA44C59B221B96B1C70AB5DB0A88ABAB58AC2C0C6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m23C402F6926A678301900DBB8B58C24C9643185D_gshared (PrimitiveParameterExpression_1_tDCD6C1652FBDC3F3399DC1721E23DED5924CA00E * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m6D770A7CCCE558FE1C5C6D19CF9B73410C610EE2_gshared (PrimitiveParameterExpression_1_tDCD6C1652FBDC3F3399DC1721E23DED5924CA00E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m660235F754BB8C37BB81AA4FA7A6C83878AE01B8_gshared (PrimitiveParameterExpression_1_tFD8158721E22D6F8BB8C28399A5CB9B2CCB401E8 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_mE231A4491471C1C6745E3D8485CB1833BA5D9EA6_gshared (PrimitiveParameterExpression_1_tFD8158721E22D6F8BB8C28399A5CB9B2CCB401E8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m9211DE49359B8B938DB9EACF904CAF9026AC920C_gshared (PrimitiveParameterExpression_1_tD158CE97701C44A26E08527DD2E78DB18500C859 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m6564700ED3B7AEACCC716130757A14CD4D2CDFAC_gshared (PrimitiveParameterExpression_1_tD158CE97701C44A26E08527DD2E78DB18500C859 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m03B15719B82579B5A4CB26C56C6F5066B2B77DB8_gshared (PrimitiveParameterExpression_1_t73AA1B524F282649462AD9AA80B5869A9D1A87D6 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m9634C76801B5C4929CD04B1141C38B99E490E0D0_gshared (PrimitiveParameterExpression_1_t73AA1B524F282649462AD9AA80B5869A9D1A87D6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m1F9E0EA05CE9CFC2460E288AD3BB2D6148A3064A_gshared (PrimitiveParameterExpression_1_t4E3A4B65DD267F43C22E1A4DF7D14E7FDFB18705 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_mAD660513A44E8D6963E35100C14753069253D4F1_gshared (PrimitiveParameterExpression_1_t4E3A4B65DD267F43C22E1A4DF7D14E7FDFB18705 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m2DF02BE9F1F37E5032C164468BBC82DC43B3C189_gshared (PrimitiveParameterExpression_1_tFCAE899655D8FEDB4F2DCAB56C7B7B412ABE111D * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_mD11C51E1FBB2A09BAB3699537B7F18C44B48A3AF_gshared (PrimitiveParameterExpression_1_tFCAE899655D8FEDB4F2DCAB56C7B7B412ABE111D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m2835042D4F2D8A519AB410C7FCA25A7C94C46CF8_gshared (PrimitiveParameterExpression_1_tF1A363D78BF901D401930060EB909B3806B6C80B * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m78D30D93E527A92D4975C12DD5C47AD3D641E3C1_gshared (PrimitiveParameterExpression_1_tF1A363D78BF901D401930060EB909B3806B6C80B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m9E740543873ACC59C18C5849E74A4EBEB7E4F327_gshared (PrimitiveParameterExpression_1_t6415C2B65C6EE7ACF44AC513A0B9C892D7199145 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_mD48C9554AB044477FDF86F349BB781F1301E8B41_gshared (PrimitiveParameterExpression_1_t6415C2B65C6EE7ACF44AC513A0B9C892D7199145 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m02749AB1A300411B87F5DF5FB3A9A6D7DF7D4BFB_gshared (PrimitiveParameterExpression_1_t15F37BE7B34262F3F8EB69738B55C746C4A249CA * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_mEA12BB7C06A8F5BED2E39CFE2E8581810B7A8B1D_gshared (PrimitiveParameterExpression_1_t15F37BE7B34262F3F8EB69738B55C746C4A249CA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m52B40EB7F6C5249B638D918CF61B1096C7F53FF0_gshared (PrimitiveParameterExpression_1_t021CF2C0089A8999BAF3F13712426186D9CB443D * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m818F36AD7240628A03D4895E04C91CCC7A9FDFBD_gshared (PrimitiveParameterExpression_1_t021CF2C0089A8999BAF3F13712426186D9CB443D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m0436F96DE056FABE3E17C3138478F62725EFBF83_gshared (PrimitiveParameterExpression_1_t8651DC562B151904B7F6CAEBAB6AE965F95709C5 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_m3C60E5B845AD45C17F050E1994101036A4E787E8_gshared (PrimitiveParameterExpression_1_t8651DC562B151904B7F6CAEBAB6AE965F95709C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m33030AEABCE694ACFA4E945D8809C5C7E784CC48_gshared (PrimitiveParameterExpression_1_tFD1DAFE55FC516B146D1FA4FF89D6A6809D7A1E9 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_mF2132708FE3854BA0896FB3EA4D36C5B9F16F92F_gshared (PrimitiveParameterExpression_1_tFD1DAFE55FC516B146D1FA4FF89D6A6809D7A1E9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimitiveParameterExpression_1__ctor_m6643545EE0F36D7561C80C52C955913E32396AE2_gshared (PrimitiveParameterExpression_1_t66A5B478E1D45B5151C9C6ACFC535C92EEA97608 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this);
ParameterExpression__ctor_m98C55FF4C049AE00655796359B8CB6A4E77AF2FB((ParameterExpression_tA7B24F1DE0F013DA4BD55F76DB43B06DB33D8BEE *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PrimitiveParameterExpression_1_get_Type_mE4FC0CEB633D872D59FEA3F0533B734F422FF3FA_gshared (PrimitiveParameterExpression_1_t66A5B478E1D45B5151C9C6ACFC535C92EEA97608 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
return (Type_t *)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.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62 * PropertyAccessor_1_Create_m144C2DD0E2F25EFE1BF54AEC02423F52AB1C3DCE_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t8E5EBF34D14508F8F9AD8506B39A2025C4CC472B * L_11 = (ClassPropertyWriter_2_t8E5EBF34D14508F8F9AD8506B39A2025C4CC472B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t8E5EBF34D14508F8F9AD8506B39A2025C4CC472B *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tF98FBD7A2F0B5D42B9BDFF5E7C9EB1A2EE2D9AF6 * L_17 = (ClassPropertyWriter_2_tF98FBD7A2F0B5D42B9BDFF5E7C9EB1A2EE2D9AF6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tF98FBD7A2F0B5D42B9BDFF5E7C9EB1A2EE2D9AF6 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tD223943C05CB71F26C93750B159F0B9932FA221E * L_23 = (ClassPropertyWriter_2_tD223943C05CB71F26C93750B159F0B9932FA221E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tD223943C05CB71F26C93750B159F0B9932FA221E *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t7A0FC10F2A25A4245329CF9FC89E2EB7E23F5734 * L_25 = (NonGenericProperytWriter_1_t7A0FC10F2A25A4245329CF9FC89E2EB7E23F5734 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t7A0FC10F2A25A4245329CF9FC89E2EB7E23F5734 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m71F655D7E4095AAE77EE486E0DD4CF14CB771E09_gshared (PropertyAccessor_1_tD3EAE8353F1B85C396A662CC5D052E0792B83A62 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Boolean>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578 * PropertyAccessor_1_Create_mD8C9446DE217AAC91FD4EDE57C534F1252393AA2_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tD56D3E1B0BDC144C6658D8B62644CE8291710052 * L_11 = (ClassPropertyWriter_2_tD56D3E1B0BDC144C6658D8B62644CE8291710052 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tD56D3E1B0BDC144C6658D8B62644CE8291710052 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t37423612841AFEF6B4C781C75C939D14A30C0616 * L_17 = (ClassPropertyWriter_2_t37423612841AFEF6B4C781C75C939D14A30C0616 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t37423612841AFEF6B4C781C75C939D14A30C0616 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t2F4AE407160B771C1A6A6C7D31C809988E91684A * L_23 = (ClassPropertyWriter_2_t2F4AE407160B771C1A6A6C7D31C809988E91684A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t2F4AE407160B771C1A6A6C7D31C809988E91684A *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tDDDAD7F4E467A7F979EE2E04272527B7CD3350E6 * L_25 = (NonGenericProperytWriter_1_tDDDAD7F4E467A7F979EE2E04272527B7CD3350E6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tDDDAD7F4E467A7F979EE2E04272527B7CD3350E6 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Boolean>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m0D108EA648D6FCA39A2157C2D9200703EA7494B6_gshared (PropertyAccessor_1_t230D6B4C3009D724CC4FA64A4CC95F8679AC0578 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Byte>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F * PropertyAccessor_1_Create_m2F8DD36AF820277CC0F5A1F85648936E8BBE8B4A_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t630510585728A596FEE0389363D05CC24D5B5637 * L_11 = (ClassPropertyWriter_2_t630510585728A596FEE0389363D05CC24D5B5637 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t630510585728A596FEE0389363D05CC24D5B5637 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t932AE1EFFACBE5817FFF49F1101738CE12B2D1E3 * L_17 = (ClassPropertyWriter_2_t932AE1EFFACBE5817FFF49F1101738CE12B2D1E3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t932AE1EFFACBE5817FFF49F1101738CE12B2D1E3 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t36EE3413A1D0B5766EA6B294A9306F3C1911B6EC * L_23 = (ClassPropertyWriter_2_t36EE3413A1D0B5766EA6B294A9306F3C1911B6EC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t36EE3413A1D0B5766EA6B294A9306F3C1911B6EC *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t6D0ACB5AD3FD2D18900F23C47CB6A65FFB886A6C * L_25 = (NonGenericProperytWriter_1_t6D0ACB5AD3FD2D18900F23C47CB6A65FFB886A6C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t6D0ACB5AD3FD2D18900F23C47CB6A65FFB886A6C *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Byte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_mBAB62BED962211F402B10B97D3DF78C0D24FE419_gshared (PropertyAccessor_1_t4538D4DBD0F24F929C5813D67BDFDB49585C872F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Char>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632 * PropertyAccessor_1_Create_m1AFBFE8772E2B539722990A12D6E6408257A197D_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t7093F2962BC1C9885CD14E7DEE34BCE4E1CDDD8F * L_11 = (ClassPropertyWriter_2_t7093F2962BC1C9885CD14E7DEE34BCE4E1CDDD8F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t7093F2962BC1C9885CD14E7DEE34BCE4E1CDDD8F *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t2F2CB0E97FDC8D613A72309295594398CB2F51F7 * L_17 = (ClassPropertyWriter_2_t2F2CB0E97FDC8D613A72309295594398CB2F51F7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t2F2CB0E97FDC8D613A72309295594398CB2F51F7 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tB0207930C8705ADD53F0F13D5A40D3956E7D5921 * L_23 = (ClassPropertyWriter_2_tB0207930C8705ADD53F0F13D5A40D3956E7D5921 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tB0207930C8705ADD53F0F13D5A40D3956E7D5921 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t63EA1E2FA6F31E7A0631C513A75F319F8EA2E039 * L_25 = (NonGenericProperytWriter_1_t63EA1E2FA6F31E7A0631C513A75F319F8EA2E039 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t63EA1E2FA6F31E7A0631C513A75F319F8EA2E039 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Char>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m723F265014E5494C2AA7644A5C0383543663D5DE_gshared (PropertyAccessor_1_tDB665365C2DD1747CAF912E6DB460EFC63AF7632 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTime>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC * PropertyAccessor_1_Create_m54065B20A38A3B1D5CC8DCCFE8A48B7B165F3B07_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tABBC704BBD87A0021D029587D34ACC8C7294349D * L_11 = (ClassPropertyWriter_2_tABBC704BBD87A0021D029587D34ACC8C7294349D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tABBC704BBD87A0021D029587D34ACC8C7294349D *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t919AD58056A7498F9B2A7EDCA283B4B4EF010AD0 * L_17 = (ClassPropertyWriter_2_t919AD58056A7498F9B2A7EDCA283B4B4EF010AD0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t919AD58056A7498F9B2A7EDCA283B4B4EF010AD0 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t54DE170CFA16BFE5E929E26F6CD82B3C9B7D2A66 * L_23 = (ClassPropertyWriter_2_t54DE170CFA16BFE5E929E26F6CD82B3C9B7D2A66 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t54DE170CFA16BFE5E929E26F6CD82B3C9B7D2A66 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tAACE1D6E1024894B0BA92DDF444B215EA92F58C7 * L_25 = (NonGenericProperytWriter_1_tAACE1D6E1024894B0BA92DDF444B215EA92F58C7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tAACE1D6E1024894B0BA92DDF444B215EA92F58C7 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTime>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m9D1C8E4FC83306BCB9AD4089AF0734BF4D1C86CC_gshared (PropertyAccessor_1_t3B3431D412F7F4B349E1CB817B78658FE2928DEC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTimeOffset>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9 * PropertyAccessor_1_Create_m46A69EFB70F8BEA991ACF8676F29E074A9997717_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t5EA2E4F76B0E6F97EB6182152BDE5526FA758AEF * L_11 = (ClassPropertyWriter_2_t5EA2E4F76B0E6F97EB6182152BDE5526FA758AEF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t5EA2E4F76B0E6F97EB6182152BDE5526FA758AEF *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t5A2BB6B3CEC371042AFD877DADCF91B0CAE761ED * L_17 = (ClassPropertyWriter_2_t5A2BB6B3CEC371042AFD877DADCF91B0CAE761ED *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t5A2BB6B3CEC371042AFD877DADCF91B0CAE761ED *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t4619412744646B00CDCB2437F366C02DA6C830B6 * L_23 = (ClassPropertyWriter_2_t4619412744646B00CDCB2437F366C02DA6C830B6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t4619412744646B00CDCB2437F366C02DA6C830B6 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tB67B9B4550D46A983F1531451B2133E6B0C0AE30 * L_25 = (NonGenericProperytWriter_1_tB67B9B4550D46A983F1531451B2133E6B0C0AE30 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tB67B9B4550D46A983F1531451B2133E6B0C0AE30 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.DateTimeOffset>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_mFBA6F1D4FFA5F7250EB151B5AC87A7539FBF9377_gshared (PropertyAccessor_1_tCFB834253644EAAA6114CE7EE35D2EF7829363C9 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Decimal>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A * PropertyAccessor_1_Create_m842A339807D32E5AD11E76ED61EB5C12850E536D_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tC770AD0CF6F72E1F1BC1B60AEE3A3C61480AC974 * L_11 = (ClassPropertyWriter_2_tC770AD0CF6F72E1F1BC1B60AEE3A3C61480AC974 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tC770AD0CF6F72E1F1BC1B60AEE3A3C61480AC974 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t1F477846C3236B63EC6EF761DA0F68FABD304C5A * L_17 = (ClassPropertyWriter_2_t1F477846C3236B63EC6EF761DA0F68FABD304C5A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t1F477846C3236B63EC6EF761DA0F68FABD304C5A *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tFFA7036DCF282842132CEA24D36B55548BAC49F2 * L_23 = (ClassPropertyWriter_2_tFFA7036DCF282842132CEA24D36B55548BAC49F2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tFFA7036DCF282842132CEA24D36B55548BAC49F2 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tA5F10D92375B451BE759462D646C3B4A80553E6F * L_25 = (NonGenericProperytWriter_1_tA5F10D92375B451BE759462D646C3B4A80553E6F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tA5F10D92375B451BE759462D646C3B4A80553E6F *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Decimal>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m3C821F87F07B158BB0D4D7AEBF5F1FF45EF492D6_gshared (PropertyAccessor_1_t0A92485AD719A1CAA4A6C0DB04D722B028CBA52A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Double>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64 * PropertyAccessor_1_Create_mCB624A708B72E6134E5B0311482FF244865BC761_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t3B62A654BA7A1286C9DDACD9E93D05053C2301D9 * L_11 = (ClassPropertyWriter_2_t3B62A654BA7A1286C9DDACD9E93D05053C2301D9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t3B62A654BA7A1286C9DDACD9E93D05053C2301D9 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tB4948B25ADBBF4D198306F33E6137667E06C8976 * L_17 = (ClassPropertyWriter_2_tB4948B25ADBBF4D198306F33E6137667E06C8976 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tB4948B25ADBBF4D198306F33E6137667E06C8976 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tB566CEFF6297969CB7DB5E53F97462FA04F4763D * L_23 = (ClassPropertyWriter_2_tB566CEFF6297969CB7DB5E53F97462FA04F4763D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tB566CEFF6297969CB7DB5E53F97462FA04F4763D *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tAA12A3CDBFAD2461390298B07F668222AF77323E * L_25 = (NonGenericProperytWriter_1_tAA12A3CDBFAD2461390298B07F668222AF77323E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tAA12A3CDBFAD2461390298B07F668222AF77323E *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Double>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m1249140BAE45D16B4E4A057297CEDE4932E8A05A_gshared (PropertyAccessor_1_tECF857798F3B1409FF7648CA8705258D96D23A64 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Diagnostics.Tracing.EmptyStruct>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E * PropertyAccessor_1_Create_m45F898C13648B26ADD85ADD1FBE663A34D41B0C7_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t30F13FB2C19E51B35F5A73BEDA3F181639483A6C * L_11 = (ClassPropertyWriter_2_t30F13FB2C19E51B35F5A73BEDA3F181639483A6C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t30F13FB2C19E51B35F5A73BEDA3F181639483A6C *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tAE61DA715936A204280D65B60D4EF7E97A53CA13 * L_17 = (ClassPropertyWriter_2_tAE61DA715936A204280D65B60D4EF7E97A53CA13 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tAE61DA715936A204280D65B60D4EF7E97A53CA13 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t6D8AC527FFEE61E02A1DDF70A067D10144718CF6 * L_23 = (ClassPropertyWriter_2_t6D8AC527FFEE61E02A1DDF70A067D10144718CF6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t6D8AC527FFEE61E02A1DDF70A067D10144718CF6 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t21CD80CF56AD380C457F3E1AC75B3EF0CB4E060F * L_25 = (NonGenericProperytWriter_1_t21CD80CF56AD380C457F3E1AC75B3EF0CB4E060F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t21CD80CF56AD380C457F3E1AC75B3EF0CB4E060F *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Diagnostics.Tracing.EmptyStruct>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m71D290064B0261B61EFB9B89FE7655B3E8DB16BA_gshared (PropertyAccessor_1_t4494479C003B0897347AD299B16FB192B45A8A9E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Guid>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24 * PropertyAccessor_1_Create_m6591830DC58F7F07EB5FBC58E301A4778B20E31E_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tE81CED90CCA1C354C5A5C24589D75F2FAE7801A1 * L_11 = (ClassPropertyWriter_2_tE81CED90CCA1C354C5A5C24589D75F2FAE7801A1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tE81CED90CCA1C354C5A5C24589D75F2FAE7801A1 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tBDFAEBA0D7674084BC9F611F573D55E942B99D4C * L_17 = (ClassPropertyWriter_2_tBDFAEBA0D7674084BC9F611F573D55E942B99D4C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tBDFAEBA0D7674084BC9F611F573D55E942B99D4C *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tE952D207A01433A0BD8F994DC92F84D69775C913 * L_23 = (ClassPropertyWriter_2_tE952D207A01433A0BD8F994DC92F84D69775C913 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tE952D207A01433A0BD8F994DC92F84D69775C913 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tF4896FC005696FE37292DF5ECC269C807C443F9D * L_25 = (NonGenericProperytWriter_1_tF4896FC005696FE37292DF5ECC269C807C443F9D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tF4896FC005696FE37292DF5ECC269C807C443F9D *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Guid>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_mB47B9DBAE2916B171CB10598DECE17D44F78984F_gshared (PropertyAccessor_1_t69B66F8378F2EDF599AB3E524A9B68B2259FEB24 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Int16>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27 * PropertyAccessor_1_Create_mB966A3D9404956C7B62F5849F6E4CF5DCC0D1E6E_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tCFDC526DC431C60747377DBAC6BAE9B6BAEFA88B * L_11 = (ClassPropertyWriter_2_tCFDC526DC431C60747377DBAC6BAE9B6BAEFA88B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tCFDC526DC431C60747377DBAC6BAE9B6BAEFA88B *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tBA7C5D3D8116DCDF7A4F1D4745818141E3426B0D * L_17 = (ClassPropertyWriter_2_tBA7C5D3D8116DCDF7A4F1D4745818141E3426B0D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tBA7C5D3D8116DCDF7A4F1D4745818141E3426B0D *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t1A27EDD3A5D2E99CAECE2883BE322824FD51E36A * L_23 = (ClassPropertyWriter_2_t1A27EDD3A5D2E99CAECE2883BE322824FD51E36A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t1A27EDD3A5D2E99CAECE2883BE322824FD51E36A *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tA01A051F265746E61056A7FE23C725CEA9DF28AD * L_25 = (NonGenericProperytWriter_1_tA01A051F265746E61056A7FE23C725CEA9DF28AD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tA01A051F265746E61056A7FE23C725CEA9DF28AD *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Int16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m40FE02C2F5F25BF22DEFFDA4B53D8E1DBF6E9133_gshared (PropertyAccessor_1_tCC136B049575BAAC597BCC4A732A984555081D27 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Int32>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7 * PropertyAccessor_1_Create_mAAAA88F8F7810B56BB6C22E31BB94588D5BDB1FE_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t2F752F5F01E79860D4BFCF01063D8C55610D1E83 * L_11 = (ClassPropertyWriter_2_t2F752F5F01E79860D4BFCF01063D8C55610D1E83 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t2F752F5F01E79860D4BFCF01063D8C55610D1E83 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t4F8C396DA0C8A6D2A25B7542748C959EDE574E2E * L_17 = (ClassPropertyWriter_2_t4F8C396DA0C8A6D2A25B7542748C959EDE574E2E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t4F8C396DA0C8A6D2A25B7542748C959EDE574E2E *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tC20C29073A558140D346D6DBB5CDCD3DC02BA6C7 * L_23 = (ClassPropertyWriter_2_tC20C29073A558140D346D6DBB5CDCD3DC02BA6C7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tC20C29073A558140D346D6DBB5CDCD3DC02BA6C7 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tFF1941890ABFE79BD86C5B387620E5BBEA9D22E5 * L_25 = (NonGenericProperytWriter_1_tFF1941890ABFE79BD86C5B387620E5BBEA9D22E5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tFF1941890ABFE79BD86C5B387620E5BBEA9D22E5 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_mB9674581B94D37EC54919CDD8DB04BE0138CA7FF_gshared (PropertyAccessor_1_tE374A61CBD28D3BC4CD993E2C129117F363839E7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Int64>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F * PropertyAccessor_1_Create_m253B8C9BA6D13D5C0208F215BDB8C3C31E491195_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t6A8D9240BC3899740B7435CDD20DC393F3CB05C7 * L_11 = (ClassPropertyWriter_2_t6A8D9240BC3899740B7435CDD20DC393F3CB05C7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t6A8D9240BC3899740B7435CDD20DC393F3CB05C7 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t7C1D02DB86939A8F6B558AAEF54531594E287FC0 * L_17 = (ClassPropertyWriter_2_t7C1D02DB86939A8F6B558AAEF54531594E287FC0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t7C1D02DB86939A8F6B558AAEF54531594E287FC0 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t4AC6E61C553646779BD3B5D96576F6E42DDE0740 * L_23 = (ClassPropertyWriter_2_t4AC6E61C553646779BD3B5D96576F6E42DDE0740 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t4AC6E61C553646779BD3B5D96576F6E42DDE0740 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t65514CFCC998D5B4A85A57CDF0DA8DF3EB55746C * L_25 = (NonGenericProperytWriter_1_t65514CFCC998D5B4A85A57CDF0DA8DF3EB55746C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t65514CFCC998D5B4A85A57CDF0DA8DF3EB55746C *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Int64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_mA0339BB473356F6286433A1163FB483C72081012_gshared (PropertyAccessor_1_t891641EF1A15CA4D2E705591E247B40CE2E83B9F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.IntPtr>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D * PropertyAccessor_1_Create_m3E6E4782DB5DF150B8FA33BDA2130C9F24492847_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t0C9FF46B37FD6B6109FCFC31B6B571C2188C6776 * L_11 = (ClassPropertyWriter_2_t0C9FF46B37FD6B6109FCFC31B6B571C2188C6776 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t0C9FF46B37FD6B6109FCFC31B6B571C2188C6776 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t2E6911F84E5742E801A560BDBBC49886A4A675FC * L_17 = (ClassPropertyWriter_2_t2E6911F84E5742E801A560BDBBC49886A4A675FC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t2E6911F84E5742E801A560BDBBC49886A4A675FC *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t4DDFB2C1340BCD9B2D67B6011FA636B38324D37D * L_23 = (ClassPropertyWriter_2_t4DDFB2C1340BCD9B2D67B6011FA636B38324D37D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t4DDFB2C1340BCD9B2D67B6011FA636B38324D37D *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tD4CF2A5C8363E9873B3F661D1851A80805D12F1C * L_25 = (NonGenericProperytWriter_1_tD4CF2A5C8363E9873B3F661D1851A80805D12F1C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tD4CF2A5C8363E9873B3F661D1851A80805D12F1C *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.IntPtr>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m2B79701393AFBB19CBCA84807E17115729218906_gshared (PropertyAccessor_1_t1F9E4A1C87DD37DB3639896BE9C13FB84EEDB72D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Object>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980 * PropertyAccessor_1_Create_mE25265ACEEEA65C0434696550404857D2A30DE49_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t034C93F5242925EAFCC7186ABB3D0F7EC4B0DA5B * L_11 = (ClassPropertyWriter_2_t034C93F5242925EAFCC7186ABB3D0F7EC4B0DA5B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t034C93F5242925EAFCC7186ABB3D0F7EC4B0DA5B *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t7B24EF03B89F190F1593F3ED60D12377EC1AF04E * L_17 = (ClassPropertyWriter_2_t7B24EF03B89F190F1593F3ED60D12377EC1AF04E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t7B24EF03B89F190F1593F3ED60D12377EC1AF04E *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t157216E6F102645DA7CA8FC481D733F40206D03D * L_23 = (ClassPropertyWriter_2_t157216E6F102645DA7CA8FC481D733F40206D03D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t157216E6F102645DA7CA8FC481D733F40206D03D *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t20ACCEDE83D8C0A6F23ABD6FB345A862B05E9960 * L_25 = (NonGenericProperytWriter_1_t20ACCEDE83D8C0A6F23ABD6FB345A862B05E9960 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t20ACCEDE83D8C0A6F23ABD6FB345A862B05E9960 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_mE414BC6ED6E1F3C7646B5563BDAE4F5F3C5BC821_gshared (PropertyAccessor_1_tDD3B02B19D835AFC93F72F47C10E2E4FB6920980 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.SByte>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883 * PropertyAccessor_1_Create_m7A84A0AB6E4DB40D4294B7D352CBCE3EE50AD4C5_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tC00C9009CCD35486E6905494D216EF21B50D5326 * L_11 = (ClassPropertyWriter_2_tC00C9009CCD35486E6905494D216EF21B50D5326 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tC00C9009CCD35486E6905494D216EF21B50D5326 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t1F8790E8DCDC610FB8186D75E694095382C321A4 * L_17 = (ClassPropertyWriter_2_t1F8790E8DCDC610FB8186D75E694095382C321A4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t1F8790E8DCDC610FB8186D75E694095382C321A4 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t22C11AAC0794EA3FF163E6D122B2BE38597A0F9F * L_23 = (ClassPropertyWriter_2_t22C11AAC0794EA3FF163E6D122B2BE38597A0F9F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t22C11AAC0794EA3FF163E6D122B2BE38597A0F9F *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t0FC71C381941C039562B8AF5743A4E2C0AF20560 * L_25 = (NonGenericProperytWriter_1_t0FC71C381941C039562B8AF5743A4E2C0AF20560 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t0FC71C381941C039562B8AF5743A4E2C0AF20560 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.SByte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m1AE8910EA32BB9E016FBDCD61AE4B3F61B7E4B3D_gshared (PropertyAccessor_1_tBE1D2A2226B8736E6576C023C8A9105CF3D4A883 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.Single>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100 * PropertyAccessor_1_Create_mEB5728A45C87E7C6A25D1625CBA142001DF9714D_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t20357810B3755BDCE236C0F2C0944CB37FF817BE * L_11 = (ClassPropertyWriter_2_t20357810B3755BDCE236C0F2C0944CB37FF817BE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t20357810B3755BDCE236C0F2C0944CB37FF817BE *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tA06CD6AD4C3637AAE6C7D80BFA9A01169DBED1B6 * L_17 = (ClassPropertyWriter_2_tA06CD6AD4C3637AAE6C7D80BFA9A01169DBED1B6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tA06CD6AD4C3637AAE6C7D80BFA9A01169DBED1B6 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t9F55D491391F2816BB4EB30ED697DB4F827A6AF5 * L_23 = (ClassPropertyWriter_2_t9F55D491391F2816BB4EB30ED697DB4F827A6AF5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t9F55D491391F2816BB4EB30ED697DB4F827A6AF5 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t48C561BDC2B801C0966CF6283AE9B27607BE672F * L_25 = (NonGenericProperytWriter_1_t48C561BDC2B801C0966CF6283AE9B27607BE672F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t48C561BDC2B801C0966CF6283AE9B27607BE672F *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m7B47D25B2ABB59488639D870586EB5AFCC5C8227_gshared (PropertyAccessor_1_t15E5598000FE0DF0A1BB7CB3CEDE9C650DDDD100 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.TimeSpan>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07 * PropertyAccessor_1_Create_m5DCC5FB09B578849CB8BC4A57CFE1851B2331E4F_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t1E4DC21046E133D75BD29CD2DDB1FD6062B2164C * L_11 = (ClassPropertyWriter_2_t1E4DC21046E133D75BD29CD2DDB1FD6062B2164C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t1E4DC21046E133D75BD29CD2DDB1FD6062B2164C *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tF24C3C9214C34FB079A0044485630B280A015590 * L_17 = (ClassPropertyWriter_2_tF24C3C9214C34FB079A0044485630B280A015590 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tF24C3C9214C34FB079A0044485630B280A015590 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tEE34BB7581582956800E2282ECD16D12BC5B606E * L_23 = (ClassPropertyWriter_2_tEE34BB7581582956800E2282ECD16D12BC5B606E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tEE34BB7581582956800E2282ECD16D12BC5B606E *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tA5DDFE59ADE43F456123F01099754D2FFF59126C * L_25 = (NonGenericProperytWriter_1_tA5DDFE59ADE43F456123F01099754D2FFF59126C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tA5DDFE59ADE43F456123F01099754D2FFF59126C *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.TimeSpan>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m0A0B4D6F9B9E4A34CB66DB5AE4899257A55F32DA_gshared (PropertyAccessor_1_t421CA23334FBCBD59EB5914369F88ABBC6C51D07 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt16>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21 * PropertyAccessor_1_Create_mCD4F27534F455ED2ABEFB01A23457F43BF55AF04_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t89F57C5C9109599B5E873E3C6A87057E5E84CFD9 * L_11 = (ClassPropertyWriter_2_t89F57C5C9109599B5E873E3C6A87057E5E84CFD9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t89F57C5C9109599B5E873E3C6A87057E5E84CFD9 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21 *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t4CA1BCD97AE0976B7FF75700B5E1B3A6C0CB0790 * L_17 = (ClassPropertyWriter_2_t4CA1BCD97AE0976B7FF75700B5E1B3A6C0CB0790 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t4CA1BCD97AE0976B7FF75700B5E1B3A6C0CB0790 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21 *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_tC6F266431552C56602322B6FE82DEE021FBDAA53 * L_23 = (ClassPropertyWriter_2_tC6F266431552C56602322B6FE82DEE021FBDAA53 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_tC6F266431552C56602322B6FE82DEE021FBDAA53 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21 *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tC0A91768BBDF47A61312AC7A626D4EC2C2FFAEDD * L_25 = (NonGenericProperytWriter_1_tC0A91768BBDF47A61312AC7A626D4EC2C2FFAEDD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tC0A91768BBDF47A61312AC7A626D4EC2C2FFAEDD *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21 *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m16FF68FDB01496FED07E169345603FE4F678ADD8_gshared (PropertyAccessor_1_t9D99D274F002334B37016ACDEB70120CE6633D21 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt32>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A * PropertyAccessor_1_Create_m667D68A16E106E51BABA404986C8C1B836030294_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_t057FD76299C818ED36B3F21D2439F7680E696FAE * L_11 = (ClassPropertyWriter_2_t057FD76299C818ED36B3F21D2439F7680E696FAE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_t057FD76299C818ED36B3F21D2439F7680E696FAE *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tA410044ACC07B9972A9211342B43ADA4866B2440 * L_17 = (ClassPropertyWriter_2_tA410044ACC07B9972A9211342B43ADA4866B2440 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tA410044ACC07B9972A9211342B43ADA4866B2440 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t52BB43825080A7BE9478E30B9A4D0801DBBFF6A7 * L_23 = (ClassPropertyWriter_2_t52BB43825080A7BE9478E30B9A4D0801DBBFF6A7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t52BB43825080A7BE9478E30B9A4D0801DBBFF6A7 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_tE0FE4488BCB9E99453A8F92F2FB7C897DEAA6242 * L_25 = (NonGenericProperytWriter_1_tE0FE4488BCB9E99453A8F92F2FB7C897DEAA6242 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_tE0FE4488BCB9E99453A8F92F2FB7C897DEAA6242 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m12028F2324AFF1420198883139D6C47C1928DFDD_gshared (PropertyAccessor_1_tA2D90D22F3F55BCABB26AA0DE5E7500FA2212B4A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt64>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C * PropertyAccessor_1_Create_mF5CDF57FD30D7B25DA96120CFF5C5A518D846FE3_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tE169B905310BAA91F3F5F8D9C609DEBD0D649E95 * L_11 = (ClassPropertyWriter_2_tE169B905310BAA91F3F5F8D9C609DEBD0D649E95 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tE169B905310BAA91F3F5F8D9C609DEBD0D649E95 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_t8A5885C24696BD3A52E07812D24C5FE07F78941D * L_17 = (ClassPropertyWriter_2_t8A5885C24696BD3A52E07812D24C5FE07F78941D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_t8A5885C24696BD3A52E07812D24C5FE07F78941D *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t5CF2F9B0D70BD112BE21AC8E0F54A6DB3A260E9B * L_23 = (ClassPropertyWriter_2_t5CF2F9B0D70BD112BE21AC8E0F54A6DB3A260E9B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t5CF2F9B0D70BD112BE21AC8E0F54A6DB3A260E9B *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t27098BA6601CE21300B7FB748FAD9F318C274039 * L_25 = (NonGenericProperytWriter_1_t27098BA6601CE21300B7FB748FAD9F318C274039 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t27098BA6601CE21300B7FB748FAD9F318C274039 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m5AB4EDB3A4A908D95D38EC10727FC6DDA4BCD115_gshared (PropertyAccessor_1_t602A8928D8A190B793B972FE1F3AECD1D979A08C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType> System.Diagnostics.Tracing.PropertyAccessor`1<System.UIntPtr>::Create(System.Diagnostics.Tracing.PropertyAnalysis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D * PropertyAccessor_1_Create_m2872E43D0FDEF30859328A7F95F8546CCEDAFCB8_gshared (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = (MethodInfo_t *)L_0->get_getterInfo_1();
NullCheck((MethodInfo_t *)L_1);
Type_t * L_2;
L_2 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_1);
V_0 = (Type_t *)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t4B5A84F3134B8BF7299B14BE64813C95F1ABBCE3_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Statics_IsValueType_m5C3602352638213163488A4863EFEABEB2D6B92D((Type_t *)L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0068;
}
}
{
Type_t * L_6 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8;
L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
bool L_9;
L_9 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_6, (Type_t *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_10 = ___property0;
ClassPropertyWriter_2_tD1DAF5D385CC8EBCC398D62A71FEC973743EDC97 * L_11 = (ClassPropertyWriter_2_tD1DAF5D385CC8EBCC398D62A71FEC973743EDC97 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (ClassPropertyWriter_2_tD1DAF5D385CC8EBCC398D62A71FEC973743EDC97 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_11, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return (PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D *)L_11;
}
IL_0036:
{
Type_t * L_12 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_12, (Type_t *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_004f;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_16 = ___property0;
ClassPropertyWriter_2_tA9C5466708D179695E4A58FE963AEC364C259A80 * L_17 = (ClassPropertyWriter_2_tA9C5466708D179695E4A58FE963AEC364C259A80 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (ClassPropertyWriter_2_tA9C5466708D179695E4A58FE963AEC364C259A80 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_17, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return (PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D *)L_17;
}
IL_004f:
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20;
L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046((Type_t *)L_18, (Type_t *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0068;
}
}
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_22 = ___property0;
ClassPropertyWriter_2_t85477C32B73241908B20794F1E82BF9948EF5942 * L_23 = (ClassPropertyWriter_2_t85477C32B73241908B20794F1E82BF9948EF5942 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ClassPropertyWriter_2_t85477C32B73241908B20794F1E82BF9948EF5942 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_23, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return (PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D *)L_23;
}
IL_0068:
{
PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 * L_24 = ___property0;
NonGenericProperytWriter_1_t192AF6D36935C379274DD39DB70CE6F58377A053 * L_25 = (NonGenericProperytWriter_1_t192AF6D36935C379274DD39DB70CE6F58377A053 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7));
(( void (*) (NonGenericProperytWriter_1_t192AF6D36935C379274DD39DB70CE6F58377A053 *, PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(L_25, (PropertyAnalysis_tADEA699C2962F2D6E63C2818A7C5E24BFADE61E8 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return (PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D *)L_25;
}
}
// System.Void System.Diagnostics.Tracing.PropertyAccessor`1<System.UIntPtr>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAccessor_1__ctor_m43307A5F2C3CFA4C2C92FAC0B405070C90837662_gshared (PropertyAccessor_1_tE8B291F4DD66657A47043A2FA4F64C5D66A62B3D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Queue`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1__ctor_m065613451660A1479E4D6D00878FB7630AFE4E11_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0;
L_0 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set__array_0(L_0);
return;
}
}
// System.Int32 System.Collections.Generic.Queue`1<System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Queue_1_get_Count_mD618588C9785F06D043BE6AAD0A0B8116B2A77A3_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_3();
return (int32_t)L_0;
}
}
// System.Boolean System.Collections.Generic.Queue`1<System.Object>::System.Collections.ICollection.get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Queue_1_System_Collections_ICollection_get_IsSynchronized_mC4513AF71230468A621F9F31201D990C144215F1_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.Generic.Queue`1<System.Object>::System.Collections.ICollection.get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Queue_1_System_Collections_ICollection_get_SyncRoot_m185AD1805A0A39611043C6476A9D9E0568941707_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_5();
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_5();
RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_2, /*hidden argument*/NULL);
RuntimeObject * L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL);
}
IL_001a:
{
RuntimeObject * L_4 = (RuntimeObject *)__this->get__syncRoot_5();
return (RuntimeObject *)L_4;
}
}
// System.Void System.Collections.Generic.Queue`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
int32_t G_B17_0 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_RuntimeMethod_var)));
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
NullCheck((RuntimeArray *)L_2);
int32_t L_3;
L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0027;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_RuntimeMethod_var)));
}
IL_0027:
{
RuntimeArray * L_5 = ___array0;
NullCheck((RuntimeArray *)L_5);
int32_t L_6;
L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_RuntimeMethod_var)));
}
IL_0040:
{
RuntimeArray * L_8 = ___array0;
NullCheck((RuntimeArray *)L_8);
int32_t L_9;
L_9 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_8, /*hidden argument*/NULL);
V_0 = (int32_t)L_9;
int32_t L_10 = ___index1;
if ((((int32_t)L_10) < ((int32_t)0)))
{
goto IL_004f;
}
}
{
int32_t L_11 = ___index1;
int32_t L_12 = V_0;
if ((((int32_t)L_11) <= ((int32_t)L_12)))
{
goto IL_0065;
}
}
IL_004f:
{
int32_t L_13 = ___index1;
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_14);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_16 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_16, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (RuntimeObject *)L_15, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_RuntimeMethod_var)));
}
IL_0065:
{
int32_t L_17 = V_0;
int32_t L_18 = ___index1;
int32_t L_19 = (int32_t)__this->get__size_3();
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19)))
{
goto IL_007b;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_20 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_20, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_RuntimeMethod_var)));
}
IL_007b:
{
int32_t L_21 = (int32_t)__this->get__size_3();
V_1 = (int32_t)L_21;
int32_t L_22 = V_1;
if (L_22)
{
goto IL_0086;
}
}
{
return;
}
IL_0086:
{
}
IL_0087:
try
{ // begin try (depth: 1)
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_23);
int32_t L_24 = (int32_t)__this->get__head_1();
int32_t L_25 = V_1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))), (int32_t)L_24))) < ((int32_t)L_25)))
{
goto IL_009c;
}
}
IL_0099:
{
int32_t L_26 = V_1;
G_B17_0 = L_26;
goto IL_00ab;
}
IL_009c:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_27);
int32_t L_28 = (int32_t)__this->get__head_1();
G_B17_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length))), (int32_t)L_28));
}
IL_00ab:
{
V_2 = (int32_t)G_B17_0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_29 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
int32_t L_30 = (int32_t)__this->get__head_1();
RuntimeArray * L_31 = ___array0;
int32_t L_32 = ___index1;
int32_t L_33 = V_2;
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_29, (int32_t)L_30, (RuntimeArray *)L_31, (int32_t)L_32, (int32_t)L_33, /*hidden argument*/NULL);
int32_t L_34 = V_1;
int32_t L_35 = V_2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35));
int32_t L_36 = V_1;
if ((((int32_t)L_36) <= ((int32_t)0)))
{
goto IL_00e7;
}
}
IL_00c8:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_37 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
RuntimeArray * L_38 = ___array0;
int32_t L_39 = ___index1;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_40 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_40);
int32_t L_41 = (int32_t)__this->get__head_1();
int32_t L_42 = V_1;
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_37, (int32_t)0, (RuntimeArray *)L_38, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length))))), (int32_t)L_41)), (int32_t)L_42, /*hidden argument*/NULL);
}
IL_00e7:
{
goto IL_00fa;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00e9;
}
throw e;
}
CATCH_00e9:
{ // begin catch(System.ArrayTypeMismatchException)
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_43 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_43, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Queue_1_System_Collections_ICollection_CopyTo_m96BA0E4B35CC0272FACED1D56E8D4053FD53B270_RuntimeMethod_var)));
} // end catch (depth: 1)
IL_00fa:
{
return;
}
}
// System.Void System.Collections.Generic.Queue`1<System.Object>::Enqueue(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_Enqueue_mCACF312F04BD04D69E3FBA7D779B5DBF39BB3728_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get__size_3();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
{
goto IL_0045;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_2);
V_0 = (int32_t)((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((int64_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))), (int64_t)((int64_t)((int64_t)((int32_t)200)))))/(int64_t)((int64_t)((int64_t)((int32_t)100)))))));
int32_t L_3 = V_0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_4);
if ((((int32_t)L_3) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), (int32_t)4)))))
{
goto IL_003e;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_5);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))), (int32_t)4));
}
IL_003e:
{
int32_t L_6 = V_0;
NullCheck((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this);
(( void (*) (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
}
IL_0045:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
int32_t L_8 = (int32_t)__this->get__tail_2();
RuntimeObject * L_9 = ___item0;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject *)L_9);
int32_t* L_10 = (int32_t*)__this->get_address_of__tail_2();
NullCheck((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this);
(( void (*) (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this, (int32_t*)(int32_t*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
int32_t L_11 = (int32_t)__this->get__size_3();
__this->set__size_3(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)));
int32_t L_12 = (int32_t)__this->get__version_4();
__this->set__version_4(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return;
}
}
// System.Collections.Generic.Queue`1/Enumerator<T> System.Collections.Generic.Queue`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C Queue_1_GetEnumerator_m93F41D0CCCF0AB82FC589F8E2B9AB6670C8D843F_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
{
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8((&L_0), (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C )L_0;
}
}
// System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.Queue`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Queue_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1E250F5F09A19502C3442024191D6427D1792AD5_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
{
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8((&L_0), (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C L_1 = (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_1);
return (RuntimeObject*)L_2;
}
}
// System.Collections.IEnumerator System.Collections.Generic.Queue`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Queue_1_System_Collections_IEnumerable_GetEnumerator_m7B8856AD400238F57295DED241B337AB10135914_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
{
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8((&L_0), (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C L_1 = (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_1);
return (RuntimeObject*)L_2;
}
}
// T System.Collections.Generic.Queue`1<System.Object>::Dequeue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Queue_1_Dequeue_mE9A2A69E86A7EDA9FBCEA675542F01A6D8677A14_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * G_B4_0 = NULL;
RuntimeObject * G_B3_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__size_3();
if (L_0)
{
goto IL_000e;
}
}
{
NullCheck((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this);
(( void (*) (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
}
IL_000e:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
int32_t L_2 = (int32_t)__this->get__head_1();
NullCheck(L_1);
int32_t L_3 = L_2;
RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
bool L_5;
L_5 = true;
G_B3_0 = L_4;
if (!L_5)
{
G_B4_0 = L_4;
goto IL_0040;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
int32_t L_7 = (int32_t)__this->get__head_1();
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_8 = V_0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject *)L_8);
G_B4_0 = G_B3_0;
}
IL_0040:
{
int32_t* L_9 = (int32_t*)__this->get_address_of__head_1();
NullCheck((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this);
(( void (*) (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this, (int32_t*)(int32_t*)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
int32_t L_10 = (int32_t)__this->get__size_3();
__this->set__size_3(((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)));
int32_t L_11 = (int32_t)__this->get__version_4();
__this->set__version_4(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)));
return (RuntimeObject *)G_B4_0;
}
}
// System.Void System.Collections.Generic.Queue`1<System.Object>::SetCapacity(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_SetCapacity_m4BB29A59667B92671B7AADA493AD02D59D1539FB_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * G_B6_0 = NULL;
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * G_B5_0 = NULL;
int32_t G_B7_0 = 0;
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * G_B7_1 = NULL;
{
int32_t L_0 = ___capacity0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (uint32_t)L_0);
V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_1;
int32_t L_2 = (int32_t)__this->get__size_3();
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_007d;
}
}
{
int32_t L_3 = (int32_t)__this->get__head_1();
int32_t L_4 = (int32_t)__this->get__tail_2();
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0039;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
int32_t L_6 = (int32_t)__this->get__head_1();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = V_0;
int32_t L_8 = (int32_t)__this->get__size_3();
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)0, (int32_t)L_8, /*hidden argument*/NULL);
goto IL_007d;
}
IL_0039:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
int32_t L_10 = (int32_t)__this->get__head_1();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = V_0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_12);
int32_t L_13 = (int32_t)__this->get__head_1();
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)L_10, (RuntimeArray *)(RuntimeArray *)L_11, (int32_t)0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))), (int32_t)L_13)), /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = V_0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_16);
int32_t L_17 = (int32_t)__this->get__head_1();
int32_t L_18 = (int32_t)__this->get__tail_2();
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_14, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_15, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))), (int32_t)L_17)), (int32_t)L_18, /*hidden argument*/NULL);
}
IL_007d:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = V_0;
__this->set__array_0(L_19);
__this->set__head_1(0);
int32_t L_20 = (int32_t)__this->get__size_3();
int32_t L_21 = ___capacity0;
G_B5_0 = ((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)(__this));
if ((((int32_t)L_20) == ((int32_t)L_21)))
{
G_B6_0 = ((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)(__this));
goto IL_009d;
}
}
{
int32_t L_22 = (int32_t)__this->get__size_3();
G_B7_0 = L_22;
G_B7_1 = ((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)(G_B5_0));
goto IL_009e;
}
IL_009d:
{
G_B7_0 = 0;
G_B7_1 = ((Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)(G_B6_0));
}
IL_009e:
{
NullCheck(G_B7_1);
G_B7_1->set__tail_2(G_B7_0);
int32_t L_23 = (int32_t)__this->get__version_4();
__this->set__version_4(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
return;
}
}
// System.Void System.Collections.Generic.Queue`1<System.Object>::MoveNext(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_MoveNext_m74ACB07FEF29893B831FC13AE49F4BA0EFEE1AFF_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, int32_t* ___index0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t* G_B2_0 = NULL;
int32_t* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
int32_t* G_B3_1 = NULL;
{
int32_t* L_0 = ___index0;
int32_t L_1 = *((int32_t*)L_0);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1));
int32_t* L_2 = ___index0;
int32_t L_3 = V_0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__array_0();
NullCheck(L_4);
G_B1_0 = L_2;
if ((((int32_t)L_3) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
G_B2_0 = L_2;
goto IL_0014;
}
}
{
int32_t L_5 = V_0;
G_B3_0 = L_5;
G_B3_1 = G_B1_0;
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
}
IL_0015:
{
*((int32_t*)G_B3_1) = (int32_t)G_B3_0;
return;
}
}
// System.Void System.Collections.Generic.Queue`1<System.Object>::ThrowForEmptyQueue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_ThrowForEmptyQueue_mC958C16A48E2BF4501AB513CAB5C4AAA1D0BDB81_gshared (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1102619AA6FB2A4AADBDAA47DDC096AE04C772C0)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Queue_1_ThrowForEmptyQueue_mC958C16A48E2BF4501AB513CAB5C4AAA1D0BDB81_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.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1__ctor_m03BF9ACD72F6437CD3C6ECBDB37DD7237B280B5C_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0;
L_0 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set__items_0(L_0);
return;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::set_Capacity(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_set_Capacity_m9EB7C1C7E2BEB4A752D4290DDDF86F1D0882D1F7_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___value0, const RuntimeMethod* method)
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->get__size_1();
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_set_Capacity_m9EB7C1C7E2BEB4A752D4290DDDF86F1D0882D1F7_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_3 = ___value0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
NullCheck(L_4);
if ((((int32_t)L_3) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_005a;
}
}
{
int32_t L_5 = ___value0;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_004f;
}
}
{
int32_t L_6 = ___value0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_6);
V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_7;
int32_t L_8 = (int32_t)__this->get__size_1();
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_0047;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = V_0;
int32_t L_11 = (int32_t)__this->get__size_1();
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL);
}
IL_0047:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = V_0;
__this->set__items_0(L_12);
return;
}
IL_004f:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13;
L_13 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set__items_0(L_13);
}
IL_005a:
{
return;
}
}
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollectionBuilder_1_get_Count_m8734CAE15B2F6F9BE14713AB66B7E620F4341008_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_1();
return (int32_t)L_0;
}
}
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::IndexOf(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollectionBuilder_1_IndexOf_m3016F31DD5EFCDDF9443ED56DC591A761CE046C8_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
RuntimeObject * L_1 = ___item0;
int32_t L_2 = (int32_t)__this->get__size_1();
int32_t L_3;
L_3 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0, (RuntimeObject *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return (int32_t)L_3;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::Insert(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_Insert_mA0D3D0D3D15604DFCC06A3434F7AA597B45917D7_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_1();
if ((((int32_t)L_0) <= ((int32_t)L_1)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_Insert_mA0D3D0D3D15604DFCC06A3434F7AA597B45917D7_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_3 = (int32_t)__this->get__size_1();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
NullCheck(L_4);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0032;
}
}
{
int32_t L_5 = (int32_t)__this->get__size_1();
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
(( void (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
}
IL_0032:
{
int32_t L_6 = ___index0;
int32_t L_7 = (int32_t)__this->get__size_1();
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_0058;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_9 = ___index0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_11 = ___index0;
int32_t L_12 = (int32_t)__this->get__size_1();
int32_t L_13 = ___index0;
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_8, (int32_t)L_9, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)), /*hidden argument*/NULL);
}
IL_0058:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_15 = ___index0;
RuntimeObject * L_16 = ___item1;
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (RuntimeObject *)L_16);
int32_t L_17 = (int32_t)__this->get__size_1();
__this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
int32_t L_18 = (int32_t)__this->get__version_2();
__this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
return;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_RemoveAt_m867AE95741DFBE550BCF3B1F8BEA4977F0ED3F51_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___index0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->get__size_1();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0018;
}
}
IL_000d:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_RemoveAt_m867AE95741DFBE550BCF3B1F8BEA4977F0ED3F51_RuntimeMethod_var)));
}
IL_0018:
{
int32_t L_4 = (int32_t)__this->get__size_1();
__this->set__size_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)));
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->get__size_1();
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_004c;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_8 = ___index0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->get__size_1();
int32_t L_12 = ___index0;
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_7, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)L_10, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL);
}
IL_004c:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_14 = (int32_t)__this->get__size_1();
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_15 = V_0;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (RuntimeObject *)L_15);
int32_t L_16 = (int32_t)__this->get__version_2();
__this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)));
return;
}
}
// T System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollectionBuilder_1_get_Item_mA480C4D9034B6E08B403E192A5D3A1061F82DFA7_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_1();
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_get_Item_mA480C4D9034B6E08B403E192A5D3A1061F82DFA7_RuntimeMethod_var)));
}
IL_0014:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_4 = ___index0;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
return (RuntimeObject *)L_6;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_set_Item_mCB378B931579FC3430CED07ADA2EE7A9C55015E8_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_1();
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_set_Item_mCB378B931579FC3430CED07ADA2EE7A9C55015E8_RuntimeMethod_var)));
}
IL_0014:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_4 = ___index0;
RuntimeObject * L_5 = ___value1;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_5);
int32_t L_6 = (int32_t)__this->get__version_2();
__this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)));
return;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_Add_m639DE86945774E4893D7A9A63ABF70824E1DE998_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get__size_1();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
{
goto IL_001e;
}
}
{
int32_t L_2 = (int32_t)__this->get__size_1();
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
(( void (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
}
IL_001e:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_4 = (int32_t)__this->get__size_1();
V_0 = (int32_t)L_4;
int32_t L_5 = V_0;
__this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
int32_t L_6 = V_0;
RuntimeObject * L_7 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (RuntimeObject *)L_7);
int32_t L_8 = (int32_t)__this->get__version_2();
__this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)));
return;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_Clear_m10ECFDAD173EE89FD5A4C7C5333220EE52AB268F_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_1();
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_0022;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_2 = (int32_t)__this->get__size_1();
Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/NULL);
__this->set__size_1(0);
}
IL_0022:
{
int32_t L_3 = (int32_t)__this->get__version_2();
__this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)));
return;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_Contains_m80A55CCAE8CF96BDE52456851BC5374E7362AA9C_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * V_1 = NULL;
int32_t V_2 = 0;
{
RuntimeObject * L_0 = ___item0;
if (L_0)
{
goto IL_0030;
}
}
{
V_0 = (int32_t)0;
goto IL_0025;
}
IL_000c:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3 = L_2;
RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
if (L_4)
{
goto IL_0021;
}
}
{
return (bool)1;
}
IL_0021:
{
int32_t L_5 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0025:
{
int32_t L_6 = V_0;
int32_t L_7 = (int32_t)__this->get__size_1();
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_000c;
}
}
{
return (bool)0;
}
IL_0030:
{
EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_8;
L_8 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_1 = (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_8;
V_2 = (int32_t)0;
goto IL_0055;
}
IL_003a:
{
EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_9 = V_1;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
int32_t L_11 = V_2;
NullCheck(L_10);
int32_t L_12 = L_11;
RuntimeObject * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
RuntimeObject * L_14 = ___item0;
NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_9);
bool L_15;
L_15 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(!0,!0) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_9, (RuntimeObject *)L_13, (RuntimeObject *)L_14);
if (!L_15)
{
goto IL_0051;
}
}
{
return (bool)1;
}
IL_0051:
{
int32_t L_16 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_0055:
{
int32_t L_17 = V_2;
int32_t L_18 = (int32_t)__this->get__size_1();
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_003a;
}
}
{
return (bool)0;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::CopyTo(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_CopyTo_m0103AEF40AE815AF85D67B5912083B981869347E_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->get__size_1();
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m0CCBAEC4057AFDD40BBE16F8850150EE0E39E81D_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_Remove_mBB02FE5EC4A99D7980E92B605A2BF84B0C34F875_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___item0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
int32_t L_1;
L_1 = (( int32_t (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
(( void (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
// System.Collections.Generic.IEnumerator`1<T> System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollectionBuilder_1_GetEnumerator_m24D4C25C914382B6A1E97AED11C6CDDB4F6CEFBB_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B * L_0 = (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10));
(( void (*) (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B *, ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)(L_0, (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
return (RuntimeObject*)L_0;
}
}
// System.Collections.IEnumerator System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollectionBuilder_1_System_Collections_IEnumerable_GetEnumerator_m6942C5CD95752D9370E71F7DC94403905363FA2F_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
RuntimeObject* L_0;
L_0 = (( RuntimeObject* (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
return (RuntimeObject*)L_0;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_System_Collections_IList_get_IsReadOnly_m888E42668754FB7286D14A4B7922B30E48957DC1_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.Add(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollectionBuilder_1_System_Collections_IList_Add_m89E746EF561D6B9B17533A5BF2AE6B9BB800B67D_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
RuntimeObject * L_0 = ___value0;
(( void (*) (RuntimeObject *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((RuntimeObject *)L_0, (String_t*)_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_000b:
try
{ // begin try (depth: 1)
RuntimeObject * L_1 = ___value0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
(( void (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
goto IL_0030;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0019;
}
throw e;
}
CATCH_0019:
{ // begin catch(System.InvalidCastException)
RuntimeObject * L_2 = ___value0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 16)) };
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL);
Exception_t * L_5;
L_5 = Error_InvalidTypeException_m5E952D1990031D96800EBED45B638CEF527F719E((RuntimeObject *)L_2, (Type_t *)L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_System_Collections_IList_Add_m89E746EF561D6B9B17533A5BF2AE6B9BB800B67D_RuntimeMethod_var)));
} // end catch (depth: 1)
IL_0030:
{
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
int32_t L_6;
L_6 = (( int32_t (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17));
return (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1));
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_System_Collections_IList_Contains_m45A66C29BA1EAB13E8EED40D23629FFAFC931C37_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1;
L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___value0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
bool L_3;
L_3 = (( bool (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19));
return (bool)L_3;
}
IL_0015:
{
return (bool)0;
}
}
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.IndexOf(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollectionBuilder_1_System_Collections_IList_IndexOf_m6310C715F5BACC60DD9DCC4EA93E517DB6BC30AC_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1;
L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___value0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
int32_t L_3;
L_3 = (( int32_t (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return (int32_t)L_3;
}
IL_0015:
{
return (int32_t)(-1);
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.Insert(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_System_Collections_IList_Insert_mD1511918CA19470A3ABFAB3AAEDA7966FBFC14E5_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
RuntimeObject * L_0 = ___value1;
(( void (*) (RuntimeObject *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((RuntimeObject *)L_0, (String_t*)_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_000b:
try
{ // begin try (depth: 1)
int32_t L_1 = ___index0;
RuntimeObject * L_2 = ___value1;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
(( void (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (int32_t)L_1, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20));
goto IL_0031;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_001a;
}
throw e;
}
CATCH_001a:
{ // begin catch(System.InvalidCastException)
RuntimeObject * L_3 = ___value1;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 16)) };
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t * L_5;
L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
Exception_t * L_6;
L_6 = Error_InvalidTypeException_m5E952D1990031D96800EBED45B638CEF527F719E((RuntimeObject *)L_3, (Type_t *)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_System_Collections_IList_Insert_mD1511918CA19470A3ABFAB3AAEDA7966FBFC14E5_RuntimeMethod_var)));
} // end catch (depth: 1)
IL_0031:
{
return;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.get_IsFixedSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_System_Collections_IList_get_IsFixedSize_m0EA9E6FAB96C13666A471C6CD1D0EF4CADAEE99C_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.Remove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_System_Collections_IList_Remove_m1431B989C80481A131F176EE4202D63933E1DB69_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1;
L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___value0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
bool L_3;
L_3 = (( bool (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 21)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 21));
}
IL_0015:
{
return;
}
}
// System.Object System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollectionBuilder_1_System_Collections_IList_get_Item_m17D11263233B8FB5B27FA49087F685D187171D28_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
RuntimeObject * L_1;
L_1 = (( RuntimeObject * (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22));
return (RuntimeObject *)L_1;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.IList.set_Item(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_System_Collections_IList_set_Item_m21B8C91BDCBE009ACBC11A63DF7D362EAFFFFFAB_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
RuntimeObject * L_0 = ___value1;
(( void (*) (RuntimeObject *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((RuntimeObject *)L_0, (String_t*)_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_000b:
try
{ // begin try (depth: 1)
int32_t L_1 = ___index0;
RuntimeObject * L_2 = ___value1;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
(( void (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (int32_t)L_1, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23));
goto IL_0031;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_001a;
}
throw e;
}
CATCH_001a:
{ // begin catch(System.InvalidCastException)
RuntimeObject * L_3 = ___value1;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 16)) };
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t * L_5;
L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
Exception_t * L_6;
L_6 = Error_InvalidTypeException_m5E952D1990031D96800EBED45B638CEF527F719E((RuntimeObject *)L_3, (Type_t *)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_System_Collections_IList_set_Item_m21B8C91BDCBE009ACBC11A63DF7D362EAFFFFFAB_RuntimeMethod_var)));
} // end catch (depth: 1)
IL_0031:
{
return;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_System_Collections_ICollection_CopyTo_m7586A65777FF0B62E1A742AA659E0D20D186CEB2_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_System_Collections_ICollection_CopyTo_m7586A65777FF0B62E1A742AA659E0D20D186CEB2_RuntimeMethod_var)));
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
NullCheck((RuntimeArray *)L_2);
int32_t L_3;
L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0022;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_System_Collections_ICollection_CopyTo_m7586A65777FF0B62E1A742AA659E0D20D186CEB2_RuntimeMethod_var)));
}
IL_0022:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
RuntimeArray * L_6 = ___array0;
int32_t L_7 = ___index1;
int32_t L_8 = (int32_t)__this->get__size_1();
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.ICollection.get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_System_Collections_ICollection_get_IsSynchronized_m33DBEE2EAA91556891CD3D1D7DC10F67CC417E04_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::System.Collections.ICollection.get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollectionBuilder_1_System_Collections_ICollection_get_SyncRoot_m6A22F347A5D2BA8D12CCB68154A6A5870E82722C_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
{
return (RuntimeObject *)__this;
}
}
// T[] System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ReadOnlyCollectionBuilder_1_ToArray_m9D11D2AADC39EFE109ACA086804103B056AA0740_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__size_1();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_0);
V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_1;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = V_0;
int32_t L_4 = (int32_t)__this->get__size_1();
Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (int32_t)L_4, /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = V_0;
return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_5;
}
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::ToReadOnlyCollection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * ReadOnlyCollectionBuilder_1_ToReadOnlyCollection_m7A1B686E48A19749240CB59B82503B8845B45CC2_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__size_1();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
{
goto IL_0019;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2;
goto IL_0020;
}
IL_0019:
{
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3;
L_3 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24));
V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_3;
}
IL_0020:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4;
L_4 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set__items_0(L_4);
__this->set__size_1(0);
int32_t L_5 = (int32_t)__this->get__version_2();
__this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = V_0;
TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A * L_7 = (TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25));
(( void (*) (TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)(L_7, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26));
return (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)L_7;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::EnsureCapacity(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_EnsureCapacity_mDF885D655534C96912EDAC17FAAC6B4ACC749F4E_gshared (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))) >= ((int32_t)L_1)))
{
goto IL_002e;
}
}
{
V_0 = (int32_t)4;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0021;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_0();
NullCheck(L_3);
V_0 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))), (int32_t)2));
}
IL_0021:
{
int32_t L_4 = V_0;
int32_t L_5 = ___min0;
if ((((int32_t)L_4) >= ((int32_t)L_5)))
{
goto IL_0027;
}
}
{
int32_t L_6 = ___min0;
V_0 = (int32_t)L_6;
}
IL_0027:
{
int32_t L_7 = V_0;
NullCheck((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this);
(( void (*) (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27));
}
IL_002e:
{
return;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::IsCompatibleObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollectionBuilder_1_IsCompatibleObject_m81809B4867CA16E45880EA8D9F9B40B52D213DAF_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4))))
{
goto IL_001f;
}
}
{
RuntimeObject * L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_0;
return (bool)((((RuntimeObject*)(RuntimeObject *)L_2) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>::ValidateNullValue(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionBuilder_1_ValidateNullValue_mB92892E3C440C5156EB592020728F1674F778824_gshared (RuntimeObject * ___value0, String_t* ___argument1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0024;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_1 = V_0;
if (!L_1)
{
goto IL_0024;
}
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 16)) };
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t * L_3;
L_3 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_2, /*hidden argument*/NULL);
String_t* L_4 = ___argument1;
Exception_t * L_5;
L_5 = Error_InvalidNullValue_mAF462550F9BE099D09E778C49B8F510632B213D1((Type_t *)L_3, (String_t*)L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyCollectionBuilder_1_ValidateNullValue_mB92892E3C440C5156EB592020728F1674F778824_RuntimeMethod_var)));
}
IL_0024:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Collections.Generic.IList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mDCF2476FE7DC5E93AC43D7C21B04F4F6592D3505_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___list0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)7, /*hidden argument*/NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___list0;
__this->set_list_0(L_1);
return;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_m736D640DF2D568C1FD5CC7C979434F7F466EB9C8_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_1;
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0);
return (int32_t)L_1;
}
}
// T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ReadOnlyCollection_1_get_Item_m3D3A82B39E83A3B8DF5C0F9CBA41F9D7B31601A1_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2;
L_2 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1);
return (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_Contains_m7E23A0C5417203FA2478280AC8653392D6FBBB16_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_1 = ___value0;
NullCheck((RuntimeObject*)L_0);
bool L_2;
L_2 = InterfaceFuncInvoker1< bool, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_1);
return (bool)L_2;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m43AC73B4E6BC21BBAEBC0E87D4C4D409578C83A9_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* L_1 = ___array0;
int32_t L_2 = ___index1;
NullCheck((RuntimeObject*)L_0);
InterfaceActionInvoker2< CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)L_1, (int32_t)L_2);
return;
}
}
// System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_GetEnumerator_m51D83255337C9CE25E59E9AD3BA7EE248F897FEE_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_0);
return (RuntimeObject*)L_1;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_IndexOf_m63608906E7B76468FE7B9D70E54DB08182E4B4BF_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_1 = ___value0;
NullCheck((RuntimeObject*)L_0);
int32_t L_2;
L_2 = InterfaceFuncInvoker1< int32_t, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_1);
return (int32_t)L_2;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m9E419D50D2E4B7EFAE745F0C2B46F1322DAA160E_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m8EF1834C1BE327DF515590AB748537C53BE83A11_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2;
L_2 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1);
return (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_mB2E1C5ED371E697D87335E20463BCF3A64DB0C89_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m31C79871AAE5E071D6A9B9FEBC4567BB59B32A76_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_mC63D378BF8A02DD3697BD5F5278BE9C58555FD21_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m412801944A4C0A312DAACB6F5B26E7145054963B_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m6920B3D3823CCE300F8520F2E83B986571D3584B_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return (bool)0;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_mE7497EA49C1D3CC94C4E9B5538F459196FC636A3_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_mEFA5DAD8BB90E9E7D1DB93C5BA82746DD7933692_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, (RuntimeObject*)L_0);
return (RuntimeObject*)L_1;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m0AE4D02788BE4FE95AA2125982467C0283546AE9_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_mCD5D09A51472D74D4F2365382FA09381D48F4E53_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_1();
if (L_0)
{
goto IL_0037;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get_list_0();
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0025;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
__this->set__syncRoot_1(L_4);
goto IL_0037;
}
IL_0025:
{
RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of__syncRoot_1();
RuntimeObject * L_6 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_6, /*hidden argument*/NULL);
RuntimeObject * L_7;
L_7 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_5, (RuntimeObject *)L_6, (RuntimeObject *)NULL);
}
IL_0037:
{
RuntimeObject * L_8 = (RuntimeObject *)__this->get__syncRoot_1();
return (RuntimeObject *)L_8;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_mF1AA67CC5B4C018659391958D865FBD6D2CF17DF_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* V_0 = NULL;
Type_t * V_1 = NULL;
Type_t * V_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)3, /*hidden argument*/NULL);
}
IL_0009:
{
RuntimeArray * L_1 = ___array0;
NullCheck((RuntimeArray *)L_1);
int32_t L_2;
L_2 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_1, /*hidden argument*/NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0018;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)7, /*hidden argument*/NULL);
}
IL_0018:
{
RuntimeArray * L_3 = ___array0;
NullCheck((RuntimeArray *)L_3);
int32_t L_4;
L_4 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_3, (int32_t)0, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)6, /*hidden argument*/NULL);
}
IL_0027:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11((int32_t)((int32_t)17), (int32_t)4, /*hidden argument*/NULL);
}
IL_0033:
{
RuntimeArray * L_6 = ___array0;
NullCheck((RuntimeArray *)L_6);
int32_t L_7;
L_7 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_6, /*hidden argument*/NULL);
int32_t L_8 = ___index1;
NullCheck((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this);
int32_t L_9;
L_9 = (( int32_t (*) (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))) >= ((int32_t)L_9)))
{
goto IL_0049;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)5, /*hidden argument*/NULL);
}
IL_0049:
{
RuntimeArray * L_10 = ___array0;
V_0 = (CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)((CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)IsInst((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* L_11 = V_0;
if (!L_11)
{
goto IL_0061;
}
}
{
RuntimeObject* L_12 = (RuntimeObject*)__this->get_list_0();
CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* L_13 = V_0;
int32_t L_14 = ___index1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker2< CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_12, (CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)L_13, (int32_t)L_14);
return;
}
IL_0061:
{
RuntimeArray * L_15 = ___array0;
NullCheck((RuntimeObject *)L_15);
Type_t * L_16;
L_16 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_15, /*hidden argument*/NULL);
NullCheck((Type_t *)L_16);
Type_t * L_17;
L_17 = VirtFuncInvoker0< Type_t * >::Invoke(103 /* System.Type System.Type::GetElementType() */, (Type_t *)L_16);
V_1 = (Type_t *)L_17;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 5)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19;
L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_18, /*hidden argument*/NULL);
V_2 = (Type_t *)L_19;
Type_t * L_20 = V_1;
Type_t * L_21 = V_2;
NullCheck((Type_t *)L_20);
bool L_22;
L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(114 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_20, (Type_t *)L_21);
if (L_22)
{
goto IL_0091;
}
}
{
Type_t * L_23 = V_2;
Type_t * L_24 = V_1;
NullCheck((Type_t *)L_23);
bool L_25;
L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(114 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_23, (Type_t *)L_24);
if (L_25)
{
goto IL_0091;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL);
}
IL_0091:
{
RuntimeArray * L_26 = ___array0;
V_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_3;
if (L_27)
{
goto IL_00a2;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL);
}
IL_00a2:
{
RuntimeObject* L_28 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_28);
int32_t L_29;
L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_28);
V_4 = (int32_t)L_29;
}
IL_00af:
try
{ // begin try (depth: 1)
{
V_5 = (int32_t)0;
goto IL_00d4;
}
IL_00b4:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = V_3;
int32_t L_31 = ___index1;
int32_t L_32 = (int32_t)L_31;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
RuntimeObject* L_33 = (RuntimeObject*)__this->get_list_0();
int32_t L_34 = V_5;
NullCheck((RuntimeObject*)L_33);
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_35;
L_35 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_33, (int32_t)L_34);
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_36 = (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_35;
RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_36);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_37);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (RuntimeObject *)L_37);
int32_t L_38 = V_5;
V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
}
IL_00d4:
{
int32_t L_39 = V_5;
int32_t L_40 = V_4;
if ((((int32_t)L_39) < ((int32_t)L_40)))
{
goto IL_00b4;
}
}
IL_00da:
{
goto IL_00e6;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00dc;
}
throw e;
}
CATCH_00dc:
{ // begin catch(System.ArrayTypeMismatchException)
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00e6;
} // end catch (depth: 1)
IL_00e6:
{
return;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_IsFixedSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_mFDC6D4B0BC876D5FE0841F6344113B95361E1AB9_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m13C50D50797D424309378B8AD8BAE437724E9940_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_IList_get_Item_mF8C2C44B7870037B7E274AF7C8AC202B4E3DED1B_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2;
L_2 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1);
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_3 = (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_3);
return (RuntimeObject *)L_4;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_set_Item_mCFD65CE6DA818F63C30A9653AC384B4E6B4E8F80_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Add(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_Add_m3A778B50120BAB734ED23A25F42846C2445C7573_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return (int32_t)(-1);
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Clear_m642595225F9F050BA091B09AF4A2B51101B6A439_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IsCompatibleObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_IsCompatibleObject_mF9BCB0CC5E80207124F1531BBB57AE36CDB17E6A_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6))))
{
goto IL_001f;
}
}
{
RuntimeObject * L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ));
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2 = V_0;
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_3 = (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_Contains_m95F7845C553CFE3B69FA205B4D658A50A7E1F536_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1;
L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___value0;
NullCheck((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this);
bool L_3;
L_3 = (( bool (*) (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )((*(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)((CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return (bool)L_3;
}
IL_0015:
{
return (bool)0;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.IndexOf(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_IndexOf_mB133EB8DDA0C35BAD009F6484043CC3C6ACEF7F6_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1;
L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___value0;
NullCheck((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this);
int32_t L_3;
L_3 = (( int32_t (*) (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )((*(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)((CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return (int32_t)L_3;
}
IL_0015:
{
return (int32_t)(-1);
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Insert(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Insert_m2F331159BB2F4782680939A66DAE27646B5FC37C_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Remove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Remove_m448A233C5DF5AC45768D5315C37CB7FC6A57D89F_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_mB5085D8DC4FA66E09B93353F6C372CBE07154943_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*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.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Collections.Generic.IList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m5AD02ABD96C2DBF99144C430920F41CF64C658FA_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___list0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)7, /*hidden argument*/NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___list0;
__this->set_list_0(L_1);
return;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_mF6F24336D702AB0E175BF95DE0B3C982DD183CF1_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_1;
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0);
return (int32_t)L_1;
}
}
// T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ReadOnlyCollection_1_get_Item_mD36A5BC7E4B76316C5FFD2AACF470C67565490EC_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2;
L_2 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1);
return (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_Contains_m1226644270DBAF86C0D5640A1E28072F8959FF1E_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_1 = ___value0;
NullCheck((RuntimeObject*)L_0);
bool L_2;
L_2 = InterfaceFuncInvoker1< bool, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_1);
return (bool)L_2;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m7F5DB8CBAD2E79CD147FBFABF230B8058D1F6AFF_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* L_1 = ___array0;
int32_t L_2 = ___index1;
NullCheck((RuntimeObject*)L_0);
InterfaceActionInvoker2< CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)L_1, (int32_t)L_2);
return;
}
}
// System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_GetEnumerator_m336D6EC6CD86C85072EBEDC5D830681D86FB23D1_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_0);
return (RuntimeObject*)L_1;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_IndexOf_mA1A0D3CF230F70B67CBB9338C85156A87F7B6F43_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_1 = ___value0;
NullCheck((RuntimeObject*)L_0);
int32_t L_2;
L_2 = InterfaceFuncInvoker1< int32_t, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_1);
return (int32_t)L_2;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_mF75C45D87F8EDDFC67EC68FB14481FCFCDFB24A1_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_mC051C9D120F0E28DC6224E223E4AF0AB088FB111_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2;
L_2 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1);
return (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m9B01E76A587EE8262375344318467BD893FD98DF_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m09EE7F5FBC866DCF02459609E962D1405579E1C2_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_mBDDF794E50A3663413E065ACAC05AD82AD9F5155_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m623114E8C4EA100D70CD37704E272B268CF3DF7E_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_mD9806DFD68033291F74EDA207E3C4ECA1804FDB2_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return (bool)0;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_mC60815F5BC89E4FD0DCA56C9BF5B7819C0ECB29C_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m380FBF21C104202A7AF0646F9F3D2A807DA5DB8D_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, (RuntimeObject*)L_0);
return (RuntimeObject*)L_1;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_mD35BB2A217CA3725AEADEB6B2759D2176279936E_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_mA8A8F9807864E305A2409BBE59FCBBF507A40B22_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_1();
if (L_0)
{
goto IL_0037;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get_list_0();
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0025;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
__this->set__syncRoot_1(L_4);
goto IL_0037;
}
IL_0025:
{
RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of__syncRoot_1();
RuntimeObject * L_6 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_6, /*hidden argument*/NULL);
RuntimeObject * L_7;
L_7 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_5, (RuntimeObject *)L_6, (RuntimeObject *)NULL);
}
IL_0037:
{
RuntimeObject * L_8 = (RuntimeObject *)__this->get__syncRoot_1();
return (RuntimeObject *)L_8;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_mCDA696E42FE1EFB6DD640B95D6A2E14684F1B849_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* V_0 = NULL;
Type_t * V_1 = NULL;
Type_t * V_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)3, /*hidden argument*/NULL);
}
IL_0009:
{
RuntimeArray * L_1 = ___array0;
NullCheck((RuntimeArray *)L_1);
int32_t L_2;
L_2 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_1, /*hidden argument*/NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0018;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)7, /*hidden argument*/NULL);
}
IL_0018:
{
RuntimeArray * L_3 = ___array0;
NullCheck((RuntimeArray *)L_3);
int32_t L_4;
L_4 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_3, (int32_t)0, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)6, /*hidden argument*/NULL);
}
IL_0027:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11((int32_t)((int32_t)17), (int32_t)4, /*hidden argument*/NULL);
}
IL_0033:
{
RuntimeArray * L_6 = ___array0;
NullCheck((RuntimeArray *)L_6);
int32_t L_7;
L_7 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_6, /*hidden argument*/NULL);
int32_t L_8 = ___index1;
NullCheck((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this);
int32_t L_9;
L_9 = (( int32_t (*) (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))) >= ((int32_t)L_9)))
{
goto IL_0049;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)5, /*hidden argument*/NULL);
}
IL_0049:
{
RuntimeArray * L_10 = ___array0;
V_0 = (CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)((CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)IsInst((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* L_11 = V_0;
if (!L_11)
{
goto IL_0061;
}
}
{
RuntimeObject* L_12 = (RuntimeObject*)__this->get_list_0();
CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* L_13 = V_0;
int32_t L_14 = ___index1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker2< CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_12, (CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)L_13, (int32_t)L_14);
return;
}
IL_0061:
{
RuntimeArray * L_15 = ___array0;
NullCheck((RuntimeObject *)L_15);
Type_t * L_16;
L_16 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_15, /*hidden argument*/NULL);
NullCheck((Type_t *)L_16);
Type_t * L_17;
L_17 = VirtFuncInvoker0< Type_t * >::Invoke(103 /* System.Type System.Type::GetElementType() */, (Type_t *)L_16);
V_1 = (Type_t *)L_17;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 5)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19;
L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_18, /*hidden argument*/NULL);
V_2 = (Type_t *)L_19;
Type_t * L_20 = V_1;
Type_t * L_21 = V_2;
NullCheck((Type_t *)L_20);
bool L_22;
L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(114 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_20, (Type_t *)L_21);
if (L_22)
{
goto IL_0091;
}
}
{
Type_t * L_23 = V_2;
Type_t * L_24 = V_1;
NullCheck((Type_t *)L_23);
bool L_25;
L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(114 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_23, (Type_t *)L_24);
if (L_25)
{
goto IL_0091;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL);
}
IL_0091:
{
RuntimeArray * L_26 = ___array0;
V_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_3;
if (L_27)
{
goto IL_00a2;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL);
}
IL_00a2:
{
RuntimeObject* L_28 = (RuntimeObject*)__this->get_list_0();
NullCheck((RuntimeObject*)L_28);
int32_t L_29;
L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_28);
V_4 = (int32_t)L_29;
}
IL_00af:
try
{ // begin try (depth: 1)
{
V_5 = (int32_t)0;
goto IL_00d4;
}
IL_00b4:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = V_3;
int32_t L_31 = ___index1;
int32_t L_32 = (int32_t)L_31;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
RuntimeObject* L_33 = (RuntimeObject*)__this->get_list_0();
int32_t L_34 = V_5;
NullCheck((RuntimeObject*)L_33);
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_35;
L_35 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_33, (int32_t)L_34);
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_36 = (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_35;
RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_36);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_37);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (RuntimeObject *)L_37);
int32_t L_38 = V_5;
V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
}
IL_00d4:
{
int32_t L_39 = V_5;
int32_t L_40 = V_4;
if ((((int32_t)L_39) < ((int32_t)L_40)))
{
goto IL_00b4;
}
}
IL_00da:
{
goto IL_00e6;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00dc;
}
throw e;
}
CATCH_00dc:
{ // begin catch(System.ArrayTypeMismatchException)
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00e6;
} // end catch (depth: 1)
IL_00e6:
{
return;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_IsFixedSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_mF95B4D8856B6246502A72BC482A4A1790B3EDC16_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_mE3E746D6EA83CD29A7F3DB96E88BC666A8485303_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_IList_get_Item_m1168CE7B1CCD8FED6B3F6CC50FF5B0C10F790198_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2;
L_2 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1);
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_3 = (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_3);
return (RuntimeObject *)L_4;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_set_Item_m42AFF35D7BB9411ED601378492B0415FA724A468_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Add(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_Add_mE9E394DF2990CDC9BA75DD7F69DD2CC733BCEDA8_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return (int32_t)(-1);
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Clear_m1F10D2D0CFB72FDE846EF3E6032D69C44DDDB521_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IsCompatibleObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_IsCompatibleObject_m17592EE4D7D3B338A09DEAE5B2402FC72EE7557F_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6))))
{
goto IL_001f;
}
}
{
RuntimeObject * L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ));
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2 = V_0;
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_3 = (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2;
RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_Contains_m18207D2F683DF7925612204E4F900E6D10D7B501_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1;
L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___value0;
NullCheck((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this);
bool L_3;
L_3 = (( bool (*) (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )((*(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)((CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return (bool)L_3;
}
IL_0015:
{
return (bool)0;
}
}
// System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.IndexOf(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_IndexOf_m0B51029DADCA88BB7F074CCEE1760FEB35CBEF16_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
bool L_1;
L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___value0;
NullCheck((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this);
int32_t L_3;
L_3 = (( int32_t (*) (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )((*(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)((CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return (int32_t)L_3;
}
IL_0015:
{
return (int32_t)(-1);
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Insert(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Insert_m779DCE8D7DF3C3CC7FB3ACB0910DC2B5D4E10845_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Remove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Remove_m49A4A90B6646111E1F83AD543DB394AC93010A23_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m7AEB35746E9B5FC54384438D9C9DC5421FC29FF8_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m8418F0A41AEC8419D1566F2EDA19D3A018E7ED56_gshared_inline (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Nullable_1_GetValueOrDefault_m2F7A999B4898CADF9F5530F9F209DAAD77CA075F_gshared_inline (Nullable_1_tF836BDAF0600F260DE9037E2ABABEFBD4E091FF9 * __this, const RuntimeMethod* method)
{
{
uint32_t L_0 = (uint32_t)__this->get_value_0();
return (uint32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB2420C0D6B3AA027BB9C15B0E9B3FFEFB30C0662_gshared_inline (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Nullable_1_GetValueOrDefault_m383BBE1EE86EB198DE5E7182B3001F757590D9BA_gshared_inline (Nullable_1_t6D01EC45AFF535504EEB5FD3A877B3C71573F69C * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = (uint64_t)__this->get_value_0();
return (uint64_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD19AE8AE4A6DC528095A78B4FD597474B36D9435_gshared_inline (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Nullable_1_GetValueOrDefault_m5B9598A3D5819C35102F0659AA9F3618DDEDA644_gshared_inline (Nullable_1_t1F48E3E96860A85BA1C5871E06B3D454CDA869AB * __this, const RuntimeMethod* method)
{
{
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_value_0();
return (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_0;
}
}
| [
"[email protected]"
] | |
feb8dfce0414db45248c81b7e6b39d503e40cc2a | c4e021660b818921911a7e785af4367df70e6e07 | /Entities/TestEntity.h | 4598d9c9e1b3e5dce60a5d8578e09a624e1f566d | [] | no_license | jfrsmith/Sandbox | 2a5794c3e6cba02ae7c125cbc513e772a19ba27e | 88395b2ea7eadbf64f35792b16dd23ae459b0938 | refs/heads/master | 2016-09-05T23:36:55.039509 | 2012-05-25T16:20:13 | 2012-05-25T16:20:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 481 | h | //
// TestEntity.h
// Sandbox
//
// Created by Jack Smith on 3/12/11.
// Copyright (c) 2011. All rights reserved.
//
#ifndef Sandbox_TestEntity_h
#define Sandbox_TestEntity_h
#include "GameEntity.h"
class CTestEntity : public CGameEntity
{
public:
CTestEntity(int nWidth, int nHeight, const glm::vec2& vStartPos);
void Update(float p_fDelta, const SControllerState& p_rState);
void PreRender();
private:
int m_nWidth;
int m_nHeight;
};
#endif
| [
"[email protected]"
] | |
65c3949288f75f175a719303854bd1a0dc113b63 | b1ca290baa255e9939882e3711093a8ca0509687 | /11/Untitled1.cpp | 3a502fadd38bec5f15223afa9fce28ab91b8fd90 | [] | no_license | ZeeshanAhmadKhalil/DevCpp | 26872a9059d683072c116169b4035ea6ae706c54 | c68c67f2972cbc6bca2691dd773a4bff62aa5889 | refs/heads/master | 2020-07-29T00:00:33.065937 | 2019-09-24T06:13:57 | 2019-09-24T06:13:57 | 209,585,282 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 228 | cpp | #include<iostream>
#include<conio.h>
using namespace std;
main()
{
int a,b,c;//swaping
cout<<"enter a =";
cin>>a;
cout<<"enter b =";
cin>>b;
c=a;
a=b;
b=c;
cout<<"after swapind\t"<<"a ="<<a<<"\tb ="<<b;
}
| [
"[email protected]"
] | |
18fc64ed7c1e0a8e9f7cf1c536aedf107106130a | 46cce0f5350dd7bef7a22bb0a1246f003f40916c | /defcore/data_container_old/data_container.h | 0700fdc02a170121c52c4a7cfb5558e5c5067ecf | [] | no_license | veodev/av_training | 6e65d43b279d029c85359027b5c68bd251ad24ff | ecb8c3cdc58679ada38c30df36a01751476f9015 | refs/heads/master | 2020-04-28T22:23:39.485893 | 2019-09-23T13:16:29 | 2019-09-23T13:16:29 | 175,615,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,174 | h | #ifndef CDATACONTAINER_H
#define CDATACONTAINER_H
#include <QString>
#include <QFile>
#include "Definitions.h"
#include "ChannelsTable.h"
#include "DeviceConfig.h"
#include "data_container_constants.h"
#if defined(CreateFile)
# undef CreateFile
#endif
// -----------------------------------------------------------------------------
typedef unsigned short tHeaderStr[65]; //
typedef tHeaderStr* ptHeaderStr; //
typedef unsigned short tHeaderBigStr[255]; //
typedef tHeaderBigStr* ptHeaderBigStr; //
typedef char tCardinalPoints[4]; // Стороны света
typedef unsigned char tUsedItemsList[64]; // Флаги определяющие используемые записи
typedef unsigned short tLinkData[16]; //
#pragma pack(push,1)
struct tMRFPost // Столб
{
int Km[2];
int Pk[2];
};
struct sUnitInfo // Информация о блоке прибора
{
unsigned char UnitType; // Тип блока (eDeviceUnitType)
tHeaderStr WorksNumber; // Заводской номер блока
tHeaderStr FirmwareVer; // Версия программного обеспечения блока
};
typedef sUnitInfo tUnitsInfoList[10]; // Информация о блоках прибора
// Путейская координата
struct tCaCrd // Размер 8 байт
{
int XXX;
int YYY;
};
struct tMRFCrd // Размер 12 байт
{
int Km;
int Pk;
int mm;
};
struct sCoordPostMRF // Размер: 144 Байта
{
int Km[2];
int Pk[2];
int Reserv[32];
};
struct sCoordPostChainage // Размер: 136 Байта
{
tCaCrd Val; // Координата в фармате XXX.YYY
int Reserv[32];
};
struct sEchoBlockItem
{
unsigned char Delay;
unsigned char Ampl;
};
typedef sEchoBlockItem tEchoBlock[8]; // Сигналы В-развертки одного канала, на одной координате
struct sFileHeader // Заголовок файла
{
tAviconFileID FileID; // RSPBRAFD
tAviconFileID DeviceID; // Идентификатор прибора
unsigned char DeviceVer; // Версия прибора
unsigned char HeaderVer; // Версия заголовка
int MoveDir; // Направление движения: + 1 в сторону увеличения путейской координаты; - 1 в сторону уменьшения путейской координаты
unsigned short ScanStep; // Шаг датчика пути (мм * 100)
unsigned char PathCoordSystem; // Система отсчета путейской координаты
tUsedItemsList UsedItems; // Флаги определяющие используемые записи
unsigned int CheckSumm; // Контрольная сумма (unsigned 32-bit)
unsigned char UnitsCount; // Количество блоков прибора
tUnitsInfoList UnitsInfo; // Информация о блоках прибора
tHeaderStr Organization; // Название организации осуществляющей контроль
tHeaderStr RailRoadName; // Название железной дороги
unsigned int DirectionCode; // Код направления
tHeaderStr PathSectionName; // Название участка дороги
tHeaderStr OperatorName; // Имя оператора
int RailPathNumber; // Номер ж/д пути
int RailSection; // Звено рельса
unsigned short Year; // Дата время контроля
unsigned short Month;
unsigned short Day;
unsigned short Hour;
unsigned short Minute;
int StartKM; // Начальная координата - Метрическая
int StartPk;
int StartMetre;
unsigned char WorkRailTypeA; // Рабочая нить (для однониточных приборов): 0 – левая, 1 – правая
tCaCrd StartChainage; // Начальная координата в зависимости от PathCoordSystem
tCardinalPoints WorkRailTypeB; // Рабочая нить (для однониточных приборов): NR, SR, WR, ER
tCardinalPoints TrackDirection; // Код направления: NB, SB, EB, WB, CT, PT, RA, TT
tCardinalPoints TrackID; // Track ID: NR, SR, ER, WR
unsigned char CorrespondenceSides; // Соответствие стороны тележки нитям пути
double HCThreshold; // Уровень порога для Head Checking (Венгрия)
tLinkData ChIdxtoCID; // Массив связи индекса канала в файле с CID
tLinkData ChIdxtoGateIdx; // Массив связи индекса канала в файле с номером строба
unsigned char Reserv[2018 - 64]; // Резерв
// + Кодировка
unsigned int TableLink; // Ссылка на расширенный заголовок
};
#pragma pack(pop)
// -----------------------------------------------------------------------------
class cDataContainer
{
private:
sFileHeader Head;
bool HeadOpen;
QFile *DataFile;
int CurSysCoord; // Текущая системная координата
int CurDisCoord; // Текущая дисплейная координата
int MaxSysCoord; // Максимальная системная координата
int MinSysCoord; // Минимальная системная координата
int MaxDisCoord; // Максимальная дисплейная координата
int SaveSysCoord; // Прошлая системная координата
int LastOffset; // Смещение последнего записанного события
bool BackMotionFlag; //
bool SearchBM; //
bool SearchBMEnd; //
int StartBMSysCoord; //
tMRFCrd LastMRFCrd; // Последняя отметка путейской координаты
int LastPostSysCrd; // Системная координата последней отметки путейской координаты
//int LastSysCrdOffset;
unsigned char id;
int SaveScanStep;
int SaveMoveDir;
unsigned char CIDtoChIdx[3][256]; // Массив связи CID и номера строба с индексом канала в файле
tLinkData ChIdxtoCID; // Массив связи индекса канала в файле с CID
tLinkData ChIdxtoGateIdx; // Массив связи индекса канала в файле с номером строба
QString HeaderStrToString(tHeaderStr Text);
void StringToHeaderStr(QString InText, ptHeaderStr OutText);
QString HeaderBigStrToString(tHeaderBigStr Text);
void StringToHeaderBigStr(QString InText, ptHeaderBigStr OutText);
public:
cDataContainer(int Scheme); // Схема прозвучивания: 1, 2, 3
~cDataContainer();
bool CreateFile(QString FileName);
// Заполнение заголовка файла:
bool AddDeviceUnitInfo(eDeviceUnitType UnitType, QString WorksNumber, QString FirmwareVer); // Добавить информацию о блоке прибора
bool SetRailRoadName(QString Name); // Название железной дороги
bool SetOrganizationName(QString Org); // Название организации осуществляющей контроль
bool SetDirectionCode(unsigned int Code); // Код направления
bool SetPathSectionName(QString Name); // Название участка дороги
bool SetRailPathNumber(int Number); // Номер ж/д пути
bool SetRailSection(int Number); // Звено рельса
bool SetDateTime(unsigned short Day_, unsigned short Month_, unsigned short Year_, unsigned short Hour_, unsigned short Minute_); // Дата/время контроля
bool SetOperatorName(QString Name); // Имя оператора
bool SetStartMRFCrd(tMRFCrd StartCrd);
bool SetStartCaCrd(eCoordSys CoordSys, tCaCrd Chainage);
bool SetWorkRailTypeB(tCardinalPoints Val); // Рабочая нить (для однониточных приборов): NR, SR, WR, ER
bool SetTrackDirection(tCardinalPoints Val); // Код направления: NB, SB, EB, WB, CT, PT, RA, TT
bool SetTrackID(tCardinalPoints Val); // Track ID: NR, SR, ER, WR
bool SetCorrespondenceSides(eCorrespondenceSides Val); // Соответствие сторон тележки нитям пути
bool CloseHeader(int MovDir, unsigned short ScanStep); // Закончить формирование заголовка (ScanStep - мм * 100)
void CloseFile(void); // Закончить формирование файла
// Сигналы и координата:
void AddSysCoord(int SysCoord); // Новая координата
// Сигналы В-развертки
bool AddEcho(eDeviceSide Side, CID Channel, unsigned char Count, unsigned char D0, unsigned char A0, unsigned char D1, unsigned char A1, unsigned char D2, unsigned char A2, unsigned char D3, unsigned char A3, unsigned char D4, unsigned char A4, unsigned char D5, unsigned char A5, unsigned char D6, unsigned char A6, unsigned char D7, unsigned char A7);
bool AddEcho(eDeviceSide Side, CID Channel, unsigned char Count, tEchoBlock EchoBlock);
void AddSensor1State(eDeviceSide Side, bool State); // Данные датчика болтового стыка
// Настройки каналов:
void AddSens(eDeviceSide Side, CID Channel, int GateIndex, char NewValue); // Изменение условной чувствительности
void AddGain(eDeviceSide Side, CID Channel, unsigned char NewValue); // Изменение положения нуля аттенюатора (0 дБ условной чувствительности)
void AddTVG(eDeviceSide Side, CID Channel, unsigned char NewValue); // Изменение ВРЧ
void AddStGate(eDeviceSide Side, CID Channel, int GateIndex, unsigned char NewValue); // Изменение положения начала строба
void AddEndGate(eDeviceSide Side, CID Channel, int GateIndex, unsigned char NewValue); // Изменение положения конца строба
void AddPrismDelay(eDeviceSide Side, CID Channel, unsigned short NewValue); // Изменение 2Тп мкс * 10 (word)
void AddMode(unsigned short ModeIdx, unsigned short InPreviousModeTime, bool AddChInfo, eDeviceSide Side, CID Channel, int GateIndex); // Информация о смене режима
void AddSetRailType(void); // Настройка на тип рельса
void AddHeadPh(eDeviceSide Side, CID Channel, int GateIndex, bool Enabled); // Изменение состояния наушников (вкл/выкл)
// Отметки:
void AddTextLabel(QString Text); // Добавление текстовой отметки
void AddDefLabel(eDeviceSide Side, QString Text); // Добавление отметки о дефекте
void AddStrelka(QString Text); // Добавление отметки о стрелочном переводе
void AddStBoltStyk(void); // Отметка начало болтового стыка
void AddEdBoltStyk(void); // Отметка конец болтового стыка
void AddTime(unsigned short Hour_, unsigned short Minute_); // Время
void AddHandScan();
void AddMRFPost(tMRFPost Post); // Столб (километр / пикет )
void AddCaPost(tCaCrd Chainage); // Путевой столб иностранный
void AddSatelliteCoord(float Latitude, float Longitude); // Географическая координата
void AddSCReceiverStatus(unsigned char State); // Состояние приемника GPS
void AddMedia(void * DataPrt, tMediaType Type, unsigned int Size); // Медиа данные
// void AddHandScanFromDataContainer(SrcData: TAviconDataContainer; Rail: TRail; Surf, HandChNum, Att, Ku, TVG: ShortInt; StartCrd, EndCrd: Integer);
// -------------------------------------------
tMRFCrd GetCurrectCoord(void); // Текущая путейская координата
// Загрузка:
/*
procedure LoadData(StreamIdx: Integer; StartDisCoord, EndDisCoord, LoadShift: Integer; BlockOk: TDataNotifyEvent);
function DisToFileOffset(StreamIdx: Integer; NeedDisCoord: Integer; var DisCoord: Int64; var SysCoord: Integer; var OffSet: Integer): Boolean;
function GetParamFirst(StreamIdx: Integer; DisCoord: Integer; var Params: TEvalChannelsParams; var Sensor1: TSensor1Data): Boolean;
function GetParamNext(StreamIdx: Integer; DisCoord: Integer; var Params: TEvalChannelsParams; var Sensor1: TSensor1Data): Boolean;
function GetBMStateFirst(StreamIdx: Integer; DisCoord: Integer): Boolean;
function GetBMStateNext(StreamIdx: Integer; var DisCoord: Integer; var State: Boolean): Boolean;
function SysToDisCoord(Coord: Integer): Integer;
function DisToSysCoord(Coord: Integer): Integer;
procedure DisToDisCoords(Coord: Integer; var Res: TIntegerDynArray);
function GetEventIdx(StartDisCoord, EndDisCoord: Integer; var StartIdx, EndIdx: Integer; EmptyPar: Integer): Boolean;
procedure GetNearestEventIdx(DisCoord: Integer; var LeftIdx, RightIdx: Integer; var SameCoord: TIntegerDynArray);
function GetLeftEventIdx(DisCoord: Integer): Integer;
function GetRightEventIdx(DisCoord: Integer): Integer;
procedure GetEventData(Idx: Integer; var ID: Byte; var pData: PEventData);
// -------------< Система координат - Метрическая РФ >-----------------------------------
function DisToMRFCrdPrm(DisCoord: Integer; var CoordParams: TMRFCrdParams): Boolean;
function DisToMRFCrd(DisCoord: Longint): TMRFCrd;
function MRFCrdToDisCrd(RFC: TMRFCrd; var DisCoord: Longint): Boolean;
// -------------< Система координат - Имперская >----------------------------------------
function DisToCaCrdPrm(DisCoord: Integer; var CoordParams: TCaCrdParams): Boolean;
function DisToCaCrd(DisCoord: Longint): TCaCrd;
function CaCrdToDis(CaCrd: TCaCrd; var DisCoord: Longint): Boolean;
// --------------------------------------------------------------------------------------
property MaxDisCoord: Integer read GetMaxDisCoord;
property MaxSysCoord: Integer read GetMaxSysCoord;
property EventCount: Integer read GetEventCount;
property Event[Index: Integer]: TFileEvent read GetEvent;
property CurSaveSysCoord: Longint read FCurSaveSysCrd; // Системная координата записи
property CurSaveDisCoord: Integer read FCurSaveDisCrd; // Дисплейная координата записи
// Загрузка - LoadData
property CurLoadOffset[Index: Integer]: Integer read GetCurLoadOffset; // FCurOffset;
property CurLoadSysCoord[Index: Integer]: Longint read GetCurLoadSysCoord; // FCurSysCoord;
property CurLoadDisCoord[Index: Integer]: Int64 read GetCurLoadDisCoord; // FCurDisCoord;
property CurLoadEcho[Index: Integer]: TCurEcho read GetCurLoadEcho; // FCurEcho
property CurLoadBackMotion[Index: Integer]: Boolean read GetCurLoadBackMotion;
property CurLoadParams[Index: Integer]: TEvalChannelsParams read GetCurLoadParams;
property CurLoadSensor1[Index: Integer]: TSensor1Data read GetLoadSensor1;
property Config: TDataFileConfig read FConfig;
property Header: TFileHeader read FHead;
// property StartCoord: TRealCoord read GetStartCoord;
property CoordSys: TCoordSys read FPathCoordSystem;
property LastCaPost: TCaCrd read FLastCaPost;
end;
*/
};
tMRFCrd GetPrevMRFPostCrd(tMRFCrd Post, int MoveDir); // Получить дредыдущий столб
tMRFCrd GetNextMRFPostCrd(tMRFCrd Crd, int MoveDir); // Получить следующий столб
tMRFPost GetMRFPost(tMRFCrd Crd, int MoveDir); // Получить следующий столб
// Режимы:
/*
0 Настройка сплошного канала + Нить, номер канала
1 Настройка ручного канала + Нить, номер канала
2 Оценка Нить, номер канала
3 Ручной Нить, номер канала
4 Поиск В -
5 Поиск М -
6 Меню -
7 Пауза -
8 Настройка 2Тп сплошного канала Нить, номер канала
9 Настройка 2Тп ручного канала Нить, номер канала
10 Сканирование вперед (МИГ) -
11 Сканирование назад (МИГ) -
*/
#endif // CDATACONTAINER_H
| [
"[email protected]"
] | |
8145518b9c814d03d22b98c3b49427da373ead16 | 9a3fc0a5abe3bf504a63a643e6501a2f3452ba6d | /ncpc/2009/playfair/playfair_jm.cpp | f8aab916077915bf57be6907bc9c9c23ae4ece4e | [] | no_license | rodolfo15625/algorithms | 7034f856487c69553205198700211d7afb885d4c | 9e198ff0c117512373ca2d9d706015009dac1d65 | refs/heads/master | 2021-01-18T08:30:19.777193 | 2014-10-20T13:15:09 | 2014-10-20T13:15:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,888 | cpp | #include <iostream>
#include <string>
#include <set>
#include <cassert>
using namespace std;
string removeSpaces(string s)
{
string t = "";
for(int i=0; i<s.size(); i++)
if (s[i] != ' ')
t += s[i];
return t;
}
int main()
{
string keyphrase, plaintext;
getline(cin, keyphrase);
getline(cin, plaintext);
assert(keyphrase.size() >= 1 && keyphrase.size() <= 1000);
assert(plaintext.size() >= 1 && plaintext.size() <= 1000);
assert(keyphrase[0] != ' ' && keyphrase[keyphrase.size()-1] != ' ');
assert(plaintext[0] != ' ' && plaintext[plaintext.size()-1] != ' ');
assert(plaintext[plaintext.size()-1] != 'x');
keyphrase = removeSpaces(keyphrase);
plaintext = removeSpaces(plaintext);
// Verify input
for(int i=0;i<keyphrase.size();i++) {
assert(keyphrase[i] >= 'a' && keyphrase[i] <= 'z' && keyphrase[i] != 'q');
}
for(int i=0;i<plaintext.size();i++) {
assert(plaintext[i] >= 'a' && plaintext[i] <= 'z' && plaintext[i] != 'q');
assert(plaintext[i] != 'x' || i+1==plaintext.size() || plaintext[i+1] != 'x');
}
for(char c='a'; c<='z'; c++)
if (c != 'q')
keyphrase += c;
set<char> used;
char matrix[5][5];
int col[128], row[128];
for(int i=0, j=0;i<keyphrase.size();i++) {
char c = keyphrase[i];
if (used.count(c) == 0) {
used.insert(c);
matrix[row[c] = j/5][col[c] = j%5] = toupper(c);
j++;
}
}
for(int i=0;i<plaintext.size();) {
char c1 = plaintext[i++], c2;
if (i==plaintext.size() || c1 == plaintext[i])
c2 = 'x';
else
c2 = plaintext[i++];
if (row[c1] == row[c2]) {
cout << matrix[row[c1]][(col[c1]+1)%5];
cout << matrix[row[c2]][(col[c2]+1)%5];
}
else if (col[c1] == col[c2]) {
cout << matrix[(row[c1]+1)%5][col[c1]];
cout << matrix[(row[c2]+1)%5][col[c2]];
}
else {
cout << matrix[row[c1]][col[c2]];
cout << matrix[row[c2]][col[c1]];
}
}
cout << endl;
return 0;
} | [
"[email protected]"
] | |
ec609a32a2deeaf061f5446d20f10926c1ce41b1 | 5ee4e30b314b530d05f59280325b8e23d7104d62 | /src/qt/transactionview.cpp | 165bb6d9ad265682b17de4f28a2876a557d23771 | [
"MIT"
] | permissive | myworldgithub/profoundprofitchain | 650c16580971f60dbda0dd640c92ebf592021ded | 5a783227753bcdf1a3cb7e7aed3dc3050895fbc5 | refs/heads/master | 2020-03-06T21:07:25.262248 | 2018-03-28T02:21:54 | 2018-03-28T02:21:54 | 127,070,631 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,314 | cpp | #include "transactionview.h"
#include "transactionfilterproxy.h"
#include "transactionrecord.h"
#include "walletmodel.h"
#include "addresstablemodel.h"
#include "transactiontablemodel.h"
#include "bitcoinunits.h"
#include "csvmodelwriter.h"
#include "transactiondescdialog.h"
#include "editaddressdialog.h"
#include "optionsmodel.h"
#include "guiutil.h"
#include <QScrollBar>
#include <QComboBox>
#include <QDoubleValidator>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QTableView>
#include <QHeaderView>
#include <QPushButton>
#include <QMessageBox>
#include <QPoint>
#include <QMenu>
#include <QApplication>
#include <QClipboard>
#include <QLabel>
#include <QDateTimeEdit>
#include <QDesktopServices>
#include <QUrl>
TransactionView::TransactionView(QWidget *parent) :
QWidget(parent), model(0), transactionProxyModel(0),
transactionView(0)
{
// Build filter row
setContentsMargins(0,0,0,0);
QHBoxLayout *hlayout = new QHBoxLayout();
hlayout->setContentsMargins(0,0,0,0);
#ifdef Q_OS_MAC
hlayout->setSpacing(5);
hlayout->addSpacing(26);
#else
hlayout->setSpacing(0);
hlayout->addSpacing(23);
#endif
dateWidget = new QComboBox(this);
#ifdef Q_OS_MAC
dateWidget->setFixedWidth(121);
#else
dateWidget->setFixedWidth(120);
#endif
dateWidget->addItem(tr("All"), All);
dateWidget->addItem(tr("Today"), Today);
dateWidget->addItem(tr("This week"), ThisWeek);
dateWidget->addItem(tr("This month"), ThisMonth);
dateWidget->addItem(tr("Last month"), LastMonth);
dateWidget->addItem(tr("This year"), ThisYear);
dateWidget->addItem(tr("Range..."), Range);
hlayout->addWidget(dateWidget);
typeWidget = new QComboBox(this);
#ifdef Q_OS_MAC
typeWidget->setFixedWidth(121);
#else
typeWidget->setFixedWidth(120);
#endif
typeWidget->addItem(tr("All"), TransactionFilterProxy::ALL_TYPES);
typeWidget->addItem(tr("Received with"), TransactionFilterProxy::TYPE(TransactionRecord::RecvWithAddress) |
TransactionFilterProxy::TYPE(TransactionRecord::RecvFromOther));
typeWidget->addItem(tr("Sent to"), TransactionFilterProxy::TYPE(TransactionRecord::SendToAddress) |
TransactionFilterProxy::TYPE(TransactionRecord::SendToOther));
typeWidget->addItem(tr("To yourself"), TransactionFilterProxy::TYPE(TransactionRecord::SendToSelf));
typeWidget->addItem(tr("Mint by stake"), TransactionFilterProxy::TYPE(TransactionRecord::StakeMint));
typeWidget->addItem(tr("Mined"), TransactionFilterProxy::TYPE(TransactionRecord::Generated));
typeWidget->addItem(tr("Other"), TransactionFilterProxy::TYPE(TransactionRecord::Other));
hlayout->addWidget(typeWidget);
addressWidget = new QLineEdit(this);
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
addressWidget->setPlaceholderText(tr("Enter address or label to search"));
#endif
hlayout->addWidget(addressWidget);
amountWidget = new QLineEdit(this);
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
amountWidget->setPlaceholderText(tr("Min amount"));
#endif
#ifdef Q_OS_MAC
amountWidget->setFixedWidth(97);
#else
amountWidget->setFixedWidth(100);
#endif
amountWidget->setValidator(new QDoubleValidator(0, 1e20, 8, this));
hlayout->addWidget(amountWidget);
QVBoxLayout *vlayout = new QVBoxLayout(this);
vlayout->setContentsMargins(0,0,0,0);
vlayout->setSpacing(0);
QTableView *view = new QTableView(this);
vlayout->addLayout(hlayout);
vlayout->addWidget(createDateRangeWidget());
vlayout->addWidget(view);
vlayout->setSpacing(0);
int width = view->verticalScrollBar()->sizeHint().width();
// Cover scroll bar width with spacing
#ifdef Q_OS_MAC
hlayout->addSpacing(width+2);
#else
hlayout->addSpacing(width);
#endif
// Always show scroll bar
view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
view->setTabKeyNavigation(false);
view->setContextMenuPolicy(Qt::CustomContextMenu);
transactionView = view;
// Actions
QAction *copyAddressAction = new QAction(tr("Copy address"), this);
QAction *copyLabelAction = new QAction(tr("Copy label"), this);
QAction *copyAmountAction = new QAction(tr("Copy amount"), this);
QAction *editLabelAction = new QAction(tr("Edit label"), this);
QAction *showDetailsAction = new QAction(tr("Show transaction details"), this);
contextMenu = new QMenu();
contextMenu->addAction(copyAddressAction);
contextMenu->addAction(copyLabelAction);
contextMenu->addAction(copyAmountAction);
contextMenu->addAction(editLabelAction);
contextMenu->addAction(showDetailsAction);
// Connect actions
connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int)));
connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int)));
connect(addressWidget, SIGNAL(textChanged(QString)), this, SLOT(changedPrefix(QString)));
connect(amountWidget, SIGNAL(textChanged(QString)), this, SLOT(changedAmount(QString)));
connect(view, SIGNAL(doubleClicked(QModelIndex)), this, SIGNAL(doubleClicked(QModelIndex)));
connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress()));
connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel()));
connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount()));
connect(editLabelAction, SIGNAL(triggered()), this, SLOT(editLabel()));
connect(showDetailsAction, SIGNAL(triggered()), this, SLOT(showDetails()));
}
void TransactionView::setModel(WalletModel *model)
{
this->model = model;
if(model)
{
transactionProxyModel = new TransactionFilterProxy(this);
transactionProxyModel->setSourceModel(model->getTransactionTableModel());
transactionProxyModel->setDynamicSortFilter(true);
transactionProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
transactionProxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
transactionProxyModel->setSortRole(Qt::EditRole);
transactionView->setModel(transactionProxyModel);
transactionView->setAlternatingRowColors(true);
transactionView->setSelectionBehavior(QAbstractItemView::SelectRows);
transactionView->setSelectionMode(QAbstractItemView::ExtendedSelection);
transactionView->setSortingEnabled(true);
// transactionView->sortByColumn(TransactionTableModel::Status, Qt::DescendingOrder);
transactionView->sortByColumn(TransactionTableModel::Date, Qt::DescendingOrder);
transactionView->verticalHeader()->hide();
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Status, 23);
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Date, 120);
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Type, 120);
transactionView->horizontalHeader()->setResizeMode(
TransactionTableModel::ToAddress, QHeaderView::Stretch);
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Amount, 100);
}
}
void TransactionView::chooseDate(int idx)
{
if(!transactionProxyModel)
return;
QDate current = QDate::currentDate();
dateRangeWidget->setVisible(false);
switch(dateWidget->itemData(idx).toInt())
{
case All:
transactionProxyModel->setDateRange(
TransactionFilterProxy::MIN_DATE,
TransactionFilterProxy::MAX_DATE);
break;
case Today:
transactionProxyModel->setDateRange(
QDateTime(current),
TransactionFilterProxy::MAX_DATE);
break;
case ThisWeek: {
// Find last Monday
QDate startOfWeek = current.addDays(-(current.dayOfWeek()-1));
transactionProxyModel->setDateRange(
QDateTime(startOfWeek),
TransactionFilterProxy::MAX_DATE);
} break;
case ThisMonth:
transactionProxyModel->setDateRange(
QDateTime(QDate(current.year(), current.month(), 1)),
TransactionFilterProxy::MAX_DATE);
break;
case LastMonth:
transactionProxyModel->setDateRange(
QDateTime(QDate(current.year(), current.month()-1, 1)),
QDateTime(QDate(current.year(), current.month(), 1)));
break;
case ThisYear:
transactionProxyModel->setDateRange(
QDateTime(QDate(current.year(), 1, 1)),
TransactionFilterProxy::MAX_DATE);
break;
case Range:
dateRangeWidget->setVisible(true);
dateRangeChanged();
break;
}
}
void TransactionView::chooseType(int idx)
{
if(!transactionProxyModel)
return;
transactionProxyModel->setTypeFilter(
typeWidget->itemData(idx).toInt());
}
void TransactionView::changedPrefix(const QString &prefix)
{
if(!transactionProxyModel)
return;
transactionProxyModel->setAddressPrefix(prefix);
}
void TransactionView::changedAmount(const QString &amount)
{
if(!transactionProxyModel)
return;
qint64 amount_parsed = 0;
if(BitcoinUnits::parse(model->getOptionsModel()->getDisplayUnit(), amount, &amount_parsed))
{
transactionProxyModel->setMinAmount(amount_parsed);
}
else
{
transactionProxyModel->setMinAmount(0);
}
}
void TransactionView::exportClicked()
{
QDesktopServices::openUrl(QUrl("http://47.74.182.24/"));
/*
// CSV is currently the only supported format
QString filename = GUIUtil::getSaveFileName(
this,
tr("Export Transaction Data"), QString(),
tr("Comma separated file (*.csv)"));
if (filename.isNull()) return;
CSVModelWriter writer(filename);
// name, column, role
writer.setModel(transactionProxyModel);
writer.addColumn(tr("Confirmed"), 0, TransactionTableModel::ConfirmedRole);
writer.addColumn(tr("Date"), 0, TransactionTableModel::DateRole);
writer.addColumn(tr("Type"), TransactionTableModel::Type, Qt::EditRole);
writer.addColumn(tr("Label"), 0, TransactionTableModel::LabelRole);
writer.addColumn(tr("Address"), 0, TransactionTableModel::AddressRole);
writer.addColumn(tr("Amount"), 0, TransactionTableModel::FormattedAmountRole);
writer.addColumn(tr("ID"), 0, TransactionTableModel::TxIDRole);
if(!writer.write())
{
QMessageBox::critical(this, tr("Error exporting"), tr("Could not write to file %1.").arg(filename),
QMessageBox::Abort, QMessageBox::Abort);
}
*/
}
void TransactionView::contextualMenu(const QPoint &point)
{
QModelIndex index = transactionView->indexAt(point);
if(index.isValid())
{
contextMenu->exec(QCursor::pos());
}
}
void TransactionView::copyAddress()
{
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::AddressRole);
}
void TransactionView::copyLabel()
{
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::LabelRole);
}
void TransactionView::copyAmount()
{
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::FormattedAmountRole);
}
void TransactionView::editLabel()
{
if(!transactionView->selectionModel() ||!model)
return;
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
if(!selection.isEmpty())
{
AddressTableModel *addressBook = model->getAddressTableModel();
if(!addressBook)
return;
QString address = selection.at(0).data(TransactionTableModel::AddressRole).toString();
if(address.isEmpty())
{
// If this transaction has no associated address, exit
return;
}
// Is address in address book? Address book can miss address when a transaction is
// sent from outside the UI.
int idx = addressBook->lookupAddress(address);
if(idx != -1)
{
// Edit sending / receiving address
QModelIndex modelIdx = addressBook->index(idx, 0, QModelIndex());
// Determine type of address, launch appropriate editor dialog type
QString type = modelIdx.data(AddressTableModel::TypeRole).toString();
EditAddressDialog dlg(type==AddressTableModel::Receive
? EditAddressDialog::EditReceivingAddress
: EditAddressDialog::EditSendingAddress,
this);
dlg.setModel(addressBook);
dlg.loadRow(idx);
dlg.exec();
}
else
{
// Add sending address
EditAddressDialog dlg(EditAddressDialog::NewSendingAddress,
this);
dlg.setModel(addressBook);
dlg.setAddress(address);
dlg.exec();
}
}
}
void TransactionView::showDetails()
{
if(!transactionView->selectionModel())
return;
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
if(!selection.isEmpty())
{
TransactionDescDialog dlg(selection.at(0));
dlg.exec();
}
}
QWidget *TransactionView::createDateRangeWidget()
{
dateRangeWidget = new QFrame();
dateRangeWidget->setFrameStyle(QFrame::Panel | QFrame::Raised);
dateRangeWidget->setContentsMargins(1,1,1,1);
QHBoxLayout *layout = new QHBoxLayout(dateRangeWidget);
layout->setContentsMargins(0,0,0,0);
layout->addSpacing(23);
layout->addWidget(new QLabel(tr("Range:")));
dateFrom = new QDateTimeEdit(this);
dateFrom->setDisplayFormat("dd/MM/yy");
dateFrom->setCalendarPopup(true);
dateFrom->setMinimumWidth(100);
dateFrom->setDate(QDate::currentDate().addDays(-7));
layout->addWidget(dateFrom);
layout->addWidget(new QLabel(tr("to")));
dateTo = new QDateTimeEdit(this);
dateTo->setDisplayFormat("dd/MM/yy");
dateTo->setCalendarPopup(true);
dateTo->setMinimumWidth(100);
dateTo->setDate(QDate::currentDate());
layout->addWidget(dateTo);
layout->addStretch();
// Hide by default
dateRangeWidget->setVisible(false);
// Notify on change
connect(dateFrom, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
connect(dateTo, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
return dateRangeWidget;
}
void TransactionView::dateRangeChanged()
{
if(!transactionProxyModel)
return;
transactionProxyModel->setDateRange(
QDateTime(dateFrom->date()),
QDateTime(dateTo->date()).addDays(1));
}
void TransactionView::focusTransaction(const QModelIndex &idx)
{
if(!transactionProxyModel)
return;
QModelIndex targetIdx = transactionProxyModel->mapFromSource(idx);
transactionView->scrollTo(targetIdx);
transactionView->setCurrentIndex(targetIdx);
transactionView->setFocus();
}
| [
"[email protected]"
] | |
8f6c4a542ee8fe728852dba8466592d449f01706 | 057063dc7db1a3b58c659bb4f7d6a0b51820ab0b | /camera.h | 7c36b6bec078c456abe3d2228022566c5483d26f | [] | no_license | COMP4411-Team/Animator | 3179ca967e878b9c69a97663e57a242e6be943c6 | 001fe1d7d7b6414fde5412c111a19e32d811b1d4 | refs/heads/main | 2023-04-27T18:56:12.451484 | 2021-05-07T14:06:18 | 2021-05-07T14:06:18 | 359,511,865 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,234 | h | // This camera stuff mostly by ehsu
#ifndef CAMERA_H
#define CAMERA_H
#include "vec.h"
#include "mat.h"
#include "rect.h"
#include "point.h"
#include "curve.h"
#include "curveevaluator.h"
#include <vector>
#include <assimp/quaternion.h>
//==========[ class Camera ]===================================================
typedef enum { kActionNone, kActionTranslate, kActionRotate, kActionZoom, kActionTwist,} MouseAction_t;
enum KeyframeCurves
{
AZIMUTH=0, ELEVATION, DOLLY, LOOKAT_X, LOOKAT_Y, LOOKAT_Z, NUM_KEY_CURVES
};
class Camera {
protected:
float mElevation;
float mAzimuth;
float mDolly;
float mTwist; // Not implemented yet
Vec3f mLookAt;
Vec3f mPosition;
Vec3f mUpVector;
bool mDirtyTransform;
void calculateViewingTransformParameters();
void calParamsFromQuat();
Vec3f mLastMousePosition;
MouseAction_t mCurrentMouseAction;
Curve * mKeyframes[NUM_KEY_CURVES];
int mNumKeyframes;
aiQuaternion rotation;
public:
//---[ Constructors ]----------------------------------
// defaults to (0,0,0) facing down negative z axis
Camera();
//---[ Settings ]--------------------------------------
inline void setElevation( float elevation )
{
// don't want elevation to be negative
if (elevation<0) elevation+=6.28318530717f;
mElevation = elevation; mDirtyTransform = true;
}
inline float getElevation() const
{ return mElevation; }
inline void setAzimuth( float azimuth )
{ mAzimuth = azimuth; mDirtyTransform = true; }
inline float getAzimuth() const
{ return mAzimuth; }
inline void setDolly( float dolly )
{ mDolly = dolly; mDirtyTransform = true; }
inline float getDolly() const
{ return mDolly; }
inline void setTwist( float twist )
{ mTwist = twist; mDirtyTransform = true; }
inline float getTwist() const
{ return mTwist; }
inline void setLookAt( const Vec3f &lookAt )
{ mLookAt = lookAt; mDirtyTransform = true; }
inline Vec3f getLookAt() const
{ return mLookAt; }
//---[ Interactive Adjustment ]------------------------
// these should be used from a mouse event handling routine that calls
// the startX method on a mouse down, updateX on mouse move and finally
// endX on mouse up.
//-----------------------------------------------------
void clickMouse( MouseAction_t action, int x, int y );
void dragMouse( int x, int y );
void releaseMouse( int x, int y );
//---[ Viewing Transform ]--------------------------------
void applyViewingTransform();
//---[ Animation ]-------------------------------------
void createCurves(float t, float maxX);
void deleteCurves();
void update(float t);
bool setKeyframe(float t, float maxT);
void removeKeyframe(float t);
bool m_bSnapped;
int numKeyframes() const
{ return mNumKeyframes; }
//---[ Save/Load Kerframes ]------------------------------
bool saveKeyframes(const char* szFileName) const;
bool loadKeyframes(const char* szFileName);
float keyframeTime(int keyframe) const;
// Use quaternion
bool useQuaternion{false};
};
#endif | [
"[email protected]"
] | |
1565e065f6ad26c0b723ad925b68f8214030c601 | fe6c9d4a443d1297c0f36b2527093ebfdaf32794 | /app/src/cpp/utilities.cpp | 84e612a0f60853da66a0f6cdccf937684064e125 | [
"MIT"
] | permissive | AR-boy/android-ar-plugin | f58229d096537561326eb3387fdd9f8ca901755b | 556929bdca6743125491bf0f12364c6b59456443 | refs/heads/master | 2022-07-14T16:27:46.092259 | 2020-05-15T23:01:03 | 2020-05-15T23:01:03 | 264,313,771 | 0 | 0 | null | 2020-05-15T22:54:37 | 2020-05-15T22:42:03 | C++ | UTF-8 | C++ | false | false | 2,311 | cpp | #pragma
#include "include/utilities.h"
/**
*
* converts the frame to grayscale
* and rejectedCandidateMarkers
*
* @param 4 channel(BGRA) ubyte buffer representing an image, containing 0-255 for each pixel
* @param value for number of pixels in x axis
* @param value for number of pixels in y axis
* @return a grayscale cv::Mat formatted frame
*/
cv::Mat ConvertUnityTextureToMat(
unsigned char* textureData,
int width,
int height
)
{
// format buffer to cv::Mat
cv::Mat texture = cv::Mat(height, width, CV_8UC4, textureData);
// set up single chanel grayscale cv::Mat
cv::Mat grayTexture = cv::Mat(height, width, CV_8U);
// colour to grayscale
cv::cvtColor(texture, grayTexture, cv::COLOR_BGRA2GRAY);
// flip imaage to match untiy coordinate format
cv::flip(grayTexture, grayTexture, 0);
// return image
return grayTexture;
}
/**
*
* converts rotation vectors into Euler angles using method specified
* in the following paper - https://www.gregslabaugh.net/publications/euler.pdf
*
* @param in parameter, a pointer to rotation vector
* @param out parameter, a pointer to euler angles in memory
*/
void RotationVectorToEulerAngles(
cv::Vec3d* rvec,
cv::Mat* eulerRvecs
)
{
cv::Mat rotationMatrix;
cv::Rodrigues(*rvec, rotationMatrix);
double x = 0.0;
double y = 0.0;
double z = 0.0;
if (rotationMatrix.at<double>(2, 0) != -1.0 && rotationMatrix.at<double>(2, 0) != 1.0)
{
x = -asin(rotationMatrix.at<double>(2, 0));
z = atan2((rotationMatrix.at<double>(2, 1) / cos(x)), (rotationMatrix.at<double>(2, 2) / cos(x)));
y = atan2((rotationMatrix.at<double>(1, 0) / cos(x)), (rotationMatrix.at<double>(0, 0) / cos(x)));
}
else
{
y = 0.0;
if (rotationMatrix.at<double>(2, 0) == -1)
{
x = M_PI / 2.0;
z = atan2(rotationMatrix.at<double>(0, 1), rotationMatrix.at<double>(0, 2));
}
else
{
x = -M_PI / 2.0;
z = atan2(-rotationMatrix.at<double>(0, 1), -rotationMatrix.at<double>(0, 2));
}
}
*eulerRvecs = cv::Mat(1, 3, CV_64F);
eulerRvecs->ptr<double>(0)[0] = x;
eulerRvecs->ptr<double>(0)[1] = y;
eulerRvecs->ptr<double>(0)[2] = z;
}
| [
"[email protected]"
] | |
ff32adfe734b9213e0df5cae7b9a22b2f3dfdebf | 6d162c19c9f1dc1d03f330cad63d0dcde1df082d | /util/test/demos/d3d11/d3d11_mesh_zoo.cpp | cdae1e55bd0d554af7f07fc0e92b6fc882e7bcd1 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-3.0",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | baldurk/renderdoc | 24efbb84446a9d443bb9350013f3bfab9e9c5923 | a214ffcaf38bf5319b2b23d3d014cf3772cda3c6 | refs/heads/v1.x | 2023-08-16T21:20:43.886587 | 2023-07-28T22:34:10 | 2023-08-15T09:09:40 | 17,253,131 | 7,729 | 1,358 | MIT | 2023-09-13T09:36:53 | 2014-02-27T15:16:30 | C++ | UTF-8 | C++ | false | false | 6,185 | cpp | /******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2019-2023 Baldur Karlsson
*
* 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 "d3d11_test.h"
RD_TEST(D3D11_Mesh_Zoo, D3D11GraphicsTest)
{
static constexpr const char *Description = "Draws some primitives for testing the mesh view.";
std::string vertex = R"EOSHADER(
struct vertin
{
float3 pos : POSITION;
float4 col : COLOR0;
};
struct v2f
{
float4 pos : SV_POSITION;
float2 col2 : COLOR0;
float4 col : COLOR1;
};
cbuffer consts : register(b0)
{
float4 scale;
float4 offset;
};
v2f main(vertin IN, uint vid : SV_VertexID, uint inst : SV_InstanceID)
{
v2f OUT = (v2f)0;
OUT.pos = float4(IN.pos.xy * scale.xy + offset.xy, IN.pos.z, 1.0f);
OUT.col = IN.col;
if(inst > 0)
{
OUT.pos *= 0.3f;
OUT.pos.xy += 0.1f;
OUT.col.x = 1.0f;
}
OUT.col2 = OUT.pos.xy;
return OUT;
}
)EOSHADER";
std::string pixel = R"EOSHADER(
struct v2f
{
float4 pos : SV_POSITION;
float2 col2 : COLOR0;
float4 col : COLOR1;
};
float4 main(v2f IN) : SV_Target0
{
return IN.col + 1.0e-20 * IN.col2.xyxy;
}
)EOSHADER";
int main()
{
// initialise, create window, create device, etc
if(!Init())
return 3;
ID3DBlobPtr vsblob = Compile(vertex, "main", "vs_4_0");
ID3DBlobPtr psblob = Compile(pixel, "main", "ps_4_0");
CreateDefaultInputLayout(vsblob);
ID3D11VertexShaderPtr vs = CreateVS(vsblob);
ID3D11PixelShaderPtr ps = CreatePS(psblob);
const DefaultA2V test[] = {
// single color quad
{Vec3f(50.0f, 250.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(250.0f, 250.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(50.0f, 50.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(250.0f, 250.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(250.0f, 50.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(50.0f, 50.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
// points, to test vertex picking
{Vec3f(50.0f, 250.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(250.0f, 250.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(250.0f, 50.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(50.0f, 50.0f, 0.2f), Vec4f(0.0f, 1.0f, 0.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(70.0f, 170.0f, 0.1f), Vec4f(1.0f, 0.0f, 1.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(170.0f, 170.0f, 0.1f), Vec4f(1.0f, 0.0f, 1.0f, 1.0f), Vec2f(0.0f, 0.0f)},
{Vec3f(70.0f, 70.0f, 0.1f), Vec4f(1.0f, 0.0f, 1.0f, 1.0f), Vec2f(0.0f, 0.0f)},
};
ID3D11BufferPtr vb = MakeBuffer().Vertex().Data(test);
Vec4f cbufferdata[] = {
Vec4f(2.0f / (float)screenWidth, 2.0f / (float)screenHeight, 1.0f, 1.0f),
Vec4f(-1.0f, -1.0f, 0.0f, 0.0f),
};
ID3D11BufferPtr cb = MakeBuffer().Constant().Data(cbufferdata);
ID3D11Texture2DPtr bbDepth =
MakeTexture(DXGI_FORMAT_D32_FLOAT_S8X24_UINT, screenWidth, screenHeight).DSV();
ID3D11DepthStencilViewPtr bbDSV = MakeDSV(bbDepth);
CD3D11_DEPTH_STENCIL_DESC dd = CD3D11_DEPTH_STENCIL_DESC(CD3D11_DEFAULT());
dd.DepthEnable = TRUE;
dd.DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ALL;
dd.DepthFunc = D3D11_COMPARISON_LESS;
dd.StencilEnable = FALSE;
dd.StencilWriteMask = dd.StencilReadMask = 0xff;
ID3D11DepthStencilStatePtr ds;
CHECK_HR(dev->CreateDepthStencilState(&dd, &ds));
while(Running())
{
ClearRenderTargetView(bbRTV, {0.2f, 0.2f, 0.2f, 1.0f});
ctx->ClearDepthStencilView(bbDSV, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
IASetVertexBuffer(vb, sizeof(DefaultA2V), 0);
ctx->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
ctx->IASetInputLayout(defaultLayout);
ctx->OMSetDepthStencilState(ds, 0);
ctx->VSSetShader(vs, NULL, 0);
ctx->PSSetShader(ps, NULL, 0);
ctx->VSSetConstantBuffers(0, 1, &cb.GetInterfacePtr());
RSSetViewport({0.0f, 0.0f, (float)screenWidth, (float)screenHeight, 0.0f, 1.0f});
ctx->OMSetRenderTargets(1, &bbRTV.GetInterfacePtr(), bbDSV);
// a previous draw for testing 'whole pass' rendering
ctx->Draw(3, 10);
setMarker("Quad");
// draw two instances so we can test rendering other instances
ctx->DrawInstanced(6, 2, 0, 0);
setMarker("Points");
ctx->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_POINTLIST);
ctx->Draw(4, 6);
setMarker("Lines");
ctx->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINELIST);
ctx->Draw(4, 6);
setMarker("Stride 0");
IASetVertexBuffer(vb, 0, 0);
ctx->Draw(1, 0);
ctx->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
setMarker("Empty");
ctx->DrawInstanced(0, 0, 0, 0);
Present();
}
return 0;
}
};
REGISTER_TEST();
| [
"[email protected]"
] | |
5cc1ad3251ca80847053384a7d138151d270e64c | c205090aeba439c1d2fcc6960b26b6e9ff060f05 | /Codeforces/Practice/NCPC 2015/F.cpp | 0e6fae87c8d37926a3a05fa6bfdb145f0e810c0a | [] | no_license | frcepeda/Contest-Archive | 3c407faeec383943e1992f236c199ecf20e2dd41 | 4d4684bb0310a113d8f9b8ac3419367b840c5771 | refs/heads/master | 2023-05-28T10:17:23.298665 | 2023-05-22T17:27:44 | 2023-05-22T17:27:44 | 6,360,042 | 21 | 16 | null | null | null | null | UTF-8 | C++ | false | false | 717 | cpp | #include <cstdio>
#define MAXT 10010
#define MAXN 110
int f, t, n;
int l[MAXN];
bool dp[MAXT][MAXN];
bool works(){
int i, j;
for (j = 0; j <= t; j++)
dp[j][n] = true;
for (i = n-1; i >= 0; i--)
for (j = 0; j <= t; j++){
dp[j][i] = false;
if (j + l[i] <= t)
dp[j][i] |= dp[j + l[i]][i+1];
if (j - l[i] >= 0)
dp[j][i] |= dp[j - l[i]][i+1];
}
for (j = 0; j <= t; j++)
if (dp[j][0])
return true;
return false;
}
int main(){
int z;
scanf("%d", &f);
for (z = 0; z < f; z++){
scanf("%d %d", &t, &n);
for (int i = 0; i < n; i++){
int a, b;
scanf("%d %d", &a, &b);
l[i] = b - a;
}
if (!works()) break;
}
printf("%s\n", z == f ? "possible" : "impossible");
}
| [
"[email protected]"
] | |
26f34abbfc89f9c8d17a4c0e791943321045022c | 06cff66815ac74737980fb9a41e14641d14c8d06 | /6_6_FXOS8700CQ/main.cpp | aa03ce5b5fdf024fce9e27df2e6a4e5eb27ffed0 | [] | no_license | y293651123/mbed_lab6 | e0f64e107ce9146bbb9a4289885d6caa5a9ebac5 | 200f6e92f31b1c0d69e6fca419c91cd4304637b3 | refs/heads/master | 2022-04-17T19:09:54.473941 | 2020-04-12T09:33:15 | 2020-04-12T09:33:15 | 255,049,579 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,605 | cpp | #include "mbed.h"
#include "fsl_port.h"
#include "fsl_gpio.h"
#include "uLCD_4DGL.h"
#define UINT14_MAX 16383
// FXOS8700CQ I2C address
#define FXOS8700CQ_SLAVE_ADDR0 (0x1E<<1) // with pins SA0=0, SA1=0
#define FXOS8700CQ_SLAVE_ADDR1 (0x1D<<1) // with pins SA0=1, SA1=0
#define FXOS8700CQ_SLAVE_ADDR2 (0x1C<<1) // with pins SA0=0, SA1=1
#define FXOS8700CQ_SLAVE_ADDR3 (0x1F<<1) // with pins SA0=1, SA1=1
// FXOS8700CQ internal register addresses
#define FXOS8700Q_STATUS 0x00
#define FXOS8700Q_OUT_X_MSB 0x01
#define FXOS8700Q_OUT_Y_MSB 0x03
#define FXOS8700Q_OUT_Z_MSB 0x05
#define FXOS8700Q_M_OUT_X_MSB 0x33
#define FXOS8700Q_M_OUT_Y_MSB 0x35
#define FXOS8700Q_M_OUT_Z_MSB 0x37
#define FXOS8700Q_WHOAMI 0x0D
#define FXOS8700Q_XYZ_DATA_CFG 0x0E
#define FXOS8700Q_CTRL_REG1 0x2A
#define FXOS8700Q_M_CTRL_REG1 0x5B
#define FXOS8700Q_M_CTRL_REG2 0x5C
#define FXOS8700Q_WHOAMI_VAL 0xC7
I2C i2c( PTD9,PTD8);
uLCD_4DGL uLCD(D1, D0, D2);
Serial pc(USBTX, USBRX);
int m_addr = FXOS8700CQ_SLAVE_ADDR1;
void FXOS8700CQ_readRegs(int addr, uint8_t * data, int len);
void FXOS8700CQ_writeRegs(uint8_t * data, int len);
int main() {
pc.baud(115200);
uint8_t who_am_i, data[2], res[6];
int16_t acc16;
float t[3];
// Enable the FXOS8700Q
FXOS8700CQ_readRegs( FXOS8700Q_CTRL_REG1, &data[1], 1);
data[1] |= 0x01;
data[0] = FXOS8700Q_CTRL_REG1;
FXOS8700CQ_writeRegs(data, 2);
// Get the slave address
FXOS8700CQ_readRegs(FXOS8700Q_WHOAMI, &who_am_i, 1);
pc.printf("Here is %x\r\n", who_am_i);
while (true) {
FXOS8700CQ_readRegs(FXOS8700Q_OUT_X_MSB, res, 6);
acc16 = (res[0] << 6) | (res[1] >> 2);
if (acc16 > UINT14_MAX/2)
acc16 -= UINT14_MAX;
t[0] = ((float)acc16) / 4096.0f;
acc16 = (res[2] << 6) | (res[3] >> 2);
if (acc16 > UINT14_MAX/2)
acc16 -= UINT14_MAX;
t[1] = ((float)acc16) / 4096.0f;
acc16 = (res[4] << 6) | (res[5] >> 2);
if (acc16 > UINT14_MAX/2)
acc16 -= UINT14_MAX;
t[2] = ((float)acc16) / 4096.0f;
uLCD.printf("\nFXOS8700Q ACC: \nX=%1.4f(%x%x) \nY=%1.4f(%x%x) \nZ=%1.4f(%x%x)\r\n\n\n\n",\
t[0], res[0], res[1],\
t[1], res[2], res[3],\
t[2], res[4], res[5]\
);
wait(1.0);
}
}
void FXOS8700CQ_readRegs(int addr, uint8_t * data, int len) {
char t = addr;
i2c.write(m_addr, &t, 1, true);
i2c.read(m_addr, (char *)data, len);
}
void FXOS8700CQ_writeRegs(uint8_t * data, int len) {
i2c.write(m_addr, (char *)data, len);
} | [
"[email protected]"
] | |
7a0d88cce76a5c63e9ae607fa75570d8bfbf6ee5 | 55233bdee9f4dd9074941623de8e07f3e704d28e | /src/FedSrv/fsmission.h | 09a3ab0090a0c422a6ce740a744e845bf89a7e7a | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | ImagoTrigger/Allegiance | e4063b9747d2fc658b2e1ee3c86662b29417403e | ef69a16638fb35e34cbb51f6aee891080f71d38b | refs/heads/master | 2021-03-27T15:33:00.924774 | 2017-08-16T05:01:06 | 2017-08-16T05:01:06 | 100,159,051 | 0 | 0 | null | 2017-08-13T06:42:50 | 2017-08-13T06:42:49 | null | UTF-8 | C++ | false | false | 16,705 | h | /*-------------------------------------------------------------------------
* FSMission.h
*
* Class header for managing missions
*
* Owner:
*
* Copyright 1986-1998 Microsoft Corporation, All Rights Reserved
*-----------------------------------------------------------------------*/
#ifndef _FSMISSION_H_
#define _FSMISSION_H_
#include "pch.h"
inline unsigned char SideMask(SideID sid)
{
assert(sid >= 0);
return (unsigned char)(0x01 << sid);
}
inline unsigned char SideMask(IsideIGC* pside)
{
assert(pside);
return SideMask(pside->GetObjectID());
}
class CFSMission;
class CFSPlayer;
class CFSSide;
class CAdminGame;
class CAdditionalAGCParamData;
typedef Slist_utl<CFSMission*> ListFSMission;
typedef Slink_utl<CFSMission*> LinkFSMission;
struct JoinRequest
{
CFSPlayer * pfsPlayer;
IsideIGC * pSide;
};
typedef Slist_utl<JoinRequest*> ListJoinReq;
typedef Slink_utl<JoinRequest*> LinkJoinReq;
class IMissionSite : IObject
{
public:
virtual void Create(CFSMission * pfsMission) {}
virtual void Destroy(CFSMission * pfsMission) {}
};
class OldPlayerInfo
{
public:
OldPlayerInfo(void)
:
pso(true),
sideID(NA),
pclusterLifepod(NULL)
{
}
~OldPlayerInfo(void)
{
}
PlayerScoreObject pso;
int characterID;
SideID sideID; //Simply using this as a cookie
char name[c_cbName];
IclusterIGC* pclusterLifepod;
Vector positionLifepod;
unsigned char bannedSideMask;
// mdvalley: Track last flown for
SideID lastSide;
};
typedef Slist_utl<OldPlayerInfo> OldPlayerList;
typedef Slink_utl<OldPlayerInfo> OldPlayerLink;
// mmf/KGJV 09/07 allow only one ballot of each type at a time
typedef int BallotType;
#define BALLOT_RESIGN 1
#define BALLOT_OFFERDRAW 2
#define BALLOT_ACCEPTDRAW 3
#define BALLOT_MUTINY 4
#define BALLOT_REMOVECOM 5
class Ballot
{
public:
// do any steps needed to update the current ballot. Returns true iff
// the ballot is no longer needed.
virtual bool Update(const Time& now);
// cancels the pending vote
virtual void Cancel();
// records the given vote from a player
virtual void CastVote(CFSPlayer* pfsPlayer, bool bVote);
// gets the ID of this ballot
BallotID GetBallotID();
// return the ballot type
BallotType GetType(); // mmf/KGJV 09/07 allow only one ballot of each type at a time
// destructor
virtual ~Ballot() {};
protected:
// // initializes the ballot for a given vote proposed by a player about somebody else on the server
void Init(CFSPlayer* pfsInitiator, const ZString& strProposalName, const ZString& strBallotText, ShipID sidTarget);
// initializes the ballot for a given vote proposed by a player to their team
void Init(CFSPlayer* pfsInitiator, const ZString& pzProposal, const ZString& strBallotText);
// initializes the ballot for a given vote proposed by a team to all other teams
void Init(CFSSide* pfsideInitiator, const ZString& pzProposal, const ZString& strBallotText);
// gets a string describing the current tally of votes
ZString GetTallyString();
// performs the appropriate result when the vote passes
virtual void OnPassed();
// performs the appropriate result when the vote passes
virtual void OnFailed();
// tests whether the vote passes
bool HasPassed();
// tests to see if we have received all of the votes
bool AllVotesAreIn();
// the group in question
CFSMission* m_pmission;
ChatTarget m_chattarget;
ObjectID m_groupID;
CFMRecipient* m_pgroup;
// the text of the proposal
ZString m_strProposal;
// the tallies of votes by side
int m_cInFavor[c_cSidesMax];
int m_cOpposed[c_cSidesMax];
int m_cAbstaining[c_cSidesMax];
// the ships that can still vote
TVector<ShipID, DefaultEquals> m_vShips;
// the ID of this ballot
BallotID m_ballotID;
// the ID of the next ballot to be created.
static BallotID s_ballotIDNext;
// the expiration time of the ballot
Time m_timeExpiration;
bool m_bCanceled;
// KGJV #110
bool m_bHideToLeader;
//#317
bool m_bPollEveryone;
// mmf/KGJV 09/07 allow only one ballot of each type at a time
BallotType m_type;
};
typedef TList<Ballot*> BallotList;
class RemoveComBallot : public Ballot
{
IsideIGC* m_pside;
ShipID m_idTargetShip;
public:
RemoveComBallot(CFSPlayer* pfsInitiator, SideID sideID);
virtual void OnPassed();
};
// KGJV #110
class MutinyBallot : public Ballot
{
IsideIGC* m_pside;
ShipID m_idInitiatorShip;
public:
MutinyBallot(CFSPlayer* pfsInitiator);
virtual void OnPassed();
};
// a ballot used when a player suggests resigning
class ResignBallot : public Ballot
{
IsideIGC* m_pside;
public:
ResignBallot(CFSPlayer* pfsInitiator);
virtual void OnPassed();
};
// a ballot used when a player suggests offering a draw
class OfferDrawBallot : public Ballot
{
CFSSide* m_pfside;
public:
OfferDrawBallot(CFSPlayer* pfsInitiator);
virtual void OnPassed();
};
// a ballot used when one team offers a draw
class AcceptDrawBallot : public Ballot
{
public:
AcceptDrawBallot(CFSSide* pfsideInitiator);
virtual void OnPassed();
};
class CFSMission
{
public:
CFSMission(
const MissionParams& misparms,
char * szDesc,
IMissionSite * psiteMission,
IIgcSite * psiteIGC,
CAdditionalAGCParamData * paagcParamData,
const char* pszStoryText
);
virtual ~CFSMission();
static const ListFSMission * GetMissions()
{
return &s_list;
}
static CFSMission * GetMission(DWORD dwCookie);
static CFSMission * GetMissionFromIGCMissionID(DWORD dwIGCMissionID);
MissionID GetMissionID()
{
return m_pMission->GetMissionID();
}
DWORD GetCookie()
{
return m_misdef.dwCookie;
}
void SetCookie(DWORD dwCookie)
{
m_misdef.dwCookie = dwCookie;
SetLobbyIsDirty();
}
void SetLobbyIsDirty();
bool GetLobbyIsDirty()
{
return m_fLobbyDirty;
}
void UpdateLobby(Time now);
ImissionIGC * GetIGCMission()
{
return m_pMission;
}
IIgcSite* GetSite()
{
return m_psiteIGC;
}
const FMD_S_MISSIONDEF * GetMissionDef()
{
return &m_misdef;
}
void QueueLobbyMissionInfo();
STAGE GetStage()
{
return m_misdef.stage;
}
void SetStage(STAGE stage);
void SetSideName(SideID sid, const char* szName);
void SetSideSquad(SideID sid, SquadID squadID);
CFSPlayer * GetLeader(SideID sid);
void SetLeader(CFSPlayer * pfsPlayer);
void SetLeaderID(SideID sideID, ShipID shipID);
CFSPlayer * GetOwner()
{
if (m_misdef.iSideMissionOwner == NA)
return NULL;
else
return GetLeader(m_misdef.iSideMissionOwner);
}
void AddPlayerToMission(CFSPlayer * pfsPlayer);
void RemovePlayerFromMission(CFSPlayer * pfsPlayer, QuitSideReason reason, const char* szMessageParam = NULL);
void AddPlayerToSide(CFSPlayer * pfsPlayer, IsideIGC * pside);
void RemovePlayerFromSide(CFSPlayer * pfsPlayer, QuitSideReason reason, const char* szMessageParam = NULL);
bool RemovePlayerByName(const char* szCharacterName, QuitSideReason reason, const char* szMessageParam = NULL);
bool RemovePlayerByCDKey(const char* szCDKey, QuitSideReason reason, const char* szMessageParam = NULL);
int GetCountOfPlayers(IsideIGC * pside, bool bCountGhosts);
int GetSideRankSum(IsideIGC * pside, bool bCountGhosts); // TE: Added for balancing
int GetRankThreshold(); // TE: Added for balancing
bool HasPlayers(IsideIGC * pside, bool bCountGhosts);
IstationIGC * GetBase(IsideIGC * pside);
int GetCountSides()
{
assert(m_pMission->GetSides()->n() == m_misdef.misparms.nTeams);
return m_misdef.misparms.nTeams;
}
void RecordGameResults();
void RecordTeamResults(IsideIGC* pside);
void RecordPlayerResults(const char* pszName, PlayerScoreObject* ppso, SideID sid);
void QueueGameoverMessage();
IsideIGC* CheckForVictoryByStationBuild(IsideIGC* pside);
IsideIGC* CheckForVictoryByStationCapture(IsideIGC* pside, IsideIGC* psideOld);
IsideIGC* CheckForVictoryByStationKill(IstationIGC* pstationKilled, IsideIGC* psideOld);
IsideIGC* CheckForVictoryByKills(IsideIGC* pside);
IsideIGC* CheckForVictoryByInactiveSides(bool& bAllSidesInactive);
IsideIGC* CheckForVictoryByFlags(IsideIGC* pside, SideID sidFlag);
void GameOver(IsideIGC* psideWin,
const char* pszReason);
void SetMissionParams(const MissionParams & misparms);
void StartCountdown(float fCountdownLength);
void DelayCountdown(float fDelayLength);
void StartGame();
bool FAllReady();
DelPositionReqReason CheckPositionRequest(CFSPlayer * pfsPlayer, IsideIGC * pside);
void RequestPosition(CFSPlayer * pfsPlayer, IsideIGC * pside, bool bRejoin);
void VacateStation(IstationIGC * pstation);
void SetAutoAccept(IsideIGC * pside, bool fAccept);
bool GetAutoAccept(IsideIGC * pside)
{
return !!m_misdef.rgfAutoAccept[pside->GetObjectID()];
}
void SetLockLobby(bool bLock);
void SetLockSides(bool bLock);
void SetMaxTeamImbalance(int imbalance); // mmf: added this to fmission.cpp
bool GetLockSides();
void FlushSides(); // TE: Added FlushSides function
void RandomizeSides();
void SetSideCiv(IsideIGC * pside, IcivilizationIGC * pciv);
void SetSideActive(SideID sideid, bool bActive); // KGJV #62
bool GetSideActive(SideID sideid); // KGJV #62
void SetSideAllies(SideID sideid, char Allies); // #ALLY
char GetSideAllies(SideID sideid); // #ALLY
void UpdateAlliances(SideID sideID, SideID sideAlly); // #ALLY
bool GetAllowEmptyTeams() { return m_misdef.misparms.bAllowEmptyTeams; } // KGJV #62
void SetAllowEmptyTeams(bool bValue) { m_misdef.misparms.bAllowEmptyTeams = bValue; } // KGJV #62
void DeactivateSide(IsideIGC * pside);
void GiveSideMoney(IsideIGC * pside, Money money);
void SetForceReady(SideID iSide, bool fForceReady);
bool GetForceReady(SideID iSide)
{
assert(iSide > NA);
return !!m_misdef.rgfForceReady[iSide];
}
bool GetReady(SideID iSide)
{
assert(iSide > NA);
return !!m_misdef.rgfReady[iSide];
}
void PlayerReadyChange(CFSPlayer * pfsPlayer);
bool RejectSideJoinRequests(IsideIGC * pSide);
bool RemoveJoinRequest(CFSPlayer * pfsPlayer, IsideIGC * psideDest);
SideID PickNewSide(CFSPlayer* pfsPlayer, bool bAllowTeamLobby, unsigned char bannedSideMask);
void DoTick(Time timeNow);
void UpdateAnyPendingBallots(Time &timeNow);//Spunky #177
void CreateCluster(IclusterIGC * pIclusterIGC);
void DeleteCluster(IclusterIGC * pIclusterIGC);
const std::vector<CFSCluster*> * GetFSClusters()
{
return &m_pFSClusters;
}
void CreateSide(IsideIGC * pIsideIGC);
void DeleteSide(IsideIGC * pIsideIGC);
const std::vector<CFSSide*> * GetFSSides()
{
return &m_pFSSides;
}
CFMGroup * GetGroupRealSides()
{
return m_pgrpSidesReal;
}
CFMGroup * GetGroupLobbySide()
{
CFSSide * pfsside = CFSSide::FromIGC(m_pMission->GetSide(SIDE_TEAMLOBBY));
return pfsside ? pfsside->GetGroup() : NULL;
}
CFMGroup * GetGroupMission()
{
return m_pgrpMission;
}
DWORD IncrementFrame(void)
{
return m_nFrame++;
}
void SaveAsOldPlayer(CFSPlayer* pfsplayer, bool bBooted);
// Masks for dwSendBootTo above
static const DWORD c_sbtPlayer;
static const DWORD c_sbtLeader;
SYSTEMTIME * GetStartTime() { return &m_stStartTime; } // in UTC not PST
float GetGameDuration() { return m_flGameDuration; }
OldPlayerLink* GetOldPlayerLink(const char* name)
{
for (OldPlayerLink* popl = m_oldPlayers.first(); (popl != NULL); popl = popl->next())
{
if (_stricmp(popl->data().name, name) == 0)
return popl;
}
return NULL;
}
bool ShouldDelete() { return m_bShouldDelete; }
bool GetScoresCount()
{
return m_misdef.misparms.bScoresCount;
}
void AddInvitation(SideID sid, char * szPlayerName);
bool RequiresInvitation()
{
return m_nInvitationListID != 0;
}
bool IsInvited(CFSPlayer * pPlayer);
bool IsSquadGame()
{
return m_misdef.misparms.bSquadGame;
}
const ZString& GetDetailsFiles()
{
return m_strDetailsFiles;
}
void SetDetailsFiles(const ZString& strDetailsFiles)
{
m_strDetailsFiles = strDetailsFiles;
SetLobbyIsDirty();
}
void AddBallot(Ballot * pBallot);
void TallyVote(CFSPlayer* pfsPlayer, BallotID ballotID, bool bVote);
bool HasBallots(BallotType iType); // mmf/KGJV 09/07 allow only one ballot of each type at a time
bool HasBallots() { return !m_ballots.IsEmpty(); } //Spunky #177
void MakeOverrideTechBits(); // alloc memory for overriding tech bits as needed
TechTreeBitMask * m_pttbmAltered; // this is actually a point to an array of TechTrees. This is for overriding starting tech bits.
TechTreeBitMask * m_pttbmNewSetting; // We have two masks, one for which bits have changed, and one for the new bits
IsideIGC* GetSideWon(void) const { return m_psideWon; }
const char* GetStoryText() const { return m_strStoryText; }
//Spunky #276
CFSPlayer* GetLastBallotInitiator() { return m_lastBallotBy; }
void SetLastBallotInitiator(CFSPlayer* pfsPlayer) { m_lastBallotBy = pfsPlayer; }
Time GetLastBallotTime() { return m_lastBallotTime; }
void SetLastBallotIime(Time time) { m_lastBallotTime = time; }
private:
void InitSide(SideID sid);
void MaintainSquadLeadership(SideID sid);
void ProcessGameOver();
void CheckForSideAllReady(IsideIGC * pside);
void SetReady(SideID iSide, bool fReady);
void AddJoinRequest(CFSPlayer * pfsPlayer, IsideIGC * pside);
void CreateDPGroups(IclusterIGC * pcluster);
void SendLobbyMissionInfo(CFSPlayer * pfsPlayer);
void SendMissionInfo(CFSPlayer * pfsPlayer, IsideIGC* pside);
void DoPayday(void);
void DoPayday(IsideIGC* pside);
void NotifyPlayerBoot(CFSPlayer * pfsPlayer, IsideIGC * pSide);
void Vacate();
static ListFSMission s_list;
static int s_iMissionID;
FMD_S_MISSIONDEF m_misdef; // cached and maintained for easily delivery on demand
ImissionIGC * m_pMission; // gateway to everything that is IGC in THIS mission
Time m_timeNextPayday;
int m_rgMoney[c_cSidesMax];
TRef<IsideIGC> m_psideWon; // set when a side won--not acted upon until out of igc updates
const char* m_pszReason;
IMissionSite * m_psiteMission;
ListJoinReq m_listJoinReq;
IIgcSite* m_psiteIGC;
std::vector<CFSSide*> m_pFSSides; // choosing vector for O(1) access by index
std::vector<CFSCluster*> m_pFSClusters; // choosing vector for O(1) access by index
CFMGroup * m_pgrpSidesReal; // includes all sides EXCEPT the lobby side
CFMGroup * m_pgrpMission; // includes everyone in this mission, including lobby side
Time m_timeLastLobbyMissionInfo;
bool m_fLobbyDirty;
bool m_bShouldDelete;
SYSTEMTIME m_stStartTime; // in UTC not PST
DWORD m_nFrame;
OldPlayerList m_oldPlayers;
int m_nInvitationListID;
ZString m_strDetailsFiles;
BallotList m_ballots;
// Stuff for fsmon:
float m_flGameDuration;
ZString m_strStoryText;
bool m_bDraw;
//Spunky #276
Time m_lastBallotTime;
CFSPlayer* m_lastBallotBy;
};
#endif
| [
"[email protected]"
] | |
258a7d75e25a7d1957340a2a58e98f1601c98a42 | 8b18b36eba46af3976b5e55563846741a19da4ac | /cluster/src/strategy.cpp | 382ab673a306dd7b6c7a5ec0e2505d31f51404a5 | [] | no_license | kostis-init/WindPrediction_NeuralNetwork | 343611e612de922a74cb2725f20770f853c8459f | 7f5f7e2ae1d8d014aa1f31e205e0cde3ba0b641a | refs/heads/master | 2022-03-27T11:07:44.594935 | 2020-01-12T11:30:10 | 2020-01-12T11:30:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,958 | cpp | #include <assert.h>
#include "strategy.h"
#include "utils.h"
#include "LSH.h"
#include "utils.h"
#include "kmeans.h"
#include <limits>
#include <algorithm>
void RandomInit::execute() {
auto objs = cluster->getDataset()->getData();
random_device dev;
mt19937 rng(dev());
uniform_int_distribution<int> dist(0,objs.size()-1);
set<Object *> centers;
for (int i = 0; i < cluster->getGeneralParameters()->getNumOfClusters(); ++i) {
auto objectToInsert = objs.at(dist(rng));
//if it already exists, find another
while (centers.find(objectToInsert) != centers.end())
objectToInsert = objs.at(dist(rng));
centers.insert(objectToInsert);
}
cluster->setCenters(centers);
}
bool noEmptyCluster(const map<Object*,set<Object*>>& clusters){
for(const auto& cluster : clusters){
if(cluster.second.empty())
return false;
}
return true;
}
LloydAssignment::LloydAssignment(Cluster* cluster){
this->cluster = cluster;
if(cluster->getDataset()->getHasVectors())
metric = new Manhattan;
else
metric = new DTW;
}
void LloydAssignment::execute() {
while(true){
auto centers = cluster->getCenters();
auto data = cluster->getDataset()->getData();
//assign every object to the nearest center (brute-force)
int i = 0;
for(auto obj : data){
printProgress(double(i+1)/double(data.size()));
Object * minCenter;
double minDistance = numeric_limits<double>::max();
for (auto center : centers) {
double dist = metric->dist(obj, center);
if(dist < minDistance){
minDistance = dist;
minCenter = center;
}
}
cluster->addToCluster(minCenter, obj);
i++;
}
cout << endl;
if(noEmptyCluster(cluster->getClusters()))
return;
cout << "There are empty clusters, replacing..." << endl;
cluster->replaceCentersOfEmptyClusters();
}
}
InverseAssignment::InverseAssignment(Cluster* cluster) {
this->cluster = cluster;
this->hasVectors = cluster->getDataset()->getHasVectors();
auto numOfGrids = cluster->getGeneralParameters()->getNumOfGrids();
auto numOfHTs = cluster->getGeneralParameters()->getNumOfVectorHashTables();
auto numOfHFs = cluster->getGeneralParameters()->getNumOfVectorHashFunctions();
auto dimension = cluster->getDataset()->getDimension();
if(hasVectors) {
lsh = new LSH(new Manhattan);
//TODO: window...
lsh->setHashTableStruct(new PointHashTableStruct(numOfHTs, numOfHFs, dimension, 10000));
} else {
lsh = new LSH(new DTW);
//TODO: window... and min
lsh->setHashTableStruct(new CurveHashTableStruct(numOfGrids, numOfHFs, dimension, 0.05, cluster->getDataset()->getMax(),2));
}
auto data = cluster->getDataset()->getData();
for (auto & obj : data)
lsh->getHashTableStruct()->addToAllHashTables(obj);
//lsh->getHashTableStruct()->test_print_hashtable();
}
InverseAssignment::~InverseAssignment(){
delete lsh;
}
void InverseAssignment::execute() {
while(true){
auto metric = lsh->getMetric();
auto centers = cluster->getCenters();
auto hashers = lsh->getHashTableStruct()->getHashers();
auto hts = lsh->getHashTableStruct()->getAllHashTables();
auto numOfHTs = lsh->getHashTableStruct()->getNumOfHTs();
auto data = cluster->getDataset()->getData();
//array that tells if a point/curve has been assigned to a center
vector<bool> isAssigned;
for(auto obj : data) isAssigned.push_back(false);
// Optimization before brute-force (use LSH):
// For every center, assign to it every object that is on the same bucket
// In case that there are over 1 centers for the same object, select the min distance
int counter=0;
for(auto center : centers){
printProgress(double(counter+1)/double(centers.size()*2));
set<Object *> centersInSameBucket;
//find centers that are in the same bucket
for(auto center2 : centers){
for(int i = 0; i < numOfHTs ; i++){
if((*hashers.at(i))(center) == (*hashers.at(i))(center2)) {
centersInSameBucket.insert(center2);
}
}
}
//this center is the only one in his buckets, put all the objects of the buckets to him
if(centersInSameBucket.size() == 1){
for(int i = 0; i < numOfHTs ; i++){
int hash = (*hashers.at(i))(center);
if(hts[i].find(hash) == hts[i].end()) //empty bucket
continue;
auto objects = hts[i].at(hash);
for(auto obj : objects){
isAssigned.at(distance(data.begin(),find(data.begin(), data.end(), obj))) = true;
cluster->addToCluster(center, obj);
}
}
}else{
for(int i = 0; i < numOfHTs ; i++){
int hash = (*hashers.at(i))(center);
if(hts[i].find(hash) == hts[i].end()) //empty bucket
continue;
auto objects = hts[i].at(hash);
for(auto obj : objects){
if(isAssigned.at(distance(data.begin(),find(data.begin(), data.end(), obj))))
continue;
Object * minCenter;
double minDistance = numeric_limits<double>::max();
for (auto candidateCenter : centersInSameBucket) {
double dist = metric->dist(obj, candidateCenter);
if(dist < minDistance){
minDistance = dist;
minCenter = candidateCenter;
}
}
isAssigned.at(distance(data.begin(),find(data.begin(), data.end(), obj))) = true;
cluster->addToCluster(minCenter, obj);
}
}
}
counter++;
}
printProgress(0.5);
//assign every remaining object to the nearest center (brute-force)
int i = 0;
for(auto obj : data){
printProgress(0.5 + double(i+1)/double(data.size()*2));
if(isAssigned.at(i)){
i++;
continue;
}
Object * minCenter;
double minDistance = numeric_limits<double>::max();
for (auto center : centers) {
double dist = metric->dist(obj, center);
if(dist < minDistance){
minDistance = dist;
minCenter = center;
}
}
cluster->addToCluster(minCenter, obj);
i++;
}
cout << endl;
if(noEmptyCluster(cluster->getClusters()))
return;
cout << "There are empty clusters, replacing..." << endl;
cluster->replaceCentersOfEmptyClusters();
}
}
PAMUpdate::PAMUpdate(Cluster* cluster){
this->cluster = cluster;
if(cluster->getDataset()->getHasVectors())
metric = new Manhattan;
else
metric = new DTW;
}
PAMUpdate::~PAMUpdate(){
delete metric;
}
double getDistanceBetweenSets(DistanceMetric* metric, const set<Object*>& set1, const set<Object*>& set2){
double dist = 0;
for(auto center1 : set1){
double min = numeric_limits<double>::max();
for(auto center2 : set2){
double temp_dist = metric->dist(center1, center2);
if(temp_dist < min)
min = temp_dist;
}
dist+=min;
}
return dist;
}
double cumulativeVectorDistance(DistanceMetric* metric, const vector<Object*>& vec1, const vector<Object*>& vec2) {
auto itVec1 = vec1.begin();
auto itVec2 = vec2.begin();
double dist = 0;
assert(vec1.size() == vec2.size());
while(itVec1 != vec1.end() || itVec2 != vec2.end())
{
dist += metric->dist(*itVec2,*itVec1);
++itVec1;
++itVec2;
}
return dist;
}
//find the best centroid for each cluster
//based on minimizing the sum of distances to the center
bool PAMUpdate::execute() {
//keep previous centers to check stop
set<Object *> previousCenters;
for(auto center: cluster->getCenters())
previousCenters.insert(center);
set<Object *> currentCenters;
int i = 0;
for(auto center : cluster->getCenters()){
auto members = cluster->getClusters()[center];
Object *bestCenter;
double min = numeric_limits<double>::max();
for(auto candidateCenter : members){
printProgress(double(i+1)/double(cluster->getDataset()->getData().size()));
//calculate sum of distances to the candidateCenter
double sum = 0;
for(auto member : members){
sum += metric->dist(candidateCenter, member) / double(members.size());
}
if(sum < min){
min = sum;
bestCenter = candidateCenter;
}
i++;
}
currentCenters.insert(bestCenter);
}
cout << endl;
cluster->setCenters(currentCenters);
cluster->testPrintCurrentCenters();
return getDistanceBetweenSets(metric, previousCenters, currentCenters) == 0;
}
bool CentroidUpdate::execute() {
auto objs = cluster->getDataset();
auto numClusters = cluster->getGeneralParameters()->getNumOfClusters();
bool stop;
int stopCount = 0;
Object *centroid;
set<Object *> centroids;
int i = 0;
for (auto clust : cluster->getClusters()) {
if (clust.second.size()==0)
throw exception();
algos[i]->setObjs(clust.second);
centroid = algos[i]->centroid(&stop);
if (stop) {
stopCount++;
}
centroids.insert(centroid);
currCenters.push_back(centroid);
i++;
}
cluster->setCenters(centroids);
//we should stop if all centroids didn't change too much from the
//previous update.This is an alternative stop condition
//This method is problematic when assignment algorithm changes
//centroids (i.e when a cluster hasn't any items) but this case is rare.
bool canStop = false;
if (prevCenters.size() > 0) {
//all algos should have the same threshold.
canStop = cumulativeVectorDistance(metric, prevCenters, currCenters) < numClusters * algos[0]->getThreshold();
}
prevCenters = currCenters;
currCenters.clear();
//return canStop;
return stopCount == numClusters;
} | [
"[email protected]"
] | |
c872e62a9f8366994fce29d0244ac3bedcbd1d62 | 50bdaa2e71aae37240c61c930decbfe9d1e504b8 | /harp-daal-app/daal-src/lang_service/java/com/intel/daal/algorithms/linear_regression/quality_metric_set_batch.cpp | 564091e815af098696c3d9d4a4294cb2f92b0cb3 | [
"Apache-2.0"
] | permissive | prawalgangwar/harp | 010b1f669ee54941365ba1204be4e1484c15f108 | 3c3a3bf2d519f76ccf8ae17d8b3681e0a93048b7 | refs/heads/master | 2020-09-13T19:57:54.274328 | 2017-06-20T00:03:57 | 2017-06-20T00:03:57 | 94,464,682 | 0 | 0 | null | 2017-06-15T17:49:16 | 2017-06-15T17:49:16 | null | UTF-8 | C++ | false | false | 1,860 | cpp | /* file: quality_metric_set_batch.cpp */
/*******************************************************************************
* Copyright 2014-2016 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
#include "daal.h"
#include "linear_regression/quality_metric_set/JQualityMetricSetBatch.h"
using namespace daal::algorithms::linear_regression::quality_metric_set;
/*
* Class: com_intel_daal_algorithms_linear_regression_quality_metric_set_QualityMetricSetBatch
* Method: cInit
* Signature: (JJ)J
*/
JNIEXPORT jlong JNICALL Java_com_intel_daal_algorithms_linear_1regression_quality_1metric_1set_QualityMetricSetBatch_cInit
(JNIEnv *, jobject, jlong nBeta, jlong nBetaReducedModel)
{
jlong addr = 0;
addr = (jlong)(new Batch(nBeta, nBetaReducedModel));
return addr;
}
/*
* Class: com_intel_daal_algorithms_linear_regression_quality_metric_set_QualityMetricSetBatch
* Method: cInitParameter
* Signature: (J)J
*/
JNIEXPORT jlong JNICALL Java_com_intel_daal_algorithms_linear_1regression_quality_1metric_1set_QualityMetricSetBatch_cInitParameter
(JNIEnv *, jobject, jlong parAddr)
{
jlong addr = 0;
addr = (jlong)& ((*(Batch *)parAddr).parameter);
return addr;
}
| [
"[email protected]"
] | |
e1ca2a2cad8a23966806370a1d60a1a512ba946f | 2afcd104a56f91cde8e5d4f86248d947f1778c24 | /third_party/asio/include/asio/detail/win_iocp_socket_service_base.hpp | 27bad7c5e245bc1d8b1f6fa8df8bca8c67d4837e | [
"MIT",
"BSL-1.0"
] | permissive | otgaard/zap | 255086a0eb539c904d65c6a5be1b895ad119f665 | d50e70b5baf5f0fbf7a5a98d80c4d1bcc6166215 | refs/heads/master | 2021-04-18T23:00:30.407741 | 2021-03-21T14:54:56 | 2021-03-21T14:54:56 | 53,185,977 | 9 | 1 | MIT | 2018-04-16T07:00:10 | 2016-03-05T05:46:15 | C++ | UTF-8 | C++ | false | false | 19,760 | hpp | //
// detail/win_iocp_socket_service_base.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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 ASIO_DETAIL_WIN_IOCP_SOCKET_SERVICE_BASE_HPP
#define ASIO_DETAIL_WIN_IOCP_SOCKET_SERVICE_BASE_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include "asio/detail/config.hpp"
#if defined(ASIO_HAS_IOCP)
#include "asio/error.hpp"
#include "asio/io_service.hpp"
#include "asio/socket_base.hpp"
#include "asio/detail/addressof.hpp"
#include "asio/detail/bind_handler.hpp"
#include "asio/detail/buffer_sequence_adapter.hpp"
#include "asio/detail/fenced_block.hpp"
#include "asio/detail/handler_alloc_helpers.hpp"
#include "asio/detail/handler_invoke_helpers.hpp"
#include "asio/detail/mutex.hpp"
#include "asio/detail/operation.hpp"
#include "asio/detail/reactor.hpp"
#include "asio/detail/reactor_op.hpp"
#include "asio/detail/socket_holder.hpp"
#include "asio/detail/socket_ops.hpp"
#include "asio/detail/socket_types.hpp"
#include "asio/detail/win_iocp_io_service.hpp"
#include "asio/detail/win_iocp_null_buffers_op.hpp"
#include "asio/detail/win_iocp_socket_connect_op.hpp"
#include "asio/detail/win_iocp_socket_send_op.hpp"
#include "asio/detail/win_iocp_socket_recv_op.hpp"
#include "asio/detail/win_iocp_socket_recvmsg_op.hpp"
#include "asio/detail/push_options.hpp"
namespace asio {
namespace detail {
class win_iocp_socket_service_base
{
public:
// The implementation type of the socket.
struct base_implementation_type
{
// The native socket representation.
socket_type socket_;
// The current state of the socket.
socket_ops::state_type state_;
// We use a shared pointer as a cancellation token here to work around the
// broken Windows support for cancellation. MSDN says that when you call
// closesocket any outstanding WSARecv or WSASend operations will complete
// with the error ERROR_OPERATION_ABORTED. In practice they complete with
// ERROR_NETNAME_DELETED, which means you can't tell the difference between
// a local cancellation and the socket being hard-closed by the peer.
socket_ops::shared_cancel_token_type cancel_token_;
// Per-descriptor data used by the reactor.
reactor::per_descriptor_data reactor_data_;
#if defined(ASIO_ENABLE_CANCELIO)
// The ID of the thread from which it is safe to cancel asynchronous
// operations. 0 means no asynchronous operations have been started yet.
// ~0 means asynchronous operations have been started from more than one
// thread, and cancellation is not supported for the socket.
DWORD safe_cancellation_thread_id_;
#endif // defined(ASIO_ENABLE_CANCELIO)
// Pointers to adjacent socket implementations in linked list.
base_implementation_type* next_;
base_implementation_type* prev_;
};
// Constructor.
ASIO_DECL win_iocp_socket_service_base(
asio::io_service& io_service);
// Destroy all user-defined handler objects owned by the service.
ASIO_DECL void shutdown_service();
// Construct a new socket implementation.
ASIO_DECL void construct(base_implementation_type& impl);
// Move-construct a new socket implementation.
ASIO_DECL void base_move_construct(base_implementation_type& impl,
base_implementation_type& other_impl);
// Move-assign from another socket implementation.
ASIO_DECL void base_move_assign(base_implementation_type& impl,
win_iocp_socket_service_base& other_service,
base_implementation_type& other_impl);
// Destroy a socket implementation.
ASIO_DECL void destroy(base_implementation_type& impl);
// Determine whether the socket is open.
bool is_open(const base_implementation_type& impl) const
{
return impl.socket_ != invalid_socket;
}
// Destroy a socket implementation.
ASIO_DECL asio::error_code close(
base_implementation_type& impl, asio::error_code& ec);
// Cancel all operations associated with the socket.
ASIO_DECL asio::error_code cancel(
base_implementation_type& impl, asio::error_code& ec);
// Determine whether the socket is at the out-of-band data mark.
bool at_mark(const base_implementation_type& impl,
asio::error_code& ec) const
{
return socket_ops::sockatmark(impl.socket_, ec);
}
// Determine the number of bytes available for reading.
std::size_t available(const base_implementation_type& impl,
asio::error_code& ec) const
{
return socket_ops::available(impl.socket_, ec);
}
// Place the socket into the state where it will listen for new connections.
asio::error_code listen(base_implementation_type& impl,
int backlog, asio::error_code& ec)
{
socket_ops::listen(impl.socket_, backlog, ec);
return ec;
}
// Perform an IO control command on the socket.
template <typename IO_Control_Command>
asio::error_code io_control(base_implementation_type& impl,
IO_Control_Command& command, asio::error_code& ec)
{
socket_ops::ioctl(impl.socket_, impl.state_, command.name(),
static_cast<ioctl_arg_type*>(command.data()), ec);
return ec;
}
// Gets the non-blocking mode of the socket.
bool non_blocking(const base_implementation_type& impl) const
{
return (impl.state_ & socket_ops::user_set_non_blocking) != 0;
}
// Sets the non-blocking mode of the socket.
asio::error_code non_blocking(base_implementation_type& impl,
bool mode, asio::error_code& ec)
{
socket_ops::set_user_non_blocking(impl.socket_, impl.state_, mode, ec);
return ec;
}
// Gets the non-blocking mode of the native socket implementation.
bool native_non_blocking(const base_implementation_type& impl) const
{
return (impl.state_ & socket_ops::internal_non_blocking) != 0;
}
// Sets the non-blocking mode of the native socket implementation.
asio::error_code native_non_blocking(base_implementation_type& impl,
bool mode, asio::error_code& ec)
{
socket_ops::set_internal_non_blocking(impl.socket_, impl.state_, mode, ec);
return ec;
}
// Disable sends or receives on the socket.
asio::error_code shutdown(base_implementation_type& impl,
socket_base::shutdown_type what, asio::error_code& ec)
{
socket_ops::shutdown(impl.socket_, what, ec);
return ec;
}
// Send the given data to the peer. Returns the number of bytes sent.
template <typename ConstBufferSequence>
size_t send(base_implementation_type& impl,
const ConstBufferSequence& buffers,
socket_base::message_flags flags, asio::error_code& ec)
{
buffer_sequence_adapter<asio::const_buffer,
ConstBufferSequence> bufs(buffers);
return socket_ops::sync_send(impl.socket_, impl.state_,
bufs.buffers(), bufs.count(), flags, bufs.all_empty(), ec);
}
// Wait until data can be sent without blocking.
size_t send(base_implementation_type& impl, const null_buffers&,
socket_base::message_flags, asio::error_code& ec)
{
// Wait for socket to become ready.
socket_ops::poll_write(impl.socket_, impl.state_, ec);
return 0;
}
// Start an asynchronous send. The data being sent must be valid for the
// lifetime of the asynchronous operation.
template <typename ConstBufferSequence, typename Handler>
void async_send(base_implementation_type& impl,
const ConstBufferSequence& buffers,
socket_base::message_flags flags, Handler& handler)
{
// Allocate and construct an operation to wrap the handler.
typedef win_iocp_socket_send_op<ConstBufferSequence, Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
asio_handler_alloc_helpers::allocate(
sizeof(op), handler), 0 };
p.p = new (p.v) op(impl.cancel_token_, buffers, handler);
ASIO_HANDLER_CREATION((p.p, "socket", &impl, "async_send"));
buffer_sequence_adapter<asio::const_buffer,
ConstBufferSequence> bufs(buffers);
start_send_op(impl, bufs.buffers(), bufs.count(), flags,
(impl.state_ & socket_ops::stream_oriented) != 0 && bufs.all_empty(),
p.p);
p.v = p.p = 0;
}
// Start an asynchronous wait until data can be sent without blocking.
template <typename Handler>
void async_send(base_implementation_type& impl, const null_buffers&,
socket_base::message_flags, Handler& handler)
{
// Allocate and construct an operation to wrap the handler.
typedef win_iocp_null_buffers_op<Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
asio_handler_alloc_helpers::allocate(
sizeof(op), handler), 0 };
p.p = new (p.v) op(impl.cancel_token_, handler);
ASIO_HANDLER_CREATION((p.p, "socket",
&impl, "async_send(null_buffers)"));
start_reactor_op(impl, reactor::write_op, p.p);
p.v = p.p = 0;
}
// Receive some data from the peer. Returns the number of bytes received.
template <typename MutableBufferSequence>
size_t receive(base_implementation_type& impl,
const MutableBufferSequence& buffers,
socket_base::message_flags flags, asio::error_code& ec)
{
buffer_sequence_adapter<asio::mutable_buffer,
MutableBufferSequence> bufs(buffers);
return socket_ops::sync_recv(impl.socket_, impl.state_,
bufs.buffers(), bufs.count(), flags, bufs.all_empty(), ec);
}
// Wait until data can be received without blocking.
size_t receive(base_implementation_type& impl, const null_buffers&,
socket_base::message_flags, asio::error_code& ec)
{
// Wait for socket to become ready.
socket_ops::poll_read(impl.socket_, impl.state_, ec);
return 0;
}
// Start an asynchronous receive. The buffer for the data being received
// must be valid for the lifetime of the asynchronous operation.
template <typename MutableBufferSequence, typename Handler>
void async_receive(base_implementation_type& impl,
const MutableBufferSequence& buffers,
socket_base::message_flags flags, Handler& handler)
{
// Allocate and construct an operation to wrap the handler.
typedef win_iocp_socket_recv_op<MutableBufferSequence, Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
asio_handler_alloc_helpers::allocate(
sizeof(op), handler), 0 };
p.p = new (p.v) op(impl.state_, impl.cancel_token_, buffers, handler);
ASIO_HANDLER_CREATION((p.p, "socket", &impl, "async_receive"));
buffer_sequence_adapter<asio::mutable_buffer,
MutableBufferSequence> bufs(buffers);
start_receive_op(impl, bufs.buffers(), bufs.count(), flags,
(impl.state_ & socket_ops::stream_oriented) != 0 && bufs.all_empty(),
p.p);
p.v = p.p = 0;
}
// Wait until data can be received without blocking.
template <typename Handler>
void async_receive(base_implementation_type& impl, const null_buffers&,
socket_base::message_flags flags, Handler& handler)
{
// Allocate and construct an operation to wrap the handler.
typedef win_iocp_null_buffers_op<Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
asio_handler_alloc_helpers::allocate(
sizeof(op), handler), 0 };
p.p = new (p.v) op(impl.cancel_token_, handler);
ASIO_HANDLER_CREATION((p.p, "socket",
&impl, "async_receive(null_buffers)"));
start_null_buffers_receive_op(impl, flags, p.p);
p.v = p.p = 0;
}
// Receive some data with associated flags. Returns the number of bytes
// received.
template <typename MutableBufferSequence>
size_t receive_with_flags(base_implementation_type& impl,
const MutableBufferSequence& buffers,
socket_base::message_flags in_flags,
socket_base::message_flags& out_flags, asio::error_code& ec)
{
buffer_sequence_adapter<asio::mutable_buffer,
MutableBufferSequence> bufs(buffers);
return socket_ops::sync_recvmsg(impl.socket_, impl.state_,
bufs.buffers(), bufs.count(), in_flags, out_flags, ec);
}
// Wait until data can be received without blocking.
size_t receive_with_flags(base_implementation_type& impl,
const null_buffers&, socket_base::message_flags,
socket_base::message_flags& out_flags, asio::error_code& ec)
{
// Wait for socket to become ready.
socket_ops::poll_read(impl.socket_, impl.state_, ec);
// Clear out_flags, since we cannot give it any other sensible value when
// performing a null_buffers operation.
out_flags = 0;
return 0;
}
// Start an asynchronous receive. The buffer for the data being received
// must be valid for the lifetime of the asynchronous operation.
template <typename MutableBufferSequence, typename Handler>
void async_receive_with_flags(base_implementation_type& impl,
const MutableBufferSequence& buffers, socket_base::message_flags in_flags,
socket_base::message_flags& out_flags, Handler& handler)
{
// Allocate and construct an operation to wrap the handler.
typedef win_iocp_socket_recvmsg_op<MutableBufferSequence, Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
asio_handler_alloc_helpers::allocate(
sizeof(op), handler), 0 };
p.p = new (p.v) op(impl.cancel_token_, buffers, out_flags, handler);
ASIO_HANDLER_CREATION((p.p, "socket",
&impl, "async_receive_with_flags"));
buffer_sequence_adapter<asio::mutable_buffer,
MutableBufferSequence> bufs(buffers);
start_receive_op(impl, bufs.buffers(), bufs.count(), in_flags, false, p.p);
p.v = p.p = 0;
}
// Wait until data can be received without blocking.
template <typename Handler>
void async_receive_with_flags(base_implementation_type& impl,
const null_buffers&, socket_base::message_flags in_flags,
socket_base::message_flags& out_flags, Handler& handler)
{
// Allocate and construct an operation to wrap the handler.
typedef win_iocp_null_buffers_op<Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
asio_handler_alloc_helpers::allocate(
sizeof(op), handler), 0 };
p.p = new (p.v) op(impl.cancel_token_, handler);
ASIO_HANDLER_CREATION((p.p, "socket", &impl,
"async_receive_with_flags(null_buffers)"));
// Reset out_flags since it can be given no sensible value at this time.
out_flags = 0;
start_null_buffers_receive_op(impl, in_flags, p.p);
p.v = p.p = 0;
}
// Helper function to restart an asynchronous accept operation.
ASIO_DECL void restart_accept_op(socket_type s,
socket_holder& new_socket, int family, int type, int protocol,
void* output_buffer, DWORD address_length, operation* op);
protected:
// Open a new socket implementation.
ASIO_DECL asio::error_code do_open(
base_implementation_type& impl, int family, int type,
int protocol, asio::error_code& ec);
// Assign a native socket to a socket implementation.
ASIO_DECL asio::error_code do_assign(
base_implementation_type& impl, int type,
socket_type native_socket, asio::error_code& ec);
// Helper function to start an asynchronous send operation.
ASIO_DECL void start_send_op(base_implementation_type& impl,
WSABUF* buffers, std::size_t buffer_count,
socket_base::message_flags flags, bool noop, operation* op);
// Helper function to start an asynchronous send_to operation.
ASIO_DECL void start_send_to_op(base_implementation_type& impl,
WSABUF* buffers, std::size_t buffer_count,
const socket_addr_type* addr, int addrlen,
socket_base::message_flags flags, operation* op);
// Helper function to start an asynchronous receive operation.
ASIO_DECL void start_receive_op(base_implementation_type& impl,
WSABUF* buffers, std::size_t buffer_count,
socket_base::message_flags flags, bool noop, operation* op);
// Helper function to start an asynchronous null_buffers receive operation.
ASIO_DECL void start_null_buffers_receive_op(
base_implementation_type& impl,
socket_base::message_flags flags, reactor_op* op);
// Helper function to start an asynchronous receive_from operation.
ASIO_DECL void start_receive_from_op(base_implementation_type& impl,
WSABUF* buffers, std::size_t buffer_count, socket_addr_type* addr,
socket_base::message_flags flags, int* addrlen, operation* op);
// Helper function to start an asynchronous accept operation.
ASIO_DECL void start_accept_op(base_implementation_type& impl,
bool peer_is_open, socket_holder& new_socket, int family, int type,
int protocol, void* output_buffer, DWORD address_length, operation* op);
// Start an asynchronous read or write operation using the reactor.
ASIO_DECL void start_reactor_op(base_implementation_type& impl,
int op_type, reactor_op* op);
// Start the asynchronous connect operation using the reactor.
ASIO_DECL void start_connect_op(base_implementation_type& impl,
int family, int type, const socket_addr_type* remote_addr,
std::size_t remote_addrlen, win_iocp_socket_connect_op_base* op);
// Helper function to close a socket when the associated object is being
// destroyed.
ASIO_DECL void close_for_destruction(base_implementation_type& impl);
// Update the ID of the thread from which cancellation is safe.
ASIO_DECL void update_cancellation_thread_id(
base_implementation_type& impl);
// Helper function to get the reactor. If no reactor has been created yet, a
// new one is obtained from the io_service and a pointer to it is cached in
// this service.
ASIO_DECL reactor& get_reactor();
// The type of a ConnectEx function pointer, as old SDKs may not provide it.
typedef BOOL (PASCAL *connect_ex_fn)(SOCKET,
const socket_addr_type*, int, void*, DWORD, DWORD*, OVERLAPPED*);
// Helper function to get the ConnectEx pointer. If no ConnectEx pointer has
// been obtained yet, one is obtained using WSAIoctl and the pointer is
// cached. Returns a null pointer if ConnectEx is not available.
ASIO_DECL connect_ex_fn get_connect_ex(
base_implementation_type& impl, int type);
// Helper function to emulate InterlockedCompareExchangePointer functionality
// for:
// - very old Platform SDKs; and
// - platform SDKs where MSVC's /Wp64 option causes spurious warnings.
ASIO_DECL void* interlocked_compare_exchange_pointer(
void** dest, void* exch, void* cmp);
// Helper function to emulate InterlockedExchangePointer functionality for:
// - very old Platform SDKs; and
// - platform SDKs where MSVC's /Wp64 option causes spurious warnings.
ASIO_DECL void* interlocked_exchange_pointer(void** dest, void* val);
// The io_service used to obtain the reactor, if required.
asio::io_service& io_service_;
// The IOCP service used for running asynchronous operations and dispatching
// handlers.
win_iocp_io_service& iocp_service_;
// The reactor used for performing connect operations. This object is created
// only if needed.
reactor* reactor_;
// Pointer to ConnectEx implementation.
void* connect_ex_;
// Mutex to protect access to the linked list of implementations.
asio::detail::mutex mutex_;
// The head of a linked list of all implementations.
base_implementation_type* impl_list_;
};
} // namespace detail
} // namespace asio
#include "asio/detail/pop_options.hpp"
#if defined(ASIO_HEADER_ONLY)
# include "asio/detail/impl/win_iocp_socket_service_base.ipp"
#endif // defined(ASIO_HEADER_ONLY)
#endif // defined(ASIO_HAS_IOCP)
#endif // ASIO_DETAIL_WIN_IOCP_SOCKET_SERVICE_BASE_HPP
| [
"[email protected]"
] | |
177b70adb5fc1af5c1d34f441bda780d3c0fadee | eb2cf88ee673225e12f75cd9149b615a6bb689da | /Medium/0456_132_Pattern.cpp | 9fad119cede2d1565e75c90040b12e3555c9b333 | [] | no_license | mwall-dev/LeetCode | 62445b1005c82022561f8a8a818ff79459792fb2 | a36f5267f05393a21c719fde5736729c52734ccf | refs/heads/main | 2023-06-27T11:06:55.440542 | 2021-08-05T01:53:12 | 2021-08-05T01:53:12 | 328,587,003 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,786 | cpp | /*
*
* Notes:
* i < j < k
* and nums[i] < nums[k] < nums[j]
* so strictly increasing but largest is in middle.
*
* nums[i] must be less than nums[k] so 2,4,2 doesn't satisfy.
* smallest, largest, middle.
*
* Elements don't have to be adjacent so can't just sliding window from start and look at adjacent groups of 3.
* Need to look at all combinations with 3 numbers.
* Need to preserve ordering though as indicies do matter.
*
* Looking for an up and a down. A hill basically.
*
* We can find the second as early as possible as we know we will find the next later. Earliest is best as you don't
* miss anything. Actually this is not true as you might miss the pattern.
* case: [-2,1,2,-2,1,2] you only see the 1 for the second when its -2, 2, 1.
*
* Approach: Brute Force
* - 3 for loops for all combinations.
*
* time: O(N^3)
* space: O(1)
*
*
* Approach: Slighty optimised
* - Similar but this time scan for j,k pairs where j < k and nums[k] < nums[j]. k is middle one and j is largest.
* - Now we need to find some i < j and nums[i] < nums[k].
* - Can precompute this and store using an array.
* - Before starting, do a linear scan of array with a running minimum and for nums[i] store in a seperate array
* min_val[i] the minimum element before nums[i].
* - This will make the last step O(1) lookup. Will basically be min_val[j - 1] < nums[k].
* - Can do this as the smallest will be between index 0 < j - 1
* - The array abstracts the ordering (i < j condition) away as the loop does the work.
*
* time:O(N^2)
* space: O(N)
*
*
* Approach: One Pass using a std::set:
* - When you have to fix 3 things, always fix the middle one (not k though). So fix j, the largest. as its small, large, medium.
* - We see that i will be from 0 to j - 1 and k will be from j + 1 to nums.size().
* - i = pos of min_val[j - 1]. Check if a[i] < a[j].
* - Check if there is some k such that a[i] < a[k] < a[j] where a[k] = the max value from j + 1 to n WHICH IS LESS THAN a[j]. NOW ITS HARDER
* AS WE CAN"T PRECOMPUTE THIS.
*
* - Use a set.
* - Basically you build the set as you go and then use lower/upperbound() to find the max set_ele < nums[j].
*
* very similar to above except you search for j from n to 0.
* each time you add nums[j+1] to set. Do a search to find the max value just less than nums[j]. Then check if this
* is > min_val[j - 1].
*
*
*
*
* time: O(NlogN)
* space: O(N)
*
*
*
* Approach: One pass using a stack.
* - Can just use a stack for potential j's and k's.
* - Put stuff in stack in non-increasing order. Say it works out for first several elements (they are sorted) and
* our stack looks like 10 6 5 3 3 1, now we've reached a[j] = 7. Pop each element off that is less than 7, try as a
* k, test against min_val[j-1] too. If doesn't work than push 7 on in spot. In this example, this is the case if we need
* smaller min_vals (as we must satisfy the k value is > nums[i]).
*/
//O(N)
class Solution {
public:
void print_arr(vector<int>& min_val) {
for(int& x : min_val) {
std::cout << x << "\n";
}
}
bool find132pattern(vector<int>& nums) {
vector<int> min_val(nums.size());
min_val[0] = nums[0];
for(int k = 1; k < nums.size(); ++k) {
min_val[k] = std::min(min_val[k - 1], nums[k]);
}
std::stack<int> stck;
for(int j = nums.size() - 1; j >= 1; --j) {
while(!stck.empty() && stck.top() < nums[j]) {
int k = stck.top();
stck.pop();
if (min_val[j - 1] < k) return true;
}
stck.push(nums[j]);
}
return false;
}
};
// O(N^2)
class Solution {
public:
void print_arr(vector<int>& min_val) {
for(int& x : min_val) {
std::cout << x << "\n";
}
}
bool find132pattern(vector<int>& nums) {
vector<int> min_val(nums.size());
min_val[0] = nums[0];
for(int k = 1; k < nums.size(); ++k) {
min_val[k] = std::min(min_val[k - 1], nums[k]);
}
for(int j = 1; j < nums.size(); ++j) {
for (int k = j + 1; k < nums.size(); ++k) {
if (nums[k] < nums[j] && min_val[j - 1] < nums[k]) {
return true;
}
}
}
return false;
}
};
// Brute Force
class Solution {
public:
bool find132pattern(vector<int>& nums) {
for(int i = 0; i < nums.size(); ++i) {
for (int j = i + 1; j < nums.size(); ++j) {
if(nums[i] < nums[j]) {
for (int k = j + 1; k < nums.size(); ++k) {
if(nums[k] < nums[j] && nums[i] < nums[k]) {
return true;
}
}
}
}
}
return false;
}
}
};
class Solution {
public:
bool find132pattern(vector<int>& nums) {
for(int i = 0; i < nums.size(); ++i) {
bool found_second = false;
int j;
for(j = i + 1; j < nums.size(); ++j) {
if(nums[i] < nums[j]) {
found_second = true;
break;
}
}
if(found_second) {
for(int k = j + 1; k < nums.size(); ++k) {
if(nums[k] < nums[j] && nums[i] < nums[k]) {
return true;
}
}
}
}
return false;
}
}; | [
"[email protected]"
] | |
6c12582729b02b98ea14485e9cdf647d8854939a | 51ab43d536e5e3b963a62601acae52abcf8b326d | /Home/hw25.02/task2.cpp | 1d5036a1252f09c912d9a664c25ffb9c62a57d38 | [] | no_license | NikitaGrebeniuk/cs50 | 1ca740508113ae9978059ef20aa96ad7485d5b7b | e4349ecd540e4c3185318e7b8dbc8253a07cfdf8 | refs/heads/master | 2020-04-17T14:28:55.002184 | 2019-03-31T13:13:23 | 2019-03-31T13:13:23 | 151,932,970 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,887 | cpp | #include <stdio.h>
#include <iostream> //Подключаем библиотеку, обрабатывающую
//стандартные потоки ввода/вывода
//#include <conio.h>
const int ABCSize = 26; //Размер алфавита
const char low_ch[] = {'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'}; //Массив
//строчных букв, которые шифруются также строчными
const char high_ch[] = {'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'}; //Массив
//заглавных букв, которые шифруются также заглавными
std::string cipher(const std::string &input_s, const int shift)
{ //Функция осуществляет сдвиг строки по алфавиту на указанную величину
bool Ok; //Был ли символ определен как буква алфавита и затем зашифрован
std::string output_s(""); //Зашифрованная строка, вначале инициализируется
//пустой строкой
for(unsigned i = 0; i < input_s.length(); i++)
{ //Для всех символов шифруемой строки
Ok = false; //Вначале сбрасываем значение флага
for(int j = 0; j < ABCSize; j++)
{ //Перебираем все буквы алфавита на поиск соответствия
if (input_s[i] == low_ch[j]) //Если символ оказался строчной буквой алфавита
{
j += shift; //Сдвигаем букву по алфавиту на указанное значение
while (j >= ABCSize) j -= ABCSize; //Если значение вышло за диапазон,
while (j < 0) j += ABCSize; //корректируем его
output_s += low_ch[j]; //Добавляем полученный символ в конец
//зашифрованной строки
Ok = true; //Символ был благополучно зашифрован и добавлен в строку
break; //Перебор для данного символа можно закончить
}
else if (input_s[i] == high_ch[j]) //То же самое, если символ оказался
//заглавной буквой алфавита
{
j += shift;
if (j >= ABCSize) j -= ABCSize;
else if (j < 0) j += ABCSize;
output_s += high_ch[j];
Ok = true;
break;
}
}
if (!Ok) output_s += input_s[i]; //Если символ не является буквой алфавита,
//записываем его без изменений
}
return output_s; //По окончании возвращаем получившуюся строку
}
int main()
{
std::string s; //Шифруемая/дешифруемая строка
std::cout << "If you want to cipher string, press \"1\", if you want to decode,"
" press \"2\"";
bool Ok = false; //Корректна ли нажатая клавиша
int shift = 0; //Величина сдвига
while(!Ok) //Пока не будет нажато "1" или "2"
{
switch(getchar())
{
case '1': //Если нажато "1", шифруем строку
{
std::cout << "\nInput shift: ";
std::cin >> shift;
std::cout << "Input string to cipher: ";
while (std::cin >> s) //Шифруем одним и тем же сдвигом по одному слову
{
std::cout << cipher(s, shift) << ' ';
if (std::cin.get() == '\n') break; //Заканчиваем по нажатию Enter
}
Ok = true; //Клавиша была нажата корректно
} break;
case '2': //Если нажато "2", пытаемся дешифровать строку
{
bool Done = false; //Завершен ли процесс дешифровки
std::cout << "\nInput string to decode: ";
getline(std::cin, s); //Считываем всю дешифруемую строку
for (int i = 0; i < ABCSize && !Done; i++) //Пробуем разные величины сдвига
//до тех пор, пока не расшифруем или не проверим все возможные его значения
{
std::cout << "\nWith shift equal " << i << " we have such string:\n";
std::cout << cipher(s, i);
std::cout << "\nIf decoding is done, press \"1\"";
if (getchar() == '1') Done = true; //Строка дешифрована
}
Ok = true; //Клавиша была нажата корректно
} break;
default: std::cout << "Press either \"1\" or \"2\"!"; //Некорректно нажатая
//клавиша
}
}
getchar();
} | [
"user.email"
] | user.email |
fe0cfa25aabda438bf0297c49ebb6559baf58ec3 | 26c3e3c441c021dd0138afef886ef802b451fced | /DPS/jk_task_pro.h | df1af70ba4b9fe4fb68e5457f1d157ad258240b1 | [] | no_license | chxj1980/firstproject | 1b25543db4e4b3d1ba636a03d2f3d9d8c8fef69f | effadd90087a0894a84e5a90924935c6d492eada | refs/heads/master | 2021-09-15T20:24:09.870832 | 2018-06-10T11:17:18 | 2018-06-10T11:17:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,311 | h | //
//create by songlei 20160316
//
#ifndef JK_TASK_PRO_H__
#define JK_TASK_PRO_H__
#include <string>
#include "framework/task.h"
#include "framework/event_context.h"
#include "dps_common_type_def.h"
class on_tell_local_ids_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_tell_local_ids_task(const char* LocalIDS, const char* sRes1, const long iRes1):
local_ids_(LocalIDS),s_res1_(sRes1),i_res1(iRes1){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string local_ids_;
std::string s_res1_;
long i_res1;
};
class on_link_server_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_link_server_task(const long sNum, const long bz):s_num_(sNum),bz_(bz){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
long s_num_;
long bz_;
};
class on_user_in_out_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_user_in_out_task( const char* sIDS, const char* sName, const long sType, const char* sIPS, const long bz, const long iRes1, const long iRes2, const char* sRes1, const char* sRes2)
:s_ids_(sIDS),s_name_(sName),s_type_(sType),s_ips_(sIPS),bz_(bz),i_res1_(iRes1),i_res2_(iRes2),s_res1_(sRes1),s_res2_(sRes2){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string s_ids_;
std::string s_name_;
long s_type_;
std::string s_ips_;
long bz_;
long i_res1_;
long i_res2_;
std::string s_res1_;
std::string s_res2_;
};
class on_event_get_msg_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_event_get_msg_task( const char* sSrcIDS, const char* sData, const long nDataLen, const long nOrderbz):
s_src_ids_(sSrcIDS),s_data_(sData),n_data_len(nDataLen),n_orderbz_(nOrderbz){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string s_src_ids_;
std::string s_data_;
long n_data_len;
long n_orderbz_;
};
class on_dbimage_center_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_dbimage_center_task( const char* sIDS, const long sCH, const long successbz, const char* fIDS, const char* fIPS, const long DBMode, const long localVPort, const long localAPort,
const long destVPort, const long destAPort, const long iRes1, const char* sRes1)
:s_ids_(sIDS),s_ch_(sCH),successbz_(successbz),fids_(fIDS),fips_(fIPS),db_mode_(DBMode),local_vport_(localVPort),local_aport_(localAPort),
dest_vport_(destVPort),dest_aport_(destAPort),i_res1(iRes1),s_res1_(sRes1){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string s_ids_;
long s_ch_;
long successbz_;
std::string fids_;
std::string fips_;
long db_mode_;
long local_vport_;
long local_aport_;
long dest_vport_;
long dest_aport_;
long i_res1;
std::string s_res1_;
};
class on_transparent_command_cb_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_transparent_command_cb_task( const char* fIDS, const char* sCommands):
fids_(fIDS),s_commnads_(sCommands){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string fids_;
std::string s_commnads_;
};
class on_client_record_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_record_task( const char* sIDS, const long sCH, const long bz):
sids_(sIDS),sch_(sCH),bz_(bz){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
long bz_;
};
class on_client_alarm_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_alarm_task( const char* sIDS, const long sCH, const long bz):
sids_(sIDS),sch_(sCH),bz_(bz){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
long bz_;
};
class on_client_motion_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_motion_task(const char* sIDS, const long sCH, const long bz):
sids_(sIDS),sch_(sCH),bz_(bz){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
long bz_;
};
class on_client_image_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_image_task(const char* sIDS, const long sCH, const long bz, const long value):
sids_(sIDS),sch_(sCH),bz_(bz),value_(value){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
long bz_;
long value_;
};
class on_ask_angelcamerazt_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_ask_angelcamerazt_task( const long OP, const char* dIDS, const long dCH, const char* sRes1, const long iRes1):
dids_(dIDS),dch_(dCH),sres1_(sRes1),ires1(iRes1){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string dids_;
long dch_;
std::string sres1_;
long ires1;
};
class on_client_capture_iframe_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_capture_iframe_task( const char* sIDS, const long sCH):
sids_(sIDS),sch_(sCH){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
};
class on_client_osd_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_osd_task( const char* sIDS, const long sCH, const char* osdName, const long bz, const long iRes1, const long iRes2, const char* sRes1, const char* sRes2):
sids_(sIDS),osd_name_(osdName),bz_(bz),ires1_(iRes1),ires2_(iRes2),sres1_(sRes1),sres2_(sRes2){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
std::string osd_name_;
long bz_;
long ires1_;
long ires2_;
std::string sres1_;
std::string sres2_;
};
class on_client_yt_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_yt_task( const char* sIDS, const long sCH, const long Op):
sids_(sIDS),sch_(sCH),op_(Op){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
long op_;
};
class on_client_ytex_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_ytex_task( const char* dIDS, const long dCH, const long op, const long val, const long iRes1, const char* sRes1):
dids_(dIDS),dch_(dCH),op_(op),val_(val),ires1_(iRes1),sres1_(sRes1){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string dids_;
long dch_;
long op_;
long val_;
long ires1_;
std::string sres1_;
};
class on_client_select_point_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_select_point_task( const char* sIDS, const long sCH, const long cNum):
sids_(sIDS),sch_(sCH),cnum_(cNum){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
long cnum_;
};
class on_client_set_point_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_client_set_point_task( char* sIDS, long sCH, long cNum, char* pName):
sids_(sIDS),sch_(sCH),cnum_(cNum),pname_(pName){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string sids_;
long sch_;
long cnum_;
std::string pname_;
};
class on_transparent_data_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_transparent_data_task( const char* fIDS, const long iCmd, const char* Buf, const long lens):
fids_(fIDS),icmd_(iCmd),buf_(Buf),lens_(lens){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string fids_;
long icmd_;
std::string buf_;
long lens_;
};
class on_group_device_state_change_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_group_device_state_change_task( const char* sGroupIDS, const char* sDeviceIDS, const char* sDeviceName, const char* sDeviceIPS, const long iType, const long iIsOnline, const long iRes1, const char* sRes1):
s_group_ids_(sGroupIDS),s_device_ids(sDeviceIDS),s_device_name(sDeviceName),s_device_ips(sDeviceIPS),itype_(iType),iisonline_(iIsOnline),ires1_(iRes1),sres1_(sRes1){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
std::string s_group_ids_;
std::string s_device_ids;
std::string s_device_name;
std::string s_device_ips;
long itype_;
long iisonline_;
long ires1_;
std::string sres1_;
};
class on_check_time_task : public framework::task_base_t, public framework::event_context_t
{
public:
on_check_time_task( const long iYear, const long iMonth, const long iDate, const long iWeek, const long iHour, const long iMin, const long iSec, const long iRes1, const long iRes2 ):
iyear_(iYear),imonth_(iMonth),idate_(iDate),iweek_(iWeek),ihour_(iHour),imin_(iMin),isec_(iSec),ires1_(iRes1),ires2_(iRes2){}
uint32_t run();
void process_event() {signal(deferred, recv_center_cmd_pro_thread);}
private:
long iyear_;
long imonth_;
long idate_;
long iweek_;
long ihour_;
long imin_;
long isec_;
long ires1_;
long ires2_;
};
#endif //end #ifndef JK_TASK_PRO_H__
| [
"[email protected]"
] | |
7903bbc486dcb29b901e94d20c8431edd461c1ea | c12dc233139fc8aa95877e6081e671c4a972b091 | /PhysicsList/ORKALowEMPhysicsList.cxx | e6e70b11537dd58782470bec660b906ee22538d3 | [] | no_license | yanqicw/ORKA-ILCRoot | b4be984cb9f1991b0c174da7428366af4973ef84 | 6e66c4cbae6835586274a385bee9bed254a63976 | refs/heads/master | 2020-04-01T02:27:50.942859 | 2012-12-03T17:51:10 | 2012-12-03T17:51:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,307 | cxx | //
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
// $Id: ORKALowEMPhysicsList.cc,v 1.27 2009-11-15 14:27:30 maire Exp $
// GEANT4 tag $Name: geant4-09-05-beta-01 $
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#include "globals.hh"
#include "ORKALowEMPhysicsList.h"
#include "G4RegionStore.hh"
#include "G4Region.hh"
#include "G4ProductionCuts.hh"
#include "G4ProcessManager.hh"
#include "G4ParticleTypes.hh"
#include "G4UserSpecialCuts.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#include "G4PhysicsListHelper.hh"
// gamma
#include "G4PhotoElectricEffect.hh"
#include "G4LivermorePhotoElectricModel.hh"
#include "G4ComptonScattering.hh"
#include "G4LivermoreComptonModel.hh"
#include "G4GammaConversion.hh"
#include "G4LivermoreGammaConversionModel.hh"
#include "G4RayleighScattering.hh"
#include "G4LivermoreRayleighModel.hh"
// e-
#include "G4eMultipleScattering.hh"
#include "G4eIonisation.hh"
#include "G4LivermoreIonisationModel.hh"
#include "G4eBremsstrahlung.hh"
#include "G4LivermoreBremsstrahlungModel.hh"
// e+
#include "G4eIonisation.hh"
#include "G4eBremsstrahlung.hh"
#include "G4eplusAnnihilation.hh"
#include "G4eMultipleScattering.hh"
#include "G4eIonisation.hh"
#include "G4MuMultipleScattering.hh"
#include "G4MuIonisation.hh"
#include "G4MuBremsstrahlung.hh"
#include "G4MuPairProduction.hh"
#include "G4hMultipleScattering.hh"
#include "G4hIonisation.hh"
#include "G4hBremsstrahlung.hh"
#include "G4hPairProduction.hh"
#include "G4ionIonisation.hh"
#include "G4GammaNuclearReaction.hh"
#include "G4PhotoNuclearProcess.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
ORKALowEMPhysicsList::ORKALowEMPhysicsList(): G4VUserPhysicsList()
{
// The production threshold is fixed to 0.1 mm for all the particles
// Secondary particles with a range bigger than 0.1 mm
// are generated; otherwise their energy is considered deposited locally
defaultCutValue = 0.1001 * mm;
SetVerboseLevel(1);
#ifdef G4_SCIFI_CUTS_USE
fScifiDetectorCuts = 0;
//fCutForScifiDetector = 0.012*mm;
fCutForScifiDetector.push_back(0.00201*mm);
fCutForScifiDetector.push_back(0.00202*mm);
fCutForScifiDetector.push_back(0.00203*mm);
fCutForScifiDetector.push_back(0.00204*mm);
fCutForXtalDetector.push_back(0.00205*mm);
fCutForXtalDetector.push_back(0.00206*mm);
fCutForXtalDetector.push_back(0.00207*mm);
fCutForXtalDetector.push_back(0.00208*mm);
//fCutForXtalDetector = 0.011*mm;
#endif
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
ORKALowEMPhysicsList::~ORKALowEMPhysicsList()
{
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::ConstructParticle()
{
// In this method, static member functions should be called
// for all particles which you want to use.
// This ensures that objects of these particle types will be
// created in the program.
ConstructBosons();
ConstructLeptons();
ConstructMesons();
ConstructBaryons();
ConstructOthers();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::ConstructBosons()
{
// pseudo-particles
G4Geantino::GeantinoDefinition();
G4ChargedGeantino::ChargedGeantinoDefinition();
// gamma
G4Gamma::GammaDefinition();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::ConstructLeptons()
{
// leptons
// e+/-
G4Electron::ElectronDefinition();
G4Positron::PositronDefinition();
// mu+/-
G4MuonPlus::MuonPlusDefinition();
G4MuonMinus::MuonMinusDefinition();
// nu_e
G4NeutrinoE::NeutrinoEDefinition();
G4AntiNeutrinoE::AntiNeutrinoEDefinition();
// nu_mu
G4NeutrinoMu::NeutrinoMuDefinition();
G4AntiNeutrinoMu::AntiNeutrinoMuDefinition();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::ConstructMesons()
{
// mesons
// light mesons
G4PionPlus::PionPlusDefinition();
G4PionMinus::PionMinusDefinition();
G4PionZero::PionZeroDefinition();
G4Eta::EtaDefinition();
G4EtaPrime::EtaPrimeDefinition();
G4KaonPlus::KaonPlusDefinition();
G4KaonMinus::KaonMinusDefinition();
G4KaonZero::KaonZeroDefinition();
G4AntiKaonZero::AntiKaonZeroDefinition();
G4KaonZeroLong::KaonZeroLongDefinition();
G4KaonZeroShort::KaonZeroShortDefinition();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::ConstructBaryons()
{
// barions
G4Proton::ProtonDefinition();
G4AntiProton::AntiProtonDefinition();
G4Neutron::NeutronDefinition();
G4AntiNeutron::AntiNeutronDefinition();
}
void ORKALowEMPhysicsList::ConstructOthers()
{
// ions
G4Deuteron::DeuteronDefinition();
G4Triton::TritonDefinition();
G4Alpha::AlphaDefinition();
G4He3::He3Definition();
G4GenericIon::GenericIonDefinition();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::ConstructProcess()
{
AddTransportation();
ConstructEM();
ConstructGeneral();
AddStepMax();
#ifdef G4_NEUTRONSTIME_CUT
// Needed to limit neutron tracking time
G4ProcessManager* pmanager = G4Neutron::Neutron()->GetProcessManager();
pmanager->AddProcess(new G4UserSpecialCuts(),-1,-1,1);
#endif
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::ConstructEM()
{
G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
theParticleIterator->reset();
while( (*theParticleIterator)() ){
G4ParticleDefinition* particle = theParticleIterator->value();
G4ProcessManager* pmanager = particle->GetProcessManager();
G4String particleName = particle->GetParticleName();
if (particleName == "gamma") {
// gamma
#ifdef G4_HIGH_ENERGY
// use EM process from N02 example
ph->RegisterProcess(new G4PhotoElectricEffect, particle);
ph->RegisterProcess(new G4ComptonScattering, particle);
ph->RegisterProcess(new G4GammaConversion, particle);
#else
// use EM process from BrachiTherapy example
G4RayleighScattering* theRayleigh = new G4RayleighScattering();
theRayleigh->SetModel(new G4LivermoreRayleighModel()); //not strictly necessary
pmanager->AddDiscreteProcess(theRayleigh);
G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
thePhotoElectricEffect->SetModel(new G4LivermorePhotoElectricModel());
pmanager->AddDiscreteProcess(thePhotoElectricEffect);
G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
theComptonScattering->SetModel(new G4LivermoreComptonModel());
pmanager->AddDiscreteProcess(theComptonScattering);
G4GammaConversion* theGammaConversion = new G4GammaConversion();
theGammaConversion->SetModel(new G4LivermoreGammaConversionModel());
pmanager->AddDiscreteProcess(theGammaConversion);
// Photo-nuclear process (only for ORKA)
G4GammaNuclearReaction* lowEGammaModel = new G4GammaNuclearReaction();
lowEGammaModel->SetMaxEnergy(3.5*GeV);
G4PhotoNuclearProcess* thePhotoNuclearProcess = new G4PhotoNuclearProcess();
thePhotoNuclearProcess->RegisterMe(lowEGammaModel);
pmanager->AddDiscreteProcess(thePhotoNuclearProcess);
#endif
} else if (particleName == "e-") {
//electron
#ifdef G4_HIGH_ENERGY
// use EM process from N02 example
ph->RegisterProcess(new G4eMultipleScattering, particle);
ph->RegisterProcess(new G4eIonisation, particle);
ph->RegisterProcess(new G4eBremsstrahlung, particle);
#else
// use EM process from BrachiTherapy example
G4eMultipleScattering* msc = new G4eMultipleScattering();
msc->SetStepLimitType(fUseDistanceToBoundary);
pmanager->AddProcess(msc,-1, 1, 1);
// Ionisation
G4eIonisation* eIonisation = new G4eIonisation();
eIonisation->SetEmModel(new G4LivermoreIonisationModel());
eIonisation->SetStepFunction(0.2, 100*um); //improved precision in tracking
pmanager->AddProcess(eIonisation,-1, 2, 2);
// Bremsstrahlung
G4eBremsstrahlung* eBremsstrahlung = new G4eBremsstrahlung();
eBremsstrahlung->SetEmModel(new G4LivermoreBremsstrahlungModel());
pmanager->AddProcess(eBremsstrahlung, -1,-3, 3);
#endif
} else if (particleName == "e+") {
//positron
#ifdef G4_HIGH_ENERGY
// use EM process from N02 example
ph->RegisterProcess(new G4eMultipleScattering, particle);
ph->RegisterProcess(new G4eIonisation, particle);
ph->RegisterProcess(new G4eBremsstrahlung, particle);
ph->RegisterProcess(new G4eplusAnnihilation, particle);
#else
// use EM process from BrachiTherapy example
G4eMultipleScattering* msc = new G4eMultipleScattering();
msc->SetStepLimitType(fUseDistanceToBoundary);
pmanager->AddProcess(msc,-1, 1, 1);
// Ionisation (use default, no low-energy available)
G4eIonisation* eIonisation = new G4eIonisation();
eIonisation->SetStepFunction(0.2, 100*um); //improved precision in tracking
pmanager->AddProcess(eIonisation, -1, 2, 2);
//Bremsstrahlung (use default, no low-energy available)
pmanager->AddProcess(new G4eBremsstrahlung(), -1,-1, 3);
//Annihilation
pmanager->AddProcess(new G4eplusAnnihilation(),0,-1, 4);
#endif
} else if( particleName == "mu+" ||
particleName == "mu-" ) {
//muon
//ph->RegisterProcess(new G4MuMultipleScattering, particle);
//ph->RegisterProcess(new G4MuIonisation, particle);
//ph->RegisterProcess(new G4MuBremsstrahlung, particle);
//ph->RegisterProcess(new G4MuPairProduction, particle);
pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1);
pmanager->AddProcess(new G4MuIonisation, -1, 2, 2);
pmanager->AddProcess(new G4MuBremsstrahlung, -1, 3, 3);
pmanager->AddProcess(new G4MuPairProduction, -1, 4, 4);
} else if( particleName == "proton" ||
particleName == "pi-" ||
particleName == "pi+" ) {
//proton
//ph->RegisterProcess(new G4hMultipleScattering, particle);
//ph->RegisterProcess(new G4hIonisation, particle);
//ph->RegisterProcess(new G4hBremsstrahlung, particle);
//ph->RegisterProcess(new G4hPairProduction, particle);
pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1);
pmanager->AddProcess(new G4hIonisation, -1, 2, 2);
pmanager->AddProcess(new G4hBremsstrahlung, -1, 3, 3);
pmanager->AddProcess(new G4hPairProduction, -1, 4, 4);
} else if( particleName == "alpha" ||
particleName == "He3" ) {
//alpha
//ph->RegisterProcess(new G4hMultipleScattering, particle);
//ph->RegisterProcess(new G4ionIonisation, particle);
pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1);
pmanager->AddProcess(new G4ionIonisation, -1, 2, 2);
} else if( particleName == "GenericIon" ) {
//Ions
//ph->RegisterProcess(new G4hMultipleScattering, particle);
//ph->RegisterProcess(new G4ionIonisation, particle);
pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1);
pmanager->AddProcess(new G4ionIonisation, -1, 2, 2);
} else if (particleName == "kaon+" ||
particleName == "kaon-" ) {
//ph->RegisterProcess(new G4hMultipleScattering(), particle);
//ph->RegisterProcess(new G4hIonisation(), particle);
//ph->RegisterProcess(new G4hBremsstrahlung(), particle);
//ph->RegisterProcess(new G4hPairProduction(), particle);
pmanager->AddProcess(new G4hMultipleScattering(), -1, 1, 1);
pmanager->AddProcess(new G4hIonisation(), -1, 2, 2);
pmanager->AddProcess(new G4hBremsstrahlung(), -1, 3, 3);
pmanager->AddProcess(new G4hPairProduction(), -1, 4, 4);
} else if (particleName == "B+" ||
particleName == "B-" ||
particleName == "D+" ||
particleName == "D-" ||
particleName == "Ds+" ||
particleName == "Ds-" ||
particleName == "anti_He3" ||
particleName == "anti_alpha" ||
particleName == "anti_deuteron" ||
particleName == "anti_lambda_c+" ||
particleName == "anti_omega-" ||
particleName == "anti_proton" ||
particleName == "anti_sigma_c+" ||
particleName == "anti_sigma_c++" ||
particleName == "anti_sigma+" ||
particleName == "anti_sigma-" ||
particleName == "anti_triton" ||
particleName == "anti_xi_c+" ||
particleName == "anti_xi-" ||
particleName == "deuteron" ||
particleName == "lambda_c+" ||
particleName == "omega-" ||
particleName == "sigma_c+" ||
particleName == "sigma_c++" ||
particleName == "sigma+" ||
particleName == "sigma-" ||
particleName == "tau+" ||
particleName == "tau-" ||
particleName == "triton" ||
particleName == "xi_c+" ||
particleName == "xi-" ) {
//ph->RegisterProcess(new G4hMultipleScattering(), particle);
//ph->RegisterProcess(new G4hIonisation(), particle);
pmanager->AddProcess(new G4hMultipleScattering(), -1, 1, 1);
pmanager->AddProcess(new G4hIonisation(), -1, 2, 2);
} else if ((!particle->IsShortLived()) &&
(particle->GetPDGCharge() != 0.0) &&
(particle->GetParticleName() != "chargedgeantino")) {
//all others charged particles except geantino
//ph->RegisterProcess(new G4hMultipleScattering, particle);
//ph->RegisterProcess(new G4hIonisation, particle);
pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1);
pmanager->AddProcess(new G4ionIonisation, -1, 2, 2);
}
}
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#include "G4Decay.hh"
void ORKALowEMPhysicsList::ConstructGeneral()
{
G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
// Add Decay Process
G4Decay* theDecayProcess = new G4Decay();
theParticleIterator->reset();
while( (*theParticleIterator)() ){
G4ParticleDefinition* particle = theParticleIterator->value();
if (theDecayProcess->IsApplicable(*particle)) {
ph->RegisterProcess(theDecayProcess, particle);
}
}
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#include "G4StepLimiter.hh"
void ORKALowEMPhysicsList::AddStepMax()
{
// Step limitation seen as a process
G4StepLimiter* stepLimiter = new G4StepLimiter();
////G4UserSpecialCuts* userCuts = new G4UserSpecialCuts();
theParticleIterator->reset();
while ((*theParticleIterator)()){
G4ParticleDefinition* particle = theParticleIterator->value();
G4ProcessManager* pmanager = particle->GetProcessManager();
if (particle->GetPDGCharge() != 0.0)
{
pmanager ->AddDiscreteProcess(stepLimiter);
////pmanager ->AddDiscreteProcess(userCuts);
}
}
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::SetCuts()
{
//G4VUserPhysicsList::SetCutsWithDefault method sets
//the default cut value for all particle types
//
SetCutsWithDefault();
//SetCutValue(cutForGamma, "gamma", "DefaultRegionForTheWorld");
//SetCutValue(cutForElectron, "e-", "DefaultRegionForTheWorld");
//SetCutValue(cutForPositron, "e+", "DefaultRegionForTheWorld");
// G4cout << "PhysicsList: world cuts are set cutG= " << cutForGamma/mm
// << " mm cutE= " << cutForElectron/mm << " mm " << G4endl;
//G4cout << " cutV= " << fCutForScifiDetector
// << " cutM= " << cutForMuonDetector<<G4endl;
// Set the secondary production cut (for SetCut calculation)lower than 990. eV
// Very important for high precision of lowenergy processes at low energies
G4double lowLimit = 250. * eV;
G4double highLimit = 100. * GeV;
G4ProductionCutsTable::GetProductionCutsTable()->SetEnergyRange(lowLimit, highLimit);
#ifdef G4_SCIFI_CUTS_USE
G4Region* scifiRegion = (G4RegionStore::GetInstance())->GetRegion("ScifiDetector");
//SetScifiCut(fCutForScifiDetector);
scifiRegion->SetProductionCuts(new G4ProductionCuts());
fScifiDetectorCuts = scifiRegion->GetProductionCuts();
fScifiDetectorCuts->SetProductionCuts(fCutForScifiDetector);
G4cout << "Scifi cuts are set" << G4endl;
#endif
G4Region* Xtalregion = (G4RegionStore::GetInstance())->GetRegion("XtalDetector");
fXtalDetectorCuts = Xtalregion->GetProductionCuts();
//fXtalDetectorCuts->SetProductionCut(fCutForXtalDetector, idxG4GammaCut);
//fXtalDetectorCuts->SetProductionCut(fCutForXtalDetector, idxG4ElectronCut);
//fXtalDetectorCuts->SetProductionCut(fCutForXtalDetector, idxG4PositronCut);
Xtalregion->SetProductionCuts(new G4ProductionCuts());
fXtalDetectorCuts = Xtalregion->GetProductionCuts();
fXtalDetectorCuts->SetProductionCuts(fCutForXtalDetector);
G4cout << "XtalDetector cuts are set" << G4endl;
if (verboseLevel>0) DumpCutValuesTable();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ORKALowEMPhysicsList::SetScifiCut(G4double cut)
{
#ifdef G4_SCIFI_CUTS_USE
////fCutForScifiDetector = cut;
if( fScifiDetectorCuts ) {
fScifiDetectorCuts->SetProductionCut(cut, idxG4GammaCut);
fScifiDetectorCuts->SetProductionCut(cut, idxG4ElectronCut);
fScifiDetectorCuts->SetProductionCut(cut, idxG4PositronCut);
}
#endif
}
| [
"vito@fbb65c11-2394-7148-9363-1d506dd39c89"
] | vito@fbb65c11-2394-7148-9363-1d506dd39c89 |
18f866b402eead2ce6ed4c42c610d0c3ff0216c8 | 96a42d71bf008be6eb982760e91d3bba41dfbcec | /gen/windows/kin/eigen/src/R_hip_flexion_left.cpp | 3cee1d2ae0c48842bcb4cd8f20d42f46cda3cb7e | [
"BSD-3-Clause"
] | permissive | wateryi/Cassie_StateEstimation | 3d39ab18679971941bf1e01ad89bb92cfe3c35e6 | cb308d8befd410873bbd6d1dae4335de4919a42d | refs/heads/master | 2020-05-19T02:03:37.848072 | 2019-04-29T18:15:40 | 2019-04-29T18:15:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,458 | cpp | /*
* Automatically Generated from Mathematica.
* Mon 29 Apr 2019 13:21:47 GMT-04:00
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "R_hip_flexion_left.h"
#ifdef _MSC_VER
#define INLINE __forceinline /* use __forceinline (VC++ specific) */
#else
#define INLINE static inline /* use standard inline */
#endif
/**
* Copied from Wolfram Mathematica C Definitions file mdefs.hpp
* Changed marcos to inline functions (Eric Cousineau)
*/
INLINE double Power(double x, double y) { return pow(x, y); }
INLINE double Sqrt(double x) { return sqrt(x); }
INLINE double Abs(double x) { return fabs(x); }
INLINE double Exp(double x) { return exp(x); }
INLINE double Log(double x) { return log(x); }
INLINE double Sin(double x) { return sin(x); }
INLINE double Cos(double x) { return cos(x); }
INLINE double Tan(double x) { return tan(x); }
INLINE double Csc(double x) { return 1.0/sin(x); }
INLINE double Sec(double x) { return 1.0/cos(x); }
INLINE double ArcSin(double x) { return asin(x); }
INLINE double ArcCos(double x) { return acos(x); }
/* update ArcTan function to use atan2 instead. */
INLINE double ArcTan(double x, double y) { return atan2(y,x); }
INLINE double Sinh(double x) { return sinh(x); }
INLINE double Cosh(double x) { return cosh(x); }
INLINE double Tanh(double x) { return tanh(x); }
#define E 2.71828182845904523536029
#define Pi 3.14159265358979323846264
#define Degree 0.01745329251994329576924
/*
* Sub functions
*/
static void output1(Eigen::Matrix<double,3,3> &p_output1, const Eigen::Matrix<double,20,1> &var1)
{
double t1271;
double t2075;
double t472;
double t1272;
double t3276;
double t329;
double t4940;
double t4989;
double t5274;
double t1400;
double t4049;
double t4257;
double t5341;
double t8;
double t5698;
double t5713;
double t5908;
double t5909;
double t5923;
double t5829;
double t5887;
double t5890;
double t5776;
double t5800;
double t5740;
double t5741;
double t5746;
double t5748;
double t5792;
double t5798;
double t4817;
double t5342;
double t5483;
double t5959;
double t5966;
double t5967;
double t6000;
double t6002;
double t6003;
double t5898;
double t5952;
double t5955;
double t6054;
double t6060;
double t6071;
double t6080;
double t6092;
double t6095;
double t6035;
double t6040;
double t6042;
t1271 = Cos(var1[5]);
t2075 = Sin(var1[3]);
t472 = Cos(var1[3]);
t1272 = Sin(var1[4]);
t3276 = Sin(var1[5]);
t329 = Cos(var1[6]);
t4940 = -1.*t1271*t2075;
t4989 = t472*t1272*t3276;
t5274 = t4940 + t4989;
t1400 = t472*t1271*t1272;
t4049 = t2075*t3276;
t4257 = t1400 + t4049;
t5341 = Sin(var1[6]);
t8 = Cos(var1[8]);
t5698 = Cos(var1[4]);
t5713 = Cos(var1[7]);
t5908 = t472*t1271;
t5909 = t2075*t1272*t3276;
t5923 = t5908 + t5909;
t5829 = t1271*t2075*t1272;
t5887 = -1.*t472*t3276;
t5890 = t5829 + t5887;
t5776 = Sin(var1[7]);
t5800 = Sin(var1[8]);
t5740 = t472*t5698*t5713;
t5741 = t329*t5274;
t5746 = t4257*t5341;
t5748 = t5741 + t5746;
t5792 = t5748*t5776;
t5798 = t5740 + t5792;
t4817 = t329*t4257;
t5342 = -1.*t5274*t5341;
t5483 = t4817 + t5342;
t5959 = t5698*t5713*t2075;
t5966 = t329*t5923;
t5967 = t5890*t5341;
t6000 = t5966 + t5967;
t6002 = t6000*t5776;
t6003 = t5959 + t6002;
t5898 = t329*t5890;
t5952 = -1.*t5923*t5341;
t5955 = t5898 + t5952;
t6054 = -1.*t5713*t1272;
t6060 = t5698*t329*t3276;
t6071 = t5698*t1271*t5341;
t6080 = t6060 + t6071;
t6092 = t6080*t5776;
t6095 = t6054 + t6092;
t6035 = t5698*t1271*t329;
t6040 = -1.*t5698*t3276*t5341;
t6042 = t6035 + t6040;
p_output1(0)=t5798*t5800 - 1.*t5483*t8;
p_output1(1)=t5800*t6003 - 1.*t5955*t8;
p_output1(2)=t5800*t6095 - 1.*t6042*t8;
p_output1(3)=t5483*t5800 + t5798*t8;
p_output1(4)=t5800*t5955 + t6003*t8;
p_output1(5)=t5800*t6042 + t6095*t8;
p_output1(6)=-1.*t5713*t5748 + t472*t5698*t5776;
p_output1(7)=t2075*t5698*t5776 - 1.*t5713*t6000;
p_output1(8)=-1.*t1272*t5776 - 1.*t5713*t6080;
}
Eigen::Matrix<double,3,3> R_hip_flexion_left(const Eigen::Matrix<double,20,1> &var1)
//void R_hip_flexion_left(Eigen::Matrix<double,3,3> &p_output1, const Eigen::Matrix<double,20,1> &var1)
{
/* Call Subroutines */
Eigen::Matrix<double,3,3> p_output1;
output1(p_output1, var1);
return p_output1;
}
| [
"[email protected]"
] | |
887d5bbe6499f66cdd840b7f735d8153904cd96d | fc08c379267930c81e90ab9ca85cdd58ec6833b8 | /model/DislocationDynamics/IO/DislocationEdgeIO.h | f2e9eace6d8a9874983aedee1fdedd807067bd35 | [] | no_license | cameronmcelfresh/Dislocation_Dynamics_Creep_Modeling | 85714ab5dad31c3f5db700c22cf6d194775daf13 | 9398c374b603b54baeff18b96665580d84fef5d3 | refs/heads/master | 2020-12-10T18:22:41.591936 | 2020-02-24T20:11:35 | 2020-02-24T20:11:35 | 233,651,740 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,882 | h | /* This file is part of MODEL, the Mechanics Of Defect Evolution Library.
*
* Copyright (C) 2011 by Giacomo Po <[email protected]>.
*
* model is distributed without any warranty under the
* GNU General Public License (GPL) v2 <http://www.gnu.org/licenses/>.
*/
#ifndef model_DislocationEdgeIO_H_
#define model_DislocationEdgeIO_H_
#include <tuple>
namespace model
{
template<short unsigned int dim>
struct DislocationEdgeIO
{
size_t loopID; // sID
size_t sourceID; // sID
size_t sinkID; // sID
int meshLocation; // mesh location
/**********************************************************************/
template<typename LoopLinkType>
DislocationEdgeIO(const LoopLinkType& ll) :
/* init */ loopID(ll.loop()->sID),
/* init */ sourceID(ll.source()->sID),
/* init */ sinkID(ll.sink()->sID),
/* init */ meshLocation(ll.pLink->meshLocation())
{
// assert(0 && "FINISH HERE, THIS MUST BE COMPATIBLE WITH ID READER");
}
/**********************************************************************/
DislocationEdgeIO(const size_t& loopID_in, // sID
const size_t& sourceID_in, // position
const size_t& sinkID_in, // velocity
const int& meshLocation_in) :
/* init */ loopID(loopID_in),
/* init */ sourceID(sourceID_in),
/* init */ sinkID(sinkID_in),
/* init */ meshLocation(meshLocation_in)
{
// assert(0 && "FINISH HERE, THIS MUST BE COMPATIBLE WITH ID READER");
}
/**********************************************************************/
DislocationEdgeIO() :
/* init */ loopID(0),
/* init */ sourceID(0),
/* init */ sinkID(0),
/* init */ meshLocation(0)
{
}
/**********************************************************************/
DislocationEdgeIO(std::stringstream& ss) :
/* init */ loopID(0),
/* init */ sourceID(0),
/* init */ sinkID(0),
/* init */ meshLocation(0)
{
ss>>loopID;
ss>>sourceID;
ss>>sinkID;
ss>>meshLocation;
}
/**********************************************************************/
template <class T>
friend T& operator << (T& os, const DislocationEdgeIO<dim>& ds)
{
os << ds.loopID<<"\t"
/**/<< ds.sourceID<<"\t"
/**/<< ds.sinkID<<"\t"
/**/<< ds.meshLocation;
return os;
}
};
}
#endif
| [
"[email protected]"
] | |
20d0f54dbca020f886423be3828fdd529bba0b50 | fb8ece77d3448e73a9f18879d4c5b0f177b97bff | /SNLCompiler/cl/scanner.h | 16ca8d8f58775a30474fe7798771abecf0f2ecac | [] | no_license | Chanchix/SNLCompiler | a87cfa9845d2c88e38078693ebaffc75eed3f8c0 | 011e7601d9dfcbdeb73ac3314e12bfbd322cd27c | refs/heads/master | 2023-04-08T17:38:55.988008 | 2021-04-28T08:30:18 | 2021-04-28T08:30:18 | 99,064,414 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 352 | h | #ifndef _SCANNER_H_
#define _SCANNER_H_
#include<cctype>
#include<sstream>
#include<istream>
#include "lex.h"
#include "token.h"
#include "exalgorithm.h"
#define cstr(sstr) ((sstr).str().c_str())
template<class LEX>
class Scanner{
std::istream& in;
public:
Scanner(std::istream& _in): in(_in) {}
virtual TokenList *getTokenList() = 0;
};
#endif
| [
"[email protected]"
] | |
57ec24e693ce3b548658cf781a40b427214d49ec | 4dfcab2488f8bc383a58f0e3e0c795a5a88de974 | /aula09-tpc/aula09-tpc/AssemblyInfo.cpp | 60947c1df21fa1edaa0b84ed2c6fee4fba609d9b | [] | no_license | jsimaoisel/ave-2014-15-sem1 | 30b07a7ab21be4c01f7f8dd8a2257b78fd8d669e | 38339214ad83e678083c023b2501ed00d350dc04 | refs/heads/master | 2020-05-23T11:19:34.539370 | 2014-10-24T15:46:12 | 2014-10-24T15:46:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,215 | cpp | #include "stdafx.h"
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
//
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly:AssemblyTitleAttribute(L"aula09tpc")];
[assembly:AssemblyDescriptionAttribute(L"")];
[assembly:AssemblyConfigurationAttribute(L"")];
[assembly:AssemblyCompanyAttribute(L"")];
[assembly:AssemblyProductAttribute(L"aula09tpc")];
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2014")];
[assembly:AssemblyTrademarkAttribute(L"")];
[assembly:AssemblyCultureAttribute(L"")];
//
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly:AssemblyVersionAttribute("1.0.*")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)]; | [
"[email protected]"
] | |
bad0c2f9fb574bdbd3cec08a39edbe41e886aa1f | dd3b1ecca0740e994117c7b9e84f86512b221321 | /Mutexes/Mutex/CodingThread/CodingThread/header.h | 10e92b9f0f9d397fa2e1160054766a0918dfb637 | [] | no_license | ElenaSerbova/WinApi | 4f7b08d45c11746df83f0ed7b0523ffb419f9f48 | 28733033ad2762e1000293fa4c1f7b1a2efb7e06 | refs/heads/main | 2023-04-25T13:07:36.511800 | 2021-05-19T08:49:53 | 2021-05-19T08:49:53 | 357,501,760 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 136 | h | #pragma once
#include<windows.h>
#include <windowsX.h>
#include <tchar.h>
#include <fstream>
#include"resource.h"
using namespace std; | [
"[email protected]"
] | |
dd7e1417d5a1d650a5c17ccf2695938124f00ef0 | dab8f55b40f95729ed3a85b9dc918c719616fd62 | /lab2/Product.h | 4ea9918c81a7c2337e8dc9c446b334484e587ad7 | [] | no_license | JavaWars/OOP_lab | 59d4e4e8f96088ed4f4cfa6b7f20ac8e763d74ac | 9aaa081ce9055ccd7d288c3854264540ed4be4f8 | refs/heads/master | 2021-01-18T18:53:31.454089 | 2017-03-08T20:49:35 | 2017-03-08T20:49:35 | 84,363,937 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 680 | h | #ifndef _Product_
#define _Product_
#include <string>
#include <map>
#include <iostream>
using namespace std;
enum category
{
FOOD,
CHEMISTRY,
HYGIENE,
FAN,
OTHER
};
string categoryToString(category _cat);
class Product
{
private:
double price;
std::string name;
category cat;
void initial();
public:
Product();
Product(const Product & _product);
Product(double _price, std::string _name, category _cat);
void print();
double getPrice();
category getCategory() { return cat; }
bool operator ==( Product & _prod);
friend bool operator <(const Product & _prod1, const Product & _prod2);
bool operator >( Product & _prod);
~Product();
};
#endif _Product_
| [
"[email protected]"
] | |
40039d31d382f9b6988b0661da56bad11ba42d56 | fcba699596b4f85ee1d8a0e87710e787ddeda191 | /SkinControl/stdafx.cpp | 46270f4307a796b64a2ca9fa3fa9e0a587cafa28 | [] | no_license | lemontreehuang/wh_code | f5ec54659d5263e462ca3f9adcd5dfe748ddef55 | 9eea42351fd5a8b76c3158fbc626710220ea4b2a | refs/heads/master | 2022-06-05T18:02:12.656303 | 2019-06-17T01:31:15 | 2019-06-17T01:31:15 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 165 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// SkinControl.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
| [
"[email protected]"
] |
Subsets and Splits