| /netbsd-src/external/bsd/atf/dist/atf-c/detail/ |
| H A D | list.c | 52 entry_to_citer(const atf_list_t *l, const struct list_entry *le) in entry_to_citer() argument 56 iter.m_entry = le; in entry_to_citer() 62 entry_to_iter(atf_list_t *l, struct list_entry *le) in entry_to_iter() argument 66 iter.m_entry = le; in entry_to_iter() 74 struct list_entry *le; in new_entry() local 76 le = (struct list_entry *)malloc(sizeof(*le)); in new_entry() 77 if (le != NULL) { in new_entry() 78 le->m_prev = le->m_next = NULL; in new_entry() 79 le->m_object = object; in new_entry() 80 le->m_managed = managed; in new_entry() [all …]
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| H A D | zap_leaf.c | 129 struct zap_leaf_entry *le; in zap_leaf_byteswap() local 133 le = &lc->l_entry; in zap_leaf_byteswap() 135 le->le_type = BSWAP_8(le->le_type); in zap_leaf_byteswap() 136 le->le_value_intlen = BSWAP_8(le->le_value_intlen); in zap_leaf_byteswap() 137 le->le_next = BSWAP_16(le->le_next); in zap_leaf_byteswap() 138 le->le_name_chunk = BSWAP_16(le->le_name_chunk); in zap_leaf_byteswap() 139 le->le_name_numints = BSWAP_16(le->le_name_numints); in zap_leaf_byteswap() 140 le->le_value_chunk = BSWAP_16(le->le_value_chunk); in zap_leaf_byteswap() 141 le->le_value_numints = BSWAP_16(le->le_value_numints); in zap_leaf_byteswap() 142 le->le_cd = BSWAP_32(le->le_cd); in zap_leaf_byteswap() [all …]
|
| /netbsd-src/external/cddl/osnet/dist/tools/ctf/common/ |
| H A D | list.c | 53 list_t *le; in list_add() local 55 le = xmalloc(sizeof (list_t)); in list_add() 56 le->l_data = data; in list_add() 57 le->l_next = *list; in list_add() 58 *list = le; in list_add() 86 list_t *le, **le2; in list_remove() local 92 for (le = *list, le2 = list; le; le2 = &le->l_next, le = le->l_next) { in list_remove() 93 if (cmp(le->l_data, data, private) == 0) { in list_remove() 94 *le2 = le->l_next; in list_remove() 95 led = le->l_data; in list_remove() [all …]
|
| /netbsd-src/sys/dev/ |
| H A D | lockstat.c | 167 lockstat_init_tables(lsenable_t *le) in lockstat_init_tables() argument 185 if (le == NULL) in lockstat_init_tables() 189 per = le->le_nbufs / ncpu; in lockstat_init_tables() 190 slop = le->le_nbufs - (per * ncpu); in lockstat_init_tables() 218 lockstat_start(lsenable_t *le) in lockstat_start() argument 224 lockstat_init_tables(le); in lockstat_start() 226 if ((le->le_flags & LE_CALLSITE) != 0) in lockstat_start() 231 if ((le->le_flags & LE_LOCK) != 0) in lockstat_start() 236 lockstat_csstart = le->le_csstart; in lockstat_start() 237 lockstat_csend = le->le_csend; in lockstat_start() [all …]
|
| /netbsd-src/external/gpl2/lvm2/dist/lib/metadata/ |
| H A D | merge.c | 66 uint32_t le = 0; in check_lv_segments() local 74 if (seg->le != le) { in check_lv_segments() 77 lv->name, seg_count, le, seg->le); in check_lv_segments() 200 le += seg->len; in check_lv_segments() 217 lv->name, seg->lv->name, seg->le, in check_lv_segments() 218 seg->le + seg->len - 1, in check_lv_segments() 225 lv->name, sl->count, seg->lv->name, seg->le, in check_lv_segments() 226 seg->le + seg->len - 1, seg_found); in check_lv_segments() 239 seg->lv->name, seg->le, seg->le + seg->len - 1, in check_lv_segments() 245 if (le != lv->le_count) { in check_lv_segments() [all …]
|
| H A D | lv_manip.c | 50 seg->lv->name, seg->le, lv->name); in add_seg_to_segs_using_this_lv() 76 "of %s", seg->lv->name, seg->le, in remove_seg_from_segs_using_this_lv() 109 lv->name, sl->seg->lv->name, sl->seg->le, sl->count); in get_only_segment_using_this_lv() 124 uint32_t le; member 128 static struct seg_pvs *_find_seg_pvs_by_le(struct dm_list *list, uint32_t le) in _find_seg_pvs_by_le() argument 133 if (le >= spvs->le && le < spvs->le + spvs->len) in _find_seg_pvs_by_le() 171 uint32_t le, uint32_t len, in alloc_lv_segment() argument 199 seg->le = le; in alloc_lv_segment() 264 seg->lv->name, seg->le, s, in release_lv_segment_area() 282 uint32_t pe, le; in move_lv_segment_area() local [all …]
|
| /netbsd-src/external/gpl2/lvm2/dist/lib/format1/ |
| H A D | import-extents.c | 116 uint32_t i, lv_num, le; in _fill_maps() local 146 le = e[i].le_num; in _fill_maps() 148 if (le >= lvm->lv->le_count) { in _fill_maps() 154 if (lvm->map[le].pv) { in _fill_maps() 156 "already mapped.", le); in _fill_maps() 160 lvm->map[le].pv = pv; in _fill_maps() 161 lvm->map[le].pe = i; in _fill_maps() 198 static uint32_t _area_length(struct lv_map *lvm, uint32_t le) in _area_length() argument 204 while ((lvm->map[le + len].pv == lvm->map[le].pv) && in _area_length() 205 (lvm->map[le].pv && in _area_length() [all …]
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | nifty | 32 >>70 use nifti-datatype-le 34 >>0 use nifti1-dim-le 36 >>>252 use xform-code-nifti1-le 38 >>>254 use xform-code-nifti1-le 41 >>70 use \^nifti-datatype-le 43 >>0 use \^nifti1-dim-le 45 >>>252 use \^xform-code-nifti1-le 47 >>>254 use \^xform-code-nifti1-le 56 >>12 use nifti-datatype-le 58 >>0 use nifti2-dim-le [all …]
|
| /netbsd-src/sbin/atactl/ |
| H A D | atactl.c | 998 print_error_entry(int num, const struct ata_smart_error *le) in print_error_entry() argument 1007 le->command[i].device_control, in print_error_entry() 1008 le->command[i].features, in print_error_entry() 1009 le->command[i].sector_count, in print_error_entry() 1010 le->command[i].sector_number, in print_error_entry() 1011 le->command[i].cylinder_low, in print_error_entry() 1012 le->command[i].cylinder_high, in print_error_entry() 1013 le->command[i].device_head, in print_error_entry() 1014 le->command[i].command, in print_error_entry() 1015 le->command[i].timestamp[3], in print_error_entry() [all …]
|
| /netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/ |
| H A D | tdata.c | 288 labelent_t *le = xmalloc(sizeof (*le)); in tdata_label_add() local 290 le->le_name = xstrdup(label); in tdata_label_add() 291 le->le_idx = (idx == -1 ? td->td_nextid - 1 : idx); in tdata_label_add() 293 slist_add(&td->td_labels, le, tdata_label_cmp); in tdata_label_add() 299 labelent_t *le = data; in tdata_label_top_cb() local 302 *topp = le; in tdata_label_top_cb() 320 labelent_t *le = arg1; in tdata_label_find_cb() local 322 return (streq(le->le_name, tmpl->le_name)); in tdata_label_find_cb() 348 labelent_t *le = data; in tdata_label_newmax_cb() local 351 if (le->le_idx > *newmaxp) { in tdata_label_newmax_cb() [all …]
|
| /netbsd-src/tests/fs/ffs/ |
| H A D | t_miscquota.sh | 29 "walk user quota list over several disk blocks" -b le 1 user 33 -b le 1 user 37 -boL le 1 user 41 -boC le 1 user 45 -boLC le 1 user 49 -l le 1 user 53 -oRL le 1 user 57 "new quota entry denied by default entry" 5 -b le 1 user 60 "new quota entry denied by default entry, with list on more than one block" 5000 -b le 1 user
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/emulparams/ |
| H A D | elf32ppccommon.sh | 50 *le:*64lppc*) LIBPATH_SUFFIX=64 ;; 51 *le:*32lppc*) LIBPATH_SUFFIX=32 ;; 52 *le:*64*) LIBPATH_SUFFIX=64be ;; 53 *le:*32*) LIBPATH_SUFFIX=32be ;; 54 *:*64lppc*) LIBPATH_SUFFIX=64le ;; 55 *:*32lppc*) LIBPATH_SUFFIX=32le ;;
|
| /netbsd-src/external/gpl3/binutils/dist/ld/emulparams/ |
| H A D | elf32ppccommon.sh | 50 *le:*64lppc*) LIBPATH_SUFFIX=64 ;; 51 *le:*32lppc*) LIBPATH_SUFFIX=32 ;; 52 *le:*64*) LIBPATH_SUFFIX=64be ;; 53 *le:*32*) LIBPATH_SUFFIX=32be ;; 54 *:*64lppc*) LIBPATH_SUFFIX=64le ;; 55 *:*32lppc*) LIBPATH_SUFFIX=32le ;;
|
| /netbsd-src/usr.sbin/sysinst/arch/i386/ |
| H A D | msg.md.fr | 53 {Voulez-vous installer le programme de d�marrage standard ou sur port s�rie ? 55 Le programme de d�marrage standard utilise les p�riph�riques d�finis par le 56 BIOS (en g�n�ral le moniteur et le clavier). Le programme de d�marrage sur 57 port s�rie utilise quant � lui le premier port s�rie. 73 message Use_existing_bootblocks {Conserver le programme de d�marrage existant} 114 Note: puisque sysinst a pu trouver une correspondance unique entre le 125 que le BIOS de votre machine peut adresser. L'amor�age depuis cette partition 132 pas sp�cifi� d'entr�e dans le menu de boot pour la partition active ou la 135 Voulez-vous r�editer la partition pour ajouter une entr�e dans le menu de boot ?} 139 le BIOS de votre syst�me ne supporte pas la commande de lecture utilis�e [all …]
|
| /netbsd-src/usr.sbin/makefs/cd9660/ |
| H A D | cd9660_conversion.c | 104 uint32_t le, be; in cd9660_bothendian_dword() local 106 le = dw; in cd9660_bothendian_dword() 111 le = bswap32(dw); in cd9660_bothendian_dword() 113 memcpy(eightchar, &le, 4); in cd9660_bothendian_dword() 126 uint16_t le, be; in cd9660_bothendian_word() local 128 le = dw; in cd9660_bothendian_word() 133 le = bswap16(dw); in cd9660_bothendian_word() 135 memcpy(fourchar, &le, 2); in cd9660_bothendian_word()
|
| /netbsd-src/external/mpl/bind/dist/lib/ns/ |
| H A D | interfacemgr.c | 967 update_http_settings(ns_interface_t *ifp, ns_listenelt_t *le) { in update_http_settings() 972 REQUIRE(le->is_http); in update_http_settings() 975 isc_quota_max(ifp->http_quota, le->http_max_clients); in update_http_settings() 984 isc_nmsocket_set_max_streams(listener, le->max_concurrent_streams); in update_http_settings() 988 result = load_http_endpoints(epset, ifp, le->http_endpoints, 989 le->http_endpoints_number); 1001 ns_listenelt_t *le) { in update_listener_configuration() 1004 REQUIRE(le != NULL); in update_listener_configuration() 1013 if (le->sslctx != NULL) { in update_listener_configuration() 1014 replace_listener_tlsctx(ifp, le in update_listener_configuration() 957 update_http_settings(ns_interface_t * ifp,ns_listenelt_t * le) update_http_settings() argument 991 update_listener_configuration(ns_interfacemgr_t * mgr,ns_interface_t * ifp,ns_listenelt_t * le) update_listener_configuration() argument 1029 ns_listenelt_t *le = NULL; do_scan() local [all...] |
| /netbsd-src/sys/ufs/chfs/ |
| H A D | ebh.c | 568 struct chfs_ltree_entry le, *result; in ltree_lookup() local 569 le.lnr = lnr; in ltree_lookup() 570 result = RB_FIND(ltree_rbtree, &ebh->ltree, &le); in ltree_lookup() 588 struct chfs_ltree_entry *le, *result; in ltree_add_entry() local 590 le = kmem_alloc(sizeof(struct chfs_ltree_entry), KM_SLEEP); in ltree_add_entry() 592 le->lnr = lnr; in ltree_add_entry() 593 le->users = 1; in ltree_add_entry() 594 rw_init(&le->mutex); in ltree_add_entry() 599 result = RB_INSERT(ltree_rbtree, &ebh->ltree, le); in ltree_add_entry() 604 kmem_free(le, sizeo in ltree_add_entry() 624 struct chfs_ltree_entry *le; leb_read_lock() local 645 struct chfs_ltree_entry *le; leb_read_unlock() local 680 struct chfs_ltree_entry *le; leb_write_lock() local 701 struct chfs_ltree_entry *le; leb_write_unlock() local [all...] |
| /netbsd-src/usr.sbin/sysinst/ |
| H A D | msg.mi.fr | 93 (Une fois le partitionnement configur�, le syst�me d'installation vous 107 (Ceci est le dernier avertissement avant que cette 115 le disque, n'installe pas de nouveaux secteurs d'amor�age et ne modifie 122 (Ceci est le dernier avertissement avant que cette proc�dure ne commence � 215 sera le plus proche de votre choix possible, arrondi au 331 {Vous devez d'abord pr�ciser le type de syst�me 383 {Valeurs sp�ciales pouvant �tre utilis�es pour d�finir le d�but de la partition : 451 Le syst�me peut d�sormais d�marrer directement depuis le disque. 458 red�marrer depuis le disque dur. Veuillez consulter le document 462 Nous vous recommandons au minimum de configurer le mot de passe [all …]
|
| /netbsd-src/share/i18n/esdb/UTF/ |
| H A D | UTF.alias | 6 16LE utf-16le ucs-2le unicodelittle 9 32LE utf-32le ucs-4le
|
| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/mips/ |
| H A D | r6-fpu.s | 121 r6ck_3s cmp.le.s, 0x0, 0x3f800000, 0x3f800000, 0xffffffff 122 r6ck_3s cmp.le.s, 0x0, 0x00000000, 0x3f800000, 0xffffffff 123 r6ck_3s cmp.le.s, 0x0, 0xbf800000, 0x3f800000, 0xffffffff 124 r6ck_3s cmp.le.s, 0x0, 0x3f800000, 0xbf800000, 0x0 125 r6ck_3s cmp.le.s, 0x0, 0xff800000, 0xbf800000, 0xffffffff 126 r6ck_3s cmp.le.s, 0x0, 0xbf800000, 0x7f800000, 0xffffffff 127 r6ck_3s cmp.le.s, 0x0, 0xbf800000, 0xff800000, 0x0 128 r6ck_3s cmp.le.s, 0x0, 0x7f800000, 0xbf800000, 0x0 131 r6ck_3d cmp.le.d, 0x0, 0x3ff0000000000000, 0x3ff0000000000000, 0xffffffffffffffff 132 r6ck_3d cmp.le.d, 0x0, 0x0000000000000000, 0x3ff0000000000000, 0xffffffffffffffff [all …]
|
| /netbsd-src/usr.sbin/lockstat/ |
| H A D | main.c | 175 lsenable_t le; in main() local 287 memset(&le, 0, sizeof(le)); in main() 288 le.le_nbufs = nbufs; in main() 294 findsym(LOCK_BYNAME, lockname, &le.le_lockstart, in main() 295 &le.le_lockend, true); in main() 296 le.le_flags |= LE_ONE_LOCK; in main() 299 le.le_flags |= LE_CALLSITE; in main() 301 le.le_flags |= LE_LOCK; in main() 305 findsym(FUNC_BYNAME, funcname, &le.le_csstart, &le.le_csend, true); in main() 306 le.le_flags |= LE_ONE_CALLSITE; in main() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/otp/ |
| H A D | otp_md.c | 89 int le, in otp_md_init() argument 113 if (le) in otp_md_init() 124 int le, in otp_md_next() argument 138 if (le) in otp_md_next() 149 int le, in otp_md_hash() argument 162 if (le) in otp_md_hash()
|
| /netbsd-src/external/gpl3/gdb/dist/sim/bpf/ |
| H A D | ChangeLog-2021 | 44 * decode-le.c: Likewise. 51 * bpf.c: Include decode-be.h & decode-le.h. 198 (mloop-le.o, mloop-be.o, decode-le.o, decode-be.o, sim-le.o) 200 (SIM_EXTRA_DEPS): Add eng-le.h, eng-be.h. 252 * decode-le.c (bpfbf_ebpfle_decode): Likewise. 278 * sem-le.c: Likewise. 299 * decode-le.c: Likewise. 300 * decode-le.h: Likewise. 302 * defs-le.h: Likewise. 304 * sem-le.c: Likewise.
|
| /netbsd-src/sys/dev/i2o/ |
| H A D | iopsp.c | 218 struct i2o_lct_entry *le; in iopsp_reconfig() local 258 for (le = iop->sc_lct->entry; nent != 0; nent--, le++) in iopsp_reconfig() 259 if ((le16toh(le->classid) & 4095) == in iopsp_reconfig() 261 (le32toh(le->usertid) & 4095) == bptid) { in iopsp_reconfig() 262 bptid = le16toh(le->localtid) & 4095; in iopsp_reconfig() 267 for (i = 0, le = iop->sc_lct->entry; i < nent; i++, le++) { in iopsp_reconfig() 268 if ((le16toh(le->classid) & 4095) != I2O_CLASS_SCSI_PERIPHERAL) in iopsp_reconfig() 270 if (((le32toh(le->usertid) >> 12) & 4095) != bptid) in iopsp_reconfig() 272 tid = le16toh(le->localtid) & 4095; in iopsp_reconfig() 314 if ((le32toh(le->usertid) & 4095) != I2O_TID_NONE) { in iopsp_reconfig() [all …]
|
| /netbsd-src/sys/dev/tc/ |
| H A D | if_le_ioasic.c | 107 struct lance_softc *le = &sc->sc_am7990.lsc; in le_ioasic_attach() local 118 le->sc_dev = self; in le_ioasic_attach() 159 le->sc_mem = (void *)TC_PHYS_TO_UNCACHED(le_iomem); in le_ioasic_attach() 160 le->sc_copytodesc = le_ioasic_copytobuf_gap2; in le_ioasic_attach() 161 le->sc_copyfromdesc = le_ioasic_copyfrombuf_gap2; in le_ioasic_attach() 162 le->sc_copytobuf = le_ioasic_copytobuf_gap16; in le_ioasic_attach() 163 le->sc_copyfrombuf = le_ioasic_copyfrombuf_gap16; in le_ioasic_attach() 164 le->sc_zerobuf = le_ioasic_zerobuf_gap16; in le_ioasic_attach()
|