/titanic_50/usr/src/uts/intel/sys/acpi/platform/ |
H A D | acefi.h | 166 #define _cast64_efi_call4(f,a1,a2,a3,a4) \ argument 167 efi_call4(f, (UINT64)(a1), (UINT64)(a2), (UINT64)(a3), (UINT64)(a4)) 168 #define _cast64_efi_call5(f,a1,a2,a3,a4,a5) \ argument 169 efi_call5(f, (UINT64)(a1), (UINT64)(a2), (UINT64)(a3), (UINT64)(a4), \ 171 #define _cast64_efi_call6(f,a1,a2,a3,a4,a5,a6) \ argument 172 efi_call6(f, (UINT64)(a1), (UINT64)(a2), (UINT64)(a3), (UINT64)(a4), \ 174 #define _cast64_efi_call7(f,a1,a2,a3,a4,a5,a6,a7) \ argument 175 efi_call7(f, (UINT64)(a1), (UINT64)(a2), (UINT64)(a3), (UINT64)(a4), \ 177 #define _cast64_efi_call8(f,a1,a2,a3,a4,a5,a6,a7,a8) \ argument 178 efi_call8(f, (UINT64)(a1), (UINT64)(a2), (UINT64)(a3), (UINT64)(a4), \ [all …]
|
/titanic_50/usr/src/uts/sun4u/starcat/sys/ |
H A D | sc_cvc.h | 65 #define CVC_DBG4(flag, fmt, a1, a2, a3, a4) \ argument 67 (uintptr_t)(a3), (uintptr_t)(a4), 0); 68 #define CVC_DBG5(flag, fmt, a1, a2, a3, a4, a5) \ argument 70 (uintptr_t)(a3), (uintptr_t)(a4), (uintptr_t)(a5)); 78 #define CVC_DBG4(flag, fmt, a1, a2, a3, a4) 79 #define CVC_DBG5(flag, fmt, a1, a2, a3, a4, a5)
|
H A D | iosramvar.h | 305 #define IOSRAMLOG(level, fmt, a1, a2, a3, a4) \ argument 308 (intptr_t)a3, (intptr_t)a4); \ 318 #define IOSRAMLOG(level, fmt, a1, a2, a3, a4) argument
|
/titanic_50/usr/src/uts/sun4u/sys/pci/ |
H A D | db21554_debug.h | 108 #define DB_DEBUG4(func_id, dip, fmt, a1, a2, a3, a4) \ argument 111 (uintptr_t)(a4), 0); 112 #define DB_DEBUG5(func_id, dip, fmt, a1, a2, a3, a4, a5) \ argument 115 (uintptr_t)(a4), (uintptr_t)(a5)); 123 #define DB_DEBUG4(func_id, dip, fmt, a1, a2, a3, a4) 124 #define DB_DEBUG5(func_id, dip, fmt, a1, a2, a3, a4, a5)
|
H A D | pci_debug.h | 102 #define DEBUG4(flag, dip, fmt, a1, a2, a3, a4) \ argument 105 (uintptr_t)(a4), 0); 106 #define DEBUG5(flag, dip, fmt, a1, a2, a3, a4, a5) \ argument 109 (uintptr_t)(a4), (uintptr_t)(a5)); 118 #define DEBUG4(flag, dip, fmt, a1, a2, a3, a4) argument 119 #define DEBUG5(flag, dip, fmt, a1, a2, a3, a4, a5) argument
|
/titanic_50/usr/src/uts/sun4u/opl/sys/pcicmu/ |
H A D | pcmu_util.h | 96 #define PCMU_DBG4(flag, dip, fmt, a1, a2, a3, a4) \ argument 99 (uintptr_t)(a4), 0); 101 #define PCMU_DBG5(flag, dip, fmt, a1, a2, a3, a4, a5) \ argument 104 (uintptr_t)(a4), (uintptr_t)(a5)); 114 #define PCMU_DBG4(flag, dip, fmt, a1, a2, a3, a4) argument 115 #define PCMU_DBG5(flag, dip, fmt, a1, a2, a3, a4, a5) argument
|
/titanic_50/usr/src/cmd/cmd-inet/usr.lib/mdnsd/ |
H A D | PlatformCommon.c | 37 union { struct sockaddr s; struct sockaddr_in a4; struct sockaddr_in6 a6; } addr; in mDNSPlatformSourceAddrForDest() member 45 inner_len = sizeof(addr.a4); in mDNSPlatformSourceAddrForDest() 47 addr.a4.sin_len = inner_len; in mDNSPlatformSourceAddrForDest() 49 addr.a4.sin_family = AF_INET; in mDNSPlatformSourceAddrForDest() 50 addr.a4.sin_port = 1; // Not important, any port will do in mDNSPlatformSourceAddrForDest() 51 addr.a4.sin_addr.s_addr = dst->ip.v4.NotAnInteger; in mDNSPlatformSourceAddrForDest() 74 if (dst->type == mDNSAddrType_IPv4) src->ip.v4.NotAnInteger = addr.a4.sin_addr.s_addr; in mDNSPlatformSourceAddrForDest()
|
/titanic_50/usr/src/common/mpi/ |
H A D | mp_gf2m.c | 69 register mp_digit a1, a2, a4; in s_bmul_1x1() local 71 a1 = a & (0x3FFFFFFF); a2 = a1 << 1; a4 = a2 << 1; in s_bmul_1x1() 74 tab[4] = a4; tab[5] = a1^a4; tab[6] = a2^a4; tab[7] = a1^a2^a4; in s_bmul_1x1() 101 register mp_digit a1, a2, a4, a8; in s_bmul_1x1() local 104 a4 = a2 << 1; a8 = a4 << 1; in s_bmul_1x1() 106 tab[ 4] = a4; tab[ 5] = a1^a4; tab[ 6] = a2^a4; tab[ 7] = a1^a2^a4; in s_bmul_1x1() 108 tab[12] = a4^a8; tab[13] = a1^a4^a8; tab[14] = a2^a4^a8; tab[15] = a1^a2^a4^a8; in s_bmul_1x1()
|
/titanic_50/usr/src/uts/sun4/sys/ |
H A D | ebus.h | 208 #define DBG4(flag, psp, fmt, a1, a2, a3, a4) \ argument 211 (uintptr_t)(a4), 0); 212 #define DBG5(flag, psp, fmt, a1, a2, a3, a4, a5) \ argument 215 (uintptr_t)(a4), (uintptr_t)(a5)); 224 #define DBG4(flag, psp, fmt, a1, a2, a3, a4) argument 225 #define DBG5(flag, psp, fmt, a1, a2, a3, a4, a5) argument
|
/titanic_50/usr/src/uts/sun4u/sys/ |
H A D | sbbcvar.h | 145 #define SBBC_DBG4(flag, dip, fmt, a1, a2, a3, a4) \ argument 147 (uintptr_t)(a3), (uintptr_t)(a4), 0); 148 #define SBBC_DBG5(flag, dip, fmt, a1, a2, a3, a4, a5) \ argument 150 (uintptr_t)(a3), (uintptr_t)(a4), (uintptr_t)(a5)); 158 #define SBBC_DBG4(flag, dip, fmt, a1, a2, a3, a4) argument 159 #define SBBC_DBG5(flag, dip, fmt, a1, a2, a3, a4, a5) argument
|
H A D | upa64s.h | 176 #define DBG4(flag, psp, fmt, a1, a2, a3, a4) \ argument 178 (uintptr_t)(a3), (uintptr_t)(a4), 0); 179 #define DBG5(flag, psp, fmt, a1, a2, a3, a4, a5) \ argument 181 (uintptr_t)(a3), (uintptr_t)(a4), (uintptr_t)(a5)); 190 #define DBG4(flag, psp, fmt, a1, a2, a3, a4) argument 191 #define DBG5(flag, psp, fmt, a1, a2, a3, a4, a5) argument
|
/titanic_50/usr/src/uts/sun4u/montecarlo/sys/ |
H A D | acebus.h | 193 #define DBG4(flag, psp, fmt, a1, a2, a3, a4) \ argument 196 (uintptr_t)(a4), 0); 197 #define DBG5(flag, psp, fmt, a1, a2, a3, a4, a5) \ argument 200 (uintptr_t)(a4), (uintptr_t)(a5)); 209 #define DBG4(flag, psp, fmt, a1, a2, a3, a4) argument 210 #define DBG5(flag, psp, fmt, a1, a2, a3, a4, a5) argument
|
/titanic_50/usr/src/lib/brand/shared/brand/common/ |
H A D | brand_util.c | 244 uintptr_t a0, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, in brand_indir() argument 262 return ((sst->st_callc)(rv, a0, a1, a2, a3, a4)); in brand_indir() 264 return ((sst->st_callc)(rv, a0, a1, a2, a3, a4, a5)); in brand_indir() 266 return ((sst->st_callc)(rv, a0, a1, a2, a3, a4, a5, a6)); in brand_indir() 268 return ((sst->st_callc)(rv, a0, a1, a2, a3, a4, a5, a6, a7)); in brand_indir()
|
/titanic_50/usr/src/tools/tokenize/ |
H A D | forth_preload.c | 207 long a0, long a1, long a2, long a3, long a4, long a5) in callfunc() argument 222 rv = realfunc(a0, a1, a2, a3, a4, a5); in callfunc() 230 func(long a0, long a1, long a2, long a3, long a4, long a5) \ 232 return (callfunc(&intpose[ix_##func], a0, a1, a2, a3, a4, a5)); \
|
/titanic_50/usr/src/cmd/picl/plugins/sun4u/daktari/frudata/ |
H A D | libpiclfrudata.conf | 49 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=0,a4 75 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=1,a4 100 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=2,a4 126 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=3,a4 166 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,30/fru?UnitAddress=0,a4 193 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=0,a4 218 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=1,a4 243 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=2,a4 268 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=3,a4 288 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=4,a4
|
/titanic_50/usr/src/cmd/picl/plugins/sun4u/silverstone/frudata/ |
H A D | libpiclfrudata.conf | 49 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=0,a4 75 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=1,a4 100 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=2,a4 126 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=3,a4 166 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,30/fru?UnitAddress=0,a4 193 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=0,a4 218 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=1,a4 243 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=2,a4 268 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=3,a4 288 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=4,a4
|
/titanic_50/usr/src/cmd/avs/rdc/ |
H A D | rdc_ioctl.c | 58 rdc_ioctl(long cmd, long a0, long a1, long a2, long a3, long a4, in rdc_ioctl() argument 70 args.arg4 = a4; in rdc_ioctl()
|
/titanic_50/usr/src/uts/intel/ia32/ml/ |
H A D | hypersubr.s | 76 __hypercall4(int callnum, ulong_t a1, ulong_t a2, ulong_t a3, ulong_t a4) 82 ulong_t a1, ulong_t a2, ulong_t a3, ulong_t a4, ulong_t a5) 107 __hypercall4_int(int callnum, ulong_t a1, ulong_t a2, ulong_t a3, ulong_t a4) 113 ulong_t a1, ulong_t a2, ulong_t a3, ulong_t a4, ulong_t a5)
|
/titanic_50/usr/src/lib/libast/common/misc/ |
H A D | mime.c | 621 Parse_t a4; in mimeview() local 661 a4 = a3; in mimeview() 663 a1 = a4; in mimeview() 670 a4.next = a1.next; in mimeview() 671 if (!arg(&a4, 1) || a4.name.size < 21 || !strneq(a4.name.data, "| tr '[A-Z]' '[a-z]'`", 21)) in mimeview() 675 a4.name.size = 0; in mimeview() 679 … else c ^= (a4.name.size ? strncasecmp : strncmp)(a1.name.data, a3.name.data, a1.name.size) == 0; in mimeview()
|
/titanic_50/usr/src/uts/sun4u/io/pci/ |
H A D | pci_debug.c | 85 uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5) in pci_debug() argument 112 prom_printf(fmt, a1, a2, a3, a4, a5); in pci_debug()
|
/titanic_50/usr/src/common/crypto/ecc/ |
H A D | ec2_163.c | 189 mp_digit a5 = 0, a4 = 0, a3 = 0, b5 = 0, b4 = 0, b3 = 0; in ec_GF2m_163_mul() local 201 a4 = MP_DIGIT(a, 4); in ec_GF2m_163_mul() 235 s_bmul_3x3(MP_DIGITS(r) + 6, a5, a4, a3, b5, b4, b3); in ec_GF2m_163_mul() 237 s_bmul_3x3(rm, a5 ^ a2, a4 ^ a1, a3 ^ a0, b5 ^ b2, b4 ^ b1, in ec_GF2m_163_mul()
|
H A D | ecp_192.c | 73 mp_digit a5 = 0, a4 = 0, a3 = 0; in ec_GFp_nistp192_mod() local 190 a4 = MP_DIGIT(a, 4); in ec_GFp_nistp192_mod() 203 MP_ADD_CARRY(r2, a4, r2, carry, carry); in ec_GFp_nistp192_mod() 209 MP_ADD_CARRY(r1, a4, r1, 0, carry); in ec_GFp_nistp192_mod() 233 "=r"(a4), "=r"(a5) in ec_GFp_nistp192_mod() 235 "4" (a3), "5" (a4), "6"(a5) in ec_GFp_nistp192_mod()
|
H A D | ec2_193.c | 198 mp_digit a6 = 0, a5 = 0, a4 = 0, b6 = 0, b5 = 0, b4 = 0; in ec_GF2m_193_mul() local 212 a4 = MP_DIGIT(a, 4); in ec_GF2m_193_mul() 248 s_bmul_3x3(MP_DIGITS(r) + 8, a6, a5, a4, b6, b5, b4); in ec_GF2m_193_mul() 250 s_bmul_4x4(rm, a3, a6 ^ a2, a5 ^ a1, a4 ^ a0, b3, b6 ^ b2, b5 ^ b1, in ec_GF2m_193_mul()
|
H A D | ecl_gf.c | 453 mp_digit a0 = 0, a1 = 0, a2 = 0, a3 = 0, a4 = 0; in ec_GFp_add_5() local 459 a4 = MP_DIGIT(a,4); in ec_GFp_add_5() 486 MP_ADD_CARRY(a4, r4, r4, carry, carry); in ec_GFp_add_5() 499 a4 = MP_DIGIT(&meth->irr,4); in ec_GFp_add_5() 500 if (carry || r4 > a4 || in ec_GFp_add_5() 501 ((r4 == a4) && mp_cmp(r,&meth->irr) != MP_LT)) { in ec_GFp_add_5() 510 MP_SUB_BORROW(r4, a4, r4, carry, carry); in ec_GFp_add_5() 530 mp_digit a0 = 0, a1 = 0, a2 = 0, a3 = 0, a4 = 0, a5 = 0; in ec_GFp_add_6() local 538 a4 = MP_DIGIT(a,4); in ec_GFp_add_6() 567 MP_ADD_CARRY(a4, r4, r4, carry, carry); in ec_GFp_add_6() [all …]
|
/titanic_50/usr/src/cmd/avs/sdbc/ |
H A D | sdbc_ioctl.c | 106 sdbc_ioctl(long cmd, long a0, long a1, long a2, long a3, long a4, in sdbc_ioctl() argument 144 args.arg4 = a4; in sdbc_ioctl()
|