nx_build_key_identity_gate.nx
buildroot/runtime/nx_build_key_identity_gate.nx
about
Pure action identity checks; actual runner cache behavior requires integration evidence.
dependencies 2 imports · 0 importers
imports: nx_gate_verdict.nxnx_build_key_identity_lib.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 4 | func bkig_len(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 }; return n } called by 1: main |
| 5 | func bkig_eq(a: *u8, b: *u8) -> i64 { var i: i64 = 0; while i < BKI_DIGEST_BYTES { if a[i] != b[i] { return 0 }; i = i + 1 }; return 1 } called by 1: main |
| 6 | func main() -> i64 |