/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/ |
H A D | inet_ntoa.c | 63 static char ret[18]; local 65 //strlcpy(ret, "[inet_ntoa error]", sizeof(ret)); 66 strncpyX(ret, "[inet_ntoa error]", sizeof(ret)); 67 (void) inet_ntop(AF_INET, &in, ret, sizeof ret); 68 return (ret);
|
H A D | inet_makeaddr.c | 62 struct in_addr ret; local 72 ret.s_addr = htonl(addr); 73 return ret;
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/ |
H A D | localeconv.c | 34 static struct lconv ret; local 38 ret.int_curr_symbol = 40 ret.currency_symbol = 42 ret.mon_decimal_point = 44 ret.mon_thousands_sep = 46 ret.mon_grouping = 48 ret.positive_sign = 50 ret.negative_sign = 52 ret.int_frac_digits = _CurrentMonetaryLocale->int_frac_digits; 53 ret [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | printf.c | 56 int ret; local 60 ret = vfprintf(stdout, fmt, ap); 62 return (ret);
|
H A D | scanf.c | 55 int ret; local 61 ret = __svfscanf(stdin, fmt, ap); 63 return (ret);
|
H A D | snprintf_ss.c | 63 int ret; local 66 ret = vsnprintf_ss(str, n, fmt, ap); 68 return ret;
|
H A D | wprintf.c | 45 int ret; local 49 ret = vfwprintf(stdout, fmt, ap); 52 return (ret);
|
H A D | fprintf.c | 56 int ret; local 67 ret = vfprintf(fp, fmt, ap); 69 return (ret);
|
H A D | fscanf.c | 59 int ret; local 63 ret = __svfscanf(fp, fmt, ap); 65 return (ret);
|
H A D | fwalk.c | 59 int n, ret; local 64 ret = 0; 68 ret |= (*function)(fp); 69 return (ret);
|
H A D | fwprintf.c | 45 int ret; local 49 ret = vfwprintf(fp, fmt, ap); 52 return (ret);
|
H A D | vasprintf.c | 48 int ret; local 63 ret = __vfprintf_unlocked(&f, fmt, ap); 64 if (ret == -1) 67 _base = realloc(f._bf._base, (size_t)(ret + 1)); 71 return (ret);
|
H A D | vsnprintf.c | 59 int ret; local 82 ret = __vfprintf_unlocked(&f, fmt, ap); 84 return (ret);
|
H A D | flags.c | 65 int ret, m, o; local 72 ret = __SRD; 78 ret = __SWR; 84 ret = __SWR; 101 ret = __SRW; 114 return (ret);
|
H A D | snprintf.c | 65 int ret; local 89 ret = __vfprintf_unlocked(&f, fmt, ap); 92 return (ret);
|
H A D | sprintf.c | 60 int ret; local 74 ret = __vfprintf_unlocked(&f, fmt, ap); 77 return (ret);
|
H A D | swprintf.c | 39 int ret; local 43 ret = vswprintf(s, n, fmt, ap); 46 return (ret);
|
H A D | vsprintf.c | 58 int ret; local 70 ret = __vfprintf_unlocked(&f, fmt, ap); 73 return (ret);
|
/vbox/src/libs/libxml2-2.6.31/python/tests/ |
H A D | reader8.py | 21 ret = reader.Read() variable 22 ret = reader.Read() variable 23 ret = reader.Close() variable 25 if ret != 0:
|
H A D | dtdvalid.py | 15 ret = doc.validateDtd(ctxt, dtd) variable 16 if ret != 1:
|
H A D | reader7.py | 41 ret = reader.Read() variable 42 while ret == 1: 44 ret = reader.Read() variable 46 if ret != 0: 77 ret = reader.Read() variable 78 while ret == 1: 80 ret = reader.Read() variable 82 if ret != 0:
|
H A D | readernext.py | 16 ret = reader.Read() variable 17 if ret != 1: 24 ret = reader.Read() variable 25 if ret != 1: 32 ret = reader.Read() variable 33 if ret != 1: 40 ret = reader.Read() variable 41 if ret != 1: 47 ret = reader.Next() variable 48 if ret ! 55 ret = reader.Next() variable 63 ret = reader.Read() variable [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/ |
H A D | MathLShiftS64.c | 37 ret local 47 ret 52 ret
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/CRT/Ia32/ |
H A D | llshl.c | 37 ret local 47 ret 52 ret
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | strtoull.c | 31 unsigned long long ret = 0; local 49 ret = ( ( ret * base ) + charval ); 54 ret = -ret; 59 return ( ret );
|