- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for int32_t (0.18 sec)
-
api/go1.14.txt
pkg syscall (freebsd-arm64), type RtMsghdr struct pkg syscall (freebsd-arm64), type RtMsghdr struct, Addrs int32 pkg syscall (freebsd-arm64), type RtMsghdr struct, Errno int32 pkg syscall (freebsd-arm64), type RtMsghdr struct, Flags int32 pkg syscall (freebsd-arm64), type RtMsghdr struct, Fmask int32 pkg syscall (freebsd-arm64), type RtMsghdr struct, Index uint16 pkg syscall (freebsd-arm64), type RtMsghdr struct, Inits uint64
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.20.txt
pkg syscall (freebsd-riscv64), type RtMsghdr struct #53466 pkg syscall (freebsd-riscv64), type RtMsghdr struct, Addrs int32 #53466 pkg syscall (freebsd-riscv64), type RtMsghdr struct, Errno int32 #53466 pkg syscall (freebsd-riscv64), type RtMsghdr struct, Flags int32 #53466 pkg syscall (freebsd-riscv64), type RtMsghdr struct, Fmask int32 #53466 pkg syscall (freebsd-riscv64), type RtMsghdr struct, Index uint16 #53466
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 21:23:32 UTC 2023 - 602.6K bytes - Viewed (0) -
RELEASE.md
tf.TensorSpec([], dtypes.int32) ]) def _remote_multiply(a, b): return tf.math.multiply(a, b) server.register("multiply", _remote_multiply) ``` * Example usage to create client: `python client = tf.distribute.experimental.rpc.Client.create("grpc", address) a = tf.constant(2, dtype=tf.int32) b = tf.constant(3, dtype=tf.int32)
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (1) -
lib/fips140/v1.0.0.zip
i := 0; i < len(x); i++ { x[i] = x[i]&xmask | y[i]&ymask } } // ConstantTimeLessOrEq returns 1 if x <= y and 0 otherwise. // Its behavior is undefined if x or y are negative or > 2**31 - 1. func ConstantTimeLessOrEq(x, y int) int { x32 := int32(x) y32 := int32(y) return int(((x32 - y32 - 1) >> 31) & 1) } golang.org/fips140@v1.0.0/fips140/v1.0.0/subtle/xor.go // Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)