Home
last modified time | relevance | path

Searched refs:bytePos (Results 126 – 150 of 221) sorted by relevance

123456789

/dports/textproc/redisearch/RediSearch-2.2.5/src/
H A Dfragmenter.c435 if (curTerm->bytePos < lastByteEnd) { in FragmentList_FragmentizeIter()
447 for (size_t ii = curTerm->bytePos; ii < fragList->docLen && !istoksep(doc[ii]); ++ii, ++len) { in FragmentList_FragmentizeIter()
451 FragmentList_AddMatchingTerm(fragList, curTerm->termId, curTerm->tokPos, doc + curTerm->bytePos, in FragmentList_FragmentizeIter()
454 lastByteEnd = curTerm->bytePos + len; in FragmentList_FragmentizeIter()
494 iter->tmpTerm.bytePos = iter->curByteOffset; in FragmentTermIterator_Next()
H A Dfragmenter.h46 uint32_t bytePos; member
/dports/textproc/redisearch16/RediSearch-1.6.16/src/
H A Dfragmenter.c435 if (curTerm->bytePos < lastByteEnd) { in FragmentList_FragmentizeIter()
447 for (size_t ii = curTerm->bytePos; ii < fragList->docLen && !istoksep(doc[ii]); ++ii, ++len) { in FragmentList_FragmentizeIter()
451 FragmentList_AddMatchingTerm(fragList, curTerm->termId, curTerm->tokPos, doc + curTerm->bytePos, in FragmentList_FragmentizeIter()
454 lastByteEnd = curTerm->bytePos + len; in FragmentList_FragmentizeIter()
494 iter->tmpTerm.bytePos = iter->curByteOffset; in FragmentTermIterator_Next()
H A Dfragmenter.h46 uint32_t bytePos; member
/dports/textproc/redisearch20/RediSearch-2.0.15/src/
H A Dfragmenter.c435 if (curTerm->bytePos < lastByteEnd) { in FragmentList_FragmentizeIter()
447 for (size_t ii = curTerm->bytePos; ii < fragList->docLen && !istoksep(doc[ii]); ++ii, ++len) { in FragmentList_FragmentizeIter()
451 FragmentList_AddMatchingTerm(fragList, curTerm->termId, curTerm->tokPos, doc + curTerm->bytePos, in FragmentList_FragmentizeIter()
454 lastByteEnd = curTerm->bytePos + len; in FragmentList_FragmentizeIter()
494 iter->tmpTerm.bytePos = iter->curByteOffset; in FragmentTermIterator_Next()
H A Dfragmenter.h46 uint32_t bytePos; member
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/core/include/
H A D_SortedVIntList.h23 int32_t bytePos; variable
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/GUI.NET/Debugger/HexBox/
H A DHexBox.cs1894 long bytePos; in GetHexBytePositionInfo()
1905 bytePos = Math.Min(_byteProvider.Length, in GetHexBytePositionInfo()
1914 if (bytePos == _byteProvider.Length) in GetHexBytePositionInfo()
1917 if (bytePos < 0) in GetHexBytePositionInfo()
1926 long bytePos; in GetStringBytePositionInfo()
1950 if (bytePos < 0) in GetStringBytePositionInfo()
2088 Select(bytePos, buffer1Length); in FindLoop()
2092 return bytePos; in FindLoop()
3827 void SetPosition(long bytePos) in SetPosition() argument
3843 if (bytePos != _bytePos) in SetPosition()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/opengl/util/
H A DGLBuffers.java274 …public static final Buffer sliceGLBuffer(final ByteBuffer parent, final int bytePos, final int byt… in sliceGLBuffer() argument
281 parent.position(bytePos); in sliceGLBuffer()
282 parent.limit(bytePos + byteLen); in sliceGLBuffer()
H A DGLPixelBuffer.java613 public Buffer position(final int bytePos) { in position() argument
614 return buffer.position( bytePos / bufferElemSize ); in position()
/dports/security/keepass-plugin-keepassrpc/keepassrpc-1.8.0/KeePassRPC/
H A DBigInteger.cs2701 uint bytePos = bitNum >> 5; // divide by 32 in setBit()
2705 this.data[bytePos] |= mask; in setBit()
2707 if (bytePos >= this.dataLength) in setBit()
2708 this.dataLength = (int)bytePos + 1; in setBit()
2719 uint bytePos = bitNum >> 5; in unsetBit()
2721 if (bytePos < this.dataLength) in unsetBit()
2728 this.data[bytePos] &= mask2; in unsetBit()
2754 uint bytePos = numBits >> 5; in sqrt()
2765 bytePos++; in sqrt()
2767 result.dataLength = (int)bytePos; in sqrt()
[all …]
/dports/lang/seed7/seed7/prg/
H A Dchkbitdata.sd742 bytePosVar := bytePos;
51 writeln("\", " <& bytePos <& ", " <& bitPos <& ")");
63 ignore(gets(testFile, pred(bytePos)));
139 bytePosVar := bytePos;
160 ignore(gets(testFile, pred(bytePos)));
832 bits := peekBitsLsb(stri, bytePos, bitPos, bitsNeeded);
2289 bytePosVar := bytePos;
2298 writeln("\", " <& bytePos <& ", " <& bitPos <& ")");
2310 ignore(gets(testFile, pred(bytePos)));
2386 bytePosVar := bytePos;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Security/Mono.Math/
H A DBigInteger.cs634 uint bytePos = bitNum >> 5; // divide by 32 in TestBit()
638 return ((this.data [bytePos] & mask) != 0); in TestBit()
645 uint bytePos = (uint)bitNum >> 5; // divide by 32 in TestBit()
649 return ((this.data [bytePos] | mask) == this.data [bytePos]); in TestBit()
673 uint bytePos = bitNum >> 5; // divide by 32 in SetBit()
675 if (bytePos < this.length) { in SetBit()
678 this.data [bytePos] |= mask; in SetBit()
680 this.data [bytePos] &= ~mask; in SetBit()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/tnzbase/tscanner/
H A Dtscannerutil.cpp138 int bytePos = i / 8; in copyBWBufferToTRasterGR8() local
140 byte = buffer + bytePos; in copyBWBufferToTRasterGR8()
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/qt/ScintillaEditBase/
H A DPlatQt.cpp476 for (unsigned int bytePos=0; (bytePos<lenChar) && (i<len); bytePos++) { in MeasureWidths() local
493 for (unsigned int bytePos=0; (bytePos<lenChar) && (i<len); bytePos++) { in MeasureWidths() local
/dports/x11-toolkits/scintilla/scintilla/qt/ScintillaEditBase/
H A DPlatQt.cpp514 for (size_t bytePos=0; (bytePos<byteCount) && (i<text.length()); bytePos++) { in MeasureWidths() local
531 for (unsigned int bytePos=0; (bytePos<lenChar) && (i<text.length()); bytePos++) { in MeasureWidths() local
/dports/devel/codequery/codequery-0.24.0/scintilla/qt/ScintillaEditBase/
H A DPlatQt.cpp490 for (unsigned int bytePos=0; (bytePos<byteCount) && (i<len); bytePos++) { in MeasureWidths() local
507 for (unsigned int bytePos=0; (bytePos<lenChar) && (i<len); bytePos++) { in MeasureWidths() local
/dports/editors/textadept/scintilla/qt/ScintillaEditBase/
H A DPlatQt.cpp514 for (size_t bytePos=0; (bytePos<byteCount) && (i<text.length()); bytePos++) { in MeasureWidths() local
531 for (unsigned int bytePos=0; (bytePos<lenChar) && (i<text.length()); bytePos++) { in MeasureWidths() local
/dports/editors/scite/scintilla/qt/ScintillaEditBase/
H A DPlatQt.cpp514 for (size_t bytePos=0; (bytePos<byteCount) && (i<text.length()); bytePos++) { in MeasureWidths() local
531 for (unsigned int bytePos=0; (bytePos<lenChar) && (i<text.length()); bytePos++) { in MeasureWidths() local
/dports/multimedia/vapoursynth/vapoursynth-R54/src/filters/avisource/
H A DAVIReadIndex.h64 void AddChunk(sint64 bytePos, uint32 sizeAndKeyFrameFlag);
/dports/graphics/pstoedit/pstoedit-3.70/src/
H A Dpsimage.cpp246 long bytePos = pos / 8; in getComponent() local
255 if (data[bytePos] & (1 << (7 - bitPos))) { in getComponent()
262 bytePos++; in getComponent()
/dports/emulators/dynamips-community/dynamips-0.2.17/common/
H A Dfs_nvram.c213 u_int bytePos = bitPos >> 3; in uncompress_LZC() local
214 …m_uint32_t symbol = buf[bytePos] | ((m_uint32_t)buf[bytePos + 1] << 8) | ((m_uint32_t)buf[bytePos in uncompress_LZC()
/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/dcmdata/include/dcmtk/dcmdata/libi2d/
H A Di2djpgs.h66 offile_off_t bytePos; member
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Core/
H A DXmlTextReaderImplHelpers.cs48 internal int bytePos; field
86 bytePos = 0; in Clear()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Core/
H A DXmlTextReaderImplHelpers.cs37 internal int bytePos; field
74 bytePos = 0; in Clear()

123456789