Home
last modified time | relevance | path

Searched +refs:c +refs:pos (Results 1 – 25 of 68703) sorted by relevance

12345678910>>...2749

/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Darray_cursor.gen.go95 c.res.Values[pos] = tvals.Values[c.tsm.pos]
138 if pos > 0 && c.res.Timestamps[pos-1] > c.end {
140 for pos >= 0 && c.res.Timestamps[pos] > c.end {
239 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
253 c.res.Values[pos] = tvals.Values[c.tsm.pos]
269 c.res.Values[pos] = tvals.Values[c.tsm.pos]
388 c.res.Values[pos] = tvals.Values[c.tsm.pos]
532 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
825 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
1118 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Darray_cursor.gen.go95 c.res.Values[pos] = tvals.Values[c.tsm.pos]
136 if pos > 0 && c.res.Timestamps[pos-1] > c.end {
138 for pos >= 0 && c.res.Timestamps[pos] > c.end {
237 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
251 c.res.Values[pos] = tvals.Values[c.tsm.pos]
267 c.res.Values[pos] = tvals.Values[c.tsm.pos]
386 c.res.Values[pos] = tvals.Values[c.tsm.pos]
528 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
819 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
1110 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Darray_cursor.gen.go95 c.res.Values[pos] = tvals.Values[c.tsm.pos]
139 if pos > 0 && c.res.Timestamps[pos-1] > c.end {
141 for pos >= 0 && c.res.Timestamps[pos] > c.end {
227 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
241 c.res.Values[pos] = tvals.Values[c.tsm.pos]
257 c.res.Values[pos] = tvals.Values[c.tsm.pos]
377 c.res.Values[pos] = tvals.Values[c.tsm.pos]
509 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
791 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
1073 for pos < len(c.res.Timestamps) && c.tsm.pos >= 0 && c.cache.pos >= 0 {
[all …]
/dports/editors/texmacs/TeXmacs-1.99.4-src/src/System/Language/
H A Dmathemagix_language.cpp36 char c= s[pos]; in advance() local
39 if (c >= '0' && c <= '9') { in advance()
41 if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || in advance()
42 (c == '_') || (c == '$') || (c == '%')) { in advance()
244 return ((c<='9' && c>='0') || in belongs_to_identifier()
245 (c<='Z' && c>='A') || in belongs_to_identifier()
246 (c<='z' && c>='a') || in belongs_to_identifier()
247 c=='_' || c=='$' || c=='%' || c=='?'); in belongs_to_identifier()
252 return (c>='0' && c<='9'); in is_number()
377 return (c >= '0' && c <= '9') || in is_hex_char()
[all …]
H A Dpython_language.cpp31 char c= s[pos]; in advance() local
40 if (pos+2 < N(s) && s[pos] == '0' && in advance()
48 (c == '.' && pos+1 < N(s) && s[pos+1] >= '0' && s[pos+1] <= '9')) { in advance()
391 while (pos<N(s) && (s[pos] == ' ' || s[pos] == '\t')) pos++; in parse_blanks()
423 delim= s(pos, pos+3); in parse_string()
427 delim= s(pos, pos+1); in parse_string()
470 string r=s(pos,pos+i); in parse_operators()
477 pos=pos+i; in parse_operators()
481 pos=pos+i; in parse_operators()
498 while (pos<N(s) && is_hex_number (s[pos])) pos++; in parse_various_number()
[all …]
H A Dscilab_language.cpp70 char c= s[pos]; in advance() local
73 if (c >= '0' && c <= '9') { in advance()
226 (c<='z' && c>='a') || in belongs_to_identifier()
227 (c=='_' || c=='%' || c=='#' || c=='$' || c=='?' || c=='!')); in belongs_to_identifier()
252 while (pos<N(s) && (s[pos] == ' ' || s[pos] == '\t')) pos++; in parse_blanks()
257 while (pos<N(s) && (s[pos] == ' ' || s[pos] == '\t' || s[pos] == '.')) pos++; in string_end()
258 if (pos == N(s) || (pos + 1 < N(s) && s[pos] == '/' && s[pos+1] == '/')) in string_end()
328 pos=pos+i; in parse_operators()
335 pos=pos+i; in parse_operators()
339 pos=pos+i; in parse_operators()
[all …]
H A Dcpp_language.cpp73 char c= s[pos]; in advance() local
78 if (c >= '0' && c <= '9') { in advance()
82 if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || c == '_') { in advance()
267 return ((c<='9' && c>='0') || in belongs_to_identifier()
268 (c<='Z' && c>='A') || in belongs_to_identifier()
269 (c<='z' && c>='a') || in belongs_to_identifier()
275 return (c>='0' && c<='9'); in is_number()
294 while (pos<N(s) && (s[pos]==' ' || s[pos]=='\t')) pos++; in parse_blanks()
376 if (pos+1 < N(s) && s[pos] == '/' && s[pos+1] == '*') in parse_comment_multi_lines()
382 if (pos+1 < N(s) && s[pos] == '/' && s[pos+1] == '/') in parse_comment_single_line()
[all …]
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/lexers/
H A DLexRust.cxx269 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
272 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
299 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
303 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
311 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
315 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
438 c = styler.SafeGetCharAt(pos, '\0'); in ScanCharacterLiteralOrLifetime()
515 c = styler.SafeGetCharAt(pos, '\0'); in ResumeBlockComment()
538 while (pos < max && c != '\n') { in ResumeLineComment()
542 c = styler.SafeGetCharAt(pos, '\0'); in ResumeLineComment()
[all …]
/dports/deskutils/presage/presage-0.9.1/apps/gtk/gprompter/scintilla/lexers/
H A DLexRust.cxx269 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
272 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
299 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
303 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
311 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
315 c = styler.SafeGetCharAt(pos, '\0'); in ScanNumber()
438 c = styler.SafeGetCharAt(pos, '\0'); in ScanCharacterLiteralOrLifetime()
515 c = styler.SafeGetCharAt(pos, '\0'); in ResumeBlockComment()
538 while (pos < max && c != '\n') { in ResumeLineComment()
542 c = styler.SafeGetCharAt(pos, '\0'); in ResumeLineComment()
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Dbatch_cursor.gen.go155 if pos > 0 && c.t[pos-1] > c.end {
163 return c.t[:pos], c.v[:pos]
322 return c.t[:pos], c.v[:pos]
462 return c.t[:pos], c.v[:pos]
621 return c.t[:pos], c.v[:pos]
761 return c.t[:pos], c.v[:pos]
920 return c.t[:pos], c.v[:pos]
1060 return c.t[:pos], c.v[:pos]
1219 return c.t[:pos], c.v[:pos]
1359 return c.t[:pos], c.v[:pos]
[all …]
/dports/devel/icu/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/lang/v8/v8-9.6.180.12/third_party/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/devel/icu-lx/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/intl/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/intl/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/textproc/R-cran-stringi/stringi/src/icu69/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/www/firefox/firefox-99.0/intl/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/intl/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/intl/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/www/node10/node-v10.24.1/deps/icu-small/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++]; in handleNextCE32()
65 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
74 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
114 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
159 c = u8[pos++]; in handleNextCE32()
179 } else if(c < 0xe0 && c >= 0xc2 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) { in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
294 pos += U16_LENGTH(c); in nextCodePoint()
[all …]
/dports/textproc/R-cran-stringi/stringi/src/icu55/i18n/
H A Dutf8collationiterator.cpp49 c = u8[pos++]; in handleNextCE32()
73 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
113 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
158 c = u8[pos++]; in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
282 pos -= U8_LENGTH(c); in nextCodePoint()
294 pos += U16_LENGTH(c); in nextCodePoint()
320 pos += U8_LENGTH(c); in previousCodePoint()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/intl/icu/source/i18n/
H A Dutf8collationiterator.cpp51 c = u8[pos++];
75 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3);
115 U8_PREV_OR_FFFD(u8, 0, pos, c);
160 c = u8[pos++];
214 c = normalized[pos++];
228 UChar32 c = u8[pos];
239 UChar32 c = u8[pos - 1];
284 pos -= U8_LENGTH(c);
296 pos += U16_LENGTH(c);
322 pos += U8_LENGTH(c);
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/icu4c-57.1/source/i18n/
H A Dutf8collationiterator.cpp49 c = u8[pos++]; in handleNextCE32()
73 c = utf8_nextCharSafeBody(u8, &pos, length, c, -3); in handleNextCE32()
113 U8_PREV_OR_FFFD(u8, 0, pos, c); in previousCodePoint()
158 c = u8[pos++]; in handleNextCE32()
212 c = normalized[pos++]; in handleNextCE32()
226 UChar32 c = u8[pos]; in nextHasLccc() local
237 UChar32 c = u8[pos - 1]; in previousHasTccc() local
282 pos -= U8_LENGTH(c); in nextCodePoint()
294 pos += U16_LENGTH(c); in nextCodePoint()
320 pos += U8_LENGTH(c); in previousCodePoint()
[all …]

12345678910>>...2749