Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 6799) sorted by relevance

12345678910>>...272

/third_party/mesa3d/src/imagination/rogue/
Drogue_encode.c132 { .start = 47, .num = 1, },
152 { .start = 100, .num = 1, },
164 { .start = 43, .num = 2, }, /* SB3(2..1) */
165 { .start = 54, .num = 1, }, /* SB3(0) */
166 { .start = 34, .num = 3, }, /* S3(10..8) */
167 { .start = 41, .num = 2, }, /* S3(7..6) */
168 { .start = 53, .num = 6, }, /* S3(5..0) */
179 { .start = 59, .num = 1, },
190 { .start = 59, .num = 1, }, /* SB0(2) */
191 { .start = 76, .num = 1, }, /* SB0(1) */
[all …]
/third_party/protobuf/js/experimental/runtime/kernel/
Dreader.js23 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/
Dbidiconf.cpp44 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/node/test/fixtures/wpt/FileAPI/blob/
DBlob-slice.any.js66 [{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/icu/vendor/double-conversion/upstream/test/cctest/
Dtest-fixed-dtoa.cc48 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/node/tools/inspector_protocol/lib/
DParser_cpp.template66 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/
Dtrietest.c39 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/
Dyaml_hl.cfg11 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/
Dasn1write.c37 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/python/Objects/
Dsliceobject.c114 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/mesa3d/src/broadcom/cle/
Dv3d_packet_helpers.h63 __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/flutter/skia/third_party/externals/icu/source/common/unicode/
Dunistr.h397 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/
Dunistr.h403 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/node/deps/icu-small/source/common/unicode/
Dunistr.h403 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/
Dunistr.h403 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/tests/
DRRectInPathTest.cpp15 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/flutter/skia/tests/
DRRectInPathTest.cpp15 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/typescript/tests/baselines/reference/
DbpSpan_stmts.baseline12 …~~~~~~~~~~~~~~~ => 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 …]
DbpSpanDestructuringForOfArrayBindingPattern.baseline24 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (142 to 185) SpanInfo: {"start":142,"length…
30 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (186 to 233) SpanInfo: {"start":186,"leng…
36 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (234 to 264) SpanInfo: {"start":234,"length…
42 …~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (265 to 287) SpanInfo: {"start":292,"length…
48 …~~~~~~~~~~~~~~~~~~~ => Pos: (288 to 306) SpanInfo: {"start":292,"length…
54 …~~ => Pos: (307 to 308) SpanInfo: {"start":307,"length…
60 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (309 to 372) SpanInfo: {"start":309,"length":62}
66 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (373 to 446) SpanInfo: {"start":373,"length":72}
72 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (447 to 492) SpanInfo: {"start":447,"length…
78 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (493 to 520) SpanInfo: {"start":525,"length…
[all …]
DbpSpanDestructuringForOfArrayBindingPatternDefaultValues.baseline24 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (142 to 185) SpanInfo: {"start":142,"length…
30 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (186 to 233) SpanInfo: {"start":186,"leng…
36 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (234 to 264) SpanInfo: {"start":234,"length…
42 …~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (265 to 287) SpanInfo: {"start":292,"length…
48 …~~~~~~~~~~~~~~~~~~~ => Pos: (288 to 306) SpanInfo: {"start":292,"length…
54 …~~ => Pos: (307 to 308) SpanInfo: {"start":307,"length…
60 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (309 to 372) SpanInfo: {"start":309,"length":62}
66 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (373 to 446) SpanInfo: {"start":373,"length":72}
72 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (447 to 492) SpanInfo: {"start":447,"length…
78 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (493 to 520) SpanInfo: {"start":525,"length…
[all …]
DbpSpanDestructuringAssignmentForOfArrayBindingPattern.baseline24 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (142 to 185) SpanInfo: {"start":142,"length…
30 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (186 to 233) SpanInfo: {"start":186,"leng…
36 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (234 to 264) SpanInfo: {"start":234,"length…
42 …~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (265 to 287) SpanInfo: {"start":292,"length…
48 …~~~~~~~~~~~~~~~~~~~ => Pos: (288 to 306) SpanInfo: {"start":292,"length…
54 …~~ => Pos: (307 to 308) SpanInfo: {"start":307,"length…
60 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (309 to 372) SpanInfo: {"start":309,"length":62}
66 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (373 to 446) SpanInfo: {"start":373,"length":72}
72 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (447 to 492) SpanInfo: {"start":447,"length…
78 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (493 to 520) SpanInfo: {"start":525,"length…
[all …]
DbpSpanDestructuringAssignmentForOfArrayBindingPatternDefaultValues.baseline24 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (142 to 185) SpanInfo: {"start":142,"length…
30 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (186 to 233) SpanInfo: {"start":186,"leng…
36 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (234 to 264) SpanInfo: {"start":234,"length…
42 …~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (265 to 287) SpanInfo: {"start":292,"length…
48 …~~~~~~~~~~~~~~~~~~~ => Pos: (288 to 306) SpanInfo: {"start":292,"length…
54 …~~ => Pos: (307 to 308) SpanInfo: {"start":307,"length…
60 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (309 to 372) SpanInfo: {"start":309,"length":62}
66 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (373 to 446) SpanInfo: {"start":373,"length":72}
72 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (447 to 492) SpanInfo: {"start":447,"length…
78 …~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (493 to 520) SpanInfo: {"start":525,"length…
[all …]
/third_party/mesa3d/src/imagination/csbgen/
Dpvr_packet_helpers.h63 static inline __attribute__((always_inline)) uint64_t __pvr_mbo(uint32_t start, in __pvr_mbo() argument
66 return (~0ull >> (64 - (end - start + 1))) << start; in __pvr_mbo()
70 __pvr_uint(uint64_t v, uint32_t start, NDEBUG_UNUSED uint32_t end) in __pvr_uint() argument
75 const int width = end - start + 1; in __pvr_uint()
82 return v << start; in __pvr_uint()
86 __pvr_uint_unpack(uint64_t packed, uint32_t start, uint32_t end) in __pvr_uint_unpack() argument
88 const int width = end - start + 1; in __pvr_uint_unpack()
91 return (packed >> start) & mask; in __pvr_uint_unpack()
95 __pvr_sint(int64_t v, uint32_t start, uint32_t end) in __pvr_sint() argument
97 const int width = end - start + 1; in __pvr_sint()
[all …]
/third_party/libsnd/regtest/
Dchecksum.c38 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/cups-filters/cupsfilters/
Dlut.c103 int start, /* Start value */ in cupsLutNew() local
132 for (start = 0; start <= CUPS_MAX_LUT; start ++) in cupsLutNew()
133 lut[start].intensity = start * maxval / CUPS_MAX_LUT; in cupsLutNew()
142 start = 0; in cupsLutNew()
144 start = (int)(0.5 * maxval * (values[pixel - 1] + in cupsLutNew()
147 if (start < 0) in cupsLutNew()
148 start = 0; in cupsLutNew()
149 else if (start > CUPS_MAX_LUT) in cupsLutNew()
150 start = CUPS_MAX_LUT; in cupsLutNew()
162 if (start == end) in cupsLutNew()
[all …]

12345678910>>...272