Searched refs:last (Results 51 - 75 of 877) sorted by relevance

1234567891011>>

/external/oprofile/libpp/
H A Dsymbol_sort.h30 last enumerator in enum:sort_options::sort_order
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/regex-re2/re2/
H A Dmake_unicode_groups.py33 last = -100
35 if c == last+1:
39 last = c
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dedit.c177 struct edit_history *h, *match = NULL, *last = NULL; local
188 last = h;
199 if (count >= HISTORY_MAX && last) {
200 dl_list_del(&last->list);
201 os_free(last);
560 static enum edit_key_code esc_seq_to_key1_no(char last) argument
562 switch (last) {
577 static enum edit_key_code esc_seq_to_key1_shift(char last) argument
579 switch (last) {
594 static enum edit_key_code esc_seq_to_key1_alt(char last) argument
611 esc_seq_to_key1_alt_shift(char last) argument
628 esc_seq_to_key1_ctrl(char last) argument
645 esc_seq_to_key1(int param1, int param2, char last) argument
699 esc_seq_to_key2(int param1, int param2, char last) argument
727 char last, *pos; local
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dedit.c177 struct edit_history *h, *match = NULL, *last = NULL; local
188 last = h;
199 if (count >= HISTORY_MAX && last) {
200 dl_list_del(&last->list);
201 os_free(last);
560 static enum edit_key_code esc_seq_to_key1_no(char last) argument
562 switch (last) {
577 static enum edit_key_code esc_seq_to_key1_shift(char last) argument
579 switch (last) {
594 static enum edit_key_code esc_seq_to_key1_alt(char last) argument
611 esc_seq_to_key1_alt_shift(char last) argument
628 esc_seq_to_key1_ctrl(char last) argument
645 esc_seq_to_key1(int param1, int param2, char last) argument
699 esc_seq_to_key2(int param1, int param2, char last) argument
727 char last, *pos; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dedit.c177 struct edit_history *h, *match = NULL, *last = NULL; local
188 last = h;
199 if (count >= HISTORY_MAX && last) {
200 dl_list_del(&last->list);
201 os_free(last);
560 static enum edit_key_code esc_seq_to_key1_no(char last) argument
562 switch (last) {
577 static enum edit_key_code esc_seq_to_key1_shift(char last) argument
579 switch (last) {
594 static enum edit_key_code esc_seq_to_key1_alt(char last) argument
611 esc_seq_to_key1_alt_shift(char last) argument
628 esc_seq_to_key1_ctrl(char last) argument
645 esc_seq_to_key1(int param1, int param2, char last) argument
699 esc_seq_to_key2(int param1, int param2, char last) argument
727 char last, *pos; local
[all...]
/external/checkpolicy/
H A Dqueue.c146 queue_node_ptr_t p, last, temp; local
152 last = NULL;
157 if (last) {
158 last->next = p->next;
159 if (last->next == NULL)
160 q->tail = last;
172 last = p;
/external/qemu/hw/
H A Dgoldfish_events_device.c58 unsigned last; member in struct:__anon9610
97 QFIELD_INT32(last),
120 int enqueued = s->last - s->first;
130 if(s->first == s->last) {
140 s->events[s->last] = type;
141 s->last = (s->last + 1) & (MAX_EVENTS-1);
142 s->events[s->last] = code;
143 s->last = (s->last
[all...]
/external/iproute2/netem/
H A Dmaketable.c96 int i, index, first=DISTTABLESIZE, last=0; local
113 if (index > last)
114 last = index +1;
162 int i, j, last, lasti = -1; local
164 last = MINSHORT;
171 table[i] = last + (i-lasti)*(table[j]-last)/(j-lasti);
173 table[i] = last + (i-lasti)*(MAXSHORT-last)/(limit-lasti);
176 last
[all...]
/external/webkit/Source/WebCore/rendering/
H A DCounterNode.cpp80 CounterNode* last = m_lastChild; local
81 if (!last)
84 while (CounterNode* lastChild = last->m_lastChild)
85 last = lastChild;
87 return last;
237 CounterNode* last = newChild->m_lastChild; local
246 // counter node being created, it will be inserted as the last child so next is null.
251 last->m_nextSibling = next;
253 next->m_previousSibling = last;
255 m_lastChild = last;
[all...]
/external/freetype/src/base/
H A Dftoutln.c84 FT_Int last; /* index of last point in contour */ local
89 last = outline->contours[n];
90 if ( last < 0 )
92 limit = outline->points + last;
98 v_last = outline->points[last];
116 if ( FT_CURVE_TAG( outline->tags[last] ) == FT_CURVE_TAG_ON )
118 /* start at last point if it is on the curve */
124 /* if both first and last points are conic, */
278 first = last
538 FT_Int first, last; local
918 int last = outline->contours[c]; local
987 FT_Vector* last; local
[all...]
/external/astl/include/
H A Dvector84 // Create a vector by copying the elements from [first, last).
90 vector(_Iterator first, _Iterator last) {
97 initialize(first, last, integral());
153 // Remove the last element. However, no memory is reclaimed from
163 // Remove a range of elements [first, last)
165 // @param last Iterator pointing to one past the last element to be removed.
166 // @return An iterator pointing to the elt next to 'last' or end().
167 iterator erase(iterator first, iterator last);
194 void range_initialize(_Iterator first, _Iterator last,
[all...]
/external/bluetooth/glib/gio/
H A Dgpollfilemonitor.c93 calc_event_type (GFileInfo *last, argument
96 if (last == NULL && new == NULL)
99 if (last == NULL && new != NULL)
102 if (last != NULL && new == NULL)
105 if (safe_strcmp (g_file_info_get_etag (last),
109 if (g_file_info_get_size (last) !=
/external/srec/srec/crec/
H A Dcomp_stats.c120 c->last = kernelCPU.dwLowDateTime + ((__int64)kernelCPU.dwHighDateTime << 32) +
130 c->last = tickGet();
132 c->last = clock();
156 c->total_time += curr - c->last;
157 c->last = curr;
168 c->last = 0;
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-list.h95 struct list_head *last = list->prev; local
101 last->next = at;
102 at->prev = last;
/external/oprofile/daemon/
H A Doprofiled.c304 char const * last = binary_name_filter; local
313 while ((cur = strchr(last, ',')) != NULL) {
314 char * tmp = op_xstrndup(last, cur - last);
317 last = cur + 1;
319 add_image_filter(last);
382 char const * last = verbose; local
388 while ((cur = strchr(last, ',')) != NULL) {
389 char * tmp = op_xstrndup(last, cur - last);
[all...]
/external/oprofile/libutil++/
H A Dsparse_array.h80 typename container_type::const_iterator last = container.end();
81 --last;
82 return last->first + 1;
/external/webkit/Source/WebCore/svg/
H A DSVGGlyphMap.h66 node->glyphs.last().priority = m_currentPriority++;
67 node->glyphs.last().nameLength = len;
68 node->glyphs.last().isValid = true;
/external/bluetooth/glib/glib/
H A Dgslist.c115 GSList *last; local
123 last = g_slist_last (list);
124 /* g_assert (last != NULL); */
125 last->next = new_list;
148 * list = g_slist_prepend (list, "last");
251 GSList *node, *last = NULL; local
253 for (node = slist; node; last = node, node = last->next)
256 if (!last)
268 node->next = last
472 GSList *last; local
[all...]
/external/doclava/res/assets/templates/components/
H A Dapi_filter.cs14 if:!last(since) ?>, <?cs /if ?><?cs
/external/v8/test/cctest/
H A Dtest-list.cc109 CHECK_EQ(1, list.last());
115 CHECK_EQ(3, list.last());
118 CHECK_EQ(2, list.last());
126 CHECK_EQ(j, list.last());
/external/webkit/Source/JavaScriptCore/runtime/
H A DRopeImpl.cpp55 RopeImpl* rope = workQueue.last();
/external/bison/data/
H A Dlocation.cc236 position last = loc.end - 1;
238 if (last.filename
240 || *loc.begin.filename != *last.filename))
241 ostr << '-' << last;
242 else if (loc.begin.line != last.line)
243 ostr << '-' << last.line << '.' << last.column;
244 else if (loc.begin.column != last.column)
245 ostr << '-' << last.column;

Completed in 532 milliseconds

1234567891011>>