- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 102 for 0x7fffffffL (0.04 sec)
-
src/archive/zip/struct.go
fields. The 64 bit fields will always contain the correct value and for normal archives both fields will be the same. For files requiring the ZIP64 format the 32 bit fields will be 0xffffffff and the 64 bit fields must be used instead. [ZIP specification]: https://support.pkware.com/pkzip/appnote */ package zip import ( "io/fs" "path" "time" ) // Compression methods.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
: targetName.toUpperCase().getBytes(getOEMEncoding()); size += targetBytes.length; } else { flags &= 0xffffffff ^ NTLMSSP_REQUEST_TARGET; } } if (targetInformationBytes != null) { size += targetInformationBytes.length; flags |= NTLMSSP_NEGOTIATE_TARGET_INFO;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
Hexdump.toHexChars(0, dst1, 0, 4); assertEquals("0000", new String(dst1)); // Test with all F's char[] dst2 = new char[8]; Hexdump.toHexChars(0xFFFFFFFF, dst2, 0, 8); assertEquals("FFFFFFFF", new String(dst2)); // Test partial buffer update char[] dst3 = new char[6]; java.util.Arrays.fill(dst3, 'Z');
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
assertBytes(0xe0 or 31, 154, 10) } @Test fun max31BitValue() { hpackWriter!!.writeInt(0x7fffffff, 31, 0) assertBytes(31, 224, 255, 255, 255, 7) assertThat(newReader(byteStream(224, 255, 255, 255, 7)).readInt(31, 31)) .isEqualTo(0x7fffffff) } @Test fun prefixMask() { hpackWriter!!.writeInt(31, 31, 0) assertBytes(31, 0)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 38.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
buffer[bufferIndex + 2] = (byte) 0xFF; // Set fields with negative values (should be treated as unsigned) SMBUtil.writeInt4(-1, buffer, bufferIndex + 3); // Should be read as 0xFFFFFFFF SMBUtil.writeInt4(-100, buffer, bufferIndex + 7); SMBUtil.writeInt4(-1000, buffer, bufferIndex + 11); SMBUtil.writeInt4(0, buffer, bufferIndex + 15);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
this.sub_authority = new int[this.sub_authority_count]; for (int i = 0; i < this.sub_authority_count; i++) { this.sub_authority[i] = (int) (Long.parseLong(st.nextToken()) & 0xFFFFFFFFL); } } } /** * Construct a SID from a domain SID and an RID * (relative identifier). For example, a domain SID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
coercedHash |= 0xe0000000; // Fixup to avoid some "illegal" values. Currently the only potential // illegal value is 255.255.255.255. if (coercedHash == 0xffffffff) { coercedHash = 0xfffffffe; } return getInet4Address(Ints.toByteArray(coercedHash)); } /** * Returns an integer representing an IPv4 address regardless of whether the supplied argument is
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
final SmbComWriteResponse rsp = new SmbComWriteResponse(th.getConfig()); th.send(new SmbComWrite(th.getConfig(), fh.getFid(), (int) (newLength & 0xFFFFFFFFL), 0, this.tmp, 0, 0), rsp, RequestParam.NO_RETRY); } } catch (final CIFSException e) { throw SmbException.wrap(e); } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
TST $0xfffffff0, LR // TST $4294967280, R30 // df6f7cf2 TSTW R10@>21, R2 // 5f54ca6a TST R17<<11, R24 // 1f2f11ea ANDSW $0x80000007, R9, ZR // ANDSW $2147483655, R9, ZR // 3f0d0172 ANDS $0xfffffff0, LR, ZR // ANDS $4294967280, R30, ZR // df6f7cf2
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
* primitive utilities</a>. * * @author Louis Wasserman * @since 11.0 */ @GwtCompatible public final class UnsignedInts { static final long INT_MASK = 0xffffffffL; private UnsignedInts() {} static int flip(int value) { return value ^ Integer.MIN_VALUE; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Feb 09 16:22:33 UTC 2025 - 13.8K bytes - Viewed (0)