Home
last modified time | relevance | path

Searched refs:newByte (Results 1 – 25 of 109) sorted by relevance

12345

/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCOMPOUND_TEXT_Decoder.java191 if ((newByte >= 0x00 && newByte <= 0x1F) || // C0 in normalBytes()
192 (newByte >= 0x80 && newByte <= 0x9F)) { // C1 in normalBytes()
226 if (newByte >= 0x20 && newByte <= 0x7F) { in normalBytes()
330 if (newByte >= 0x20 && newByte <= 0x2F) { in escapeSequenceOther()
335 } else if (newByte >= 0x30 && newByte <= 0x7E) { in escapeSequenceOther()
350 if (newByte >= 0x30 && newByte <= 0x3F) { in controlSequence()
357 } else if (newByte >= 0x20 && newByte <= 0x2F) { in controlSequence()
361 } else if (newByte >= 0x40 && newByte <= 0x7E) { in controlSequence()
373 if (newByte >= 0x20 && newByte <= 0x2F) { in versionSequence()
490 if (newByte >= 0x30 && newByte <= 0x34) { in charsetNonStandard()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCOMPOUND_TEXT_Decoder.java191 if ((newByte >= 0x00 && newByte <= 0x1F) || // C0 in normalBytes()
192 (newByte >= 0x80 && newByte <= 0x9F)) { // C1 in normalBytes()
226 if (newByte >= 0x20 && newByte <= 0x7F) { in normalBytes()
330 if (newByte >= 0x20 && newByte <= 0x2F) { in escapeSequenceOther()
335 } else if (newByte >= 0x30 && newByte <= 0x7E) { in escapeSequenceOther()
350 if (newByte >= 0x30 && newByte <= 0x3F) { in controlSequence()
357 } else if (newByte >= 0x20 && newByte <= 0x2F) { in controlSequence()
361 } else if (newByte >= 0x40 && newByte <= 0x7E) { in controlSequence()
373 if (newByte >= 0x20 && newByte <= 0x2F) { in versionSequence()
490 if (newByte >= 0x30 && newByte <= 0x34) { in charsetNonStandard()
[all …]
/dports/net/liveMedia/live/liveMedia/
H A DMPEGVideoStreamParser.hh85 unsigned char newByte = get1Byte(); in saveToNextCode() local
86 curWord = (curWord<<8)|newByte; in saveToNextCode()
100 unsigned char newByte = get1Byte(); in skipToNextCode() local
101 curWord = (curWord<<8)|newByte; in skipToNextCode()
/dports/textproc/p5-PDF-Builder/PDF-Builder-3.023/lib/PDF/Builder/Resource/XObject/Image/
H A DTIFF_GT.pm612 my ($oldByte, $newByte);
617 $newByte = 0;
618 if ($oldByte & 0x01) { $newByte |= 0x80; }
619 if ($oldByte & 0x02) { $newByte |= 0x40; }
620 if ($oldByte & 0x04) { $newByte |= 0x20; }
621 if ($oldByte & 0x08) { $newByte |= 0x10; }
622 if ($oldByte & 0x10) { $newByte |= 0x08; }
623 if ($oldByte & 0x20) { $newByte |= 0x04; }
624 if ($oldByte & 0x40) { $newByte |= 0x02; }
625 if ($oldByte & 0x80) { $newByte |= 0x01; }
[all …]
/dports/www/sogo/SOGo-5.4.0/ActiveSync/
H A DNSString+ActiveSync.m366 char newByte;
369 newByte = (uint8_t) byteChar - 48;
371 newByte = (uint8_t) byteChar - 55;
373 newByte = (uint8_t) byteChar - 87;
375 newByte = -1;
377 return newByte;
387 char newByte;
393 newByte = [self _decodeHexByte: (char) byteChar];
394 if (newByte == -1)
397 *byte = newByte;
/dports/www/sogo-activesync/SOGo-5.4.0/ActiveSync/
H A DNSString+ActiveSync.m366 char newByte;
369 newByte = (uint8_t) byteChar - 48;
371 newByte = (uint8_t) byteChar - 55;
373 newByte = (uint8_t) byteChar - 87;
375 newByte = -1;
377 return newByte;
387 char newByte;
393 newByte = [self _decodeHexByte: (char) byteChar];
394 if (newByte == -1)
397 *byte = newByte;
/dports/misc/libemos/libemos-4.5.9-Source/interpolation/
H A Dmakemap.c294 int oldByte, oldBit, newByte, newBit, bitNumber; in copyRow() local
305 newByte = bitNumber / 8; in copyRow()
311 buffer[newByte] &= (char) ~mask; in copyRow()
312 buffer[newByte] |= (char) newValue; in copyRow()
315 buffer[newByte] |= newValue; in copyRow()
/dports/audio/faad/faad2-c626366/plugins/QCDMp4/
H A Daac2mp4.cpp185 u_int8_t newByte; in LoadNextAacFrame() local
192 if (fread(&newByte, 1, 1, inFile) != 1) { in LoadNextAacFrame()
195 pBuf[i] |= (newByte >> downShift); in LoadNextAacFrame()
196 pBuf[i+1] = (newByte << upShift); in LoadNextAacFrame()
/dports/net/rclone/rclone-1.57.0/vendor/github.com/jcmturner/gokrb5/crypto/rfc3961/
H A Dnfold.go104 var newByte byte
105 newByte = byte(v<<(8-(pBit+1))) | oldByte
106 (*b)[pByte] = newByte
/dports/devel/git-lfs/git-lfs-3.0.2/vendor/github.com/jcmturner/gokrb5/v8/crypto/rfc3961/
H A Dnfold.go104 var newByte byte
105 newByte = byte(v<<(8-(pBit+1))) | oldByte
106 (*b)[pByte] = newByte
/dports/net/rclone/rclone-1.57.0/vendor/github.com/jcmturner/gokrb5/v8/crypto/rfc3961/
H A Dnfold.go104 var newByte byte
105 newByte = byte(v<<(8-(pBit+1))) | oldByte
106 (*b)[pByte] = newByte
/dports/security/vault/vault-1.8.2/vendor/github.com/jcmturner/gokrb5/v8/crypto/rfc3961/
H A Dnfold.go125 var newByte byte
126 newByte = byte(v<<(8-(pBit+1))) | oldByte
127 (*b)[pByte] = newByte
/dports/security/vault/vault-1.8.2/vendor/github.com/jcmturner/gokrb5/crypto/rfc3961/
H A Dnfold.go125 var newByte byte
126 newByte = byte(v<<(8-(pBit+1))) | oldByte
127 (*b)[pByte] = newByte
/dports/sysutils/helmfile/vault-f6547fa8e820/vendor/github.com/jcmturner/gokrb5/v8/crypto/rfc3961/
H A Dnfold.go125 var newByte byte
126 newByte = byte(v<<(8-(pBit+1))) | oldByte
127 (*b)[pByte] = newByte
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-auth-kerberos/vendor/github.com/jcmturner/gokrb5/v8/crypto/rfc3961/
H A Dnfold.go125 var newByte byte
126 newByte = byte(v<<(8-(pBit+1))) | oldByte
127 (*b)[pByte] = newByte
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/jcmturner/gokrb5/crypto/rfc3961/
H A Dnfold.go104 var newByte byte
105 newByte = byte(v<<(8-(pBit+1))) | oldByte
106 (*b)[pByte] = newByte
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/jcmturner/gokrb5/v8/crypto/rfc3961/
H A Dnfold.go104 var newByte byte
105 newByte = byte(v<<(8-(pBit+1))) | oldByte
106 (*b)[pByte] = newByte
/dports/net/goreplay/goreplay-1.2.0/vendor/gopkg.in/jcmturner/gokrb5.v7/gokrb5-7.5.0/v8/crypto/rfc3961/
H A Dnfold.go125 var newByte byte
126 newByte = byte(v<<(8-(pBit+1))) | oldByte
127 (*b)[pByte] = newByte
/dports/net/goreplay/goreplay-1.2.0/vendor/gopkg.in/jcmturner/gokrb5.v7/gokrb5-7.5.0/crypto/rfc3961/
H A Dnfold.go125 var newByte byte
126 newByte = byte(v<<(8-(pBit+1))) | oldByte
127 (*b)[pByte] = newByte
/dports/net/goreplay/goreplay-1.2.0/vendor/gopkg.in/jcmturner/gokrb5.v7/crypto/rfc3961/
H A Dnfold.go125 var newByte byte
126 newByte = byte(v<<(8-(pBit+1))) | oldByte
127 (*b)[pByte] = newByte
/dports/www/sogo2/SOGo-2.4.1/ActiveSync/
H A DNSString+ActiveSync.m369 char newByte;
372 newByte = (uint8_t) byteChar - 48;
374 newByte = (uint8_t) byteChar - 55;
376 newByte = (uint8_t) byteChar - 87;
378 newByte = -1;
380 return newByte;
390 char newByte;
396 newByte = [self _decodeHexByte: (char) byteChar];
397 if (newByte == -1)
400 *byte = newByte;
/dports/graphics/pinta/pinta-1.7.1/Pinta.Tools/Tools/
H A DRecolorTool.cs224 private byte AdjustColorByte (byte oldByte, byte newByte, byte basisByte) in AdjustColorByte() argument
226 if (oldByte > newByte) in AdjustColorByte()
227 return Utility.ClampToByte (basisByte - (oldByte - newByte)); in AdjustColorByte()
229 return Utility.ClampToByte (basisByte + (newByte - oldByte)); in AdjustColorByte()
/dports/lang/mono/mono-5.10.1.57/mcs/class/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Encryption/
H A DPkzipClassic.cs306 byte newByte = (byte)(inputBuffer[i] ^ TransformByte()); in TransformBlock()
307 outputBuffer[outputOffset++] = newByte; in TransformBlock()
308 UpdateKeys(newByte); in TransformBlock()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Shared/Encryption/
H A DPkzipClassic.cs268 var newByte = (byte)(inputBuffer[i] ^ TransformByte()); in TransformBlock()
269 outputBuffer[outputOffset++] = newByte; in TransformBlock()
270 UpdateKeys(newByte); in TransformBlock()
/dports/devel/eric6/eric6-21.11/eric/eric6/DebugClients/Python/
H A DAsyncFile.py198 newByte = self.sock.recv(1)
199 data += newByte
200 if newByte == b'\n':

12345