Home
last modified time | relevance | path

Searched refs:iBytes (Results 1 – 25 of 357) sorted by relevance

12345678910>>...15

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cdrip/
H A DEncoder.cpp95 int CEncoder::FileWrite(const void *pBuffer, uint32_t iBytes) in FileWrite() argument
100 ssize_t dwBytesWritten = m_file->Write(pBuffer, iBytes); in FileWrite()
116 int CEncoder::WriteStream(const void *pBuffer, uint32_t iBytes) in WriteStream() argument
118 if ((WRITEBUFFER_SIZE - m_dwWriteBufferPointer) > iBytes) in WriteStream()
122 m_dwWriteBufferPointer += iBytes; in WriteStream()
123 return iBytes; in WriteStream()
131 return FileWrite(pBuffer, iBytes); in WriteStream()
146 return iBytes; in WriteStream()
153 return iBytes; in WriteStream()
172 int iBytes = m_impl->Encode(nNumBytesRead, pbtStream); in Encode() local
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.Encoding.CodePages/src/System/Text/
H A DISO2022Encoding.cs986 ushort iBytes = ch; in GetCharsCP5022xJP()
1009 iBytes <<= 8; in GetCharsCP5022xJP()
1038 iBytes = (ushort)(iBytes & 0xff); in GetCharsCP5022xJP()
1042 else if (iBytes >= 0xA1 && iBytes <= 0xDF) in GetCharsCP5022xJP()
1064 if (!buffer.Fallback((byte)(iBytes >> 8), (byte)iBytes)) in GetCharsCP5022xJP()
1307 ushort iBytes = ch; in GetCharsCP50225KR()
1331 iBytes <<= 8; in GetCharsCP50225KR()
1364 if (!buffer.Fallback((byte)(iBytes >> 8), (byte)iBytes)) in GetCharsCP50225KR()
1618 if (!buffer.Fallback((byte)(iBytes >> 8), (byte)(iBytes))) in GetCharsCP52936()
1624 iBytes |= 0x8080; in GetCharsCP52936()
[all …]
H A DDBCSCodePageEncoding.cs803 iBytes |= (*bytes); in GetCharCount()
823 … byte[] byteBuffer = new byte[] { unchecked((byte)(iBytes >> 8)), unchecked((byte)iBytes) }; in GetCharCount()
833 int iBytes = *bytes; in GetCharCount()
845 iBytes <<= 8; in GetCharCount()
884 if (iBytes < 0x100) in GetCharCount()
887 … byteBuffer = new byte[] { unchecked((byte)(iBytes >> 8)), unchecked((byte)iBytes) }; in GetCharCount()
966 iBytes |= (*bytes); in GetChars()
997 int iBytes = *bytes; in GetChars()
1008 iBytes <<= 8; in GetChars()
1046 if (iBytes < 0x100) in GetChars()
[all …]
H A DGB18030Encoding.cs311 ushort iBytes = mapUnicodeToBytes[ch]; in GetBytes()
320 byte byte4 = (byte)((iBytes % 0x0a) + 0x30); in GetBytes()
321 iBytes /= 0x0a; in GetBytes()
322 byte byte3 = (byte)((iBytes % 0x7e) + 0x81); in GetBytes()
323 iBytes /= 0x7e; in GetBytes()
324 byte byte2 = (byte)((iBytes % 0x0a) + 0x30); in GetBytes()
325 iBytes /= 0x0a; in GetBytes()
326 Debug.Assert(iBytes < 0x7e, in GetBytes()
327 …"[GB18030Encoding.GetBytes]Expected iBytes < 0x7e, not 0x" + iBytes.ToString("X2", CultureInfo.Inv… in GetBytes()
328 if (!buffer.AddByte((byte)(iBytes + 0x81), byte2, byte3, byte4)) in GetBytes()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/text/
H A Ddbcscodepageencoding.cs833 iBytes |= (*bytes); in GetCharCount()
852 … byte[] byteBuffer = new byte[] { unchecked((byte)(iBytes >> 8)), unchecked((byte)iBytes) }; in GetCharCount()
862 int iBytes = *bytes; in GetCharCount()
874 iBytes <<= 8; in GetCharCount()
912 if (iBytes < 0x100) in GetCharCount()
915 … byteBuffer = new byte[] { unchecked((byte)(iBytes >> 8)), unchecked((byte)iBytes) }; in GetCharCount()
992 iBytes |= (*bytes); in GetChars()
1022 int iBytes = *bytes; in GetChars()
1033 iBytes <<= 8; in GetChars()
1070 if (iBytes < 0x100) in GetChars()
[all …]
H A Diso2022encoding.cs1049 ushort iBytes = ch; in GetCharsCP5022xJP()
1072 iBytes <<= 8; in GetCharsCP5022xJP()
1101 iBytes = (ushort)(iBytes & 0xff); in GetCharsCP5022xJP()
1105 else if (iBytes >= 0xA1 && iBytes <= 0xDF) in GetCharsCP5022xJP()
1127 if (!buffer.Fallback((byte)(iBytes >> 8), (byte)iBytes)) in GetCharsCP5022xJP()
1373 ushort iBytes = ch; in GetCharsCP50225KR()
1397 iBytes <<= 8; in GetCharsCP50225KR()
1430 if (!buffer.Fallback((byte)(iBytes >> 8), (byte)iBytes)) in GetCharsCP50225KR()
1686 if (!buffer.Fallback((byte)(iBytes>>8), (byte)(iBytes))) in GetCharsCP52936()
1692 iBytes |= 0x8080; in GetCharsCP52936()
[all …]
/dports/security/snort/snort-2.9.18/src/sfutil/
H A Dbitop_funcs.h62 static inline int boInitStaticBITOP(BITOP *BitOp,int iBytes,unsigned char *buf) in boInitStaticBITOP() argument
64 if(iBytes < 1 || !buf || !BitOp) in boInitStaticBITOP()
68 BitOp->uiBitBufferSize = (unsigned int)iBytes; in boInitStaticBITOP()
69 BitOp->uiMaxBits = (unsigned int)(iBytes << 3); in boInitStaticBITOP()
71 memset(buf, 0x00, iBytes); in boInitStaticBITOP()
96 static inline int boInitBITOP(BITOP *BitOp, int iBytes) in boInitBITOP() argument
103 if((iBytes < 1) || (BitOp == NULL)) in boInitBITOP()
118 iSize = iBytes << 3; in boInitBITOP()
120 BitOp->pucBitBuffer = (unsigned char *)calloc(1, iBytes); in boInitBITOP()
126 BitOp->uiBitBufferSize = (unsigned int)iBytes; in boInitBITOP()
/dports/net/storj/storj-1.45.3/vendor/github.com/apache/thrift/lib/delphi/src/
H A DThrift.Serializer.pas129 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
198 var iBytes : Int64;
201 iBytes := Length(input);
202 FStream.Size := iBytes;
203 if iBytes > 0
204 then Move( input[0], FStream.Memory^, iBytes);
/dports/www/fabio/fabio-1.5.14/vendor/github.com/apache/thrift/thrift-da1169d75b15/lib/delphi/src/
H A DThrift.Serializer.pas129 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
198 var iBytes : Int64;
201 iBytes := Length(input);
202 FStream.Size := iBytes;
203 if iBytes > 0
204 then Move( input[0], FStream.Memory^, iBytes);
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/apache/thrift/lib/delphi/src/
H A DThrift.Serializer.pas129 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
198 var iBytes : Int64;
201 iBytes := Length(input);
202 FStream.Size := iBytes;
203 if iBytes > 0
204 then Move( input[0], FStream.Memory^, iBytes);
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/thrift/lib/delphi/src/
H A DThrift.Serializer.pas127 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
203 var iBytes : Int64;
206 iBytes := Length(input);
207 FStream.Size := iBytes;
208 if iBytes > 0
209 then Move( input[0], FStream.Memory^, iBytes);
/dports/devel/py-thrift/thrift-0.14.0/lib/delphi/src/
H A DThrift.Serializer.pas127 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
203 var iBytes : Int64;
206 iBytes := Length(input);
207 FStream.Size := iBytes;
208 if iBytes > 0
209 then Move( input[0], FStream.Memory^, iBytes);
/dports/devel/thrift-c_glib/thrift-0.14.0/lib/delphi/src/
H A DThrift.Serializer.pas127 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
203 var iBytes : Int64;
206 iBytes := Length(input);
207 FStream.Size := iBytes;
208 if iBytes > 0
209 then Move( input[0], FStream.Memory^, iBytes);
/dports/devel/thrift-cpp/thrift-0.14.0/lib/delphi/src/
H A DThrift.Serializer.pas127 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
203 var iBytes : Int64;
206 iBytes := Length(input);
207 FStream.Size := iBytes;
208 if iBytes > 0
209 then Move( input[0], FStream.Memory^, iBytes);
/dports/devel/thrift/thrift-0.14.0/lib/delphi/src/
H A DThrift.Serializer.pas127 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
203 var iBytes : Int64;
206 iBytes := Length(input);
207 FStream.Size := iBytes;
208 if iBytes > 0
209 then Move( input[0], FStream.Memory^, iBytes);
/dports/devel/node-thrift/thrift-0.14.0/lib/delphi/src/
H A DThrift.Serializer.pas127 var iBytes : Int64;
135 iBytes := Length(result);
136 if iBytes > 0
137 then Move( FStream.Memory^, result[0], iBytes);
203 var iBytes : Int64;
206 iBytes := Length(input);
207 FStream.Size := iBytes;
208 if iBytes > 0
209 then Move( input[0], FStream.Memory^, iBytes);
/dports/deskutils/coolreader/coolreader-cr3.2.55/thirdparty_unman/antiword/
H A Dprop0.c251 int iBytes; in vGet0StyleInfo() local
259 if (iBytes < 1) { in vGet0StyleInfo()
272 if (iBytes < 2) { in vGet0StyleInfo()
278 if (iBytes < 3) { in vGet0StyleInfo()
289 if (iBytes < 6) { in vGet0StyleInfo()
295 if (iBytes < 8) { in vGet0StyleInfo()
369 int iBytes; in vGet0FontInfo() local
375 if (iBytes < 2) { in vGet0FontInfo()
388 if (iBytes < 3) { in vGet0FontInfo()
394 if (iBytes < 4) { in vGet0FontInfo()
[all …]
/dports/textproc/antiword/antiword-0.37/
H A Dprop0.c251 int iBytes; in vGet0StyleInfo() local
259 if (iBytes < 1) { in vGet0StyleInfo()
272 if (iBytes < 2) { in vGet0StyleInfo()
278 if (iBytes < 3) { in vGet0StyleInfo()
289 if (iBytes < 6) { in vGet0StyleInfo()
295 if (iBytes < 8) { in vGet0StyleInfo()
369 int iBytes; in vGet0FontInfo() local
375 if (iBytes < 2) { in vGet0FontInfo()
388 if (iBytes < 3) { in vGet0FontInfo()
394 if (iBytes < 4) { in vGet0FontInfo()
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/mingw/stdio/
H A Dscanf.S48 .equ iBytes, entries * sizeof define
66 subq $(iOffset + iBytes), %rsp
67 .seh_stackalloc iOffset + iBytes
101 addq $(iOffset + iBytes), %rsp
123 .set iBytes, entries * sizeof define
140 subl $(iOffset + iBytes), %esp
167 addl $(iOffset + iBytes), %esp
/dports/lang/zig/zig-0.9.0/lib/libc/mingw/stdio/
H A Dscanf.S48 .equ iBytes, entries * sizeof define
66 subq $(iOffset + iBytes), %rsp
67 .seh_stackalloc iOffset + iBytes
101 addq $(iOffset + iBytes), %rsp
123 .set iBytes, entries * sizeof define
140 subl $(iOffset + iBytes), %esp
167 addl $(iOffset + iBytes), %esp
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/vulkan_memory_allocator/tools/VmaDumpVis/
H A DVmaDumpVis.py174 def BytesToStr(iBytes): argument
175 if iBytes < 1024:
176 return "%d B" % iBytes
177 iBytes /= 1024
178 if iBytes < 1024:
179 return "%d KiB" % iBytes
180 iBytes /= 1024
181 if iBytes < 1024:
182 return "%d MiB" % iBytes
183 iBytes /= 1024
[all …]
/dports/finance/moneymanagerex/moneymanagerex-1.2.7/3rd/ctpp/src/functions/
H A DFnSubstring.cpp73 const UINT_32 iBytes = UINT_32(aArguments[0].GetInt()); in Handler() local
78 else { oCDTRetVal = sResult.substr(iOffset, iBytes); } in Handler()
86 const UINT_32 iBytes = UINT_32(aArguments[1].GetInt()); in Handler() local
94 if (iBytes + iOffset > sTMP.size()) { oCDTRetVal = sResult; return 0; } in Handler()
96 sResult.append(sTMP, iBytes + iOffset, STLW::string::npos); in Handler()
/dports/textproc/ctpp2/ctpp2-2.8.3/src/functions/
H A DFnSubstring.cpp73 const UINT_32 iBytes = UINT_32(aArguments[0].GetInt()); in Handler() local
78 else { oCDTRetVal = sResult.substr(iOffset, iBytes); } in Handler()
86 const UINT_32 iBytes = UINT_32(aArguments[1].GetInt()); in Handler() local
94 if (iBytes + iOffset > sTMP.size()) { oCDTRetVal = sResult; return 0; } in Handler()
96 sResult.append(sTMP, iBytes + iOffset, STLW::string::npos); in Handler()
/dports/security/tpm-tools/tpm-tools-1.3.9.1_1/src/tpm_mgmt/
H A Dtpm_createek.c92 size_t iBytes; in readData() local
105 iBytes = fread( *buffer, 1, bytesToRead, infile ); in readData()
106 if ( iBytes < bytesToRead ) { in readData()
110 } else if ( (iBytes = fread( &eofile, 1, 1, infile )) ) { in readData()
127 size_t iBytes; in writeData() local
138 iBytes = fwrite( buffer, 1, bytesToWrite, outfile); in writeData()
139 if ( iBytes != bytesToWrite ) { in writeData()
145 logDebug(_("%zd bytes written on file %s.\n"), iBytes, out_filename); in writeData()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxfa/app/
H A Dxfa_checksum.cpp32 int32_t iBytes, in Base64EncodePiece() argument
36 if (iBytes > 1) { in Base64EncodePiece()
40 if (iBytes > 1) { in Base64EncodePiece()
42 if (iBytes > 2) { in Base64EncodePiece()
46 if (iBytes > 2) { in Base64EncodePiece()
69 int32_t iBytes = 3; in Base64EncodeA() local
83 iBytes = iSrcLen; in Base64EncodeA()
86 Base64EncodePiece(srcData, iBytes, pDstEnd); in Base64EncodeA()

12345678910>>...15