| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| H A D | metaslab.c | 532 metaslab_verify_space(metaslab_t *msp, uint64_t txg) in metaslab_verify_space() argument 534 spa_t *spa = msp->ms_group->mg_vd->vdev_spa; in metaslab_verify_space() 539 ASSERT(MUTEX_HELD(&msp->ms_lock)); in metaslab_verify_space() 551 if (txg != spa_syncing_txg(spa) || msp->ms_sm == NULL || in metaslab_verify_space() 552 !msp->ms_loaded) in metaslab_verify_space() 555 sm_free_space = msp->ms_size - space_map_allocated(msp->ms_sm) - in metaslab_verify_space() 556 space_map_alloc_delta(msp->ms_sm); in metaslab_verify_space() 564 range_tree_space(msp->ms_alloctree[(txg + t) & TXG_MASK]); in metaslab_verify_space() 566 freed = range_tree_space(msp->ms_freetree[TXG_CLEAN(txg) & TXG_MASK]); in metaslab_verify_space() 568 msp_free_space = range_tree_space(msp->ms_tree) + allocated + in metaslab_verify_space() [all …]
|
| H A D | vdev.c | 795 metaslab_t *msp; in vdev_top_transfer() local 831 while ((msp = txg_list_remove(&svd->vdev_ms_list, t)) != NULL) in vdev_top_transfer() 832 (void) txg_list_add(&tvd->vdev_ms_list, msp, t); in vdev_top_transfer() 1033 metaslab_t *msp = vd->vdev_ms[m]; in vdev_metaslab_fini() local 1035 if (msp != NULL) in vdev_metaslab_fini() 1036 metaslab_fini(msp); in vdev_metaslab_fini() 2392 metaslab_t *msp = vd->vdev_ms[m]; in vdev_remove() local 2394 if (msp == NULL || msp->ms_sm == NULL) in vdev_remove() 2397 mutex_enter(&msp->ms_lock); in vdev_remove() 2405 metaslab_group_histogram_remove(mg, msp); in vdev_remove() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/ |
| H A D | config.c | 805 a_metasubtree_t **msp; in asyncmeta_subtree_config() local 807 for ( msp = &mt->mt_subtree; *msp; ) { in asyncmeta_subtree_config() 810 switch ( (*msp)->ms_type ) { in asyncmeta_subtree_config() 812 if ( dnIsSuffix( &(*msp)->ms_dn, &ms->ms_dn ) ) { in asyncmeta_subtree_config() 813 a_metasubtree_t *tmp = *msp; in asyncmeta_subtree_config() 816 c->log, pattern, (*msp)->ms_dn.bv_val ); in asyncmeta_subtree_config() 817 *msp = (*msp)->ms_next; in asyncmeta_subtree_config() 822 } else if ( dnIsSuffix( &ms->ms_dn, &(*msp)->ms_dn ) ) { in asyncmeta_subtree_config() 825 c->log, (*msp)->ms_dn.bv_val, pattern ); in asyncmeta_subtree_config() 833 if ( dnIsSuffix( &(*msp)->ms_dn, &ms->ms_dn ) ) { in asyncmeta_subtree_config() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc4523.txt | 805 cea-serialNumber = id-serialNumber msp CertificateSerialNumber 806 cea-issuer = id-issuer msp Name 833 ca-serialNumber = id-serialNumber msp CertificateSerialNumber 834 ca-issuer = id-issuer msp Name 835 ca-subjectKeyIdentifier = id-subjectKeyIdentifier msp 837 ca-authorityKeyIdentifier = id-authorityKeyIdentifier msp 847 ca-certificateValid = id-certificateValid msp Time 848 ca-privateKeyValid = id-privateKeyValid msp GeneralizedTime 849 ca-subjectPublicKeyAlgID = id-subjectPublicKeyAlgID msp 851 ca-keyUsage = id-keyUsage msp KeyUsage [all …]
|
| H A D | rfc3672.txt | 480 ss-base = id-base msp LocalName 481 ss-specificExclusions = id-specificExclusions msp 483 ss-minimum = id-minimum msp BaseDistance 484 ss-maximum = id-maximum msp BaseDistance 485 ss-specificationFilter = id-specificationFilter msp Refinement 525 The <sp>, <msp>, <sep>, <INTEGER>, <INTEGER-0-MAX>, <OBJECT-
|
| H A D | rfc3687.txt | 1251 component = component-label msp StringValue 1252 useDefaultValues = use-defaults-label msp BooleanValue 1253 rule = rule-label msp ObjectIdentifierValue 1254 assertion-value = value-label msp Value 1263 msp = 1*%x20 ; one or more space characters
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-meta/ |
| H A D | config.c | 896 metasubtree_t **msp; in meta_subtree_config() local 898 for ( msp = &mt->mt_subtree; *msp; ) { in meta_subtree_config() 901 switch ( (*msp)->ms_type ) { in meta_subtree_config() 903 if ( dnIsSuffix( &(*msp)->ms_dn, &ms->ms_dn ) ) { in meta_subtree_config() 904 metasubtree_t *tmp = *msp; in meta_subtree_config() 907 c->log, pattern, (*msp)->ms_dn.bv_val ); in meta_subtree_config() 908 *msp = (*msp)->ms_next; in meta_subtree_config() 913 } else if ( dnIsSuffix( &ms->ms_dn, &(*msp)->ms_dn ) ) { in meta_subtree_config() 916 c->log, (*msp)->ms_dn.bv_val, pattern ); in meta_subtree_config() 924 if ( dnIsSuffix( &(*msp)->ms_dn, &ms->ms_dn ) ) { in meta_subtree_config() [all …]
|
| /netbsd-src/external/cddl/osnet/dist/cmd/zdb/ |
| H A D | zdb.c | 733 dump_metaslab_stats(metaslab_t *msp) in dump_metaslab_stats() argument 736 range_tree_t *rt = msp->ms_tree; in dump_metaslab_stats() 737 avl_tree_t *t = &msp->ms_size_tree; in dump_metaslab_stats() 738 int free_pct = range_tree_space(rt) * 100 / msp->ms_size; in dump_metaslab_stats() 740 zdb_nicenum(metaslab_block_maxsize(msp), maxbuf); in dump_metaslab_stats() 750 dump_metaslab(metaslab_t *msp) in dump_metaslab() argument 752 vdev_t *vd = msp->ms_group->mg_vd; in dump_metaslab() 754 space_map_t *sm = msp->ms_sm; in dump_metaslab() 757 zdb_nicenum(msp->ms_size - space_map_allocated(sm), freebuf); in dump_metaslab() 761 (u_longlong_t)msp->ms_id, (u_longlong_t)msp->ms_start, in dump_metaslab() [all …]
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | ste-href.dtsi | 193 msp0: msp@80123000 { 199 msp1: msp@80124000 { 205 msp2: msp@80117000 { 210 msp3: msp@80125000 {
|
| H A D | ste-dbx5x0.dtsi | 987 msp0: msp@80123000 { 988 compatible = "stericsson,ux500-msp-i2s"; 998 clock-names = "msp", "apb_pclk"; 1003 msp1: msp@80124000 { 1004 compatible = "stericsson,ux500-msp-i2s"; 1014 clock-names = "msp", "apb_pclk"; 1020 msp2: msp@80117000 { 1021 compatible = "stericsson,ux500-msp-i2s"; 1032 clock-names = "msp", "apb_pclk"; 1037 msp3: msp@80125000 { [all …]
|
| H A D | ste-snowball.dts | 150 msp0: msp@80123000 { 156 msp1: msp@80124000 { 162 msp2: msp@80117000 { 167 msp3: msp@80125000 {
|
| /netbsd-src/external/bsd/openldap/dist/doc/drafts/ |
| H A D | draft-legg-ldap-acm-bac-xx.txt | 1682 aci-identificationTag = id-identificationTag msp 1684 aci-precedence = id-precedence msp Precedence 1685 aci-authenticationLevel = id-authenticationLevel msp 1687 aci-itemOrUserFirst = id-itemOrUserFirst msp 1713 bl-level = id-level msp Level 1714 bl-localQualifier = id-localQualifier msp INTEGER 1715 bl-signed = id-signed msp BOOLEAN 1741 if-protectedItems = id-protectedItems msp ProtectedItems 1742 if-itemPermissions = id-itemPermissions msp ItemPermissions 1751 uf-userClasses = id-userClasses msp UserClasses [all …]
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | claris | 26 # .msp a dictionary file I am not sure about this I have only one .msp file
|
| H A D | ole2compounddocs | 385 !:mime application/x-wine-extension-msp 386 #!:mime application/x-ms-msp 387 !:ext msp
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/emulparams/ |
| H A D | msp430elf.sh | 13 ARCH=msp:14
|
| /netbsd-src/external/gpl3/binutils/dist/ld/emulparams/ |
| H A D | msp430elf.sh | 13 ARCH=msp:14
|
| /netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
| H A D | mmo.c | 2231 struct mmo_symbol **msp; in mmo_canonicalize_symtab() local 2238 msp = (struct mmo_symbol **) alocation; in mmo_canonicalize_symtab() 2240 s = s->next, ++msp) in mmo_canonicalize_symtab() 2241 *msp = s; in mmo_canonicalize_symtab() 2243 *msp = NULL; in mmo_canonicalize_symtab() 2253 for (msp = (struct mmo_symbol **) alocation, c = csymbols; in mmo_canonicalize_symtab() 2254 *msp != NULL; in mmo_canonicalize_symtab() 2255 msp++, ++c) in mmo_canonicalize_symtab() 2257 s = *msp; in mmo_canonicalize_symtab()
|
| /netbsd-src/external/gpl3/binutils/dist/bfd/ |
| H A D | mmo.c | 2229 struct mmo_symbol **msp; in mmo_canonicalize_symtab() local 2236 msp = (struct mmo_symbol **) alocation; in mmo_canonicalize_symtab() 2238 s = s->next, ++msp) in mmo_canonicalize_symtab() 2239 *msp = s; in mmo_canonicalize_symtab() 2241 *msp = NULL; in mmo_canonicalize_symtab() 2251 for (msp = (struct mmo_symbol **) alocation, c = csymbols; in mmo_canonicalize_symtab() 2252 *msp != NULL; in mmo_canonicalize_symtab() 2253 msp++, ++c) in mmo_canonicalize_symtab() 2255 s = *msp; in mmo_canonicalize_symtab()
|
| /netbsd-src/external/gpl3/binutils/dist/gold/ |
| H A D | output.h | 2984 eq(const Merge_section_properties& msp) const in eq() argument 2986 return ((this->is_string_ == msp.is_string_) in eq() 2987 && (this->entsize_ == msp.entsize_) in eq() 2988 && (this->addralign_ == msp.addralign_)); in eq() 3015 operator()(const Merge_section_properties& msp) const in operator() 3016 { return msp.hash_value(); } in operator() 3062 find_merge_section(const Merge_section_properties& msp) const in find_merge_section() argument 3066 this->merge_sections_by_properties_.find(msp); in find_merge_section() 3072 add_merge_section(const Merge_section_properties& msp, in add_merge_section() argument 3075 std::pair<Merge_section_properties, Output_merge_base*> value(msp, pomb); in add_merge_section()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gold/ |
| H A D | output.h | 2984 eq(const Merge_section_properties& msp) const in eq() argument 2986 return ((this->is_string_ == msp.is_string_) in eq() 2987 && (this->entsize_ == msp.entsize_) in eq() 2988 && (this->addralign_ == msp.addralign_)); in eq() 3015 operator()(const Merge_section_properties& msp) const in operator() 3016 { return msp.hash_value(); } in operator() 3062 find_merge_section(const Merge_section_properties& msp) const in find_merge_section() argument 3066 this->merge_sections_by_properties_.find(msp); in find_merge_section() 3072 add_merge_section(const Merge_section_properties& msp, in add_merge_section() argument 3075 std::pair<Merge_section_properties, Output_merge_base*> value(msp, pomb); in add_merge_section()
|
| /netbsd-src/sys/dev/pci/bktr/ |
| H A D | bktr_core.c | 2311 struct bktr_msp_control *msp; local 2312 msp = (struct bktr_msp_control *) arg; 2313 msp->data = msp_dpl_read(bktr, bktr->msp_addr, 2314 msp->function, msp->address); 2320 struct bktr_msp_control *msp; local 2321 msp = (struct bktr_msp_control *) arg; 2322 msp_dpl_write(bktr, bktr->msp_addr, msp->function, 2323 msp->address, msp->data);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMSystemRegister.td | 69 def : MClassSysReg<0, 0, 1, 0x808, "msp">;
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.disasm/ |
| H A D | am33.s | 107 mov msp,a2 111 mov a2,msp
|
| /netbsd-src/sys/arch/luna68k/luna68k/ |
| H A D | locore.s | 765 movc %d0,%msp | set initial stack pointer
|
| /netbsd-src/external/bsd/ipf/dist/etc/ |
| H A D | services | 19 msp 18/tcp # Message Send Protocol 20 msp 18/udp # Message Send Protocol 1644 msp 2438/tcp # MSP 1645 msp 2438/udp # MSP
|