/third_party/protobuf/js/experimental/runtime/kernel/ |
D | reader.js | 23 function readBool(bufferDecoder, start) { argument 24 const {lowBits, highBits} = bufferDecoder.getVarint(start); 35 function readBytes(bufferDecoder, start) { argument 36 return readDelimited(bufferDecoder, start).asByteString(); 46 function readInt32(bufferDecoder, start) { argument 50 return bufferDecoder.getUnsignedVarint32At(start) | 0; 60 function readInt64(bufferDecoder, start) { argument 61 const {lowBits, highBits} = bufferDecoder.getVarint(start); 72 function readFixed32(bufferDecoder, start) { argument 73 return bufferDecoder.getUint32(start); [all …]
|
/third_party/icu/icu4c/source/test/intltest/ |
D | bidiconf.cpp | 44 UBool parseLevels(const char *&start); 45 UBool parseOrdering(const char *start); 46 UBool parseInputStringFromBiDiClasses(const char *&start); 82 UBool BiDiConformanceTest::parseLevels(const char *&start) { in parseLevels() argument 85 while(*start!=0 && *(start=u_skipWhitespace(start))!=0 && *start!=';') { in parseLevels() 86 if(*start=='x') { in parseLevels() 88 ++start; in parseLevels() 91 uint32_t value=(uint32_t)strtoul(start, &end, 10); in parseLevels() 92 if(end<=start || (!U_IS_INV_WHITESPACE(*end) && *end!=0 && *end!=';') in parseLevels() 94 errln("\nError on line %d: Levels parse error at %s", (int)lineNumber, start); in parseLevels() [all …]
|
/third_party/gettext/gettext-tools/src/ |
D | quote.h | 35 const char *p, *start, *end; in scan_quoted() local 40 start = input; in scan_quoted() 48 for (p = start; p <= end; p++) in scan_quoted() 55 if (*start == '"') in scan_quoted() 57 if (p == start + 1) in scan_quoted() 62 callback ('"', start + 1, p - (start + 1), data); in scan_quoted() 64 start = p + 1; in scan_quoted() 70 callback ('\0', start, p - start, data); in scan_quoted() 71 start = p; in scan_quoted() 79 if (*start == '`') in scan_quoted() [all …]
|
/third_party/node/test/fixtures/wpt/FileAPI/blob/ |
D | Blob-slice.any.js | 66 [{start: -6, contents: "STRING"}, property 67 {start: -12, contents: "PASSSTRING"}, property 68 {start: 4, contents: "STRING"}, property 69 {start: 12, contents: ""}, property 70 {start: 0, end: -6, contents: "PASS"}, property 71 {start: 0, end: -12, contents: ""}, property 72 {start: 0, end: 4, contents: "PASS"}, property 73 {start: 0, end: 12, contents: "PASSSTRING"}, property 74 {start: 7, end: 4, contents: ""}] property 80 [{start: 0, end: 9, contents: "foobarbaz"}, property [all …]
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | blkmap64_rb.c | 39 __u64 start; member 65 static int rb_insert_extent(__u64 start, __u64 count, 83 (unsigned long long) ext->start, in print_tree() 84 (unsigned long long) ext->start + ext->count); in print_tree() 100 (unsigned long long) ext->start, in check_tree() 101 (unsigned long long) ext->start + ext->count, in check_tree() 105 if (ext->start + ext->count < ext->start) { in check_tree() 109 (unsigned long long) ext->start, in check_tree() 110 (unsigned long long) ext->start + ext->count, in check_tree() 116 if (old->start > ext->start) { in check_tree() [all …]
|
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
D | test-fixed-dtoa.cc | 48 CHECK_EQ("1", buffer.start()); in TEST() 52 CHECK_EQ("1", buffer.start()); in TEST() 56 CHECK_EQ("1", buffer.start()); in TEST() 60 CHECK_EQ("4294967295", buffer.start()); in TEST() 64 CHECK_EQ("4294967296", buffer.start()); in TEST() 68 CHECK_EQ("1", buffer.start()); in TEST() 73 CHECK_EQ("999999999999999868928", buffer.start()); in TEST() 78 CHECK_EQ("6999999999999998951424", buffer.start()); in TEST() 82 CHECK_EQ("15", buffer.start()); in TEST() 86 CHECK_EQ("155", buffer.start()); in TEST() [all …]
|
/third_party/boost/libs/graph/test/ |
D | generator_test.cpp | 38 erdos_renyi_iterator< RandomGenerator, Graph > start(gen, N, p); in main() local 41 while (start != end) in main() 42 ++start; in main() 44 BOOST_TEST(start == end); in main() 48 sorted_erdos_renyi_iterator< RandomGenerator, Graph > start(gen, N, p); in main() local 51 while (start != end) in main() 52 ++start; in main() 54 BOOST_TEST(start == end); in main() 59 small_world_iterator< RandomGenerator, Graph > start(gen, N, M, p); in main() local 62 while (start != end) in main() [all …]
|
/third_party/node/tools/inspector_protocol/lib/ |
D | Parser_cpp.template | 66 bool parseConstToken(const Char* start, const Char* end, const Char** tokenEnd, const char* token) 68 while (start < end && *token != '\0' && *start++ == *token++) { } 71 *tokenEnd = start; 76 bool readInt(const Char* start, const Char* end, const Char** tokenEnd, bool canHaveLeadingZeros) 78 if (start == end) 80 bool haveLeadingZero = '0' == *start; 82 while (start < end && '0' <= *start && *start <= '9') { 83 ++start; 90 *tokenEnd = start; 95 bool parseNumberToken(const Char* start, const Char* end, const Char** tokenEnd) [all …]
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | trietest.c | 39 UChar32 start, limit; member 56 _testFoldedValue32(UNewTrie *trie, UChar32 start, int32_t offset) { in _testFoldedValue32() argument 63 limit=start+0x400; in _testFoldedValue32() 64 while(start<limit) { in _testFoldedValue32() 65 value=utrie_get32(trie, start, &inBlockZero); in _testFoldedValue32() 67 start+=UTRIE_DATA_BLOCK_LENGTH; in _testFoldedValue32() 70 ++start; in _testFoldedValue32() 87 _testFoldedValue16(UNewTrie *trie, UChar32 start, int32_t offset) { in _testFoldedValue16() argument 94 limit=start+0x400; in _testFoldedValue16() 95 while(start<limit) { in _testFoldedValue16() [all …]
|
/third_party/PyYAML/examples/yaml-highlight/ |
D | yaml_hl.cfg | 11 stream-start: 13 directive: { start: "\e[35m", end: "\e[0;1;30;40m" } 14 document-start: { start: "\e[35m", end: "\e[0;1;30;40m" } 15 document-end: { start: "\e[35m", end: "\e[0;1;30;40m" } 16 block-sequence-start: 17 block-mapping-start: 19 flow-sequence-start: { start: "\e[33m", end: "\e[0;1;30;40m" } 20 flow-mapping-start: { start: "\e[33m", end: "\e[0;1;30;40m" } 21 flow-sequence-end: { start: "\e[33m", end: "\e[0;1;30;40m" } 22 flow-mapping-end: { start: "\e[33m", end: "\e[0;1;30;40m" } [all …]
|
/third_party/mbedtls/library/ |
D | asn1write.c | 37 int mbedtls_asn1_write_len( unsigned char **p, const unsigned char *start, size_t len ) in mbedtls_asn1_write_len() argument 41 if( *p - start < 1 ) in mbedtls_asn1_write_len() 50 if( *p - start < 2 ) in mbedtls_asn1_write_len() 60 if( *p - start < 3 ) in mbedtls_asn1_write_len() 71 if( *p - start < 4 ) in mbedtls_asn1_write_len() 85 if( *p - start < 5 ) in mbedtls_asn1_write_len() 101 int mbedtls_asn1_write_tag( unsigned char **p, const unsigned char *start, unsigned char tag ) in mbedtls_asn1_write_tag() argument 103 if( *p - start < 1 ) in mbedtls_asn1_write_tag() 111 int mbedtls_asn1_write_raw_buffer( unsigned char **p, const unsigned char *start, in mbedtls_asn1_write_raw_buffer() argument 116 if( *p < start || (size_t)( *p - start ) < size ) in mbedtls_asn1_write_raw_buffer() [all …]
|
/third_party/mesa3d/src/broadcom/cle/ |
D | v3d_packet_helpers.h | 63 __gen_mbo(uint32_t start, uint32_t end) in __gen_mbo() argument 65 return (~0ull >> (64 - (end - start + 1))) << start; in __gen_mbo() 69 __gen_uint(uint64_t v, uint32_t start, uint32_t end) in __gen_uint() argument 74 const int width = end - start + 1; in __gen_uint() 81 return v << start; in __gen_uint() 85 __gen_sint(int64_t v, uint32_t start, uint32_t end) in __gen_sint() argument 87 const int width = end - start + 1; in __gen_sint() 101 return (v & mask) << start; in __gen_sint() 105 __gen_offset(uint64_t v, uint32_t start, uint32_t end) in __gen_offset() argument 109 uint64_t mask = (~0ull >> (64 - (end - start + 1))) << start; in __gen_offset() [all …]
|
/third_party/python/Objects/ |
D | sliceobject.c | 114 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New() argument 119 if (start == NULL) { in PySlice_New() 120 start = Py_None; in PySlice_New() 142 Py_INCREF(start); in PySlice_New() 143 obj->start = start; in PySlice_New() 154 PyObject *start, *end, *slice; in _PySlice_FromIndices() local 155 start = PyLong_FromSsize_t(istart); in _PySlice_FromIndices() 156 if (!start) in _PySlice_FromIndices() 160 Py_DECREF(start); in _PySlice_FromIndices() 164 slice = PySlice_New(start, end, NULL); in _PySlice_FromIndices() [all …]
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | unistr.h | 403 inline int8_t compare(int32_t start, 424 inline int8_t compare(int32_t start, 459 inline int8_t compare(int32_t start, 480 inline int8_t compare(int32_t start, 503 inline int8_t compareBetween(int32_t start, 547 inline int8_t compareCodePointOrder(int32_t start, 572 inline int8_t compareCodePointOrder(int32_t start, 618 inline int8_t compareCodePointOrder(int32_t start, 643 inline int8_t compareCodePointOrder(int32_t start, 670 inline int8_t compareCodePointOrderBetween(int32_t start, [all …]
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | unistr.h | 403 inline int8_t compare(int32_t start, 424 inline int8_t compare(int32_t start, 459 inline int8_t compare(int32_t start, 480 inline int8_t compare(int32_t start, 503 inline int8_t compareBetween(int32_t start, 547 inline int8_t compareCodePointOrder(int32_t start, 572 inline int8_t compareCodePointOrder(int32_t start, 618 inline int8_t compareCodePointOrder(int32_t start, 643 inline int8_t compareCodePointOrder(int32_t start, 670 inline int8_t compareCodePointOrderBetween(int32_t start, [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
D | unistr.h | 397 inline int8_t compare(int32_t start, 418 inline int8_t compare(int32_t start, 453 inline int8_t compare(int32_t start, 474 inline int8_t compare(int32_t start, 497 inline int8_t compareBetween(int32_t start, 541 inline int8_t compareCodePointOrder(int32_t start, 566 inline int8_t compareCodePointOrder(int32_t start, 612 inline int8_t compareCodePointOrder(int32_t start, 637 inline int8_t compareCodePointOrder(int32_t start, 664 inline int8_t compareCodePointOrderBetween(int32_t start, [all …]
|
/third_party/icu/icu4c/source/common/unicode/ |
D | unistr.h | 403 inline int8_t compare(int32_t start, 424 inline int8_t compare(int32_t start, 459 inline int8_t compare(int32_t start, 480 inline int8_t compare(int32_t start, 503 inline int8_t compareBetween(int32_t start, 547 inline int8_t compareCodePointOrder(int32_t start, 572 inline int8_t compareCodePointOrder(int32_t start, 618 inline int8_t compareCodePointOrder(int32_t start, 643 inline int8_t compareCodePointOrder(int32_t start, 670 inline int8_t compareCodePointOrderBetween(int32_t start, [all …]
|
/third_party/boost/tools/quickbook/src/ |
D | xml_parse.cpp | 66 string_iterator start, 71 string_iterator start, 74 string_iterator& it, string_iterator start, string_iterator end); 76 string_iterator& it, string_iterator start, string_iterator end); 78 string_iterator& it, string_iterator start, string_iterator end); 80 string_iterator& it, string_iterator start, string_iterator end); 92 iterator start = it; in xml_parse() local 94 if (start != it) { in xml_parse() 96 quickbook::string_view(start, it - start))); in xml_parse() 102 start = it++; in xml_parse() [all …]
|
/third_party/boost/libs/spirit/test/qi/ |
D | rule1.cpp | 43 rule<char const*> a, b, c, start; in main() local 52 start.name("start"); in main() 57 debug(start); in main() 59 start = *(a | b | c); in main() 60 BOOST_TEST(test("abcabcacb", start)); in main() 62 start = (a | b) >> (start | b); in main() 63 BOOST_TEST(test("aaaabababaaabbb", start)); in main() 64 BOOST_TEST(test("aaaabababaaabba", start, false)); in main() 67 BOOST_TEST(test("aaaabababaaabba", start, space, false)); in main() 80 rule<char const*> start = (a | b) >> (start | b); in main() local [all …]
|
/third_party/libsnd/regtest/ |
D | checksum.c | 38 static int short_checksum (SNDFILE * file, int start) ; 39 static int int_checksum (SNDFILE * file, int start) ; 40 static int float_checksum (SNDFILE * file, int start) ; 44 { int start ; in calc_checksum() local 47 start = info->samplerate ; in calc_checksum() 48 start = start * BIG_PRIME + info->channels ; in calc_checksum() 49 start = start * BIG_PRIME + info->format ; in calc_checksum() 54 return float_checksum (file, start) ; in calc_checksum() 58 return int_checksum (file, start) ; in calc_checksum() 61 return short_checksum (file, start) ; in calc_checksum() [all …]
|
/third_party/flutter/skia/tests/ |
D | RRectInPathTest.cpp | 15 SkPath::Direction* dir, unsigned* start) { in path_contains_rrect() argument 17 REPORTER_ASSERT(reporter, SkPathPriv::IsRRect(path, &out, dir, start)); in path_contains_rrect() 19 recreatedPath.addRRect(out, *dir, *start); in path_contains_rrect() 44 SkPath::Direction dir, unsigned start) { in inner_path_contains_rrect() argument 54 path.addRRect(in, dir, start); in inner_path_contains_rrect() 58 REPORTER_ASSERT(reporter, outDir == dir && outStart == start); in inner_path_contains_rrect() 63 SkPath::Direction dir, unsigned start) { in path_contains_rrect_check() argument 64 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start); in path_contains_rrect_check() 72 SkPath::Direction dir, unsigned start) { in path_contains_rrect_nocheck() argument 73 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start); in path_contains_rrect_nocheck() [all …]
|
/third_party/skia/tests/ |
D | RRectInPathTest.cpp | 15 SkPathDirection* dir, unsigned* start) { in path_contains_rrect() argument 17 REPORTER_ASSERT(reporter, SkPathPriv::IsRRect(path, &out, dir, start)); in path_contains_rrect() 19 recreatedPath.addRRect(out, *dir, *start); in path_contains_rrect() 44 SkPathDirection dir, unsigned start) { in inner_path_contains_rrect() argument 54 path.addRRect(in, dir, start); in inner_path_contains_rrect() 58 REPORTER_ASSERT(reporter, outDir == dir && outStart == start); in inner_path_contains_rrect() 63 SkPathDirection dir, unsigned start) { in path_contains_rrect_check() argument 64 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start); in path_contains_rrect_check() 72 SkPathDirection dir, unsigned start) { in path_contains_rrect_nocheck() argument 73 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start); in path_contains_rrect_nocheck() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | bpSpan_stmts.baseline | 12 …~~~~~~~~~~~~~~~ => Pos: (26 to 40) SpanInfo: {"start":30,"length":9} 18 …~~~~~~~~~~~~~~~~~~~ => Pos: (41 to 59) SpanInfo: {"start":50,"length":9} 23 … ~~~~~~~~ => Pos: (60 to 67) SpanInfo: {"start":61,"length":6} 28 … ~~~~~~~~ => Pos: (68 to 75) SpanInfo: {"start":69,"length":3} 34 …~~~~~~~~~~~~~~~~ => Pos: (76 to 91) SpanInfo: {"start":84,"length":6} 40 …~~~~~~~~~~~~~~~~ => Pos: (92 to 107) SpanInfo: {"start":100,"length"… 46 …~~~~~~ => Pos: (108 to 113) SpanInfo: {"start":100,"length… 52 …~~~~~~~~~~~~~~~~~~ => Pos: (114 to 131) SpanInfo: {"start":118,"length… 58 …~~~~~~~~~~~~~~~~ => Pos: (132 to 147) SpanInfo: {"start":140,"length… 64 …~~~~~ => Pos: (148 to 152) SpanInfo: {"start":140,"length… [all …]
|
/third_party/boost/libs/spirit/test/karma/ |
D | pattern4.cpp | 34 karma::rule<outiter_type, void(char, int, double)> start; in main() local 37 start = char_[_1 = _r1] << int_[_1 = _r2] << double_[_1 = _r3]; in main() 38 BOOST_TEST(test("a1012.4", start('a', 10, 12.4))); in main() 40 start = (char_ << int_ << double_)[(_1 = _r1, _2 = _r2, _3 = _r3)]; in main() 41 BOOST_TEST(test("a1012.4", start('a', 10, 12.4))); in main() 50 start = a(_r1) << b(_r2) << c(_r3); in main() 51 BOOST_TEST(test("a1012.4", start('a', 10, 12.4))); in main() 55 karma::rule<outiter_type, space_type, void(char, int, double)> start; in main() local 58 start = char_[_1 = _r1] << int_[_1 = _r2] << double_[_1 = _r3]; in main() 59 BOOST_TEST(test_delimited("a 10 12.4 ", start('a', 10, 12.4), space)); in main() [all …]
|
/third_party/typescript_eslint/packages/typescript-estree/tests/snapshots/typescript/basics/ |
D | keyword-variables.src.ts.shot | 17 "start": Object { 35 "start": Object { 53 "start": Object { 71 "start": Object { 91 "start": Object { 109 "start": Object { 127 "start": Object { 145 "start": Object { 165 "start": Object { 183 "start": Object { [all …]
|