Searched refs:le (Results 1 - 25 of 155) sorted by relevance

1234567

/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_entry_link_resolver.c162 struct links_entry *le; local
167 while ((le = next_entry(res, NEXT_ENTRY_ALL)) != NULL)
168 archive_entry_free(le->entry);
177 struct links_entry *le; local
183 le = next_entry(res, NEXT_ENTRY_DEFERRED);
184 if (le != NULL) {
185 *e = le->entry;
186 le->entry = NULL;
202 le = find_entry(res, *e);
203 if (le !
264 struct links_entry *le; local
315 struct links_entry *le; local
355 struct links_entry *le; local
386 struct links_entry *le, **new_buckets; local
425 struct links_entry *le; local
[all...]
H A Darchive_read_support_format_cpio.c1011 struct links_entry *le; local
1025 for (le = cpio->links_head; le; le = le->next) {
1026 if (le->dev == dev && le->ino == ino) {
1027 archive_entry_copy_hardlink(entry, le->name);
1029 if (--le->links <= 0) {
1030 if (le
[all...]
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Dlist.c52 entry_to_citer(const atf_list_t *l, const struct list_entry *le) argument
56 iter.m_entry = le;
62 entry_to_iter(atf_list_t *l, struct list_entry *le) argument
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
89 delete_entry(struct list_entry *le) argument
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...]
/freebsd-10.0-release/sys/netinet/
H A Dtcp_lro.c73 struct lro_entry *le; local
85 le = (struct lro_entry *)malloc(sizeof(*le), M_DEVBUF,
87 if (le == NULL) {
93 SLIST_INSERT_HEAD(&lc->lro_free, le, next);
102 struct lro_entry *le; local
105 le = SLIST_FIRST(&lc->lro_free);
107 free(le, M_DEVBUF);
135 tcp_lro_rx_csum_fixup(struct lro_entry *le, void *l3hdr, struct tcphdr *th, argument
144 switch (le
199 struct lro_entry *le, *le_tmp; local
216 tcp_lro_flush(struct lro_ctrl *lc, struct lro_entry *le) argument
371 struct lro_entry *le; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.c49 list_t *le; local
51 le = xmalloc(sizeof (list_t));
52 le->l_data = data;
53 le->l_next = *list;
54 *list = le;
82 list_t *le, **le2; local
88 for (le = *list, le2 = list; le; le2 = &le->l_next, le
103 list_t *le; local
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzap_leaf.c124 struct zap_leaf_entry *le; local
128 le = &lc->l_entry;
130 le->le_type = BSWAP_8(le->le_type);
131 le->le_value_intlen = BSWAP_8(le->le_value_intlen);
132 le->le_next = BSWAP_16(le->le_next);
133 le->le_name_chunk = BSWAP_16(le
394 struct zap_leaf_entry *le; local
454 struct zap_leaf_entry *le; local
491 struct zap_leaf_entry *le = local
512 struct zap_leaf_entry *le = local
534 struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, *zeh->zeh_chunkp); local
554 struct zap_leaf_entry *le; local
579 struct zap_leaf_entry *le; local
677 struct zap_leaf_entry *le; local
714 struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, entry); local
766 struct zap_leaf_entry *le, *nle; local
819 struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, i); local
856 struct zap_leaf_entry *le = local
[all...]
/freebsd-10.0-release/contrib/binutils/gas/
H A Dsb.h56 struct le *item;
62 typedef struct le struct
64 struct le *next;
/freebsd-10.0-release/lib/libpmc/
H A Dpmclog.c279 uint32_t h, *le, npc; local
297 PMCLOG_INITIALIZE_READER(le, ps->ps_saved);
299 PMCLOG_READ32(le,h);
308 PMCLOG_READ32(le,ev->pl_ts.tv_sec);
309 PMCLOG_READ32(le,ev->pl_ts.tv_nsec);
326 PMCLOG_READ32(le,ev->pl_u.pl_cc.pl_pid);
327 PMCLOG_READ32(le,ev->pl_u.pl_cc.pl_pmcid);
328 PMCLOG_READ32(le,ev->pl_u.pl_cc.pl_cpuflags);
331 PMCLOG_READADDR(le,ev->pl_u.pl_cc.pl_pc[npc]);
340 PMCLOG_READ32(le,e
[all...]
/freebsd-10.0-release/usr.bin/du/
H A Ddu.c359 struct links_entry *le, **new_buckets; local
384 le = free_list;
385 free_list = le->next;
386 free(le);
401 le = buckets[i];
402 buckets[i] = le->next;
405 hash = (le->dev ^ le->ino) % new_size;
409 le;
410 le
[all...]
/freebsd-10.0-release/sys/dev/drm2/
H A Ddrm_linux_list_sort.c58 struct list_head **ar, *le; local
62 list_for_each(le, head)
66 list_for_each(le, head)
67 ar[i++] = le;
/freebsd-10.0-release/contrib/gdb/gdb/
H A Ddisasm.c153 struct linetable_entry *le,
179 for (i = 0; i < nlines - 1 && le[i].pc < low; i++);
183 for (; i < nlines - 1 && le[i].pc < high; i++)
185 if (le[i].line == le[i + 1].line && le[i].pc == le[i + 1].pc)
189 if (le[i].line == 0)
192 mle[newlines].line = le[i].line;
193 if (le[
151 do_mixed_source_and_assembly(struct ui_out *uiout, struct disassemble_info *di, int nlines, struct linetable_entry *le, CORE_ADDR low, CORE_ADDR high, struct symtab *symtab, int how_many, struct ui_stream *stb) argument
362 struct linetable_entry *le = NULL; local
[all...]
/freebsd-10.0-release/contrib/libc++/src/
H A Dstdexcept.cpp111 logic_error::logic_error(const logic_error& le) _NOEXCEPT
114 ::new(&s) __libcpp_nmstr((const __libcpp_nmstr&)le.__imp_);
118 logic_error::operator=(const logic_error& le) _NOEXCEPT
121 const __libcpp_nmstr& s2 = (const __libcpp_nmstr&)le.__imp_;
155 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT
158 ::new(&s) __libcpp_nmstr((const __libcpp_nmstr&)le.__imp_);
162 runtime_error::operator=(const runtime_error& le) _NOEXCEPT
165 const __libcpp_nmstr& s2 = (const __libcpp_nmstr&)le.__imp_;
/freebsd-10.0-release/etc/rc.d/
H A Dnetwait41 while [ ${count} -le ${netwait_if_timeout} ]; do
74 while [ ${count} -le ${netwait_timeout} ]; do
H A Dgeli65 while [ ${count} -le ${geli_tries} ]; do
/freebsd-10.0-release/tools/regression/tmpfs/
H A Dt_statvfs49 [ $((${f_bsize} * ${f_blocks})) -le \
/freebsd-10.0-release/usr.sbin/makefs/cd9660/
H A Dcd9660_conversion.c101 uint32_t le, be; local
103 le = dw;
108 le = bswap32(dw);
110 memcpy(eightchar, &le, 4);
123 uint16_t le, be; local
125 le = dw;
130 le = bswap16(dw);
132 memcpy(fourchar, &le, 2);
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dtdata.c281 labelent_t *le = xmalloc(sizeof (*le)); local
283 le->le_name = xstrdup(label);
284 le->le_idx = (idx == -1 ? td->td_nextid - 1 : idx);
286 slist_add(&td->td_labels, le, tdata_label_cmp);
292 labelent_t *le = data; local
295 *topp = le;
313 labelent_t *le = arg1; local
315 return (streq(le->le_name, tmpl->le_name));
341 labelent_t *le local
362 labelent_t *le = arg; local
[all...]
/freebsd-10.0-release/sys/sys/
H A D_callout.h51 LIST_ENTRY(callout) le; member in union:callout::__anon10956
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dinet_pton.c94 int le = WSAGetLastError(); local
96 if (le == WSAEINVAL)
99 _set_errno(le);
/freebsd-10.0-release/sys/geom/vinum/
H A Dgeom_vinum_drive.c196 m_hdr->config_length = GV_GET32(le);
201 m_hdr->label.date_of_birth.tv_sec = GV_GET32(le);
202 m_hdr->label.date_of_birth.tv_usec = GV_GET32(le);
203 m_hdr->label.last_update.tv_sec = GV_GET32(le);
204 m_hdr->label.last_update.tv_usec = GV_GET32(le);
205 m_hdr->label.drive_size = GV_GET64(le);
210 m_hdr->config_length = GV_GET64(le);
215 m_hdr->label.date_of_birth.tv_sec = GV_GET64(le);
216 m_hdr->label.date_of_birth.tv_usec = GV_GET64(le);
217 m_hdr->label.last_update.tv_sec = GV_GET64(le);
[all...]
/freebsd-10.0-release/contrib/wpa/src/utils/
H A Dwpa_debug.h25 #define wpa_hexdump(l,t,b,le) do { } while (0)
27 #define wpa_hexdump_key(l,t,b,le) do { } while (0)
29 #define wpa_hexdump_ascii(l,t,b,le) do { } while (0)
30 #define wpa_hexdump_ascii_key(l,t,b,le) do { } while (0)
/freebsd-10.0-release/usr.bin/calendar/calendars/fr_FR.ISO8859-1/
H A Dcalendar.proverbes16 Fait le paysan riche.
31 01/15 S'il g�le � la saint Maur,
35 01/20 S'il g�le � la saint S�bastien,
43 L'hiver se rompt le col.
44 01/31 Janvier fait le p�ch�,
60 02/12 Si le soleil rit � la sainte Eulalie,
69 Br�le le bl�.
106 03/23 Quand � glace il g�le � la saint Victorien,
121 G�le l
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/
H A Dtst.allcpus.ksh77 while [ $cpu -le $numproc ]
96 while [ $cpu -le $numproc ]
/freebsd-10.0-release/usr.sbin/bsdinstall/scripts/
H A Dchecksum56 if [ $CK_VALID -le 1 ]; then
/freebsd-10.0-release/sys/modules/le/
H A DMakefile3 .PATH: ${.CURDIR}/../../dev/le

Completed in 325 milliseconds

1234567