Home
last modified time | relevance | path

Searched refs:chunkEnd (Results 1 – 25 of 260) sorted by relevance

1234567891011

/dports/net/goreplay/goreplay-1.2.0/proto/
H A Dproto.go414 ext = bytes.IndexByte(buf[chunkEnd:chunkEnd+sz], ';')
418 chkLen, ok = atoI(buf[chunkEnd:chunkEnd+ext], 16)
422 chunkEnd += (sz + 2)
424 if !bytes.Equal(buf[chunkEnd:chunkEnd+2], CRLF) {
427 return chunkEnd + 2
433 chunkEnd += chkLen
435 if !bytes.Equal(buf[chunkEnd:chunkEnd+2], CRLF) {
438 chunkEnd += 2
454 var chunkEnd int
455 if chunkEnd = CheckChunked(body); chunkEnd < 1 {
[all …]
H A Dproto_test.go361 chunkEnd := CheckChunked([]byte(m))
363 if chunkEnd != expected {
368 chunkEnd = CheckChunked([]byte(m))
369 if chunkEnd != -1 {
370 t.Errorf("expected %d to equal %d", chunkEnd, -1)
375 chunkEnd = CheckChunked([]byte(m))
377 if chunkEnd != expected {
384 chunkEnd = CheckChunked([]byte(m))
386 if chunkEnd != expected {
392 chunkEnd = CheckChunked([]byte(m))
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/lexpress/doctrine1/lib/Doctrine/Pager/Range/
H A DSliding.php108 $chunkEnd = $page + (ceil($chunk / 2)-1);
113 $chunkEnd = $chunkEnd + $adjust;
116 if ($chunkEnd > $pages) {
117 $adjust = $chunkEnd - $pages;
119 $chunkEnd = $pages;
122 return range($chunkStart, $chunkEnd);
/dports/www/firefox/firefox-99.0/security/sandbox/chromium-shim/sandbox/win/src/
H A Dline_break_interception.cc41 const wchar_t* chunkEnd = textIter + kMaxBrokeredLen; in GetComplexLineBreaksProxy() local
42 if (chunkEnd < textIterEnd) { in GetComplexLineBreaksProxy()
44 if (IS_HIGH_SURROGATE(*(chunkEnd - 1))) { in GetComplexLineBreaksProxy()
45 --chunkEnd; in GetComplexLineBreaksProxy()
49 chunkEnd = textIterEnd; in GetComplexLineBreaksProxy()
52 uint32_t len = chunkEnd - textIter; in GetComplexLineBreaksProxy()
69 if (chunkEnd == textIterEnd) { in GetComplexLineBreaksProxy()
/dports/textproc/yamcha/yamcha-0.33/libexec/
H A Dconlleval.pl.in184 my $chunkEnd = $false;
186 if ( $prevTag eq "B" and $tag eq "B" ) { $chunkEnd = $true; }
187 if ( $prevTag eq "B" and $tag eq "O" ) { $chunkEnd = $true; }
188 if ( $prevTag eq "I" and $tag eq "B" ) { $chunkEnd = $true; }
189 if ( $prevTag eq "I" and $tag eq "O" ) { $chunkEnd = $true; }
191 if ( $prevTag eq "E" and $tag eq "E" ) { $chunkEnd = $true; }
192 if ( $prevTag eq "E" and $tag eq "I" ) { $chunkEnd = $true; }
197 $chunkEnd = $true;
201 if ( $prevTag eq "]" ) { $chunkEnd = $true; }
202 if ( $prevTag eq "[" ) { $chunkEnd = $true; }
[all …]
H A DchangeRepr.pl.in26 local($chunkEnd) = $false;
28 if ( $prevTag eq "B" && $tag eq "B" ) { $chunkEnd = $true; }
29 if ( $prevTag eq "B" && $tag eq "O" ) { $chunkEnd = $true; }
30 if ( $prevTag eq "I" && $tag eq "B" ) { $chunkEnd = $true; }
31 if ( $prevTag eq "I" && $tag eq "O" ) { $chunkEnd = $true; }
33 if ( $prevTag eq "E" && $tag eq "E" ) { $chunkEnd = $true; }
34 if ( $prevTag eq "E" && $tag eq "I" ) { $chunkEnd = $true; }
35 if ( $prevTag eq "E" && $tag eq "O" ) { $chunkEnd = $true; }
36 if ( $prevTag eq "I" && $tag eq "O" ) { $chunkEnd = $true; }
38 if ($prevTag ne "O" && $prevType ne $type) { $chunkEnd = $true; }
[all …]
/dports/finance/weberp/webERP/xmlrpc/src/Helper/
H A DHttp.php25 $chunkEnd = strpos($buffer, "\r\n") + 2;
26 $temp = substr($buffer, 0, $chunkEnd);
28 $chunkStart = $chunkEnd;
30 $chunkEnd = strpos($buffer, "\r\n", $chunkStart + $chunkSize);
33 if ($chunkEnd == false) {
42 $chunk = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
48 $chunkStart = $chunkEnd + 2;
50 $chunkEnd = strpos($buffer, "\r\n", $chunkStart) + 2;
51 if ($chunkEnd == false) {
54 $temp = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
[all …]
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/mpegparser/
H A DMPEGVideoBuffer.cpp81 if(chunkEnd == -1){ in UpdateState()
84 chunkEnd = test; in UpdateState()
86 if(chunkStart == -1 || chunkEnd == -1){ in UpdateState()
89 assert(chunkStart >= 0 && chunkStart < chunkEnd && chunkEnd > 0); in UpdateState()
97 assert(chunkStart < chunkEnd && chunkStart != -1 && chunkEnd != -1); in ReadChunk()
101 uint32_t chunkLength = chunkEnd - chunkStart; in ReadChunk()
105 chunkEnd = -1; in ReadChunk()
117 chunkEnd = chunkStart + myBuffer->GetLength(); in ForceFinal()
H A DMPEGVideoBuffer.h136 int32_t chunkEnd; variable
144 chunkEnd = -1; in MPEGVideoBuffer()
158 chunkEnd = myBuffer->GetLength() - 1; in SetEndOfData()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/terminal/
H A DTerminalLocalEcho.java69 int chunkEnd = output.length(); in write() local
73 chunkEnd = match.getIndex(); in write()
76 String outputToMatch = output.substring(chunkStart, chunkEnd); in write()
84 writer_.accept(output.substring(chunkEnd)); in write()
114 chunkStart = chunkEnd + matchedValue.length(); in write()
116 chunkEnd = output.length(); in write()
120 outputNonEchoed(output.substring(chunkStart, chunkEnd)); in write()
/dports/security/vault/vault-1.8.2/vendor/github.com/influxdata/influxdb/pkg/slices/
H A Dbytes.go19 chunkEnd := len(src)
20 if chunkEnd-chunkBegin > chunkSize {
21 chunkEnd = chunkBegin + chunkSize
25 for j := chunkBegin; j < chunkEnd; j++ {
31 for j := chunkBegin; j < chunkEnd; j++ {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/influxdata/influxdb/pkg/slices/
H A Dbytes.go19 chunkEnd := len(src)
20 if chunkEnd-chunkBegin > chunkSize {
21 chunkEnd = chunkBegin + chunkSize
25 for j := chunkBegin; j < chunkEnd; j++ {
31 for j := chunkBegin; j < chunkEnd; j++ {
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/influxdata/influxdb/pkg/slices/
H A Dbytes.go19 chunkEnd := len(src)
20 if chunkEnd-chunkBegin > chunkSize {
21 chunkEnd = chunkBegin + chunkSize
25 for j := chunkBegin; j < chunkEnd; j++ {
31 for j := chunkBegin; j < chunkEnd; j++ {
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/Core/
H A DNsfeLoader.h47 vector<string> ReadStrings(uint8_t* &data, uint8_t* chunkEnd) in ReadStrings() argument
51 while(data < chunkEnd) { in ReadStrings()
91 uint8_t* chunkEnd = data + 4 + length; in ReadChunk() local
93 if(chunkEnd > dataEnd) { in ReadChunk()
134 while(data < chunkEnd) { in ReadChunk()
140 while(data < chunkEnd) { in ReadChunk()
145 vector<string> trackNames = ReadStrings(data, chunkEnd); in ReadChunk()
153 vector<string> infoStrings = ReadStrings(data, chunkEnd); in ReadChunk()
176 data = chunkEnd; in ReadChunk()
H A DUnifLoader.h41 string ReadString(uint8_t* &data, uint8_t* chunkEnd) in ReadString() argument
44 while(data < chunkEnd) { in ReadString()
47 data = chunkEnd; in ReadString()
82 uint8_t* chunkEnd = data + length; in ReadChunk() local
83 if(chunkEnd > dataEnd) { in ReadChunk()
88 _mapperName = ReadString(data, chunkEnd); in ReadChunk()
140 data = chunkEnd; in ReadChunk()
/dports/graphics/kf5-kimageformats/kimageformats-5.89.0/src/imageformats/
H A Drle_p.h175 const Item *chunkEnd = chunkStart + 1; in encodeRLEData() local
177 while (chunkLength < maxChunk && itemsEqual(*chunkStart, *chunkEnd)) { in encodeRLEData()
178 ++chunkEnd; in encodeRLEData()
208 chunkEnd = chunkStart + 1; in encodeRLEData()
209 …nkLength < maxChunk && (chunkLength + 1u == maxChunk || !itemsEqual(*chunkEnd, *(chunkEnd + 1)))) { in encodeRLEData()
210 ++chunkEnd; in encodeRLEData()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient/examples/
H A Dlarge-file-download.php109 $chunkEnd = $chunkStart + $chunkSizeBytes; variable
116 'Range' => sprintf('bytes=%s-%s', $chunkStart, $chunkEnd)
120 $chunkStart = $chunkEnd + 1;
/dports/security/keybase/client-v5.7.1/go/chat/signencrypt/
H A Dseeker.go134 chunkEnd := r.clamp(r.offset + num)
135 r.Debug(r.ctx, "Read: chunkEnd: %v", chunkEnd)
136 chunks := getChunksInRange(r.offset, chunkEnd, r.size)
146 if minChunkEnd > chunkEnd {
147 chunkEnd = minChunkEnd
149 prefetchChunks := getChunksInRange(r.offset, chunkEnd, r.size)
/dports/net/rclone/rclone-1.57.0/vendor/github.com/colinmarc/hdfs/v2/internal/transfer/
H A Dblock_read_stream.go103 chunkEnd := chunkOff + s.chunkSize
104 if chunkEnd >= n {
105 chunkEnd = n
108 err := s.validateChecksum(b[chunkOff:chunkEnd])
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/http/
H A DChunkParserTests.cpp29 const std::string chunkEnd = "0\r\n\r\n"; variable
53 payload << std::hex << chunk.size() << "\r\n" << chunk << "\r\n" << chunkEnd;
74 payload << chunkEnd;
111 piece5 << "\r\n" << chunk3 << "\r\n" << chunkEnd;
/dports/biology/gatk/gatk-4.2.0.0/src/testUtils/java/org/broadinstitute/hellbender/testutils/
H A DFakeReferenceSource.java24 int chunkEnd = 4*(Math.floorDiv(end + 1, 4) + 1); in bases() local
25 String full = StringUtils.repeat("tagc", chunkEnd - chunkStart); in bases()
/dports/www/cssed/cssed-0.4.0/scintilla/src/
H A DCallTip.cxx147 char *chunkEnd = strchr(chunkVal, '\n'); in PaintContents() local
148 if (chunkEnd == NULL) { in PaintContents()
149 chunkEnd = chunkVal + strlen(chunkVal); in PaintContents()
153 int chunkLength = chunkEnd - chunkVal; in PaintContents()
172 chunkVal = chunkEnd + 1; in PaintContents()
/dports/net/rclone/rclone-1.57.0/fs/chunkedreader/
H A Dchunkedreader.go71 chunkEnd := cr.chunkOffset + cr.chunkSize
76 case cr.chunkSize > 0 && cr.offset == chunkEnd: // last chunk read completely
88 chunkEnd = cr.chunkOffset + cr.chunkSize
98 chunkRest := chunkEnd - cr.offset
/dports/databases/sqlitebrowser/sqlitebrowser-3.12.1/libs/qscintilla/src/
H A DCallTip.cpp190 const char *chunkEnd = strchr(chunkVal, '\n'); in PaintContents() local
191 if (!chunkEnd) { in PaintContents()
192 chunkEnd = chunkVal + strlen(chunkVal); in PaintContents()
196 const int chunkLength = static_cast<int>(chunkEnd - chunkVal); in PaintContents()
215 chunkVal = chunkEnd + 1; in PaintContents()
/dports/editors/fxite/fxite-FXITE-0_92/fxscintilla/
H A DCallTip.cxx183 const char *chunkEnd = strchr(chunkVal, '\n'); in PaintContents() local
184 if (chunkEnd == NULL) { in PaintContents()
185 chunkEnd = chunkVal + strlen(chunkVal); in PaintContents()
189 int chunkLength = chunkEnd - chunkVal; in PaintContents()
208 chunkVal = chunkEnd + 1; in PaintContents()

1234567891011