Home | History | Annotate | Download | only in doc

Lines Matching full:cif

106 single `ffi_cif'.  The "cif" in `ffi_cif' stands for Call InterFace.
109 -- Function: ffi_status ffi_prep_cif (ffi_cif *CIF, ffi_abi ABI,
111 This initializes CIF according to the given parameters.
134 -- Function: void ffi_call (ffi_cif *CIF, void *FN, void *RVALUE, void
137 CIF. CIF must have already been prepared using `ffi_prep_cif'.
142 responsibility to ensure this. If CIF declares that the function
147 locations holding the argument values for a call. If CIF declares
164 ffi_cif cif;
174 /* Initialize the cif */
175 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
179 ffi_call(&cif, puts, &rc, values);
186 ffi_call(&cif, puts, &rc, values);
405 ffi_cif *CIF, void (*FUN) (ffi_cif *CIF, void *RET, void
412 CIF is the `ffi_cif' describing the function parameters.
421 CIF
478 * cif: The Basics. (line 14)