- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 2,811 for rint (0.02 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
_src.align(4); final int _netnamep = _src.dec_ndr_long(); type = _src.dec_ndr_long(); final int _remarkp = _src.dec_ndr_long(); permissions = _src.dec_ndr_long(); max_uses = _src.dec_ndr_long(); current_uses = _src.dec_ndr_long(); final int _pathp = _src.dec_ndr_long(); final int _passwordp = _src.dec_ndr_long();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2.java
} @Override int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readSetupWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override int readParametersWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java
private static final int CRC32C_GENERATOR = 0x1EDC6F41; // 0x11EDC6F41 private static final int CRC32C_GENERATOR_FLIPPED = Integer.reverse(CRC32C_GENERATOR); public void testCrc32cByteTable() { // See Hacker's Delight 2nd Edition, Figure 14-7. int[] expected = new int[256]; for (int i = 0; i < expected.length; i++) { int crc = i; for (int j = 7; j >= 0; j--) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWrite.java
*/ package jcifs.smb1.smb1; class SmbComWrite extends ServerMessageBlock { private int fid, count, offset, remaining, off; private byte[] b; SmbComWrite() { command = SMB_COM_WRITE; } SmbComWrite(final int fid, final int offset, final int remaining, final byte[] b, final int off, final int len) { this.fid = fid; this.count = len; this.offset = offset;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashMap.java
void resizeEntries(int newCapacity) { this.entries = Arrays.copyOf(requireEntries(), newCapacity); this.keys = Arrays.copyOf(requireKeys(), newCapacity); this.values = Arrays.copyOf(requireValues(), newCapacity); } @CanIgnoreReturnValue private int resizeTable(int oldMask, int newCapacity, int targetHash, int targetEntryIndex) { Object newTable = CompactHashing.createTable(newCapacity);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 35.7K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java
int hashString_4(int reps) { int dummy = 0; for (int i = 0; i < reps; i++) { dummy += Objects.hashCode(S0, S1, S2, S3); } return dummy; } @Benchmark int hashString_5(int reps) { int dummy = 0; for (int i = 0; i < reps; i++) { dummy += Objects.hashCode(S0, S1, S2, S3, S4); } return dummy; } @Benchmark int hashMixed_5(int reps) { int dummy = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java
void testEncodeVariousCipherCounts(int cipherCount) { int[] ciphers = new int[cipherCount]; for (int i = 0; i < cipherCount; i++) { ciphers[i] = i + 1; } EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, ciphers); int bytesWritten = context.encode(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
api/go1.17.txt
pkg image, method (*CMYK) SetRGBA64(int, int, color.RGBA64) pkg image, method (*Gray) RGBA64At(int, int) color.RGBA64 pkg image, method (*Gray) SetRGBA64(int, int, color.RGBA64) pkg image, method (*Gray16) RGBA64At(int, int) color.RGBA64 pkg image, method (*Gray16) SetRGBA64(int, int, color.RGBA64) pkg image, method (*NRGBA) RGBA64At(int, int) color.RGBA64 pkg image, method (*NRGBA) SetRGBA64(int, int, color.RGBA64)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 18K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Encdec.java
* @throws IOException if an encoding error occurs */ public static int enc_utf8(final String str, final byte[] dst, int di, final int dlim) throws IOException { final int start = di; int ch; final int strlen = str.length(); for (int i = 0; di < dlim && i < strlen; i++) { ch = str.charAt(i); if (ch >= 0x0001 && ch <= 0x007F) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
final int boundarySize = boundary.length; final int limitSize = getBoundaryLimitSize(); if (boundarySize > getBoundaryLimitSize()) { throwTooLongBoundarySizeException(contentType, boundarySize, limitSize); } } protected int getBoundaryLimitSize() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 18.6K bytes - Viewed (0)