Searched defs:pout (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/RDP/client-1.8.3/
H A Drdp.c224 char *pin = string, *pout = (char *) s->p; local
226 memset(pout, 0, len + 4);
242 if (iconv(iconv_h, (ICONV_CONST char **) &pin, &i, &pout, &o) ==
254 pout = (char *) s->p;
257 if (iconv(iconv_h, (ICONV_CONST char **) &pin, &ibl, &pout, &obl) == (size_t) - 1)
301 char *pin = (char *) s->p, *pout = *string; local
318 if (iconv(iconv_h, (ICONV_CONST char **) &pin, &ibl, &pout, &obl) == (size_t) - 1)
337 *pout = 0;
340 *str_size = pout - *string;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c1290 in pout, and returning the remainder. pin and pout point at the LSD.
1291 It's OK for pin == pout on entry, which saves oodles of mallocs/frees in
1296 inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n) argument
1302 pout += size;
1306 *--pout = hi = (digit)(rem / n);
1340 digit *pout, *pin, rem, tenpow; local
1373 base _PyLong_DECIMAL_BASE digits in pout, following Knuth (TAOCP,
1376 pout = scratch->ob_digit;
1381 twodigits z = (twodigits)pout[
[all...]

Completed in 77 milliseconds