- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 132 for 0xfff3 (0.07 sec)
-
guava-tests/test/com/google/common/hash/Fingerprint2011Test.java
h ^= fingerprint(buf, bufLen); h = remix(h); buf[bufLen++] = getChar(h); int x0 = buf[bufLen - 1] & 0xff; int x1 = buf[bufLen - 2] & 0xff; int x2 = buf[bufLen - 3] & 0xff; int x3 = buf[bufLen / 2] & 0xff; buf[((x0 << 16) + (x1 << 8) + x2) % bufLen] ^= x3; buf[((x1 << 16) + (x2 << 8) + x3) % bufLen] ^= i % 256; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusResponse.java
int readRDataWireFormat ( byte[] src, int srcIndex ) { int start = srcIndex; this.numberOfNames = src[ srcIndex ] & 0xFF; int namesLength = this.numberOfNames * 18; int statsLength = this.rDataLength - namesLength - 1; this.numberOfNames = src[ srcIndex++ ] & 0xFF; // gotta read the mac first so we can populate addressArray with it
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected InetAddress broadcastAddress; protected List<ResolverType> resolverOrder; protected int maximumBufferSize = 0x10000; protected int transactionBufferSize = 0xFFFF - 512; protected int bufferCacheSize = 16; protected int smbListSize = 65435; protected int smbListCount = 200; protected long smbAttributeExpiration = 5000L;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
} int readRDataWireFormat( byte[] src, int srcIndex ) { int start = srcIndex; numberOfNames = src[srcIndex] & 0xFF; int namesLength = numberOfNames * 18; int statsLength = rDataLength - namesLength - 1; numberOfNames = src[srcIndex++] & 0xFF; // gotta read the mac first so we can populate addressArray with it System.arraycopy( src, srcIndex + namesLength, macAddress, 0, 6 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6K bytes - Viewed (0) -
src/archive/tar/strconv.go
// data bytes and treat the value as an unsigned number. var inv byte // 0x00 if positive or zero, 0xff if negative if b[0]&0x40 != 0 { inv = 0xff } var x uint64 for i, c := range b { c ^= inv // Inverts c only if inv is 0xff, otherwise does nothing if i == 0 { c &= 0x7f // Ignore signal bit in first byte } if (x >> 56) > 0 {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 01 14:28:42 UTC 2023 - 9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java
attributeOptions.add(color & 0xff); return this; } public Ansi fgRgb(int color) { return fgRgb(color >> 16, color >> 8, color); } public Ansi fgRgb(int r, int g, int b) { attributeOptions.add(38); attributeOptions.add(2); attributeOptions.add(r & 0xff); attributeOptions.add(g & 0xff); attributeOptions.add(b & 0xff);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 23.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
bufferIndex += 8; this.numberOfLinks = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.deletePending = ( buffer[ bufferIndex++ ] & 0xFF ) > 0; this.directory = ( buffer[ bufferIndex++ ] & 0xFF ) > 0; return bufferIndex - start; } /** * {@inheritDoc} * * @see jcifs.Encodable#size() */ @Override public int size () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
for (int i = 0; i <= 0xff; i++) { assertThat(UnsignedBytes.toString((byte) i)).isEqualTo(Integer.toString(i)); } } public void testToStringWithRadix() { // We can easily afford to test this exhaustively. for (int radix = Character.MIN_RADIX; radix <= Character.MAX_RADIX; radix++) { for (int i = 0; i <= 0xff; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 13.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java
bufferIndex += 8; info.numberOfLinks = readInt4( buffer, bufferIndex ); bufferIndex += 4; info.deletePending = ( buffer[bufferIndex++] & 0xFF ) > 0; info.directory = ( buffer[bufferIndex++] & 0xFF ) > 0; this.info = info; return bufferIndex - start; } int readSmbQueryFileBasicInfoWireFormat( byte[] buffer, int bufferIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.4K bytes - Viewed (0)