/titanic_53/usr/src/cmd/lp/lib/lp/ |
H A D | Syscalls.c | 53 register int n; local 70 register int n; local 89 register int n; local 110 register int n; local 127 register int n; local 146 register int n; local 167 register int n; local 186 register int n; local 205 register int n; local 224 register int n; local [all …]
|
/titanic_53/usr/src/uts/sparc/sys/fpu/ |
H A D | globals.h | 53 #define DOUBLE_E(n) (n & 0xfffe) /* More significant word of double. */ argument 54 #define DOUBLE_F(n) (1+DOUBLE_E(n)) /* Less significant word of double. */ argument 55 #define EXTENDED_E(n) (n & 0xfffc) /* Sign/exponent/significand of extended. */ argument 56 #define EXTENDED_F(n) (1+EXTENDED_E(n)) /* 2nd word of extended significand. */ argument 57 #define EXTENDED_G(n) (2+EXTENDED_E(n)) /* 3rd word of extended significand. */ argument 58 #define EXTENDED_H(n) (3+EXTENDED_E(n)) /* 4th word of extended significand. */ argument 59 #define DOUBLE(n) ((n & 0xfffe) >> 1) /* Shift n to access double regs. */ argument 60 #define QUAD_E(n) ((n & 0xfffc) >> 1) /* More significant half of quad. */ argument 61 #define QUAD_F(n) (1+QUAD_E(n)) /* Less significant half of quad. */ argument
|
/titanic_53/usr/src/uts/common/io/nxge/npi/ |
H A D | npi_vir.h | 43 #define VIR_ID_SHIFT(n) (n << NPI_PORT_CHAN_SHIFT) argument 73 #define NPI_VIR_OCODE_INVALID(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | OPCODE_INVALID) argument 74 #define NPI_VIR_FUNC_INVALID(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | FUNCID_INVALID) argument 75 #define NPI_VIR_CN_INVALID(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | CHANNEL_INVALID) argument 80 #define NPI_VIR_TAS_BUSY(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_TAS_BUSY) argument 81 #define NPI_VIR_TAS_NOTREAD(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_TAS_NOTREAD) argument 82 #define NPI_VIR_SR_RESET(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_SR_RESET) argument 83 #define NPI_VIR_SR_FREE(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_SR_FREE) argument 84 #define NPI_VIR_SR_BUSY(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_SR_BUSY) argument 85 #define NPI_VIR_SR_INVALID(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_SR_INVALID) argument [all …]
|
/titanic_53/usr/src/contrib/ast/src/lib/libast/include/ |
H A D | stak.h | 40 #define stakptr(n) stkptr(stkstd,n) argument 43 #define stakwrite(b,n) sfwrite(stkstd,(b),(n)) argument 45 #define stakseek(n) stkseek(stkstd,n) argument 46 #define stakcreate(n) stkopen(n) argument 50 #define stakalloc(n) stkalloc(stkstd,n) argument 52 #define stakset(c,n) stkset(stkstd,c,n) argument 53 #define stakfreeze(n) stkfreeze(stkstd,n) argument
|
H A D | debug.h | 47 #define DEBUG_COUNT(n) ((n) += 1) argument 48 #define DEBUG_TALLY(c,n,v) ((c) ? ((n) += (v)) : (n)) argument 49 #define DEBUG_INCREASE(n) ((n) += 1) argument 50 #define DEBUG_DECREASE(n) ((n) -= 1) argument 52 #define DEBUG_SET(n,v) ((n) = (v)) argument 54 #define DEBUG_WRITE(fd,d,n) write((fd),(d),(n)) argument 70 #define DEBUG_COUNT(n) argument 71 #define DEBUG_TALLY(c,n,v) argument 72 #define DEBUG_INCREASE(n) argument 73 #define DEBUG_DECREASE(n) argument [all …]
|
/titanic_53/usr/src/lib/libc/port/locale/ |
H A D | regexec.c | 63 xmbrtowc(wint_t *wi, const char *s, size_t n, mbstate_t *mbs, wint_t dummy) in xmbrtowc() 83 xmbrtowc_dummy(wint_t *wi, const char *s, size_t n, mbstate_t *mbs, in xmbrtowc_dummy() 99 #define SET0(v, n) ((v) &= ~((unsigned long)1 << (n))) argument 100 #define SET1(v, n) ((v) |= (unsigned long)1 << (n)) argument 101 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0) argument 105 #define STATESETUP(m, n) /* nothing */ argument 109 #define INIT(o, n) ((o) = (unsigned long)1 << (n)) argument 114 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n)) argument 115 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n)) argument 116 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0) argument [all …]
|
/titanic_53/usr/src/uts/common/sys/ |
H A D | avl_impl.h | 68 #define AVL_XPARENT(n) ((n)->avl_parent) argument 69 #define AVL_SETPARENT(n, p) ((n)->avl_parent = (p)) argument 71 #define AVL_XCHILD(n) ((n)->avl_child_index) argument 72 #define AVL_SETCHILD(n, c) ((n)->avl_child_index = (unsigned short)(c)) argument 74 #define AVL_XBALANCE(n) ((n)->avl_balance) argument 75 #define AVL_SETBALANCE(n, b) ((n)->avl_balance = (short)(b)) argument 128 #define AVL_NODE2DATA(n, o) ((void *)((uintptr_t)(n) - (o))) argument 138 #define AVL_MKINDEX(n, c) ((avl_index_t)(n) | (c)) argument
|
/titanic_53/usr/src/uts/sun4u/io/px/ |
H A D | px_err_impl.h | 96 #define PX_ERR_BIT_HANDLE_DEC(n) int px_err_ ## n ## _handle\ argument 99 #define PX_ERR_BIT_HANDLE(n) px_err_ ## n ## _handle argument 104 #define PX_ERPT_SEND_DEC(n) int px_err_ ## n ## _send_ereport\ argument 107 #define PX_ERPT_SEND(n) px_err_ ## n ## _send_ereport argument 145 #define PX_ERR_JBC_CLASS(n) PCIEX_FIRE "." FIRE_JBC_ ## n argument 146 #define PX_ERR_UBC_CLASS(n) PCIEX_OBERON "." FIRE_UBC_ ## n argument 186 #define PX_ERR_DMC_CLASS(n) PCIEX_FIRE "." FIRE_DMC_ ## n argument 213 #define PX_ERR_PEC_CLASS(n) PCIEX_FIRE "." FIRE_PEC_ ## n argument 214 #define PX_ERR_PEC_OB_CLASS(n) PCIEX_OBERON "." FIRE_PEC_ ## n argument
|
/titanic_53/usr/src/cmd/mandoc/ |
H A D | mdoc_validate.c | 295 mdoc_valid_pre(struct mdoc *mdoc, struct mdoc_node *n) in mdoc_valid_pre() 323 struct mdoc_node *n; in mdoc_valid_post() local 364 check_args(struct mdoc *mdoc, struct mdoc_node *n) in check_args() 377 check_argv(struct mdoc *mdoc, struct mdoc_node *n, struct mdoc_argv *v) in check_argv() 833 struct mdoc_node *n; in post_lb() local 853 const struct mdoc_node *n; in post_eoln() local 866 const struct mdoc_node *n; in post_fname() local 889 const struct mdoc_node *n; in post_fo() local 915 const struct mdoc_node *n; in post_fa() local 936 const struct mdoc_node *n; in post_vt() local [all …]
|
/titanic_53/usr/src/cmd/svr4pkg/libinst/ |
H A D | mntinfo.c | 215 get_server_host(uint32_t n) in get_server_host() 322 int n; in unmount_client() local 442 int n; in mount_client() local 649 int n; in fs_tab_free() local 1168 use_srvr_map_n(uint32_t n) in use_srvr_map_n() 1179 is_mounted_n(uint32_t n) in is_mounted_n() 1189 is_fs_writeable_n(uint32_t n) in is_fs_writeable_n() 1215 is_remote_fs_n(uint32_t n) in is_remote_fs_n() 1222 is_served_n(uint32_t n) in is_served_n() 1233 get_blk_free_n(uint32_t n) in get_blk_free_n() [all …]
|
/titanic_53/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | Option.java | 141 kb(int n) in kb() 155 mb(int n) in mb() 169 gb(int n) in gb() 183 tb(int n) in tb() 197 nanos(int n) in nanos() 211 micros(int n) in micros() 225 millis(int n) in millis() 237 seconds(int n) in seconds() 249 minutes(int n) in minutes() 261 hours(int n) in hours() [all …]
|
/titanic_53/usr/src/common/crypto/aes/amd64/ |
H A D | aestab.h | 90 #define t_dec(m, n) t_##m##n argument 91 #define t_set(m, n) t_##m##n argument 92 #define t_use(m, n) t_##m##n argument 95 #define d_1(t, n, b, e) static const t n[256] = b(e) argument 96 #define d_4(t, n, b, e, f, g, h) static const t n[4][256] = \ argument
|
/titanic_53/usr/src/lib/iconv_modules/common/ |
H A D | ucs4.h | 42 #define valid_ucs4_value(n) (_valid_ucs4_value(n)) argument 44 #define ext_ucs4_lsw(n) ((ucs2_t)((((ucs4_t)(n))&((ucs4_t)0x0000ffff)))) argument 45 #define ext_ucs4_msw(n) ((ucs2_t)((((ucs4_t)(n))&((ucs4_t)0xffff0000))>>16)) argument 48 #define set_ucs4_word(p,n) ((*((ucs4_t*)(p)))=n) argument 54 #define set_ucs4_word_BB(p,n) (set_ucs2_word_BB((p),ext_ucs4_msw(n)),\ argument 60 #define set_ucs4_word_BB(p,n) (set_ucs2_word_BB((p)+2,ext_ucs4_msw(n)),\ argument
|
H A D | ucs2.h | 36 #define valid_ucs2_value(n) (_valid_ucs2_value(n)) argument 42 #define ext_ucs2_lsb(n) ((uchar_t)(((ucs2_t)(n))&((ucs2_t)0x00ff))) argument 43 #define ext_ucs2_msb(n) ((uchar_t)(((((ucs2_t)(n))&((ucs2_t)0xff00)))>>8)) argument 46 #define set_ucs2_word(p,n) ((*((ucs2_t*)(p)))=(n)) argument 52 #define set_ucs2_word_BB(p,n) \ argument 59 #define set_ucs2_word_BB(p,n) \ argument
|
/titanic_53/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | hln.c | 52 hline(chtype h, int n) in hline() 64 mvhline(int y, int x, chtype h, int n) in mvhline() 77 mvwhline(WINDOW *w, int y, int x, chtype h, int n) in mvwhline() 90 vline(chtype v, int n) in vline() 102 mvvline(int y, int x, chtype v, int n) in mvvline() 115 mvwvline(WINDOW *w, int y, int x, chtype v, int n) in mvwvline()
|
H A D | hln_st.c | 52 hline_set(const cchar_t *h, int n) in hline_set() 64 mvhline_set(int y, int x, const cchar_t *h, int n) in mvhline_set() 77 mvwhline_set(WINDOW *w, int y, int x, const cchar_t *h, int n) in mvwhline_set() 90 vline_set(const cchar_t *v, int n) in vline_set() 102 mvvline_set(int y, int x, const cchar_t *v, int n) in mvvline_set() 115 mvwvline_set(WINDOW *w, int y, int x, const cchar_t *v, int n) in mvwvline_set()
|
/titanic_53/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | hln_st.c | 49 hline_set(const cchar_t *h, int n) in hline_set() 65 mvhline_set(int y, int x, const cchar_t *h, int n) in mvhline_set() 82 mvwhline_set(WINDOW *w, int y, int x, const cchar_t *h, int n) in mvwhline_set() 99 vline_set(const cchar_t *v, int n) in vline_set() 115 mvvline_set(int y, int x, const cchar_t *v, int n) in mvvline_set() 132 mvwvline_set(WINDOW *w, int y, int x, const cchar_t *v, int n) in mvwvline_set()
|
H A D | hln.c | 49 hline(chtype h, int n) in hline() 65 mvhline(int y, int x, chtype h, int n) in mvhline() 82 mvwhline(WINDOW *w, int y, int x, chtype h, int n) in mvwhline() 99 vline(chtype v, int n) in vline() 115 mvvline(int y, int x, chtype v, int n) in mvvline() 132 mvwvline(WINDOW *w, int y, int x, chtype v, int n) in mvwvline()
|
/titanic_53/usr/src/cmd/localedef/ |
H A D | wide.c | 165 towide_none(wchar_t *c, const char *mb, unsigned n) in towide_none() 193 towide_utf8(wchar_t *wc, const char *mb, unsigned n) in towide_utf8() 297 towide_dbcs(wchar_t *wc, const char *mb, unsigned n) in towide_dbcs() 329 int n = 0, c; in tomb_mbs() local 356 towide_big5(wchar_t *wc, const char *mb, unsigned n) in towide_big5() 366 towide_gbk(wchar_t *wc, const char *mb, unsigned n) in towide_gbk() 376 towide_gb2312(wchar_t *wc, const char *mb, unsigned n) in towide_gb2312() 387 towide_gb18030(wchar_t *wc, const char *mb, unsigned n) in towide_gb18030() 430 towide_mskanji(wchar_t *wc, const char *mb, unsigned n) in towide_mskanji() 463 towide_euc_impl(wchar_t *wc, const char *mb, unsigned n, in towide_euc_impl() [all …]
|
/titanic_53/usr/src/common/util/ |
H A D | memstr.c | 42 memmove(void *s1, const void *s2, size_t n) in memmove() 54 memset(void *s, int c, size_t n) in memset() 68 memcmp(const void *s1, const void *s2, size_t n) in memcmp() 85 memcpy(void *s1, const void *s2, size_t n) in memcpy() 92 memchr(const void *sptr, int c1, size_t n) in memchr()
|
/titanic_53/usr/src/cmd/sh/ |
H A D | name.c | 114 syslook(unsigned char *w, struct sysnod syswds[], int n) in syslook() 167 struct namnod *n; in setname() local 204 dfault(struct namnod *n, unsigned char *v) in dfault() 211 assign(struct namnod *n, unsigned char *v) in assign() 305 struct namnod *n = lookup(*names++); /* done now to avoid storage mess */ in readvar() local 538 printnam(struct namnod *n) in printnam() 566 printro(struct namnod *n) in printro() 578 printexp(struct namnod *n) in printexp() 602 countnam(struct namnod *n) in countnam() 609 pushnam(struct namnod *n) in pushnam() [all …]
|
/titanic_53/usr/src/contrib/ast/src/cmd/ksh93/include/ |
H A D | name.h | 147 #define nv_isref(n) (nv_isattr((n),NV_REF|NV_TAGGED|NV_FUNCT)==NV_REF) argument 148 #define is_abuiltin(n) (nv_isattr(n,NV_BLTIN|NV_INTEGER)==NV_BLTIN) argument 149 #define is_afunction(n) (nv_isattr(n,NV_FUNCTION|NV_REF)==NV_FUNCTION) argument 150 #define nv_funtree(n) ((n)->nvalue.rp->ptree) argument 151 #define funptr(n) ((n)->nvalue.bfp) argument 158 #define nv_setattr(n,f) ((n)->nvflag = (f)) argument 159 #define nv_context(n) ((void*)(n)->nvfun) /* for builtins */ argument 161 #define nv_refnode(n) ((n)->nvalue.nrp->np) argument 162 #define nv_reftree(n) ((n)->nvalue.nrp->root) argument 163 #define nv_reftable(n) ((n)->nvalue.nrp->table) argument [all …]
|
/titanic_53/usr/src/cmd/oawk/ |
H A D | run.c | 125 program(NODE **a, int n) in program() 171 array(NODE **a, int n) in array() 208 matchop(NODE **a, int n) in matchop() 228 boolop(NODE **a, int n) in boolop() 267 relop(NODE **a, int n) in relop() 341 indirect(NODE **a, int n) in indirect() 362 int k, m, n; in substr() local 575 a_sprintf(NODE **a, int n) in a_sprintf() 593 arith(NODE **a, int n) in arith() 641 incrdecr(NODE **a, int n) in incrdecr() [all …]
|
/titanic_53/usr/src/cmd/awk/ |
H A D | run.c | 128 program(Node **a, int n) in program() 182 call(Node **a, int n) in call() 308 int n; in arg() local 320 jump(Node **a, int n) in jump() 361 getaline(Node **a, int n) in getaline() 414 getnf(Node **a, int n) in getnf() 423 array(Node **a, int n) in array() 469 delete(Node **a, int n) in delete() 505 intest(Node **a, int n) in intest() 546 matchop(Node **a, int n) in matchop() [all …]
|
/titanic_53/usr/src/uts/common/io/hxge/ |
H A D | hpi_vir.h | 40 #define VIR_ID_SHIFT(n) (n << HPI_PORT_CHAN_SHIFT) argument 53 #define HPI_VIR_LD_INVALID(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_LD_INVALID) argument 54 #define HPI_VIR_LDG_INVALID(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_LDG_INVALID) argument 55 #define HPI_VIR_LDSV_INVALID(n) (VIR_ID_SHIFT(n) | \ argument 57 #define HPI_VIR_INTM_TM_INVALID(n) (VIR_ID_SHIFT(n) | \ argument 60 #define HPI_VIR_SID_VEC_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
|