Searched defs:ct (Results 1 - 25 of 189) sorted by relevance

12345678

/illumos-gate/usr/src/cmd/acct/lib/
H A Dexpand.c41 * For as long as ct is of type comp_t, and comp_t is defined to be of type
42 * unsigned short, the maximum value of ct will be 2^16-1 ie 65535. Based on
48 expand(comp_t ct) argument
56 e = (ct >> 13) & 07;
57 f = ct & 017777;
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dcatanh.c47 dcomplex ans, ct; local
53 ct = catan(z);
54 D_RE(ans) = D_IM(ct);
55 D_IM(ans) = -D_RE(ct);
H A Dcatanhf.c38 fcomplex ans, ct; local
44 ct = catanf(z);
45 F_RE(ans) = F_IM(ct);
46 F_IM(ans) = -F_RE(ct);
H A Dcatanhl.c38 ldcomplex ans, ct; local
44 ct = catanl(z);
45 LD_RE(ans) = LD_IM(ct);
46 LD_IM(ans) = -LD_RE(ct);
H A Dcsin.c51 dcomplex ans, ct; local
57 ct = csinh(z);
58 D_RE(ans) = -D_IM(ct);
59 D_IM(ans) = D_RE(ct);
H A Dcsinf.c38 fcomplex ans, ct; local
44 ct = csinhf(z);
45 F_RE(ans) = -F_IM(ct);
46 F_IM(ans) = F_RE(ct);
H A Dcsinl.c38 ldcomplex ans, ct; local
44 ct = csinhl(z);
45 LD_RE(ans) = -LD_IM(ct);
46 LD_IM(ans) = LD_RE(ct);
H A Dctan.c51 dcomplex ans, ct; local
57 ct = ctanh(z);
58 D_RE(ans) = -D_IM(ct);
59 D_IM(ans) = D_RE(ct);
H A Dctanf.c38 fcomplex ans, ct; local
44 ct = ctanhf(z);
45 F_RE(ans) = -F_IM(ct);
46 F_IM(ans) = F_RE(ct);
H A Dctanl.c38 ldcomplex ans, ct; local
44 ct = ctanhl(z);
45 LD_RE(ans) = -LD_IM(ct);
46 LD_IM(ans) = LD_RE(ct);
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dputenv.c97 int ct = 0; /* index into environ */ local
99 while(environ[ct] != NULL) {
100 if (match(environ[ct], str) != 0)
101 return (ct);
102 ct++;
104 return (-(++ct));
/illumos-gate/usr/src/cmd/bnu/
H A Dgnxseq.c43 int count = 0, ct, ret; local
71 ret = sscanf(buf, "%s%d", name, &ct);
73 ct = 0;
75 if (ct > 9998)
76 ct = 0;
85 count = ++ct;
88 fprintf(fp1, "%s %d %d/%d-%d:%2.2d\n", name, ct,
/illumos-gate/usr/src/uts/common/fs/ctfs/
H A Dctfs_sym.c57 ctfs_create_symnode(vnode_t *pvp, contract_t *ct) argument
67 symnode->ctfs_sn_contract = ct;
69 ct->ct_type->ct_type_name, (long)ct->ct_id) + 1;
72 ct->ct_type->ct_type_name, (long)ct->ct_id) < len);
74 contract_hold(ct);
89 caller_context_t *ct)
112 ctfs_sym_readlink(vnode_t *vp, uio_t *uiop, cred_t *cr, caller_context_t *ct) argument
125 ctfs_sym_inactive(vnode_t *vp, cred_t *cr, caller_context_t *ct) argument
84 ctfs_sym_getattr( vnode_t *vp, vattr_t *vap, int flags, cred_t *cr, caller_context_t *ct) argument
[all...]
H A Dctfs_cdir.c68 ctfs_create_cdirnode(vnode_t *pvp, contract_t *ct) argument
73 if ((vp = contract_vnode_get(ct, pvp->v_vfsp)) != NULL)
84 gfs_file_set_inode(vp, CTFS_INO_CT_DIR(ct->ct_id));
86 cdir->ctfs_cn_contract = ct;
87 contract_hold(ct);
88 contract_vnode_set(ct, &cdir->ctfs_cn_linkage, vp);
103 caller_context_t *ct)
140 contract_t *ct = cdirnode->ctfs_cn_contract; local
142 mutex_enter(&ct->ct_lock);
144 mutex_exit(&ct
98 ctfs_cdir_getattr( vnode_t *vp, vattr_t *vap, int flags, cred_t *cr, caller_context_t *ct) argument
[all...]
H A Dctfs_latest.c70 contract_t *ct = ttolwp(curthread)->lwp_ct_latest[ local
73 if (ct) {
76 cvp = ctfs_create_cdirnode(gfs_file_parent(vp), ct);
103 caller_context_t *ct)
125 ctfs_latest_open(vnode_t **vpp, int flag, cred_t *cr, caller_context_t *ct) argument
135 return (VOP_OPEN(vpp, flag, cr, ct));
153 caller_context_t *ct)
158 int res = VOP_GETATTR(nvp, vap, flags, cr, ct);
98 ctfs_latest_access( vnode_t *vp, int mode, int flags, cred_t *cr, caller_context_t *ct) argument
148 ctfs_latest_getattr( vnode_t *vp, vattr_t *vap, int flags, cred_t *cr, caller_context_t *ct) argument
/illumos-gate/usr/src/uts/common/fs/objfs/
H A Dobjfs_common.c40 caller_context_t *ct)
54 caller_context_t *ct)
65 caller_context_t *ct)
39 objfs_dir_open(vnode_t **cpp, int flag, cred_t *cr, caller_context_t *ct) argument
53 objfs_common_close(vnode_t *vp, int flag, int count, offset_t off, cred_t *cr, caller_context_t *ct) argument
64 objfs_dir_access(vnode_t *vp, int mode, int flags, cred_t *cr, caller_context_t *ct) argument
H A Dobjfs_odir.c67 caller_context_t *ct)
66 objfs_odir_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr, caller_context_t *ct) argument
/illumos-gate/usr/src/lib/libast/common/tm/
H A Dtmxtouch.c41 tmxtouch(const char* path, Time_t at, Time_t mt, Time_t ct, int flags) argument
70 if (ct == TMX_NOTIME && !(flags & PATH_TOUCH_VERBATIM))
72 else if (!ct && !(flags & PATH_TOUCH_VERBATIM))
76 cv.tv_sec = tmxsec(ct);
77 cv.tv_nsec = tmxnsec(ct);
/illumos-gate/usr/src/cmd/tbl/
H A Dt7.c19 # define realsplit ((ct=='a'||ct=='n') && table[ldata][c].rcol)
51 int c, ct, vforml, lf; local
60 switch(ct=ctype(vforml,c))
/illumos-gate/usr/src/uts/common/fs/
H A Dnbmlock.c107 caller_context_t *ct) /* caller context */
113 if (nbl_share_conflict(vp, op, ct)) {
124 return (nbl_lock_conflict(vp, op, offset, length, svmand, ct));
102 nbl_conflict(vnode_t *vp, nbl_op_t op, u_offset_t offset, ssize_t length, int svmand, caller_context_t *ct) argument
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfake_nblk.c112 caller_context_t *ct) /* caller context */
118 if (nbl_share_conflict(vp, op, ct)) {
129 return (nbl_lock_conflict(vp, op, offset, length, svmand, ct));
159 nbl_share_conflict(vnode_t *vp, nbl_op_t op, caller_context_t *ct) argument
170 ssize_t length, int svmand, caller_context_t *ct)
107 nbl_conflict(vnode_t *vp, nbl_op_t op, u_offset_t offset, ssize_t length, int svmand, caller_context_t *ct) argument
169 nbl_lock_conflict(vnode_t *vp, nbl_op_t op, u_offset_t offset, ssize_t length, int svmand, caller_context_t *ct) argument
/illumos-gate/usr/src/lib/libdhcpagent/common/
H A Ddhcpagent_util.c127 ctid_t ct; local
173 if (contract_latest(&ct) != -1)
174 (void) contract_abandon_id(ct);
/illumos-gate/usr/src/common/crypto/modes/
H A Decb.c44 int (*cipher)(const void *ks, const uint8_t *pt, uint8_t *ct))
42 ecb_cipher_contiguous_blocks(ecb_ctx_t *ctx, char *data, size_t length, crypto_data_t *out, size_t block_size, int (*cipher)(const void *ks, const uint8_t *pt, uint8_t *ct)) argument
/illumos-gate/usr/src/cmd/refer/
H A Dinv6.c29 int ct = 0; local
51 hfreq[hash] = ct;
58 ct = 0;
66 ct++;
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dcontract.c93 contract_t ct; local
109 if (mdb_vread(&ct, sizeof (ct), addr) != sizeof (ct)) {
113 if (mdb_vread(&ctt, sizeof (ctt), (uintptr_t)ct.ct_type) !=
115 mdb_warn("error reading ct_type_t at %p", ct.ct_type);
124 mdb_printf("%0?p %8d %8s %8s %?p %?p\n", addr, ct.ct_id, str,
125 (ct.ct_state == CTS_OWNED) ? "owned" :
126 (ct.ct_state == CTS_INHERITED) ? "inherit" :
127 (ct
173 findct(uintptr_t addr, contract_t *ct, findct_data_t *arg) argument
[all...]

Completed in 75 milliseconds

12345678