/titanic_41/usr/src/uts/common/fs/zfs/ |
H A D | dsl_deadlist.c | 69 dsl_deadlist_load_tree(dsl_deadlist_t *dl) in dsl_deadlist_load_tree() argument 74 ASSERT(!dl->dl_oldfmt); in dsl_deadlist_load_tree() 75 if (dl->dl_havetree) in dsl_deadlist_load_tree() 78 avl_create(&dl->dl_tree, dsl_deadlist_compare, in dsl_deadlist_load_tree() 81 for (zap_cursor_init(&zc, dl->dl_os, dl->dl_object); in dsl_deadlist_load_tree() 86 VERIFY3U(0, ==, bpobj_open(&dle->dle_bpobj, dl->dl_os, in dsl_deadlist_load_tree() 88 avl_add(&dl->dl_tree, dle); in dsl_deadlist_load_tree() 91 dl->dl_havetree = B_TRUE; in dsl_deadlist_load_tree() 95 dsl_deadlist_open(dsl_deadlist_t *dl, objset_t *os, uint64_t object) in dsl_deadlist_open() argument 99 mutex_init(&dl->dl_lock, NULL, MUTEX_DEFAULT, NULL); in dsl_deadlist_open() [all …]
|
H A D | zfs_dir.c | 141 zfs_dirlock_t *dl; in zfs_dirent_lock() local 231 for (dl = dzp->z_dirlocks; dl != NULL; dl = dl->dl_next) { in zfs_dirent_lock() 232 if ((u8_strcmp(name, dl->dl_name, 0, cmpflags, in zfs_dirent_lock() 242 if (dl == NULL) { in zfs_dirent_lock() 246 dl = kmem_alloc(sizeof (zfs_dirlock_t), KM_SLEEP); in zfs_dirent_lock() 247 cv_init(&dl->dl_cv, NULL, CV_DEFAULT, NULL); in zfs_dirent_lock() 248 dl->dl_name = name; in zfs_dirent_lock() 249 dl->dl_sharecnt = 0; in zfs_dirent_lock() 250 dl->dl_namelock = 0; in zfs_dirent_lock() 251 dl->dl_namesize = 0; in zfs_dirent_lock() [all …]
|
/titanic_41/usr/src/cmd/fm/modules/common/disk-lights/ |
H A D | disk_lights.c | 170 disk_lights_t *dl = arg; in dl_fault_walk_outer() local 193 has_fault = fmd_nvl_fmri_has_fault(dl->dl_fmd, fmri, in dl_fault_walk_outer() 215 dl_examine_topo(disk_lights_t *dl) in dl_examine_topo() argument 221 thp = fmd_hdl_topo_hold(dl->dl_fmd, TOPO_VERSION); in dl_examine_topo() 223 dl, &err)) == NULL) { in dl_examine_topo() 224 fmd_hdl_error(dl->dl_fmd, "failed to get topology: %s\n", in dl_examine_topo() 230 fmd_hdl_error(dl->dl_fmd, "failed to walk topology: %s\n", in dl_examine_topo() 239 fmd_hdl_topo_rele(dl->dl_fmd, thp); in dl_examine_topo() 243 dl_trigger_enum(disk_lights_t *dl) in dl_trigger_enum() argument 249 if (dl->dl_triggered == B_TRUE) in dl_trigger_enum() [all …]
|
/titanic_41/usr/src/lib/libc/amd64/gen/ |
H A D | strchr.s | 32 movb (%rdi),%dl / %dl = byte of string 33 cmpb %sil,%dl / find it? 35 testb %dl,%dl / is it null? 38 movb 1(%rdi),%dl / %dl = byte of string 39 cmpb %sil,%dl / find it? 41 testb %dl,%dl / is it null? 44 movb 2(%rdi),%dl / %dl = byte of string 45 cmpb %sil,%dl / find it? 47 testb %dl,%dl / is it null? 50 movb 3(%rdi),%dl / %dl = byte of string [all …]
|
H A D | strlen.s | 113 test %dl, %dl 115 test $0x01, %dl 118 test $0x02, %dl 122 test $0x04, %dl 125 test $0x08, %dl 128 test $0x10, %dl 131 test $0x20, %dl 134 test $0x40, %dl
|
H A D | strcat.s | 111 movb (%rsi), %dl / %dl = a byte in (%rsi) 112 cmpb $0, %dl / compare %dl with a null byte 113 movb %dl, (%rdi) / copy %dl to (%rdi) 114 je .L6 / if %dl is a null, goto .L6
|
H A D | memccpy.s | 39 cmpb %dh,%dl / is it the byte sought? 46 cmpb %dh,%dl / is it the byte sought? 53 cmpb %dh,%dl / is it the byte sought? 62 cmpb %dh,%dl / is it the byte sought?
|
/titanic_41/usr/src/lib/storage/libg_fc/common/ |
H A D | hot.c | 347 g_offline_drive(struct dlist *dl, int force_flag) in g_offline_drive() argument 353 for (; dl != NULL; dl = dl->next) { in g_offline_drive() 356 if ((devhdl = devctl_device_acquire(dl->dev_path, in g_offline_drive() 361 strerror(errno), dl->dev_path); in g_offline_drive() 390 g_online_drive(struct dlist *dl, int force_flag) in g_online_drive() argument 395 while (dl != NULL) { in g_online_drive() 396 if ((devhdl = devctl_device_acquire(dl->dev_path, in g_online_drive() 401 dl = dl->next; in g_online_drive() 444 struct dlist *dl; in g_forcelip_all() local 455 dl = disk_list->seslist; in g_forcelip_all() [all …]
|
/titanic_41/usr/src/cmd/rpcgen/ |
H A D | rpc_cout.c | 297 decl_list *dl; in emit_program() local 306 for (dl = plist->args.decls; dl != NULL; in emit_program() 307 dl = dl->next) in emit_program() 308 print_stat(1, &dl->decl); in emit_program() 377 int size, int flag, decl_list *dl, decl_list *cur) in expand_inline() argument 403 while (cur != dl) { in expand_inline() 414 while (cur != dl) { in expand_inline() 420 while (cur != dl) { in expand_inline() 506 inline_struct(decl_list *dl, decl_list *last, int flag, int indent) in inline_struct() argument 515 for (; dl != last; dl = dl->next) { in inline_struct() [all …]
|
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_pf.c | 225 datalink_t dl; variable 227 #define IPV4_SRCADDR_OFFSET (dl.dl_link_header_len + 12) 228 #define IPV4_DSTADDR_OFFSET (dl.dl_link_header_len + 16) 229 #define IPV6_SRCADDR_OFFSET (dl.dl_link_header_len + 8) 230 #define IPV6_DSTADDR_OFFSET (dl.dl_link_header_len + 24) 712 if (dl.dl_type == DL_ETHER) 743 if (dl.dl_type == DL_ETHER) { 782 if (dl.dl_type == DL_ETHER) { 881 pf_compare_address(dl.dl_link_dest_offset, dl.dl_link_addr_len, 885 pf_compare_address(dl.dl_link_src_offset, dl.dl_link_addr_len, [all …]
|
/titanic_41/usr/src/lib/libc/i386/gen/ |
H A D | memccpy.s | 43 movb (%esi),%dl 44 movb %dl,(%eax) / move byte 45 cmpb %dh,%dl / is it the byte sought? 50 movb 1(%esi),%dl 51 movb %dl,1(%eax) / move byte 52 cmpb %dh,%dl / is it the byte sought? 57 movb 2(%esi),%dl 58 movb %dl,2(%eax) / move byte 59 cmpb %dh,%dl / is it the byte sought? 64 movb 3(%esi),%dl [all …]
|
H A D | strncat.s | 123 movb (%eax), %dl / %dl = a byte in (%eax) 125 movb %dl, (%edi) / copy %dl to (%edi) 128 cmpb $0, %dl / compare %dl with a null byte 129 je .L9 / if %dl is a null, goto .L9 137 movb (%eax), %dl / %dl = a byte in (%eax) 139 movb %dl, (%edi) / copy %dl to (%edi) 142 cmpb $0, %dl / compare %dl with a null byte 143 je .L9 / if %dl is a null, goto .L9
|
H A D | strcat.s | 108 movb (%eax), %dl / %dl = a byte in (%eax) 109 cmpb $0, %dl / compare %dl with a null byte 110 movb %dl, (%edi) / copy %dl to (%edi) 111 je .L6 / if %dl is a null, goto .L6
|
/titanic_41/usr/src/uts/common/fs/zfs/sys/ |
H A D | dsl_deadlist.h | 65 void dsl_deadlist_open(dsl_deadlist_t *dl, objset_t *os, uint64_t object); 66 void dsl_deadlist_close(dsl_deadlist_t *dl); 69 void dsl_deadlist_insert(dsl_deadlist_t *dl, const blkptr_t *bp, dmu_tx_t *tx); 70 void dsl_deadlist_add_key(dsl_deadlist_t *dl, uint64_t mintxg, dmu_tx_t *tx); 71 void dsl_deadlist_remove_key(dsl_deadlist_t *dl, uint64_t mintxg, dmu_tx_t *tx); 72 uint64_t dsl_deadlist_clone(dsl_deadlist_t *dl, uint64_t maxtxg, 74 void dsl_deadlist_space(dsl_deadlist_t *dl, 76 void dsl_deadlist_space_range(dsl_deadlist_t *dl, 79 void dsl_deadlist_merge(dsl_deadlist_t *dl, uint64_t obj, dmu_tx_t *tx); 80 void dsl_deadlist_move_bpobj(dsl_deadlist_t *dl, bpobj_t *bpo, uint64_t mintxg,
|
/titanic_41/usr/src/lib/storage/liba5k/common/ |
H A D | lhot.c | 706 struct dlist *dl, *dl1; in online_dev() local 708 for (dl = dl_head; dl != NULL; ) { in online_dev() 709 (void) g_online_drive(dl->multipath, force_flag); in online_dev() 710 (void) g_free_multipath(dl->multipath); in online_dev() 711 dl1 = dl; in online_dev() 712 dl = dl->next; in online_dev() 733 struct dlist *dl_head, *dl_tail, *dl, *dl_ses; in l_offline_photon() local 769 if ((dl = g_zalloc(sizeof (struct dlist))) == NULL) { in l_offline_photon() 775 dl->dev_path = dev_path; in l_offline_photon() 777 &(dl->multipath), wwn_list, 0)) != 0) { in l_offline_photon() [all …]
|
/titanic_41/usr/src/grub/grub-0.97/stage1/ |
H A D | stage1.S | 119 testb $0x80, %dl 121 movb $0x80, %dl 148 movb %al, %dl 157 testb $STAGE1_BIOS_HD_FLAG, %dl 242 testb $STAGE1_BIOS_HD_FLAG, %dl 262 movb %cl, %dl 272 movb %dl, %al 289 movb %dl, 10(%si) 295 movb %dl, 11(%si) 309 movb 13(%si), %dl [all …]
|
/titanic_41/usr/src/cmd/luxadm/ |
H A D | hotplug.c | 1532 struct dlist *dl; in h_pre_hotplug_sena() local 1545 dl = hotplug_dev->seslist; in h_pre_hotplug_sena() 1546 while (dl) { in h_pre_hotplug_sena() 1547 ses_path = dl->dev_path; in h_pre_hotplug_sena() 1551 dl = dl->next; in h_pre_hotplug_sena() 1553 if (dl == NULL) { in h_pre_hotplug_sena() 1736 struct dlist *dl, *dl1; in h_post_hotplug_sena() local 1740 dl = hotplug_dev->seslist; in h_post_hotplug_sena() 1753 tid, dl->dev_path); in h_post_hotplug_sena() 1755 while (dl) { in h_post_hotplug_sena() [all …]
|
/titanic_41/usr/src/lib/libc/port/gen/ |
H A D | lmath.c | 46 dl_t dl; member 55 return (r.dl); in ladd() 68 return (r.dl); in lshiftl() 84 return (r.dl); in lsub() 93 return (r.dl); in lmul()
|
/titanic_41/usr/src/lib/libslp/clib/ |
H A D | slp_auth.c | 340 static void *dl = NULL; in get_security_backend() local 359 if (!(dl = dlopen(libname, RTLD_LAZY))) { in get_security_backend() 371 dlsym(dl, "AMI_MD5WithRSAEncryption_AID"))) { in get_security_backend() 381 dlsym(dl, "AMI_SHA1WithDSASignature_AID"))) { in get_security_backend() 397 dl, "ami_init"))) { in get_security_backend() 413 dl, "ami_sign"))) { in get_security_backend() 429 dl, "ami_verify"))) { in get_security_backend() 439 dl, "ami_get_cert"))) { in get_security_backend() 451 dl, "ami_get_cert_chain"))) { in get_security_backend() 459 dl, "ami_str2dn"))) { in get_security_backend() [all …]
|
/titanic_41/usr/src/cmd/lvm/rpc.metamhd/ |
H A D | mhd_set.c | 514 mhd_drive_list_t dl = mhd_null_list; in mhd_release_drives() local 522 if ((sp = mhd_create_set(mhsp, options, &dl, mhep)) == NULL) { in mhd_release_drives() 524 mhd_free_list(&dl); in mhd_release_drives() 532 rval = mhd_release_set(sp, &dl, mhep); in mhd_release_drives() 538 mhd_free_list(&dl); in mhd_release_drives() 684 mhd_drive_list_t dl = mhd_null_list; in mhd_reserve_drives() local 692 if ((sp = mhd_create_set(mhsp, options, &dl, mhep)) == NULL) { in mhd_reserve_drives() 694 mhd_free_list(&dl); in mhd_reserve_drives() 702 if ((dl.dl_ndrive != sp->sr_drives.dl_ndrive) && in mhd_reserve_drives() 722 rval = mhd_reserve_set(sp, &dl, mhep); in mhd_reserve_drives() [all …]
|
/titanic_41/usr/src/uts/common/io/bpf/ |
H A D | bpf_dlt.c | 80 bpf_dl_to_dlt(int dl) in bpf_dl_to_dlt() argument 85 if (dl_to_dlt[i][0] == dl) in bpf_dl_to_dlt() 95 bpf_dl_hdrsize(int dl) in bpf_dl_hdrsize() argument 100 if (dl_to_dlt[i][0] == dl) in bpf_dl_hdrsize()
|
/titanic_41/usr/src/lib/libilb/common/ |
H A D | ilb_subr.c | 193 uint64_t dl; in i_cmp_addr_impl() local 205 dl = unsigned_diff64(i1l, i2l, &l_sign); in i_cmp_addr_impl() 209 if (dl > INT64_MAX) in i_cmp_addr_impl() 210 dl = INT64_MAX; in i_cmp_addr_impl() 212 d = dl * l_sign; in i_cmp_addr_impl() 221 if (dl < INT64_MAX) { in i_cmp_addr_impl() 225 d = UINT64_MAX - dl + 1; in i_cmp_addr_impl() 227 d = -INT64_MAX - (dl - INT64_MAX) - 1; in i_cmp_addr_impl()
|
/titanic_41/usr/src/uts/intel/ia32/ml/ |
H A D | lock_prim.s | 75 movb $-1, %dl 76 movzbq %dl, %rax 77 xchgb %dl, (%rdi) 78 xorb %dl, %al 92 movb $-1, %dl 93 movzbq %dl, %rax 94 xchgb %dl, (%rdi) 95 xorb %dl, %al 127 xchgb %dl, (%ecx) /* using dl will avoid partial */ 128 testb %dl,%dl /* stalls on P6 ? */ [all …]
|
/titanic_41/usr/src/grub/grub-0.97/stage2/ |
H A D | start.S | 174 movb %dl, 10(%si) 180 movb %dl, 11(%si) 217 movb 13(%si), %dl 219 shlb $6, %dl /* shift left by 6 bits */ 224 orb %dl, %cl /* composite together */
|
/titanic_41/usr/src/lib/fm/topo/modules/sun4v/platform-mem/ |
H A D | mem_mdesc.c | 259 mde_cookie_t *dl, *bl, *bclist; in mdesc_init_n2() local 351 dl = topo_mod_zalloc(mod, mdesc_dimm_count * sizeof (mde_cookie_t)); in mdesc_init_n2() 368 dl); in mdesc_init_n2() 375 if (md_get_prop_str(mdp, dl[i], in mdesc_init_n2() 386 topo_mod_free(mod, dl, mdesc_dimm_count * sizeof (mde_cookie_t)); in mdesc_init_n2() 482 mem_dimm_list_t *dl, *nl; in mem_mdesc_fini() local 495 for (dl = bm->bm_dlist; dl != NULL; dl = nl) { in mem_mdesc_fini() 496 nl = dl->dl_next; in mem_mdesc_fini() 497 topo_mod_free(mod, dl, sizeof (mem_dimm_list_t)); in mem_mdesc_fini()
|