Searched refs:lst (Results 1 - 25 of 124) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/include/dspbridge/
H A Dlist.h38 * lst: Pointer to list control structure.
43 * - lst != NULL.
46 static inline struct list_head *lst_first(struct lst_list *lst) argument
48 if (lst && !list_empty(&lst->head))
49 return lst->head.next;
67 * lst: Pointer to list control structure of list whose head
74 * - lst != NULL.
81 static inline struct list_head *lst_get_head(struct lst_list *lst) argument
85 if (!lst || list_empt
135 lst_insert_before(struct lst_list *lst, struct list_head *elem_list, struct list_head *elem_existing) argument
159 lst_next(struct lst_list *lst, struct list_head *cur_elem) argument
196 lst_put_tail(struct lst_list *lst, struct list_head *elem_list) argument
218 lst_remove_elem(struct lst_list *lst, struct list_head *cur_elem) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ubifs/
H A Dmaster.c188 if (c->lst.empty_lebs < 0 || c->lst.empty_lebs > c->main_lebs - 2) {
193 if (c->lst.idx_lebs < 0 || c->lst.idx_lebs > c->main_lebs - 1) {
198 if (c->lst.total_free < 0 || c->lst.total_free > main_sz ||
199 c->lst.total_free & 7) {
204 if (c->lst.total_dirty < 0 || (c->lst.total_dirty & 7)) {
209 if (c->lst
[all...]
H A Dlprops.c543 ubifs_assert(c->lst.empty_lebs >= 0 &&
544 c->lst.empty_lebs <= c->main_lebs);
547 ubifs_assert(c->lst.taken_empty_lebs >= 0);
548 ubifs_assert(c->lst.taken_empty_lebs <= c->lst.empty_lebs);
549 ubifs_assert(!(c->lst.total_free & 7) && !(c->lst.total_dirty & 7));
550 ubifs_assert(!(c->lst.total_dead & 7) && !(c->lst.total_dark & 7));
551 ubifs_assert(!(c->lst
635 ubifs_get_lp_stats(struct ubifs_info *c, struct ubifs_lp_stats *lst) argument
1015 struct ubifs_lp_stats lst; member in struct:scan_check_data
1037 struct ubifs_lp_stats *lst = &data->lst; local
1268 struct ubifs_lp_stats *lst = &data.lst; local
[all...]
H A Dbudget.c214 available = c->main_bytes - c->lst.total_used;
239 available -= c->lst.total_dead;
247 available -= c->lst.total_dark;
255 if (c->lst.idx_lebs > min_idx_lebs) {
256 subtract_lebs = c->lst.idx_lebs - min_idx_lebs;
295 * Notes about @c->min_idx_lebs and @c->lst.idx_lebs variables:
296 * o @c->lst.idx_lebs is the number of LEBs the index currently uses. It might
315 if (min_idx_lebs > c->lst.idx_lebs)
316 rsvd_idx_lebs = min_idx_lebs - c->lst.idx_lebs;
323 * @c->lst
[all...]
H A Dfind.c70 n = c->lst.empty_lebs + c->freeable_cnt -
71 c->lst.taken_empty_lebs;
246 lebs = c->lst.empty_lebs + c->idx_gc_cnt;
247 lebs += c->freeable_cnt - c->lst.taken_empty_lebs;
255 if (c->min_idx_lebs >= c->lst.idx_lebs) {
256 rsvd_idx_lebs = c->min_idx_lebs - c->lst.idx_lebs;
279 exclude_index = (c->min_idx_lebs >= c->lst.idx_lebs);
504 if (c->min_idx_lebs > c->lst.idx_lebs)
505 rsvd_idx_lebs = c->min_idx_lebs - c->lst.idx_lebs;
508 lebs = c->lst
[all...]
H A Dcommit.c63 struct ubifs_lp_stats lst; local
98 ubifs_get_lp_stats(c, &lst);
137 c->mst_node->empty_lebs = cpu_to_le32(lst.empty_lebs);
138 c->mst_node->idx_lebs = cpu_to_le32(lst.idx_lebs);
139 c->mst_node->total_free = cpu_to_le64(lst.total_free);
140 c->mst_node->total_dirty = cpu_to_le64(lst.total_dirty);
141 c->mst_node->total_used = cpu_to_le64(lst.total_used);
142 c->mst_node->total_dead = cpu_to_le64(lst.total_dead);
143 c->mst_node->total_dark = cpu_to_le64(lst.total_dark);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/radvd/
H A Dtimer.c70 struct timer_lst *lst; local
88 lst = &timers_head;
92 lst = lst->next;
93 } while ((tm->expires.tv_sec > lst->expires.tv_sec) ||
94 ((tm->expires.tv_sec == lst->expires.tv_sec) &&
95 (tm->expires.tv_usec > lst->expires.tv_usec)));
97 tm->next = lst;
98 tm->prev = lst->prev;
99 lst
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/radvd/
H A Dtimer.c70 struct timer_lst *lst; local
88 lst = &timers_head;
92 lst = lst->next;
93 } while ((tm->expires.tv_sec > lst->expires.tv_sec) ||
94 ((tm->expires.tv_sec == lst->expires.tv_sec) &&
95 (tm->expires.tv_usec > lst->expires.tv_usec)));
97 tm->next = lst;
98 tm->prev = lst->prev;
99 lst
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/HelpGen/src/
H A Difcontext.cpp75 void spInterFileContext::InsertBookmarkSorted( BookmarkListT& lst, spBookmark& mark ) argument
77 for( size_t i = 0; i != lst.size(); ++i )
79 if ( lst[i].mFrom > mark.mFrom )
81 lst.insert( &lst[i], mark );
85 lst.push_back( mark );
169 MMemberListT& lst = ctx.GetMembers(); local
171 for( size_t i = 0; i != lst.size(); ++i )
173 GenerateContextBody( *lst[i], source, result, lastSavedPos, lastKnownPos );
202 MMemberListT& lst local
[all...]
H A Difcontext.h60 void InsertBookmarkSorted( BookmarkListT& lst, spBookmark& mark );
H A Dscriptbinder.cpp349 SectListT lst = m_Subsections; local
373 SectListT& lst = m_pParent->m_Subsections; local
374 for( size_t i = 0; i != lst.size(); ++i )
376 if ( lst[i] == this )
378 lst.erase( &lst[i] );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/pvrusb2/
H A Dpvrusb2-devattr.h59 const struct pvr2_device_client_desc *lst; member in struct:pvr2_device_client_table
65 const char **lst; member in struct:pvr2_string_table
H A Dpvrusb2-devattr.c63 .client_table.lst = pvr2_cli_29xxx,
65 .fx2_firmware.lst = pvr2_fw1_names_29xxx,
96 .client_table.lst = pvr2_cli_24xxx,
98 .fx2_firmware.lst = pvr2_fw1_names_24xxx,
126 .client_table.lst = pvr2_cli_gotview_2,
147 .client_table.lst = pvr2_cli_gotview_2,
203 .client_table.lst = pvr2_cli_onair_creator,
263 .client_table.lst = pvr2_cli_onair_usb2,
346 .client_table.lst = pvr2_cli_73xxx,
348 .fx2_firmware.lst
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/djgpp/
H A DMakefile.maint8 all: README fnchange.lst
10 fnchange.lst: fnchange.in $(top_srcdir)/configure
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/libcharset/djgpp/
H A DMakefile.maint8 all: README fnchange.lst
10 fnchange.lst: fnchange.in $(top_srcdir)/configure.in
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/djgpp/
H A DMakefile.maint8 all: README fnchange.lst
10 fnchange.lst: fnchange.in $(top_srcdir)/configure.ac
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/libcharset/djgpp/
H A DMakefile.maint8 all: README fnchange.lst
10 fnchange.lst: fnchange.in $(top_srcdir)/configure.ac
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/fl/
H A Dgarbagec.h53 void DestroyItemList( wxList& lst );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/fl/
H A Dgarbagec.cpp40 void GarbageCollector::DestroyItemList( wxList& lst )
42 wxNode* pNode = lst.GetFirst();
51 lst.Clear();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/djgpp/
H A DMakefile.maint8 all: README fnchange.lst config.sed
26 fnchange.lst: fnchange.in $(top_srcdir)/configure.in
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/unittests/muleunit/
H A Dtest.cpp50 BTList(const std::list<BTEntry>& lst) argument
51 : snapshot(lst)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospfd/
H A Dospf_ase.c685 list lst; local
695 if ((lst = rn->info) == NULL)
696 rn->info = lst = list_new();
701 listnode_add (lst, ospf_lsa_lock (lsa));
709 list lst; local
719 lst = rn->info;
721 assert (lst);
723 listnode_delete (lst, lsa);
726 /* XXX lst can be NULL */
727 if (lst) {
739 list lst; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dgentest.py941 print "Missing support for %d functions and %d types see missing.lst" % (missing_functions_nr, len(missing_list))
942 lst = open("missing.lst", "w") variable
943 lst.write("Missing support for %d types" % (len(missing_list)))
944 lst.write("\n")
946 lst.write("%s: %d :" % (miss[1], miss[0]))
951 lst.write(" ...")
953 lst.write(" %s" % (n))
954 lst.write("\n")
955 lst
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dgentest.py941 print "Missing support for %d functions and %d types see missing.lst" % (missing_functions_nr, len(missing_list))
942 lst = open("missing.lst", "w") variable
943 lst.write("Missing support for %d types" % (len(missing_list)))
944 lst.write("\n")
946 lst.write("%s: %d :" % (miss[1], miss[0]))
951 lst.write(" ...")
953 lst.write(" %s" % (n))
954 lst.write("\n")
955 lst
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/ip/
H A Dipmaddr.c73 void maddr_ins(struct ma_info **lst, struct ma_info *m) argument
77 for (; (mp=*lst) != NULL; lst = &mp->next) {
81 m->next = *lst;
82 *lst = m;
338 || matches(*argv, "lst") == 0)

Completed in 326 milliseconds

12345