code wiki / (root) / nx_arousal_skin_gate.nx

nx_arousal_skin_gate.nx

buildroot/runtime/nx_arousal_skin_gate.nx

11260 B166 linesdepth 3pulls 3 transitivereach 0 importersview sourcekind gate/prooftopic arousal
docsdependenciesstructsconstsfunctions

about

nx_arousal_skin_gate.nx -- liar-killed GATE for the skin optics AND the LOOK organ. Load-bearing teeth: SPECTRAL R preserved while G/B collapse -> R:G RISES with perfusion (why flush reads red) PROPAGATION different sites at the SAME perfusion give DIFFERENT colour AND different onset time TEMPORAL onset x must be STRICTLY INCREASING across surface sites -- the staircase you can see in the render is asserted here as numbers, from the same pass that drew it MORPHOLOGY nipple apparent projection peaks EARLY (myotonic ~6s) then is masked by slow areolar engorgement -- non-monotonic, like systolic peaking at plateau rather than orgasm BEER-LAMBERT no channel is ever destroyed (regression guard against linear subtraction) Tooth total is DERIVED; G_MIN_TEETH is a floor so a deleted tooth trips RED. usage: nx_arousal_skin_gate [skin_elf] [render_elf] license_tier: ORIGINAL expect_exit: 0

dependencies 2 imports · 0 importers

nx_syscalls.nx nx_gate_verdict.nx nx_arousal_skin_gate.nx

imports: nx_syscalls.nxnx_gate_verdict.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main g_pick g_exists sys_openat_rd sys_close g_puts sys_write gv_ctr sys_mmap nxa_die sys_write ↻ sys_exit nxa_lock_take nxa_lock_addr sys_write ↻ nxa_lock_give nxa_lock_addr ↻ nxa_report_overrun sys_write ↻ nxa_dump_printable sys_write ↻ nxa_dump_sizes sys_write ↻ sys_mmap ↻ g_run sys_mmap ↻ sys_pipe2 sys_fork sys_dup3 sys_close ↻ sys_execve sys_exit ↻ sys_read sys_wait4 gv_subjects gv_puts sys_write ↻ gv_num sys_mmap ↻ sys_write ↻

structs

none

consts

18const G_OUTCAP: i64 = 16384
19const G_MIN_TEETH: i64 = 24

functions

21func g_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
called by 2: g_boolmain calls 1: sys_write
22func g_putn(v: i64) -> i64
called by 1: g_bool calls 3: sys_writesys_mmapsys_munmap
33func g_slen(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n }
called by 1: g_has
36func g_bool(name: *u8, got: i64, want: i64, passp: *i64) -> i64
called by 1: main calls 3: g_putsg_putngv_check
41func g_has(hay: *u8, hn: i64, needle: *u8) -> i64
called by 1: main calls 1: g_slen
48func g_run(elf: *u8, a1: *u8, a2: *u8, a3: *u8, a4: *u8, a5: *u8, out: *u8, cap: i64) -> i64
80func g_exists(p: *u8) -> i64 { let fd: i64 = sys_openat_rd(p); if fd < 0 { return 0 } sys_close(fd); return 1 }
called by 1: g_pick calls 2: sys_openat_rdsys_close
81func g_pick(a: *u8, b: *u8, c: *u8) -> *u8 { if g_exists(a) == 1 { return a } if g_exists(b) == 1 { return b } return c }
called by 1: main calls 1: g_exists
83func main(argc: i64, argv: *i64) -> i64