Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 3571) sorted by relevance

12345678910>>...143

/external/swiftshader/third_party/llvm-subzero/lib/Demangle/
DItaniumDemangle.cpp40 static const char *parse_type(const char *first, const char *last, C &db);
42 static const char *parse_encoding(const char *first, const char *last, C &db);
44 static const char *parse_name(const char *first, const char *last, C &db,
47 static const char *parse_expression(const char *first, const char *last, C &db);
49 static const char *parse_template_args(const char *first, const char *last,
52 static const char *parse_operator_name(const char *first, const char *last,
55 static const char *parse_unqualified_name(const char *first, const char *last,
58 static const char *parse_decltype(const char *first, const char *last, C &db);
62 static const char *parse_number(const char *first, const char *last) { in parse_number() argument
63 if (first != last) { in parse_number()
[all …]
/external/libdivsufsort/lib/
Dtrsort.c79 tr_insertionsort(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { in tr_insertionsort() argument
83 for(a = first + 1; a < last; ++a) { in tr_insertionsort()
167 tr_pivot(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { in tr_pivot() argument
171 t = last - first; in tr_pivot()
176 return tr_median3(ISAd, first, middle, last - 1); in tr_pivot()
179 return tr_median5(ISAd, first, first + t, middle, last - 1 - t, last - 1); in tr_pivot()
185 last = tr_median3(ISAd, last - 1 - (t << 1), last - 1 - t, last - 1); in tr_pivot()
186 return tr_median3(ISAd, first, middle, last); in tr_pivot()
223 saidx_t *first, saidx_t *middle, saidx_t *last, in tr_partition() argument
229 for(b = middle - 1; (++b < last) && ((x = ISAd[*b]) == v);) { } in tr_partition()
[all …]
Dsssort.c168 saidx_t *first, saidx_t *last, saidx_t depth) { in ss_insertionsort() argument
173 for(i = last - 2; first <= i; --i) { in ss_insertionsort()
175 do { *(j - 1) = *j; } while((++j < last) && (*j < 0)); in ss_insertionsort()
176 if(last <= j) { break; } in ss_insertionsort()
263 ss_pivot(const sauchar_t *Td, const saidx_t *PA, saidx_t *first, saidx_t *last) { in ss_pivot() argument
267 t = last - first; in ss_pivot()
272 return ss_median3(Td, PA, first, middle, last - 1); in ss_pivot()
275 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); in ss_pivot()
281 last = ss_median3(Td, PA, last - 1 - (t << 1), last - 1 - t, last - 1); in ss_pivot()
282 return ss_median3(Td, PA, first, middle, last); in ss_pivot()
[all …]
/external/libcxx/test/std/utilities/time/time.cal/time.cal.operators/
Dmonth_day_last.pass.cpp56 constexpr std::chrono::last_spec last = std::chrono::last; in main() local
58 ASSERT_SAME_TYPE(month_day_last, decltype(last/February)); in main()
59 ASSERT_SAME_TYPE(month_day_last, decltype(February/last)); in main()
63 constexpr auto mdl = February/std::chrono::last; in main()
68 ASSERT_NOEXCEPT ( last/February); in main()
69 ASSERT_SAME_TYPE(month_day_last, decltype(last/February)); in main()
70 ASSERT_NOEXCEPT ( February/last); in main()
71 ASSERT_SAME_TYPE(month_day_last, decltype(February/last)); in main()
73 static_assert((last/February).month() == February, ""); in main()
74 static_assert((February/last).month() == February, ""); in main()
[all …]
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/bsdiff/
DDivSuffixSorter.java314 final int PA, int first, int last, int buf, int bufsize, int depth, int n, boolean lastsuffix) in ssSort() argument
327 && (bufsize < (last - first)) in ssSort()
328 && (bufsize < (limit = ssIsqrt(last - first)))) { in ssSort()
332 buf = middle = last - limit; in ssSort()
335 middle = last; in ssSort()
340 curbufsize = last - (a + SS_BLOCKSIZE); in ssSort()
358 ssMintroSort(PA, middle, last, depth); in ssSort()
359 ssInplaceMerge(PA, first, middle, last, depth); in ssSort()
366 (a < last) in ssSort()
402 private final void ssInplaceMerge(int PA, int first, int middle, int last, int depth) in ssInplaceMerge() argument
[all …]
/external/skia/src/core/
DSkEdgeBuilder.cpp19 SkEdgeBuilder::Combine SkBasicEdgeBuilder::combineVertical(const SkEdge* edge, SkEdge* last) { in combineVertical() argument
20 if (last->fCurveCount || last->fDX || edge->fX != last->fX) { in combineVertical()
23 if (edge->fWinding == last->fWinding) { in combineVertical()
24 if (edge->fLastY + 1 == last->fFirstY) { in combineVertical()
25 last->fFirstY = edge->fFirstY; in combineVertical()
28 if (edge->fFirstY == last->fLastY + 1) { in combineVertical()
29 last->fLastY = edge->fLastY; in combineVertical()
34 if (edge->fFirstY == last->fFirstY) { in combineVertical()
35 if (edge->fLastY == last->fLastY) { in combineVertical()
38 if (edge->fLastY < last->fLastY) { in combineVertical()
[all …]
DSkDeque.cpp117 Block* last = fBackBlock; in push_back() local
120 if (nullptr == last->fBegin) { in push_back()
122 last->fBegin = last->start(); in push_back()
123 end = last->fBegin + fElemSize; in push_back()
125 end = last->fEnd + fElemSize; in push_back()
126 if (end > last->fStop) { // no more room in this chunk in push_back()
128 last = this->allocateBlock(fAllocCount); in push_back()
129 last->fPrev = fBackBlock; in push_back()
130 fBackBlock->fNext = last; in push_back()
131 fBackBlock = last; in push_back()
[all …]
/external/skqp/src/core/
DSkEdgeBuilder.cpp19 SkEdgeBuilder::Combine SkBasicEdgeBuilder::combineVertical(const SkEdge* edge, SkEdge* last) { in combineVertical() argument
20 if (last->fCurveCount || last->fDX || edge->fX != last->fX) { in combineVertical()
23 if (edge->fWinding == last->fWinding) { in combineVertical()
24 if (edge->fLastY + 1 == last->fFirstY) { in combineVertical()
25 last->fFirstY = edge->fFirstY; in combineVertical()
28 if (edge->fFirstY == last->fLastY + 1) { in combineVertical()
29 last->fLastY = edge->fLastY; in combineVertical()
34 if (edge->fFirstY == last->fFirstY) { in combineVertical()
35 if (edge->fLastY == last->fLastY) { in combineVertical()
38 if (edge->fLastY < last->fLastY) { in combineVertical()
[all …]
DSkDeque.cpp117 Block* last = fBackBlock; in push_back() local
120 if (nullptr == last->fBegin) { in push_back()
122 last->fBegin = last->start(); in push_back()
123 end = last->fBegin + fElemSize; in push_back()
125 end = last->fEnd + fElemSize; in push_back()
126 if (end > last->fStop) { // no more room in this chunk in push_back()
128 last = this->allocateBlock(fAllocCount); in push_back()
129 last->fPrev = fBackBlock; in push_back()
130 fBackBlock->fNext = last; in push_back()
131 fBackBlock = last; in push_back()
[all …]
/external/webrtc/webrtc/system_wrappers/source/spreadsortlib/
Dspreadsort.hpp65 …find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAcces… in find_extremes() argument
69 while(++current < last) { in find_extremes()
80 …find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAcces… in find_extremes() argument
83 while(++current < last) { in find_extremes()
130 …spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_… in spread_sort_rec() argument
136 find_extremes(first, last, max, min); in spread_sort_rec()
141 …unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(*max >> 0) - (*min … in spread_sort_rec()
149 for (RandomAccessIter current = first; current != last;) in spread_sort_rec()
185 bins[bin_count - 1] = last; in spread_sort_rec()
192 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec()
[all …]
/external/iptables/extensions/
Dlibxt_NFQUEUE.c167 unsigned int last = tinfo->queues_total; in NFQUEUE_print_v1() local
169 if (last > 1) { in NFQUEUE_print_v1()
170 last += tinfo->queuenum - 1; in NFQUEUE_print_v1()
171 printf(" NFQUEUE balance %u:%u", tinfo->queuenum, last); in NFQUEUE_print_v1()
181 unsigned int last = info->queues_total; in NFQUEUE_print_v2() local
183 if (last > 1) { in NFQUEUE_print_v2()
184 last += info->queuenum - 1; in NFQUEUE_print_v2()
185 printf(" NFQUEUE balance %u:%u", info->queuenum, last); in NFQUEUE_print_v2()
197 unsigned int last = info->queues_total; in NFQUEUE_print_v3() local
199 if (last > 1) { in NFQUEUE_print_v3()
[all …]
/external/epid-sdk/doc/html/
Dtabs.css1last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>l…
/external/tinyxml2/docs/
Dtabs.css1last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>l…
/external/google-breakpad/src/common/linux/
Dlinux_libc_support_unittest.cc171 const char* last; in TEST() local
173 last = my_read_hex_ptr(&result, ""); in TEST()
175 ASSERT_EQ(*last, 0); in TEST()
177 last = my_read_hex_ptr(&result, "0"); in TEST()
179 ASSERT_EQ(*last, 0); in TEST()
181 last = my_read_hex_ptr(&result, "0123"); in TEST()
183 ASSERT_EQ(*last, 0); in TEST()
185 last = my_read_hex_ptr(&result, "0123a"); in TEST()
187 ASSERT_EQ(*last, 0); in TEST()
189 last = my_read_hex_ptr(&result, "0123a-"); in TEST()
[all …]
/external/cldr/tools/java/org/unicode/cldr/draft/
DCompacter.java63 for (int i = interval.first; i <= interval.last; ++i) { in decodeString()
73 int last = -1; in codePointsToIntervals() local
77 first = last = cp; in codePointsToIntervals()
78 } else if (cp == last + 1) { in codePointsToIntervals()
79 last = cp; in codePointsToIntervals()
81 result.add(new Interval(first, last)); in codePointsToIntervals()
82 first = last = cp; in codePointsToIntervals()
86 result.add(new Interval(first, last)); in codePointsToIntervals()
109 int last = -1; in getInternalRangeString() local
113 first = last = cp; in getInternalRangeString()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DCompactStringByteConverter.java18 private int last; field in CompactStringByteConverter
34 last = 0x40; in clear()
45 int delta = cp - last; in toBytes()
47 last = cp; in toBytes()
48 last = (last & ~0x7F) | 0x40; // position in middle of 128 block in toBytes()
62 int last = 0x40; in toBytes() local
66 int delta = cp - last; in toBytes()
68 last = cp; in toBytes()
69 last = (last & ~0x7F) | 0x40; // position in middle of 128 block in toBytes()
90 int last = 0x40; in fromBytes() local
[all …]
/external/python/cpython3/Lib/test/
Dtest_smtpd.py206 self.assertEqual(channel.socket.last, self.error_response)
215 self.assertEqual(channel.socket.last, b'250 OK\r\n')
248 self.assertEqual(channel.socket.last, self.error_response)
250 self.assertEqual(channel.socket.last, b'250 OK\r\n')
262 self.assertEqual(channel.socket.last, self.error_response)
267 channel.socket.last,
271 self.assertEqual(channel.socket.last, b'250 OK\r\n')
281 self.assertEqual(channel.socket.last, b'250 OK\r\n')
320 self.assertEqual(self.channel.socket.last,
325 self.assertEqual(self.channel.socket.last, b'250 HELP\r\n')
[all …]
/external/ltp/testcases/kdump/
Drunkdump.sh60 if [ "${last}" = "KLEXT" ]; then
68 elif [ "${last}" = "KLLBL" ]; then
76 elif [ "${last}" = "KLUID" ]; then
84 elif [ "${last}" = "KLRAW" ]; then
85 mkdir -p "${COREDIR}/${last}"
89 dd if="${RAW_PART}" of="${COREDIR}/${last}/vmcore" bs=1024
92 elif [ "${last}" = "KNSCP" ]; then
101 mkdir -p "${COREDIR}/${last}"
106 scp -i ~/.ssh/kdump_id_rsa "${SCP_PATH}:${file}" "${COREDIR}/${last}"
110 elif [ "${last}" = "KNNFS" ]; then
[all …]
/external/python/cpython2/Doc/includes/
Dnoddy4.c7 PyObject *last; member
21 if (self->last) { in Noddy_traverse()
22 vret = visit(self->last, arg); in Noddy_traverse()
39 tmp = self->last; in Noddy_clear()
40 self->last = NULL; in Noddy_clear()
67 self->last = PyString_FromString(""); in Noddy_new()
68 if (self->last == NULL) { in Noddy_new()
82 PyObject *first=NULL, *last=NULL, *tmp; in Noddy_init() local
87 &first, &last, in Noddy_init()
98 if (last) { in Noddy_init()
[all …]
Dnoddy3.c7 PyObject *last; member
15 Py_XDECREF(self->last); in Noddy_dealloc()
32 self->last = PyString_FromString(""); in Noddy_new()
33 if (self->last == NULL) { in Noddy_new()
47 PyObject *first=NULL, *last=NULL, *tmp; in Noddy_init() local
52 &first, &last, in Noddy_init()
63 if (last) { in Noddy_init()
64 tmp = self->last; in Noddy_init()
65 Py_INCREF(last); in Noddy_init()
66 self->last = last; in Noddy_init()
[all …]
Dnoddy2.c7 PyObject *last; /* last name */ member
15 Py_XDECREF(self->last); in Noddy_dealloc()
32 self->last = PyString_FromString(""); in Noddy_new()
33 if (self->last == NULL) { in Noddy_new()
47 PyObject *first=NULL, *last=NULL, *tmp; in Noddy_init() local
52 &first, &last, in Noddy_init()
63 if (last) { in Noddy_init()
64 tmp = self->last; in Noddy_init()
65 Py_INCREF(last); in Noddy_init()
66 self->last = last; in Noddy_init()
[all …]
/external/python/cpython3/Doc/includes/
Dcustom4.c7 PyObject *last; /* last name */ member
15 Py_VISIT(self->last); in Custom_traverse()
23 Py_CLEAR(self->last); in Custom_clear()
46 self->last = PyUnicode_FromString(""); in Custom_new()
47 if (self->last == NULL) { in Custom_new()
60 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local
63 &first, &last, in Custom_init()
73 if (last) { in Custom_init()
74 tmp = self->last; in Custom_init()
75 Py_INCREF(last); in Custom_init()
[all …]
Dcustom3.c7 PyObject *last; /* last name */ member
15 Py_XDECREF(self->last); in Custom_dealloc()
30 self->last = PyUnicode_FromString(""); in Custom_new()
31 if (self->last == NULL) { in Custom_new()
44 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local
47 &first, &last, in Custom_init()
57 if (last) { in Custom_init()
58 tmp = self->last; in Custom_init()
59 Py_INCREF(last); in Custom_init()
60 self->last = last; in Custom_init()
[all …]
Dcustom2.c7 PyObject *last; /* last name */ member
15 Py_XDECREF(self->last); in Custom_dealloc()
30 self->last = PyUnicode_FromString(""); in Custom_new()
31 if (self->last == NULL) { in Custom_new()
44 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local
47 &first, &last, in Custom_init()
57 if (last) { in Custom_init()
58 tmp = self->last; in Custom_init()
59 Py_INCREF(last); in Custom_init()
60 self->last = last; in Custom_init()
[all …]
/external/deqp/framework/delibs/decpp/
DdeRandom.hpp58 void choose (InputIter first, InputIter last, OutputIter result, int numItems);
61 T choose (InputIter first, InputIter last);
65 T chooseWeighted (InputIter first, InputIter last, WeightIter weight);
68 void shuffle (Iterator first, Iterator last);
103 void Random::choose (InputIter first, InputIter last, OutputIter result, int numItems) in choose() argument
110 for (ndx = 0; first != last; ++first, ++ndx) in choose()
126 T Random::choose (InputIter first, InputIter last) in choose() argument
129 DE_ASSERT(first != last); in choose()
130 choose(first, last, &val, 1); in choose()
135 T Random::chooseWeighted (InputIter first, InputIter last, WeightIter weight) in chooseWeighted() argument
[all …]

12345678910>>...143