/external/swiftshader/third_party/llvm-subzero/lib/Demangle/ |
D | ItaniumDemangle.cpp | 40 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/ |
D | trsort.c | 79 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 …]
|
D | sssort.c | 168 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/skia/src/core/ |
D | SkEdgeBuilder.cpp | 19 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 …]
|
D | SkDeque.cpp | 117 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/libcxx/test/std/utilities/time/time.cal/time.cal.operators/ |
D | month_day_last.pass.cpp | 56 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/skqp/src/core/ |
D | SkEdgeBuilder.cpp | 19 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 …]
|
D | SkDeque.cpp | 117 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/mesa3d/prebuilt-intermediates/bifrost/ |
D | bifrost_gen_disasm.c | 5 …xt_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) in bi_disasm_add_ld_var_special_1() argument 34 bi_disasm_dest_add(fp, next_regs, last); in bi_disasm_add_ld_var_special_1() 42 …xt_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) in bi_disasm_add_frcp_f16() argument 72 bi_disasm_dest_add(fp, next_regs, last); in bi_disasm_add_frcp_f16() 82 …xt_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) in bi_disasm_add_ld_var_imm_0() argument 108 bi_disasm_dest_add(fp, next_regs, last); in bi_disasm_add_ld_var_imm_0() 117 …xt_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) in bi_disasm_add_ld_gclk_u64() argument 128 bi_disasm_dest_add(fp, next_regs, last); in bi_disasm_add_ld_gclk_u64() 134 …xt_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) in bi_disasm_add_iadd_v4s8_2() argument 153 bi_disasm_dest_add(fp, next_regs, last); in bi_disasm_add_iadd_v4s8_2() [all …]
|
/external/iptables/extensions/ |
D | libxt_NFQUEUE.c | 167 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/webrtc/webrtc/system_wrappers/source/spreadsortlib/ |
D | spreadsort.hpp | 65 …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/igt-gpu-tools/tests/i915/ |
D | i915_pm_sseu.c | 90 dbg_get_status_section(const char *title, char **first, char **last) in dbg_get_status_section() argument 103 *last = pos - 1; in dbg_get_status_section() 107 dbg_has_line(const char *first, const char *last, const char *name) in dbg_has_line() argument 111 return pos != NULL && pos < last; in dbg_has_line() 115 dbg_get_int(const char *first, const char *last, const char *name) in dbg_get_int() argument 124 igt_assert(pos != last); in dbg_get_int() 130 dbg_get_bool(const char *first, const char *last, const char *name) in dbg_get_bool() argument 139 igt_assert(pos < last); in dbg_get_bool() 153 char *first, *last; in dbg_get_status() local 163 dbg_get_status_section("SSEU Device Info", &first, &last); in dbg_get_status() [all …]
|
/external/tinyxml2/docs/ |
D | tabs.css | 1 …last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>l…
|
/external/angle/third_party/VulkanMemoryAllocator/docs/html/ |
D | tabs.css | 1 …last-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/ |
D | linux_libc_support_unittest.cc | 171 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/ |
D | Compacter.java | 63 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/ |
D | CompactStringByteConverter.java | 18 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/ltp/testcases/kdump/ |
D | runkdump.sh | 60 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/rust/crates/syn/1.0.7/src/ |
D | punctuated.rs | 48 last: Option<Box<T>>, field 56 last: None, in new() 63 self.inner.len() == 0 && self.last.is_none() in is_empty() 71 self.inner.len() + if self.last.is_some() { 1 } else { 0 } in len() 80 pub fn last(&self) -> Option<&T> { in last() method 81 if self.last.is_some() { in last() 82 self.last.as_ref().map(Box::as_ref) in last() 84 self.inner.last().map(|pair| &pair.0) in last() 90 if self.last.is_some() { in last_mut() 91 self.last.as_mut().map(Box::as_mut) in last_mut() [all …]
|
/external/rust/crates/syn/0.15.42/src/ |
D | punctuated.rs | 51 last: Option<Box<T>>, field 59 last: None, in new() 66 self.inner.len() == 0 && self.last.is_none() in is_empty() 74 self.inner.len() + if self.last.is_some() { 1 } else { 0 } in len() 83 pub fn last(&self) -> Option<Pair<&T, &P>> { in last() method 84 if self.last.is_some() { in last() 85 self.last.as_ref().map(|t| Pair::End(t.as_ref())) in last() 88 .last() in last() 95 if self.last.is_some() { in last_mut() 96 self.last.as_mut().map(|t| Pair::End(t.as_mut())) in last_mut() [all …]
|
/external/python/cpython2/Doc/includes/ |
D | noddy4.c | 7 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 …]
|
D | noddy2.c | 7 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/Lib/test/ |
D | test_smtpd.py | 206 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/python/cpython3/Doc/includes/ |
D | custom4.c | 8 PyObject *last; /* last name */ member 16 Py_VISIT(self->last); in Custom_traverse() 24 Py_CLEAR(self->last); in Custom_clear() 47 self->last = PyUnicode_FromString(""); in Custom_new() 48 if (self->last == NULL) { in Custom_new() 61 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local 64 &first, &last, in Custom_init() 74 if (last) { in Custom_init() 75 tmp = self->last; in Custom_init() 76 Py_INCREF(last); in Custom_init() [all …]
|
D | custom2.c | 8 PyObject *last; /* last name */ member 16 Py_XDECREF(self->last); in Custom_dealloc() 31 self->last = PyUnicode_FromString(""); in Custom_new() 32 if (self->last == NULL) { in Custom_new() 45 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local 48 &first, &last, in Custom_init() 58 if (last) { in Custom_init() 59 tmp = self->last; in Custom_init() 60 Py_INCREF(last); in Custom_init() 61 self->last = last; in Custom_init() [all …]
|