Home | History | Annotate | Download | only in guile

Lines Matching full:temp

49 %typemap(in, doc="$NAME is of type <" #SCM_TYPE ">") PTRTYPE *INPUT(PTRTYPE temp)
51 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
54 $1 = &temp;
57 %typemap(in, doc="$NAME is of type <" #SCM_TYPE "> and is consumed by the function") PTRTYPE *INPUT_CONSUMED(PTRTYPE temp)
59 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
63 $1 = &temp;
66 %typemap(in, doc="$NAME is of type <" #SCM_TYPE "> and is consumed by the function") PTRTYPE *INPUT_DESTROYED(PTRTYPE temp)
68 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
72 $1 = &temp;
75 %typemap(in, numinputs=0) PTRTYPE *OUTPUT(PTRTYPE temp),
76 PTRTYPE *OUTPUT_NONCOLLECTABLE(PTRTYPE temp)
77 "$1 = &temp;";