- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for 32764 (1.61 sec)
-
src/cmd/asm/internal/asm/testdata/loong64enc1.s
// LDPTR.{W/D} and STPTR.{W/D} instructions MOVWP R5, -32768(R4) // 85008025 MOVWP R5, 32764(R4) // 85fc7f25 MOVWP R5, 32(R4) // 85200025 MOVWP R5, 4(R4) // 85040025 MOVWP R5, (R4) // 85000025 MOVVP R5, -32768(R4) // 85008027 MOVVP R5, 32764(R4) // 85fc7f27 MOVVP R5, 32(R4) // 85200027 MOVVP R5, 4(R4) // 85040027 MOVVP R5, (R4) // 85000027 MOVWP -32768(R5), R4 // a4008024 MOVWP 32764(R5), R4 // a4fc7f24
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Sep 04 19:24:25 UTC 2025 - 35.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/s390x.s
CMP R1, R2 // b9200012 CMP R3, $32767 // a73f7fff CMP R3, $32768 // c23c00008000 CMP R3, $-2147483648 // c23c80000000 CMPU R4, R5 // b9210045 CMPU R6, $4294967295 // c26effffffff CMPW R7, R8 // 1978 CMPW R9, $-32768 // a79e8000 CMPW R9, $-32769 // c29dffff7fff CMPW R9, $-2147483648 // c29d80000000
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jul 30 19:29:15 UTC 2025 - 22.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/ppc64.s
ADD $65536, R6 // 3cc60001 ADD $65536, R6, R7 // 3ce60001 ADD $-32767, R5 // 38a58001 ADD $-32767, R5, R4 // 38858001 ADD $-32768, R6 // 38c68000 ADD $-32768, R6, R5 // 38a68000 // Hex constant 0xFFFFFFFE00000000
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 21 18:27:17 UTC 2024 - 51.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java
@ParameterizedTest @DisplayName("Test readDataWireFormat with various share types") @CsvSource({ "0, SHARE, Normal share", "1, PRINTER, Printer share", "3, IPC$, IPC share", "32768, HIDDEN, Hidden share", // 0x8000 - hidden flag in lower 16 bits "32769, HIDDENP, Hidden printer" // 0x8001 - hidden flag + printer type }) void testReadDataWireFormatWithVariousShareTypes(int type, String name, String remark) throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.2K bytes - Viewed (0) -
api/go1.15.txt
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT = 256 pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT ideal-int pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 32768 pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE ideal-int pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 8192 pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER ideal-int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Jul 17 02:15:01 UTC 2020 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java
command = SMB_COM_NT_TRANSACT; function = NT_TRANSACT_QUERY_SECURITY_DESC; setupCount = 0; totalDataCount = 0; maxParameterCount = 4; maxDataCount = 32768; maxSetupCount = (byte) 0x00; } @Override int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.6K bytes - Viewed (0) -
src/builtin/builtin.go
type uint64 uint64 // int8 is the set of all signed 8-bit integers. // Range: -128 through 127. type int8 int8 // int16 is the set of all signed 16-bit integers. // Range: -32768 through 32767. type int16 int16 // int32 is the set of all signed 32-bit integers. // Range: -2147483648 through 2147483647. type int32 int32 // int64 is the set of all signed 64-bit integers.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Dec 30 23:59:23 UTC 2024 - 12.8K bytes - Viewed (0) -
utils/utils_test.go
tests := []struct { name string in interface{} out string }{ {"int", math.MaxInt64, "9223372036854775807"}, {"int8", int8(math.MaxInt8), "127"}, {"int16", int16(math.MaxInt16), "32767"}, {"int32", int32(math.MaxInt32), "2147483647"}, {"int64", int64(math.MaxInt64), "9223372036854775807"}, {"uint", uint(math.MaxUint64), "18446744073709551615"}, {"uint8", uint8(math.MaxUint8), "255"},
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Aug 22 11:03:42 UTC 2024 - 4.9K bytes - Viewed (0) -
tests/lru_test.go
} } func BenchmarkLRU_Rand_NoExpire(b *testing.B) { l := lru.NewLRU[int64, int64](8192, nil, 0) trace := make([]int64, b.N*2) for i := 0; i < b.N*2; i++ { trace[i] = getRand(b) % 32768 } b.ResetTimer() var hit, miss int for i := 0; i < 2*b.N; i++ { if i%2 == 0 { l.Add(trace[i], trace[i]) } else { if _, ok := l.Get(trace[i]); ok { hit++ } else {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
SMBUtil.writeInt4(50, buffer, 0); SMBUtil.writeInt4(32768, buffer, 4); SMBUtil.writeInt4(1638400, buffer, 8); int bytesDecoded = response.decode(buffer, 0, 12); assertEquals(12, bytesDecoded); assertEquals(50, response.getChunksWritten()); assertEquals(32768, response.getChunkBytesWritten());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0)