Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
swig4.0 /
scilab /
[ HOME SHELL ]
Name
Size
Permission
Action
boost_shared_ptr.i
20.88
KB
-rw-r--r--
carrays.i
129
B
-rw-r--r--
cmalloc.i
32
B
-rw-r--r--
cpointer.i
33
B
-rw-r--r--
exception.i
130
B
-rw-r--r--
matrix.i
149
B
-rw-r--r--
sciarray.swg
3.69
KB
-rw-r--r--
scibool.swg
3.98
KB
-rw-r--r--
scichar.swg
7.76
KB
-rw-r--r--
scicontainer.swg
10.56
KB
-rw-r--r--
scidouble.swg
3.23
KB
-rw-r--r--
scienum.swg
1.12
KB
-rw-r--r--
sciexception.swg
1.85
KB
-rw-r--r--
scifloat.swg
2.17
KB
-rw-r--r--
sciint.swg
6.21
KB
-rw-r--r--
sciiterators.swg
9.08
KB
-rw-r--r--
scilab.swg
148
B
-rw-r--r--
scilist.swg
1.78
KB
-rw-r--r--
scilong.swg
3.98
KB
-rw-r--r--
scilonglong.swg
2.3
KB
-rw-r--r--
scimacros.swg
266
B
-rw-r--r--
scimatrixbool.swg
4.35
KB
-rw-r--r--
scimatrixchar.swg
5.01
KB
-rw-r--r--
scimatrixdouble.swg
4.48
KB
-rw-r--r--
scimatrixint.swg
4.38
KB
-rw-r--r--
scimisctypes.swg
2.12
KB
-rw-r--r--
scipointer.swg
1.4
KB
-rw-r--r--
sciprimtypes.swg
406
B
-rw-r--r--
scirun.swg
14.51
KB
-rw-r--r--
sciruntime.swg
962
B
-rw-r--r--
scisequence.swg
7.14
KB
-rw-r--r--
scisequencebool.swg
2.69
KB
-rw-r--r--
scisequencedouble.swg
2.75
KB
-rw-r--r--
scisequencefloat.swg
2.72
KB
-rw-r--r--
scisequenceint.swg
2.83
KB
-rw-r--r--
scisequencepointer.swg
2.83
KB
-rw-r--r--
scisequencestring.swg
2.61
KB
-rw-r--r--
scishort.swg
5.76
KB
-rw-r--r--
scisignedchar.swg
5.85
KB
-rw-r--r--
scistdcommon.swg
5.75
KB
-rw-r--r--
scitypemaps.swg
9.96
KB
-rw-r--r--
sciunsignedchar.swg
6.04
KB
-rw-r--r--
sciunsignedint.swg
6.46
KB
-rw-r--r--
sciunsignedlong.swg
1.87
KB
-rw-r--r--
sciunsignedshort.swg
6.11
KB
-rw-r--r--
std_alloc.i
28
B
-rw-r--r--
std_basic_string.i
1.16
KB
-rw-r--r--
std_char_traits.i
33
B
-rw-r--r--
std_common.i
2.28
KB
-rw-r--r--
std_container.i
60
B
-rw-r--r--
std_deque.i
802
B
-rw-r--r--
std_except.i
35
B
-rw-r--r--
std_list.i
783
B
-rw-r--r--
std_map.i
2.4
KB
-rw-r--r--
std_multiset.i
854
B
-rw-r--r--
std_pair.i
768
B
-rw-r--r--
std_set.i
782
B
-rw-r--r--
std_shared_ptr.i
68
B
-rw-r--r--
std_string.i
998
B
-rw-r--r--
std_vector.i
813
B
-rw-r--r--
stl.i
291
B
-rw-r--r--
typemaps.i
1.6
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : scimatrixbool.swg
/* * C-type: bool array * Scilab type: bool matrix */ %include <scibool.swg> // in (bool *IN, int IN_ROWCOUNT, int IN_COLCOUNT) %typemap(in, noblock=1, fragment="SWIG_SciBoolean_AsBoolArrayAndSize") (bool *IN, int IN_ROWCOUNT, int IN_COLCOUNT) { if (SWIG_SciBoolean_AsBoolArrayAndSize(pvApiCtx, $input, &$2, &$3, &$1, fname) != SWIG_OK) { return SWIG_ERROR; } } // in (int IN_ROWCOUNT, int IN_COLCOUNT, bool *IN) %typemap(in, noblock=1, fragment="SWIG_SciBoolean_AsBoolArrayAndSize") (int IN_ROWCOUNT, int IN_COLCOUNT, bool *IN) { if (SWIG_SciBoolean_AsBoolArrayAndSize(pvApiCtx, $input, &$1, &$2, &$3, fname) != SWIG_OK) { return SWIG_ERROR; } } // in (bool *IN, int IN_SIZE) %typemap(in, noblock=1, fragment="SWIG_SciBoolean_AsBoolArrayAndSize") (bool *IN, int IN_SIZE) (int rowCount, int colCount) { if (SWIG_SciBoolean_AsBoolArrayAndSize(pvApiCtx, $input, &rowCount, &colCount, &$1, fname) == SWIG_OK) { $2 = rowCount * colCount; } else { return SWIG_ERROR; } } // in (int IN_SIZE, bool *IN) %typemap(in, noblock=1) (int IN_SIZE, bool *IN) (int rowCount, int colCount) { if (SWIG_SciBoolean_AsBoolArrayAndSize(pvApiCtx, $input, &rowCount, &colCount, &$2, fname) == SWIG_OK) { $1 = rowCount * colCount; } else { return SWIG_ERROR; } } // out (bool **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT) %typemap(in, noblock=1, numinputs=0) (bool **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT) { } %typemap(arginit, noblock=1) (bool **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT) { $1 = (bool**) malloc(sizeof(bool*)); $2 = (int*) malloc(sizeof(int)); $3 = (int*) malloc(sizeof(int)); } %typemap(freearg, noblock=1) (bool **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT) { free(*$1); free($1); free($2); free($3); } %typemap(argout, noblock=1, fragment="SWIG_SciBoolean_FromBoolArrayAndSize") (bool **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT) { if (SWIG_SciBoolean_FromBoolArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), *$2, *$3, *$1) == SWIG_OK) { SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition()); } else { return SWIG_ERROR; } } // out (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, bool **OUT) %typemap(in, noblock=1, numinputs=0) (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, bool **OUT) { } %typemap(arginit, noblock=1) (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, bool **OUT) { $1 = (int*) malloc(sizeof(int)); $2 = (int*) malloc(sizeof(int)); $3 = (bool**) malloc(sizeof(bool*)); } %typemap(argout, noblock=1, fragment="SWIG_SciBoolean_FromBoolArrayAndSize") (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, bool **OUT) { if (SWIG_SciBoolean_FromBoolArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), *$1, *$2, *$3) == SWIG_OK) { SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition()); } else { return SWIG_ERROR; } } %typemap(freearg, noblock=1) (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, bool **OUT) { free($1); free($2); free(*$3); free($3); } // out (bool **OUT, int *OUT_SIZE) %typemap(in, noblock=1, numinputs=0) (bool **OUT, int *OUT_SIZE) { } %typemap(arginit, noblock=1) (bool **OUT, int *OUT_SIZE) { $1 = (bool**) malloc(sizeof(bool*)); $2 = (int*) malloc(sizeof(int)); } %typemap(argout, noblock=1, fragment="SWIG_SciBoolean_FromBoolArrayAndSize") (bool **OUT, int *OUT_SIZE) { if (SWIG_SciBoolean_FromBoolArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), 1, *$2, *$1) == SWIG_OK) { SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition()); } else { return SWIG_ERROR; } } %typemap(freearg, noblock=1) (bool **OUT, int *OUT_SIZE) { free(*$1); free($1); free($2); } // out (int *OUT_SIZE, bool **OUT) %typemap(in, noblock=1, numinputs=0) (int *OUT_SIZE, bool **OUT) { } %typemap(arginit, noblock=1) (int *OUT_SIZE, bool **OUT) { $1 = (int*) malloc(sizeof(int)); $2 = (bool**) malloc(sizeof(bool*)); } %typemap(argout, noblock=1, fragment="SWIG_SciBoolean_FromBoolArrayAndSize") (int *OUT_SIZE, bool **OUT) { if (SWIG_SciBoolean_FromBoolArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), 1, *$1, *$2) == SWIG_OK) { SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition()); } else { return SWIG_ERROR; } } %typemap(freearg, noblock=1) (int *OUT_SIZE, bool **OUT) { free($1); free(*$2); free($2); }
Close