Home
last modified time | relevance | path

Searched refs:bufEnd (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/dports/x11-toolkits/irrlicht/irrlicht-1.8.5/source/Irrlicht/
H A DCOBJMeshFileLoader.cpp86 const c8* const bufEnd = buf+filesize; in createMesh() local
94 while(bufPtr != bufEnd) in createMesh()
134 bufPtr = readUV(bufPtr, vec, bufEnd); in createMesh()
275 bufPtr = goNextLine(bufPtr, bufEnd); in createMesh()
510 const c8* bufEnd = buf+filesize; in readMTL() local
515 while(bufPtr != bufEnd) in readMTL()
649 bufPtr = goNextLine(bufPtr, bufEnd); in readMTL()
783 while(buf != bufEnd) in goNextLine()
790 return goFirstWord(buf, bufEnd); in goNextLine()
827 while (ptr<bufEnd) in copyLine()
[all …]
H A DCOBJMeshFileLoader.h74 …const c8* readTextures(const c8* bufPtr, const c8* const bufEnd, SObjMtl* currMaterial, const io::…
77 const c8* goFirstWord(const c8* buf, const c8* const bufEnd, bool acrossNewlines=true);
79 const c8* goNextWord(const c8* buf, const c8* const bufEnd, bool acrossNewlines=true);
81 const c8* goNextLine(const c8* buf, const c8* const bufEnd);
85 core::stringc copyLine(const c8* inBuf, const c8* const bufEnd);
103 const c8* readBool(const c8* bufPtr, bool& tf, const c8* const bufEnd);
108 …bool retrieveVertexIndices(c8* vertexData, s32* idx, const c8* bufEnd, u32 vbsize, u32 vtsize, u32…
/dports/textproc/xp/com/jclark/xml/sax/
H A DReaderInputStream.java17 private int bufEnd = 1; field in ReaderInputStream
32 while (bufIndex == bufEnd) { in read()
34 bufEnd = reader.read(buf, 0, buf.length); in read()
35 if (bufEnd < 0) { in read()
36 bufEnd = 0; in read()
57 if (bufIndex == bufEnd) { in read()
59 bufEnd = reader.read(buf, 0, buf.length); in read()
60 if (bufEnd < 0) { in read()
61 bufEnd = 0; in read()
66 if (bufEnd == 0) in read()
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/main/java/com/servingxml/io/helpers/
H A DReaderInputStream.java50 private int bufEnd = 1; field in ReaderInputStream
66 while (bufIndex == bufEnd) { in read()
68 bufEnd = reader.read(buf, 0, buf.length); in read()
69 if (bufEnd < 0) { in read()
70 bufEnd = 0; in read()
91 if (bufIndex == bufEnd) { in read()
93 bufEnd = reader.read(buf, 0, buf.length); in read()
94 if (bufEnd < 0) { in read()
95 bufEnd = 0; in read()
100 if (bufEnd == 0) in read()
/dports/graphics/libimg/Img-1.4.12/base/
H A DtkimgIO.c28 static int bufEnd = -1; variable
114 bufEnd = -1; in tkimg_ReadBuffer()
163 bytesToRead, bytesRead, bufStart, bufEnd); in tkimg_Read()
173 if (bufEnd < 0) in tkimg_Read()
174 return bufEnd; in tkimg_Read()
192 bytesRead += (bufEnd +1 - bufStart); in tkimg_Read()
193 bytesToRead -= (bufEnd+1 - bufStart); in tkimg_Read()
262 if (bufEnd < 0) in tkimg_Read2()
263 return bufEnd; in tkimg_Read2()
281 bytesRead += (bufEnd +1 - bufStart); in tkimg_Read2()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/IO/compression/
H A DFastEncoderWindow.cs40 return bufEnd - bufPos;
49 input.Count = bufEnd - bufPos;
63 bufEnd = bufPos; in ResetWindow()
68 return 2 * FastEncoderWindowSize - bufEnd;
75 bufEnd += count; in CopyBytes()
121 bufEnd = bufPos; in MoveWindows()
153 if (bufEnd - bufPos <= matchLen) { in InsertStrings()
180 if (bufEnd - bufPos <= 3) { in GetNextSymbolOrMatch()
196 if (bufPos + matchLen > bufEnd) in GetNextSymbolOrMatch()
197 matchLen = bufEnd - bufPos; in GetNextSymbolOrMatch()
[all …]
/dports/www/larbin/larbin-2.6.3/src/utils/
H A DPersistentFifo.cc25 bufEnd = 0; in PersistentFifo()
158 assert(bufPos == bufEnd); in updateRead()
181 if (bufPos == bufEnd) { in readLine()
182 bufPos = 0; bufEnd = 0; buf[0] = 0; in readLine()
186 if (!(bufEnd - bufPos < maxUrlSize + 40 + maxCookieSize)) { in readLine()
191 bufEnd -= bufPos; in readLine()
192 memmove(buf, buf+bufPos, bufEnd); in readLine()
195 int postmp = bufEnd; in readLine()
198 int rd = read(rfds, buf+bufEnd, BUF_SIZE-1-bufEnd); in readLine()
216 bufEnd += rd; in readLine()
[all …]
/dports/mail/lurker/lurker-2.3/mimelib/
H A Dentity.cpp58 size_t bufEnd = mString.length(); in Parse() local
67 if (pos < bufEnd && buf[pos] != '\n' in Parse()
70 while (pos < bufEnd) { in Parse()
79 else if (pos < bufEnd && buf[pos+1] == '\n') { in Parse()
86 else if (buf[pos] == '\r' && pos+1 < bufEnd in Parse()
94 else if (pos+1 < bufEnd && buf[pos] == '\r' in Parse()
102 else if (buf[pos] == '\r' && pos+1 < bufEnd in Parse()
110 else if (pos+1 < bufEnd && buf[pos] == '\r' in Parse()
135 if (pos < bufEnd && buf[pos] == '\n') { in Parse()
139 else if (pos < bufEnd && buf[pos] == '\r' in Parse()
[all …]
/dports/sysutils/p5-BackupPC-XS/BackupPC-XS-0.62/
H A Dbpc_attrib.c554 while ( bufP < bufEnd ) { in getVarInt()
568 *bufPP = bufEnd + 1; in getVarInt()
580 while ( bufP < bufEnd ) { in getVarInt_v3()
593 *bufPP = bufEnd + 1; in getVarInt_v3()
610 if ( bufP < bufEnd ) { in setVarInt()
1002 uchar *bufEnd; member
1057 if ( bufP + fileNameLen < bufEnd ) { in bpc_attrib_file2buf()
1063 setVarInt(&bufP, bufEnd, file->type); in bpc_attrib_file2buf()
1066 setVarInt(&bufP, bufEnd, file->uid); in bpc_attrib_file2buf()
1067 setVarInt(&bufP, bufEnd, file->gid); in bpc_attrib_file2buf()
[all …]
/dports/java/cryptix-jce/src/javax.crypto/
H A DCipherInputStream.java28 private int bufEnd = 0; field in CipherInputStream
61 if (bufBegin >= bufEnd) in read()
83 if (bufBegin >= bufEnd) in read()
96 if ((l = bufEnd - bufBegin)> len) in read()
112 if ((i = (long) (bufEnd - bufBegin)) <= 0 || n <= 0) in skip()
125 return bufEnd - bufBegin; in available()
176 bufEnd = len; in doBuffering()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/sid/sidplay-libs/libsidplay/include/sidplay/
H A DSmartPtr.h21 bufEnd = bufBegin + bufferLen;
27 pBufCurrent = ( bufBegin = ( bufEnd = 0 ));
55 return ((pBufCurrent+index)<bufEnd); in checkIndex()
73 return (pBufCurrent<bufEnd); in good()
78 return (pBufCurrent==bufEnd); in fail()
183 T* bufEnd; variable
215 this->bufEnd = this->bufBegin + bufferLen; in setBuffer()
221 this->pBufCurrent = this->bufBegin = this->bufEnd = 0; in setBuffer()
/dports/audio/fcplay/fcplay-0.0.1/
H A DSmartPtr.h21 bufEnd = bufBegin + bufferLen;
27 pBufCurrent = ( bufBegin = ( bufEnd = 0 ));
51 return ((pBufCurrent+index)<bufEnd); in checkIndex()
69 return (pBufCurrent<bufEnd); in good()
74 return (pBufCurrent==bufEnd); in fail()
180 T* bufEnd; variable
211 this->bufEnd = this->bufBegin + bufferLen; in setBuffer()
217 this->pBufCurrent = this->bufBegin = this->bufEnd = 0; in setBuffer()
/dports/audio/libsidplay/libsidplay-1.36.60/src/
H A Dsmart.h21 this->bufEnd = this->bufBegin + bufferLen;
27 this->pBufCurrent = ( this->bufBegin = ( this->bufEnd = 0 ));
55 return ((pBufCurrent+index)<bufEnd); in checkIndex()
73 return (pBufCurrent<bufEnd); in good()
78 return (pBufCurrent==bufEnd); in fail()
184 T* bufEnd; variable
215 this->bufEnd = this->bufBegin + bufferLen; in setBuffer()
221 this->pBufCurrent = this->bufBegin = this->bufEnd = 0; in setBuffer()
/dports/audio/libsidplay2/sidplay-libs-2.1.1/libsidplay/include/sidplay/
H A DSmartPtr.h21 bufEnd = bufBegin + bufferLen;
27 pBufCurrent = ( bufBegin = ( bufEnd = 0 ));
55 return ((pBufCurrent+index)<bufEnd); in checkIndex()
73 return (pBufCurrent<bufEnd); in good()
78 return (pBufCurrent==bufEnd); in fail()
184 T* bufEnd; variable
215 this->bufEnd = this->bufBegin + bufferLen; in setBuffer()
221 this->pBufCurrent = this->bufBegin = this->bufEnd = 0; in setBuffer()
/dports/converters/mimelib/mimelib-1.1.2/mimelib/
H A Dentity.cpp57 size_t bufEnd = mString.length(); in Parse() local
64 if (pos < bufEnd && buf[pos] != '\n' in Parse()
65 && ! (buf[pos] == '\r' && pos+1 < bufEnd && buf[pos+1] == '\n')) { in Parse()
67 while (pos < bufEnd) { in Parse()
70 if (pos+1 < bufEnd && in Parse()
73 pos+2 < bufEnd && buf[pos+2] == '\n'))) { in Parse()
84 else if (buf[pos] == '\r' && pos+3 < bufEnd in Parse()
100 if (pos < bufEnd && buf[pos] == '\n') { in Parse()
104 else if (pos < bufEnd && buf[pos] == '\r' in Parse()
105 && pos+1 < bufEnd && buf[pos+1] == '\n') { in Parse()
/dports/audio/libsidplayfp/libsidplayfp-2.3.1/src/sidtune/
H A DSmartPtr.h19 bufEnd(nullptr), in bufBegin()
30 bufEnd = bufBegin + bufferLen; in bufBegin()
52 return (pBufCurrent + index) < bufEnd; in checkIndex()
71 return pBufCurrent < bufEnd; in good()
76 return pBufCurrent == bufEnd; in fail()
181 T* bufEnd; variable
209 this->bufEnd = buffer + bufferLen; in setBuffer()
217 this->bufEnd = nullptr; in setBuffer()
/dports/audio/ocp/ocp-0.2.90/playsid/libsidplayfp-git/src/sidtune/
H A DSmartPtr.h19 bufEnd(nullptr), in bufBegin()
30 bufEnd = bufBegin + bufferLen; in bufBegin()
52 return (pBufCurrent + index) < bufEnd; in checkIndex()
71 return pBufCurrent < bufEnd; in good()
76 return pBufCurrent == bufEnd; in fail()
181 T* bufEnd; variable
209 this->bufEnd = buffer + bufferLen; in setBuffer()
217 this->bufEnd = nullptr; in setBuffer()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Video/Core/include/
H A DitkVideoStream.hxx424 SizeValueType bufEnd = m_BufferedTemporalRegion.GetFrameStart() + in SetAllLargestPossibleSpatialRegions() local
428 (bufEnd > reqEnd) ? (numFrames = bufEnd) : (numFrames = reqEnd); in SetAllLargestPossibleSpatialRegions()
452 SizeValueType bufEnd = m_BufferedTemporalRegion.GetFrameStart() + in SetAllRequestedSpatialRegions() local
456 (bufEnd > reqEnd) ? (numFrames = bufEnd) : (numFrames = reqEnd); in SetAllRequestedSpatialRegions()
480 SizeValueType bufEnd = m_BufferedTemporalRegion.GetFrameStart() + in SetAllBufferedSpatialRegions() local
484 (bufEnd > reqEnd) ? (numFrames = bufEnd) : (numFrames = reqEnd); in SetAllBufferedSpatialRegions()
508 SizeValueType bufEnd = m_BufferedTemporalRegion.GetFrameStart() + in SetAllFramesSpacing() local
512 (bufEnd > reqEnd) ? (numFrames = bufEnd) : (numFrames = reqEnd); in SetAllFramesSpacing()
536 SizeValueType bufEnd = m_BufferedTemporalRegion.GetFrameStart() + in SetAllFramesOrigin() local
540 (bufEnd > reqEnd) ? (numFrames = bufEnd) : (numFrames = reqEnd); in SetAllFramesOrigin()
[all …]
/dports/graphics/poppler-qt5/poppler-21.12.0/poppler/
H A DStream.h398 char *bufEnd; variable
554 if (bufPtr >= bufEnd) { in getChars()
577 char *bufEnd; variable
619 char *bufEnd; variable
725 T *bufEnd; variable
935 char *bufEnd; // end of buffer variable
1300 char *bufEnd; variable
1327 char *bufEnd; variable
1354 char *bufEnd; variable
1418 char *bufEnd; variable
[all …]
/dports/graphics/poppler/poppler-21.12.0/poppler/
H A DStream.h398 char *bufEnd; variable
554 if (bufPtr >= bufEnd) { in getChars()
577 char *bufEnd; variable
619 char *bufEnd; variable
725 T *bufEnd; variable
935 char *bufEnd; // end of buffer variable
1300 char *bufEnd; variable
1327 char *bufEnd; variable
1354 char *bufEnd; variable
1418 char *bufEnd; variable
[all …]
/dports/graphics/poppler-glib/poppler-21.12.0/poppler/
H A DStream.h398 char *bufEnd; variable
554 if (bufPtr >= bufEnd) { in getChars()
577 char *bufEnd; variable
619 char *bufEnd; variable
725 T *bufEnd; variable
935 char *bufEnd; // end of buffer variable
1300 char *bufEnd; variable
1327 char *bufEnd; variable
1354 char *bufEnd; variable
1418 char *bufEnd; variable
[all …]
/dports/graphics/poppler-utils/poppler-21.12.0/poppler/
H A DStream.h398 char *bufEnd; variable
554 if (bufPtr >= bufEnd) { in getChars()
577 char *bufEnd; variable
619 char *bufEnd; variable
725 T *bufEnd; variable
935 char *bufEnd; // end of buffer variable
1300 char *bufEnd; variable
1327 char *bufEnd; variable
1354 char *bufEnd; variable
1418 char *bufEnd; variable
[all …]
/dports/lang/oo2c/oo2c_64-2.1.11/lib/src/
H A DPosixFileDescr.c282 return len = ch->bufEnd; in PosixFileDescr__ReaderDesc_Available()
429 (r->pos >= ch->bufEnd)) { in PosixFileDescr__ReaderDesc_ReadBytes()
504 size = ch->bufEnd - r->pos; in PosixFileDescr__ReaderDesc_ReadBytes()
578 ch->bufEnd = w->pos+1; in PosixFileDescr__WriterDesc_WriteByte()
581 ch->bufEnd++; in PosixFileDescr__WriterDesc_WriteByte()
655 e = ch->bufEnd; in PosixFileDescr__WriterDesc_WriteBytes()
670 ch->bufEnd = w->pos + n; in PosixFileDescr__WriterDesc_WriteBytes()
706 ch->bufEnd = w->pos + size; in PosixFileDescr__WriterDesc_WriteBytes()
743 return ch->bufEnd; in PosixFileDescr__ChannelDesc_Length()
820 ch->bufEnd = ch->bufStart; in PosixFileDescr__ChannelDesc_Flush()
[all …]
/dports/security/cryptlib/cryptlib-3.4.3/io/
H A Dstream.c85 stream->bufEnd < 0 || stream->bufEnd >= MAX_BUFFER_SIZE ) in sanityCheck()
104 stream->bufEnd != 0 ) in sanityCheck()
154 stream->bufEnd < 0 || stream->bufEnd > stream->bufSize || \ in sanityCheck()
234 stream->bufEnd = length; in refillStream()
476 localLength = stream->bufEnd; in sread()
487 stream->bufEnd ) ); in sread()
537 stream->bufEnd ) ); in sread()
698 stream->bufEnd = stream->bufPos; in sputc()
720 stream->bufEnd = stream->bufPos; in sputc()
805 stream->bufEnd = stream->bufPos; in swrite()
[all …]
/dports/textproc/sonic/sonic-1.3.0/cargo-crates/librocksdb-sys-6.7.4/lz4/programs/
H A Dutil.h339 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
340 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
342 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList()
345 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList()
346 strncpy(*bufStart + *pos, path, *bufEnd - (*bufStart + *pos)); in UTIL_prepareFileList()
393 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
394 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
396 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList()
399 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList()
400 strncpy(*bufStart + *pos, path, *bufEnd - (*bufStart + *pos)); in UTIL_prepareFileList()
[all …]

12345678910>>...19