HomeSort by: relevance | last modified time | path
    Searched defs:le (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/crypto/external/bsd/heimdal/dist/lib/roken/
inet_pton.c 96 int le = WSAGetLastError(); local
98 if (le == WSAEINVAL)
101 _set_errno(le);
  /src/external/bsd/kyua-cli/dist/utils/logging/
macros_test.cpp 61 ATF_TEST_CASE_WITHOUT_HEAD(le); variable
62 ATF_TEST_CASE_BODY(le)
66 LE("Error message");
112 ATF_ADD_TEST_CASE(tcs, le);
  /src/usr.sbin/makefs/cd9660/
cd9660_conversion.c 104 uint32_t le, be; local
106 le = dw;
111 le = bswap32(dw);
113 memcpy(eightchar, &le, 4);
126 uint16_t le, be; local
128 le = dw;
133 le = bswap16(dw);
135 memcpy(fourchar, &le, 2);
  /src/external/cddl/osnet/dist/tools/ctf/common/
list.c 53 list_t *le; local
55 le = xmalloc(sizeof (list_t));
56 le->l_data = data;
57 le->l_next = *list;
58 *list = le;
86 list_t *le, **le2; local
92 for (le = *list, le2 = list; le; le2 = &le->l_next, le = le->l_next)
107 list_t *le; local
    [all...]
  /src/external/gpl2/lvm2/dist/lib/metadata/
merge.c 66 uint32_t le = 0; local
74 if (seg->le != le) {
76 "LE %" PRIu32 " (found %" PRIu32 ").",
77 lv->name, seg_count, le, seg->le);
171 if (seg_le(seg, s) != le) {
200 le += seg->len;
217 lv->name, seg->lv->name, seg->le,
218 seg->le + seg->len - 1
    [all...]
  /src/sys/dev/tc/
if_le_ioasic.c 107 struct lance_softc *le = &sc->sc_am7990.lsc; local
118 le->sc_dev = self;
159 le->sc_mem = (void *)TC_PHYS_TO_UNCACHED(le_iomem);
160 le->sc_copytodesc = le_ioasic_copytobuf_gap2;
161 le->sc_copyfromdesc = le_ioasic_copyfrombuf_gap2;
162 le->sc_copytobuf = le_ioasic_copytobuf_gap16;
163 le->sc_copyfrombuf = le_ioasic_copyfrombuf_gap16;
164 le->sc_zerobuf = le_ioasic_zerobuf_gap16;
  /src/external/gpl2/lvm2/dist/lib/format1/
import-extents.c 28 * pe->le map to a full le->pe map, and then
31 * the pe->le map to segments would be gladly
116 uint32_t i, lv_num, le; local
140 ", LE %" PRIu32 ")",
146 le = e[i].le_num;
148 if (le >= lvm->lv->le_count) {
154 if (lvm->map[le].pv) {
156 "already mapped.", le);
160 lvm->map[le].pv = pv
213 uint32_t le = 0, len; local
    [all...]
  /src/sys/dev/i2o/
iopsp.c 218 struct i2o_lct_entry *le; local
258 for (le = iop->sc_lct->entry; nent != 0; nent--, le++)
259 if ((le16toh(le->classid) & 4095) ==
261 (le32toh(le->usertid) & 4095) == bptid) {
262 bptid = le16toh(le->localtid) & 4095;
267 for (i = 0, le = iop->sc_lct->entry; i < nent; i++, le++) {
268 if ((le16toh(le->classid) & 4095) != I2O_CLASS_SCSI_PERIPHERAL)
270 if (((le32toh(le->usertid) >> 12) & 4095) != bptid
    [all...]
  /src/sys/dev/
lockstat.c 167 lockstat_init_tables(lsenable_t *le)
185 if (le == NULL)
189 per = le->le_nbufs / ncpu;
190 slop = le->le_nbufs - (per * ncpu);
218 lockstat_start(lsenable_t *le)
224 lockstat_init_tables(le);
226 if ((le->le_flags & LE_CALLSITE) != 0)
231 if ((le->le_flags & LE_LOCK) != 0)
236 lockstat_csstart = le->le_csstart;
237 lockstat_csend = le->le_csend
492 lsenable_t *le; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
expand_path.c 160 DWORD le = GetLastError(); local
162 if (le == ERROR_NO_TOKEN) {
165 le = 0;
167 le = GetLastError();
170 if (le != 0) {
173 "Can't open thread token (GLE=%d)", le);
  /src/crypto/external/bsd/netpgp/dist/src/libdigest/
tiger.c 829 uint64_t le[3]; local
842 le[i] = (uint64_t)BSWAP64(ctx->ctx[i]);
844 (void) memcpy(digest, le, 3 * sizeof(le[0]));
  /src/external/bsd/atf/dist/atf-c/detail/
list.c 52 entry_to_citer(const atf_list_t *l, const struct list_entry *le)
56 iter.m_entry = le;
62 entry_to_iter(atf_list_t *l, struct list_entry *le)
66 iter.m_entry = le;
74 struct list_entry *le; local
76 le = (struct list_entry *)malloc(sizeof(*le));
77 if (le != NULL) {
78 le->m_prev = le->m_next = NULL
102 struct list_entry *le; local
127 const struct list_entry *le = citer.m_entry; local
135 const struct list_entry *le = citer.m_entry; local
164 const struct list_entry *le = iter.m_entry; local
172 const struct list_entry *le = iter.m_entry; local
230 struct list_entry *le; local
254 struct list_entry *le = l->m_begin; local
261 const struct list_entry *le = l->m_begin; local
357 struct list_entry *le, *next, *prev; local
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_entry_link_resolver.c 161 struct links_entry *le; local
166 while ((le = next_entry(res, NEXT_ENTRY_ALL)) != NULL)
167 archive_entry_free(le->entry);
176 struct links_entry *le; local
182 le = next_entry(res, NEXT_ENTRY_DEFERRED);
183 if (le != NULL) {
184 *e = le->entry;
185 le->entry = NULL;
201 le = find_entry(res, *e);
202 if (le != NULL)
278 struct links_entry *le; local
333 struct links_entry *le; local
373 struct links_entry *le; local
408 struct links_entry *le, **new_buckets; local
447 struct links_entry *le; local
    [all...]
  /src/external/cddl/osnet/dist/tools/ctf/cvt/
tdata.c 288 labelent_t *le = xmalloc(sizeof (*le)); local
290 le->le_name = xstrdup(label);
291 le->le_idx = (idx == -1 ? td->td_nextid - 1 : idx);
293 slist_add(&td->td_labels, le, tdata_label_cmp);
299 labelent_t *le = data; local
302 *topp = le;
320 labelent_t *le = arg1; local
322 return (streq(le->le_name, tmpl->le_name));
348 labelent_t *le = data local
369 labelent_t *le = arg; local
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
cow-stdexcept.cc 355 std::logic_error* le = (std::logic_error*) e; local
356 return &le->_M_msg;
362 std::runtime_error* le = (std::runtime_error*) e; local
363 return &le->_M_msg;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
cow-stdexcept.cc 351 std::logic_error* le = (std::logic_error*) e; local
352 return &le->_M_msg;
358 std::runtime_error* le = (std::runtime_error*) e; local
359 return &le->_M_msg;
  /src/sys/arch/amiga/amiga/
amiga_init.c 736 register paddr_t *lp, *le, *fp; local
739 le = (paddr_t *)end_loaded;
741 while (lp < le)
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zap_leaf.c 129 struct zap_leaf_entry *le; local
133 le = &lc->l_entry;
135 le->le_type = BSWAP_8(le->le_type);
136 le->le_value_intlen = BSWAP_8(le->le_value_intlen);
137 le->le_next = BSWAP_16(le->le_next);
138 le->le_name_chunk = BSWAP_16(le->le_name_chunk)
402 struct zap_leaf_entry *le; local
462 struct zap_leaf_entry *le; local
499 struct zap_leaf_entry *le = local
520 struct zap_leaf_entry *le = local
542 struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, *zeh->zeh_chunkp); local
562 struct zap_leaf_entry *le; local
587 struct zap_leaf_entry *le; local
685 struct zap_leaf_entry *le; local
722 struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, entry); local
774 struct zap_leaf_entry *le, *nle; local
830 struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, i); local
867 struct zap_leaf_entry *le = local
    [all...]
  /src/sys/arch/atari/atari/
atari_init.c 612 register paddr_t *lp, *le, *fp; local
615 le = (paddr_t *)pstart;
617 while (lp < le)
  /src/sys/ufs/chfs/
ebh.c 568 struct chfs_ltree_entry le, *result; local
569 le.lnr = lnr;
570 result = RB_FIND(ltree_rbtree, &ebh->ltree, &le);
588 struct chfs_ltree_entry *le, *result; local
590 le = kmem_alloc(sizeof(struct chfs_ltree_entry), KM_SLEEP);
592 le->lnr = lnr;
593 le->users = 1;
594 rw_init(&le->mutex);
599 result = RB_INSERT(ltree_rbtree, &ebh->ltree, le);
604 kmem_free(le, sizeof(struct chfs_ltree_entry))
624 struct chfs_ltree_entry *le; local
645 struct chfs_ltree_entry *le; local
680 struct chfs_ltree_entry *le; local
701 struct chfs_ltree_entry *le; local
    [all...]
  /src/usr.sbin/lockstat/
main.c 175 lsenable_t le; local
287 memset(&le, 0, sizeof(le));
288 le.le_nbufs = nbufs;
294 findsym(LOCK_BYNAME, lockname, &le.le_lockstart,
295 &le.le_lockend, true);
296 le.le_flags |= LE_ONE_LOCK;
299 le.le_flags |= LE_CALLSITE;
301 le.le_flags |= LE_LOCK;
305 findsym(FUNC_BYNAME, funcname, &le.le_csstart, &le.le_csend, true)
    [all...]
  /src/crypto/dist/ipsec-tools/src/racoon/
isakmp_xauth.c 857 LDAPMessage *le = NULL; local
1036 le = ldap_first_entry(ld, lr);
1037 if (le == NULL) {
1042 userdn = ldap_get_dn(ld, le);
1054 bv = ldap_get_values_len(ld, le, xauth_ldap_config.attr_addr->v);
1074 bv = ldap_get_values_len(ld, le, xauth_ldap_config.attr_mask->v);
1137 LDAPMessage *le = NULL; local
1260 le = ldap_first_entry(ld, lr);
1261 if (le == NULL) {
1266 groupdn = ldap_get_dn(ld, le);
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
translucent.c 802 Entry *le, *re; local
834 le = rs->sr_entry;
837 re = ldap_tavl_delete( &tc->list, le, entry_dn_cmp );
868 le = NULL;
869 rc = overlay_entry_get_ov(op, &rs->sr_entry->e_nname, NULL, NULL, 0, &le, on);
870 if ( rc == LDAP_SUCCESS && le ) {
874 le = NULL;
888 if ( re && le ) {
889 for(ax = le->e_attrs; ax; ax = ax->a_next) {
914 overlay_entry_release_ov(op, le, 0, on)
    [all...]
  /src/external/cddl/osnet/dist/common/ctf/
ctf_types.c 749 ctf_encoding_t le, re; local
771 return (ctf_type_encoding(lfp, ltype, &le) == 0 &&
773 memcmp(&le, &re, sizeof (ctf_encoding_t)) == 0);
  /src/external/gpl2/groff/dist/src/preproc/pic/
common.cpp 138 double le = M_PI / 2 * (dim.x + dim.y) local
142 int nmax = 8 * int(le / dw / 8 + 0.5);
145 dw = le / 8;
148 double gapwidth = (le - dw * ndash) / ndash;
196 double le = M_PI / 2 * (dim.x + dim.y) local
200 int ndots = 4 * int(le / lt.dash_width / 4 + 0.5);
210 double ld = i * le / ndots;

Completed in 54 milliseconds

1 2 3