/titanic_41/usr/src/uts/common/inet/ipd/ |
H A D | ipd.c | 252 ipd_nextrand(ipd_netstack_t *ins) in ipd_nextrand() argument 254 ins->ipdn_rand = ins->ipdn_rand * 1103515245L + 12345; in ipd_nextrand() 255 return (ins->ipdn_rand & 0x7fffffff); in ipd_nextrand() 281 ipd_netstack_t *ins = arg; in ipd_hook() local 284 mutex_enter(&ins->ipdn_lock); in ipd_hook() 285 status = ins->ipdn_status; in ipd_hook() 286 dwait = ins->ipdn_delay; in ipd_hook() 287 corrupt = ins->ipdn_corrupt; in ipd_hook() 288 drop = ins->ipdn_drop; in ipd_hook() 289 rand = ipd_nextrand(ins); in ipd_hook() [all …]
|
/titanic_41/usr/src/lib/libsaveargs/amd64/ |
H A D | saveargs.c | 119 #define INSTR1(ins, off) (ins[(off)]) argument 120 #define INSTR2(ins, off) (ins[(off)] + (ins[(off) + 1] << 8)) argument 121 #define INSTR3(ins, off) \ argument 122 (ins[(off)] + (ins[(off) + 1] << 8) + (ins[(off + 2)] << 16)) 123 #define INSTR4(ins, off) \ argument 124 (ins[(off)] + (ins[(off) + 1] << 8) + (ins[(off + 2)] << 16) + \ 125 (ins[(off) + 3] << 24)) 206 instr_size(dis_handle_t *dhp, uint8_t *ins, unsigned int i, size_t size) in instr_size() argument 210 t.data = ins; in instr_size() 218 has_saved_fp(dis_handle_t *dhp, uint8_t *ins, int size) in has_saved_fp() argument [all …]
|
/titanic_41/usr/src/cmd/psrinfo/ |
H A D | psrinfo.c | 154 ins_link(struct link **ins, struct link *item) in ins_link() argument 156 item->l_next = *ins; in ins_link() 157 *ins = item; in ins_link() 168 struct link **ins = list; in find_link() local 171 while ((l = *ins) != NULL) { in find_link() 176 ins = &l->l_next; in find_link() 179 *insertpt = ins; in find_link() 444 struct link **ins; in main() local 476 vc = find_link(&vcpus, ksp->ks_instance, &ins); in main() 485 ins_link(ins, &vc->v_link); in main() [all …]
|
/titanic_41/usr/src/cmd/mdb/intel/mdb/ |
H A D | mdb_ia32util.c | 160 uint8_t ins[6]; in kvm_argcount() local 169 if (mdb_tgt_vread(t, ins, sizeof (ins), eip) != sizeof (ins)) in kvm_argcount() 172 if (ins[1] != M_MODRM_ESP) in kvm_argcount() 175 switch (ins[0]) { in kvm_argcount() 177 n = ins[2] + (ins[3] << 8) + (ins[4] << 16) + (ins[5] << 24); in kvm_argcount() 181 n = ins[2]; in kvm_argcount()
|
H A D | mdb_amd64util.c | 222 uint8_t ins[SAVEARGS_INSN_SEQ_LEN]; in mdb_amd64_kvm_stack_iter() local 328 if (mdb_tgt_vread(t, ins, insnsize, s.st_value) != insnsize) in mdb_amd64_kvm_stack_iter() 332 ((args_style = saveargs_has_args(ins, insnsize, argc, in mdb_amd64_kvm_stack_iter()
|
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/inetd/ |
H A D | wait.c | 183 register_method(instance_t *ins, pid_t pid, ctid_t cid, instance_method_t mthd, in register_method() argument 216 me->inst = (instance_t *)ins; in register_method() 232 method_info_t *mi = ins->config->methods[mthd]; in register_method() 235 assert(ins->timer_id == -1); in register_method() 236 ins->timer_id = iu_schedule_timer(timer_queue, in register_method() 238 if (ins->timer_id == -1) { in register_method() 255 cancel_inst_timer(ins); in register_method()
|
H A D | inetd.c | 1285 add_method_ids(instance_t *ins, pid_t pid, ctid_t cid, instance_method_t mthd) in add_method_ids() argument 1288 (void) add_remove_contract(ins, B_TRUE, cid); in add_method_ids() 1291 if (add_rep_val(ins->start_pids, (int64_t)pid) == 0) { in add_method_ids() 1292 (void) store_rep_vals(ins->start_pids, ins->fmri, in add_method_ids() 1296 if (add_rep_val(ins->non_start_pid, (int64_t)pid) == 0) { in add_method_ids() 1297 (void) store_rep_vals(ins->non_start_pid, ins->fmri, in add_method_ids()
|
/titanic_41/usr/src/cmd/fm/modules/sun4v/etm/ |
H A D | etm_filter.c | 66 topo_instance_t ins; /* rc id */ in etm_pciexrc_walker() local 78 ins = topo_node_instance(node); in etm_pciexrc_walker() 108 p->prc_id = ins; in etm_pciexrc_walker() 186 int ins; /* instance number */ in etm_filter_find_ldom_id() local 227 (void) sscanf(s, "%d", &ins); in etm_filter_find_ldom_id() 241 if (prc->prc_id == ins) { in etm_filter_find_ldom_id() 257 fmd_hdl_debug(hdl, "prc[%d] not found\n", ins); in etm_filter_find_ldom_id()
|
/titanic_41/usr/src/cmd/print/lpset/ |
H A D | lpset.c | 112 *ins = NULL, in main() local 155 ins = optarg; in main() 186 ins = normalize_ns_name(ins); in main() 188 if (ins == NULL) in main() 189 ins = ons; in main() 248 if ((printer_obj = ns_printer_get_name(printer, ins)) == NULL) { in main()
|
/titanic_41/usr/src/lib/libsqlite/test/ |
H A D | version.test | 102 CREATE TABLE cnt(name,ins, del); 106 UPDATE cnt SET ins=ins+1 WHERE name='t1'; 112 UPDATE cnt SET ins=ins+1 WHERE name='t2'; 118 CREATE VIEW v2 AS SELECT sum(ins), sum(del) FROM cnt;
|
/titanic_41/usr/src/uts/common/fs/ufs/ |
H A D | ufs_inode.c | 82 struct instats ins = { variable 153 ins.in_malloc.value.ul = (ulong_t)kmem_cache_stat(inode_cache, in ufs_inode_kstat_update() 155 ins.in_mfree.value.ul = (ulong_t)kmem_cache_stat(inode_cache, in ufs_inode_kstat_update() 157 ins.in_kcalloc.value.ul = (ulong_t)kmem_cache_stat(inode_cache, in ufs_inode_kstat_update() 159 ins.in_kcfree.value.ul = (ulong_t)kmem_cache_stat(inode_cache, in ufs_inode_kstat_update() 161 ins.in_size.value.ul = (ulong_t)kmem_cache_stat(inode_cache, in ufs_inode_kstat_update() 163 ins.in_maxreached.value.ul = (ulong_t)kmem_cache_stat(inode_cache, in ufs_inode_kstat_update() 165 ins.in_misses.value.ul = ins.in_kcalloc.value.ul; in ufs_inode_kstat_update() 234 ins.in_maxsize.value.ul = ufs_ninode; in ufs_iinit() 236 KSTAT_TYPE_NAMED, sizeof (ins) / sizeof (kstat_named_t), in ufs_iinit() [all …]
|
/titanic_41/usr/src/lib/fm/topo/libtopo/common/ |
H A D | topo_fmri.c | 702 nvlist_t *ins; in topo_fmri_create() local 706 ins = out = NULL; in topo_fmri_create() 712 if ((*err = topo_hdl_nvalloc(thp, &ins, NV_UNIQUE_NAME)) != 0) in topo_fmri_create() 716 if (nvlist_add_string(ins, TOPO_METH_FMRI_ARG_NAME, name) != 0 || in topo_fmri_create() 717 nvlist_add_uint32(ins, TOPO_METH_FMRI_ARG_INST, inst) != 0) { in topo_fmri_create() 719 TOPO_METH_FMRI, ins)); in topo_fmri_create() 723 nvlist_add_nvlist(ins, TOPO_METH_FMRI_ARG_NVL, nvl) != 0) { in topo_fmri_create() 725 TOPO_METH_FMRI, ins)); in topo_fmri_create() 728 TOPO_METH_FMRI, TOPO_METH_FMRI_VERSION, ins, &out, err) != 0) { in topo_fmri_create() 729 return (set_nverror(thp, *err, err, TOPO_METH_FMRI, ins)); in topo_fmri_create() [all …]
|
/titanic_41/usr/src/grub/grub-0.97/netboot/ |
H A D | io.h | 147 extern void ins##s(unsigned short port, void * addr, unsigned long count); \ 148 extern inline void ins##s(unsigned short port, void * addr, unsigned long count) \
|
/titanic_41/usr/src/uts/intel/ia32/os/ |
H A D | archdep.c | 1161 const uint8_t *ins = (const uint8_t *)eip; in argcount() local 1170 if (eip < KERNELBASE || ins[1] != M_MODRM_ESP) in argcount() 1173 switch (ins[0]) { in argcount() 1175 n = ins[2] + (ins[3] << 8) + (ins[4] << 16) + (ins[5] << 24); in argcount() 1179 n = ins[2]; in argcount()
|
/titanic_41/usr/src/lib/libshell/common/ |
H A D | COMPATIBILITY | 28 5. The output format for some built-ins has changed. In particular 52 10. Built-ins in ksh-88 were always executed before looking for 62 with respect to its built-ins. For example, typeset -8i
|
H A D | builtins.mm | 43 was added as a group of built-ins commands that 65 Built-ins that have side effects in the current shell 77 built-ins. The development kit has three directories, 81 for functions that you can call from built-ins. The \f5lib\fP 92 utilities that can be made run time built-ins. 155 when compiling built-ins. 173 In addition, if you have several built-ins, it is desirable 213 As mentioned above, the entry point for built-ins must be of 215 Your built-ins can call functions from the standard C library, 356 Built-ins that use \f5optget()\fP provide a more
|
H A D | DESIGN | 11 The man pages for built-ins are in builtins.c rather 57 that are associated with some of the built-ins.
|
H A D | RELEASE88 | 201 3. The output of values from built-ins that contain special 221 1. Special built-ins (those with a dagger in front of them) are 224 3. Other built-ins that do not require an executable version 327 p. true and false are built-ins, not aliases to built-ins.
|
/titanic_41/usr/src/cmd/sgs/librtld_db/demo/tests/ |
H A D | test-sparc-regs | 34 print $ins
|
/titanic_41/usr/src/uts/common/sys/scsi/impl/ |
H A D | mode.h | 110 #define _reserved_ins ins
|
/titanic_41/usr/src/lib/libproc/amd64/ |
H A D | Pisadep.c | 362 uint8_t ins[SAVEARGS_INSN_SEQ_LEN]; in read_args() local 423 if (Pread(P, ins, insnsize, sym.st_value) != insnsize) in read_args() 427 ((args_style = saveargs_has_args(ins, insnsize, argc, in read_args()
|
/titanic_41/usr/src/pkg/manifests/ |
H A D | system-library-storage-ima.mf | 31 value="org.opensolaris.category.2008:Applications/Plug-ins and Run-times"
|
H A D | system-library-storage-scsi-plugins.mf | 30 value="org.opensolaris.category.2008:Applications/Plug-ins and Run-times"
|
/titanic_41/usr/src/tools/scripts/ |
H A D | webrev.sh | 1557 integer tot=$1 ins=$2 del=$3 mod=$4 unc=$5 1565 $tot $str $ins $del $mod $unc 1577 integer tot mod del ins unc err 1681 (( TINS += ins )) 1690 printCI $tot $ins $del $mod $unc
|
/titanic_41/usr/src/uts/sun4/ml/ |
H A D | swtch.s | 82 save %sp, -SA(MINFRAME), %sp ! save ins and locals 524 save %sp, -SA(MINFRAME), %sp ! save ins and locals
|