/titanic_44/usr/src/common/util/i386/ |
H A D | muldiv.h | 46 extern int64_t __mul64(int64_t a, int64_t b); 50 extern int64_t __div64(int64_t x, int64_t y); 51 extern int64_t __rem64(int64_t x, int64_t y); 55 extern int64_t __divdi3(int64_t a, int64_t b); 56 extern int64_t __moddi3(int64_t a, int64_t b); 59 extern int64_t __divrem64(int64_t x, int64_t y);
|
/titanic_44/usr/src/uts/common/sys/ |
H A D | clock_impl.h | 58 int64_t lbc_counter; /* number of calls to the DDI lbolt routines */ 59 int64_t lbc_cnt_start; /* beggining of the cnt interval (in ticks) */ 60 char lbc_pad[CPU_CACHE_COHERENCE_SIZE - (2 * sizeof (int64_t))]; 66 int64_t lbi_id_pad; /* 64bit padding */ 68 int64_t lbi_thresh_calls; /* max calls per interval */ 69 int64_t lbi_thresh_interval; /* interval window for the # of calls */ 70 int64_t lbi_debug_ts; /* last time we dropped into kmdb */ 71 int64_t lbi_debug_time; /* time spent in the debugger */ 72 int64_t lbi_internal; /* lbolt source when on cyclic mode */ 75 int64_t lbi_cyc_deac_start; /* deactivation interval */ [all …]
|
/titanic_44/usr/src/cmd/cmd-inet/lib/nwamd/ |
H A D | ncp.h | 44 extern int64_t current_ncu_priority_group; 47 boolean_t nwamd_ncp_find_next_priority_group(int64_t, int64_t *); 48 void nwamd_ncp_activate_priority_group(int64_t); 49 void nwamd_ncp_deactivate_priority_group(int64_t); 50 void nwamd_ncp_deactivate_priority_group_all(int64_t); 51 boolean_t nwamd_ncp_check_priority_group(int64_t *);
|
/titanic_44/usr/src/cmd/cmd-inet/usr.lib/inetd/ |
H A D | inetd_impl.h | 151 int64_t val; 164 int64_t copies; 167 int64_t conn_rate_count; 171 int64_t fail_rate_count; 174 int64_t bind_fail_count; 319 extern rep_val_t *find_rep_val(uu_list_t *, int64_t); 320 extern int set_single_rep_val(uu_list_t *, int64_t); 321 extern int64_t get_single_rep_val(uu_list_t *); 322 extern int add_rep_val(uu_list_t *, int64_t); 323 extern void remove_rep_val(uu_list_t *, int64_t);
|
/titanic_44/usr/src/lib/libc/inc/ |
H A D | libc.h | 100 extern int64_t __div64(int64_t, int64_t); 101 extern int64_t __rem64(int64_t, int64_t); 104 extern int64_t __mul64(int64_t, int64_t); 231 extern int64_t _portfs(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t,
|
/titanic_44/usr/src/lib/libc/i386/gen/ |
H A D | _divdi3.s | 50 int64_t label 51 __divdi3(int64_t a, int64_t b) 55 int64_t label 56 __moddi3(int64_t a, int64_t b) 104 / int64_t 105 / __divdi3(int64_t x, int64_t y) 124 / return (negative ? (int64_t) - r : r); 190 / int64_t 191 / __moddi3(int64_t x, int64_t y) 206 / return (x < 0 ? (int64_t) - rem : rem);
|
/titanic_44/usr/src/uts/common/fs/pcfs/ |
H A D | pc_subr.c | 71 void pc_pcttotv(struct pctime *, int64_t *); 122 int64_t unixtime; in pc_tvtopct() 124 unixtime = (int64_t)tvp->tv_sec; in pc_tvtopct() 190 int64_t *unixtime) /* caller converts to time_t */ in pc_pcttotv() 224 *unixtime = (int64_t)sec; in pc_pcttotv() 225 *unixtime += 60 * (int64_t)min; in pc_pcttotv() 226 *unixtime += 3600 * (int64_t)hour; in pc_pcttotv() 227 *unixtime += 86400 * (int64_t)(day -1); in pc_pcttotv() 230 *unixtime += 86400 * (int64_t)days_in_month(month, year); in pc_pcttotv() 234 *unixtime += 86400 * (int64_t)days_in_year(year); in pc_pcttotv()
|
/titanic_44/usr/src/lib/libdevinfo/ |
H A D | devinfo_prop_decode.c | 486 di_prop_int64_op(prop_handle_t *ph, uint_t cmd, int64_t *data) in di_prop_int64_op() 497 } else if (ph->ph_size < sizeof (int64_t) || in di_prop_int64_op() 498 ((int64_t *)ph->ph_cur_pos > ((int64_t *)ph->ph_data + in di_prop_int64_op() 499 ph->ph_size - sizeof (int64_t)))) { in di_prop_int64_op() 507 bcopy(ph->ph_cur_pos, (caddr_t)data, sizeof (int64_t)); in di_prop_int64_op() 514 sizeof (int64_t); in di_prop_int64_op() 522 ph->ph_size < sizeof (int64_t) || in di_prop_int64_op() 523 ((int64_t *)ph->ph_cur_pos > ((int64_t *)ph->ph_data + in di_prop_int64_op() 524 ph->ph_size - sizeof (int64_t)))) in di_prop_int64_op() 531 bcopy((caddr_t)data, ph->ph_cur_pos, sizeof (int64_t)); in di_prop_int64_op() [all …]
|
/titanic_44/usr/src/lib/libndmp/common/ |
H A D | libndmp_door_data.c | 200 int64_t 203 int64_t num = 0; in ndmp_door_get_int64() 205 if (ctx->ptr + sizeof (int64_t) <= ctx->end_ptr) { in ndmp_door_get_int64() 206 (void) memcpy(&num, ctx->ptr, sizeof (int64_t)); in ndmp_door_get_int64() 207 ctx->ptr += sizeof (int64_t); in ndmp_door_get_int64() 223 ndmp_door_put_int64(ndmp_door_ctx_t *ctx, int64_t num) in ndmp_door_put_int64() 226 if (ctx->ptr + sizeof (int64_t) <= ctx->end_ptr) { in ndmp_door_put_int64() 227 (void) memcpy(ctx->ptr, &num, sizeof (int64_t)); in ndmp_door_put_int64() 228 ctx->ptr += sizeof (int64_t); in ndmp_door_put_int64() 238 ndmp_door_put_int64(ctx, (int64_t)num); in ndmp_door_put_uint64()
|
/titanic_44/usr/src/lib/libdtrace/common/ |
H A D | dt_aggregate.c | 58 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_count() 62 for (i = 0; i < size / sizeof (int64_t); i++) in dt_aggregate_count() 67 dt_aggregate_countcmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_countcmp() 69 int64_t lvar = *lhs; in dt_aggregate_countcmp() 70 int64_t rvar = *rhs; in dt_aggregate_countcmp() 83 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_min() 91 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_max() 98 dt_aggregate_averagecmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_averagecmp() 100 int64_t lavg = lhs[0] ? (lhs[1] / lhs[0]) : 0; in dt_aggregate_averagecmp() 101 int64_t ravg = rhs[0] ? (rhs[1] / rhs[0]) : 0; in dt_aggregate_averagecmp() [all …]
|
/titanic_44/usr/src/uts/common/fs/zfs/sys/ |
H A D | dsl_dir.h | 112 int64_t dd_space_towrite[TXG_SIZE]; 136 dsl_dir_t *ancestor, int64_t delta, int ondiskonly); 143 void dsl_dir_willuse_space(dsl_dir_t *dd, int64_t space, dmu_tx_t *tx); 145 int64_t used, int64_t compressed, int64_t uncompressed, dmu_tx_t *tx); 146 void dsl_dir_transfer_space(dsl_dir_t *dd, int64_t delta, 155 void dsl_fs_ss_count_adjust(dsl_dir_t *, int64_t, const char *, dmu_tx_t *);
|
H A D | space_reftree.h | 42 int64_t sr_refcnt; /* associated reference count */ 48 int64_t refcnt); 49 void space_reftree_add_map(avl_tree_t *t, range_tree_t *rt, int64_t refcnt); 51 int64_t minref);
|
H A D | refcount.h | 68 int64_t refcount_count(refcount_t *rc); 69 int64_t refcount_add(refcount_t *rc, void *holder_tag); 70 int64_t refcount_remove(refcount_t *rc, void *holder_tag); 71 int64_t refcount_add_many(refcount_t *rc, uint64_t number, void *holder_tag); 72 int64_t refcount_remove_many(refcount_t *rc, uint64_t number, void *holder_tag);
|
/titanic_44/usr/src/cmd/cmd-inet/usr.sbin/ifconfig/ |
H A D | ifconfig.c | 129 static int addif(char *arg, int64_t param); 130 static int inetipmp(char *arg, int64_t param); 131 static int inetplumb(char *arg, int64_t param); 132 static int inetunplumb(char *arg, int64_t param); 133 static int removeif(char *arg, int64_t param); 134 static int setdebugflag(char *arg, int64_t param); 135 static int setifaddr(char *arg, int64_t param); 136 static int setifbroadaddr(char *arg, int64_t param); 137 static int setifdstaddr(char *arg, int64_t param); 138 static int setifether(char *arg, int64_t param); [all …]
|
/titanic_44/usr/src/lib/libinetsvc/common/ |
H A D | inetsvc.h | 263 int64_t wait_fail_cnt; 267 int64_t max_copies; 271 int64_t conn_rate_max; 275 int64_t bind_fail_max; 281 int64_t conn_backlog; 290 int64_t iv_int; 329 int64_t get_prop_value_int(const inetd_prop_t *, const char *); 334 void put_prop_value_int(inetd_prop_t *, const char *, int64_t);
|
/titanic_44/usr/src/cmd/auditreduce/ |
H A D | proc.c | 436 int64_t s, m; 439 (void) adrm_int64(&adr, (int64_t *)&s, 1); 441 (void) adrm_int64(&adr, (int64_t *)&m, 1); 452 int64_t s, m; 460 (void) adrm_int64(&adr, (int64_t *)&s, 1); 462 (void) adrm_int64(&adr, (int64_t *)&m, 1); 728 int64_t secs, msecs; 729 (void) adrm_int64(&adr, (int64_t *)&secs, 1); 730 (void) adrm_int64(&adr, (int64_t *)&msecs, 1); 747 int64_t secs, msecs; [all …]
|
/titanic_44/usr/src/uts/sun4v/io/n2rng/ |
H A D | n2rng_entp_algs.c | 83 static int64_t 139 logx = (int64_t)(i - LOG_ARG_SCALE) << LOG_VAL_SCALE; in lg2() 171 mask = (uint64_t)(((int64_t)(data[k] - data[j])) >> 63); \ 255 ((int64_t)(LOG_ARG_SCALE - lg2samples) << in n2rng_renyi_entropy() 272 ((int64_t)(LOG_ARG_SCALE - lg2samples) << LOG_VAL_SCALE))) >> in n2rng_renyi_entropy() 282 ((int64_t)(LOG_ARG_SCALE - 2 * lg2samples) << LOG_VAL_SCALE)) / 64; in n2rng_renyi_entropy() 285 ((int64_t)(LOG_ARG_SCALE - lg2samples) << LOG_VAL_SCALE)) / 64; in n2rng_renyi_entropy()
|
/titanic_44/usr/src/uts/common/inet/sctp/ |
H A D | sctp_heartbeat.c | 122 int64_t *t; in sctp_send_heartbeat() 123 int64_t now; in sctp_send_heartbeat() 161 t = (int64_t *)(hpp + 1); in sctp_send_heartbeat() 207 int64_t now; in sctp_validate_peer() 208 int64_t earliest_expiry; in sctp_validate_peer() 247 int64_t expire; in sctp_validate_peer() 275 int64_t *sentp, sent; in sctp_process_heartbeat() 280 int64_t now; in sctp_process_heartbeat() 308 sentp = (int64_t *)(hpp + 1); in sctp_process_heartbeat()
|
/titanic_44/usr/src/uts/common/fs/zfs/ |
H A D | refcount.c | 111 int64_t 117 int64_t 121 int64_t count; in refcount_add_many() 139 int64_t 145 int64_t 149 int64_t count; in refcount_remove_many() 193 int64_t 202 int64_t count, removed_count; in refcount_transfer()
|
H A D | space_reftree.c | 93 space_reftree_add_node(avl_tree_t *t, uint64_t offset, int64_t refcnt) in space_reftree_add_node() 106 int64_t refcnt) in space_reftree_add_seg() 116 space_reftree_add_map(avl_tree_t *t, range_tree_t *rt, int64_t refcnt) in space_reftree_add_map() 131 space_reftree_generate_map(avl_tree_t *t, range_tree_t *rt, int64_t minref) in space_reftree_generate_map() 134 int64_t refcnt = 0; in space_reftree_generate_map()
|
/titanic_44/usr/src/cmd/fs.d/ufs/fsck/ |
H A D | pass3b.c | 48 static int64_t aclbufoff; /* offset into aclbuf */ 49 static int64_t maxaclsize; /* how big aclbuf is */ 52 static int bufchk(char *, int64_t, fsck_ino_t); 65 int64_t acl_size_limit; in pass3b() 91 if ((int64_t)aclp->i_isize > acl_size_limit) { in pass3b() 108 if ((int64_t)aclp->i_isize > maxaclsize) in pass3b() 109 maxaclsize = (int64_t)aclp->i_isize; in pass3b() 128 if ((int64_t)aclp->i_isize > acl_size_limit) { in pass3b() 144 bufchk(aclbuf, (int64_t)aclp->i_isize, aclp->i_number)) { in pass3b() 282 bufchk(char *buf, int64_t len, fsck_ino_t inum) in bufchk() [all …]
|
/titanic_44/usr/src/common/smbsrv/ |
H A D | smb_door_legacy.c | 233 int64_t 236 int64_t num = 0; in smb_dr_get_int64() 238 if (ctx->ptr + sizeof (int64_t) <= ctx->end_ptr) { in smb_dr_get_int64() 239 (void) memcpy(&num, ctx->ptr, sizeof (int64_t)); in smb_dr_get_int64() 240 ctx->ptr += sizeof (int64_t); in smb_dr_get_int64() 256 smb_dr_put_int64(smb_dr_ctx_t *ctx, int64_t num) in smb_dr_put_int64() 259 if (ctx->ptr + sizeof (int64_t) <= ctx->end_ptr) { in smb_dr_put_int64() 260 (void) memcpy(ctx->ptr, &num, sizeof (int64_t)); in smb_dr_put_int64() 261 ctx->ptr += sizeof (int64_t); in smb_dr_put_int64() 271 smb_dr_put_int64(ctx, (int64_t)num); in smb_dr_put_uint64()
|
/titanic_44/usr/src/uts/common/c2/ |
H A D | adr.c | 106 adr_int64(adr_t *adr, int64_t *lp, int count) in adr_int64() 109 int64_t l; /* value for shifting */ in adr_int64() 114 (char)((l & (int64_t)0xff00000000000000) >> in adr_int64() 161 adr_getint64(adr_t *adr, int64_t *lp) in adr_getint64() 169 *lp += ((int64_t)*adr->adr_now++) & 0x00000000000000ff; in adr_getint64()
|
/titanic_44/usr/src/lib/libilb/common/ |
H A D | ilb_subr.c | 43 sign64(int64_t n) in sign64() 63 static int64_t 84 return ((int64_t)ud * s); in signed_diff64() 116 i_cmp_addr_impl(void *ip1, void *ip2, ip_addr_type_t atype, int64_t *diff) in i_cmp_addr_impl() 122 int64_t d; in i_cmp_addr_impl() 194 int64_t dh; in i_cmp_addr_impl() 240 ilb_cmp_in6_addr(struct in6_addr *ip1, struct in6_addr *ip2, int64_t *diff) in ilb_cmp_in6_addr() 249 ilb_cmp_ipaddr(ilb_ip_addr_t *ip1, ilb_ip_addr_t *ip2, int64_t *diff) in ilb_cmp_ipaddr()
|
/titanic_44/usr/src/common/util/ |
H A D | string.c | 218 ul = (int64_t)va_arg(args, int); in vsnprintf() 220 ul = (int64_t)va_arg(args, unsigned int); in vsnprintf() 223 ul = (int64_t)va_arg(args, int64_t); in vsnprintf() 225 ul = (int64_t)va_arg(args, uint64_t); in vsnprintf() 228 ul = (int64_t)va_arg(args, long); in vsnprintf() 230 ul = (int64_t)va_arg(args, unsigned long); in vsnprintf() 233 ul = (int64_t)((char)va_arg(args, int)); in vsnprintf() 235 ul = (int64_t)((unsigned char)va_arg(args, in vsnprintf() 239 ul = (int64_t)((short)va_arg(args, int)); in vsnprintf() 241 ul = (int64_t)((unsigned short)va_arg(args, in vsnprintf() [all …]
|