code wiki / _hdl_build / nx_lineage_evolution_grade.nx

nx_lineage_evolution_grade.nx

buildroot/runtime/_hdl_build/nx_lineage_evolution_grade.nx

7192 B117 linesdepth 4pulls 4 transitivereach 0 importersview sourcekind tooltopic lineage
docsdependenciesstructsconstsfunctions

about

nx_lineage_evolution_grade.nx -- Analyzes genealogy data to grade evolution based on sovereign unification of fragmentation axes.

dependencies 3 imports · 0 importers

nx_gate_gn.nx nx_gate_base.nx nx_syscalls.nx nx_lineage_evolution_grade.nx

imports: nx_gate_gn.nxnx_gate_base.nxnx_syscalls.nx

imported by: nobody (leaf or entry point)

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

main sys_mmap sys_read_file sys_openat_rd sys_lseek sys_mmap ↻ sys_read sys_close gw sys_write sys_exit lg_field lg_streq lg_cpy gn

structs

none

consts

15const LG_PATH: *u8 = "knowledge/registry/genesis_lineage.tsv"
16const LG_MAX: i64 = 96
17const LG_STR: i64 = 40

functions

19func grow(name: *u8, ok: i64) -> i64 { if ok==1 { gw(" PASS " as *u8) } else { gw(" FAIL " as *u8) } gw(name); gw("
calls 1: gw
21func lg_streq(a: *u8, b: *u8) -> i64 { var i: i64=0; while a[i]!=(0 as u8){ if a[i]!=b[i] { return 0 } i=i+1 } if b[i]!=(0 as u8){ return 0 } return 1 }
called by 1: main
22func lg_cpy(dst: *u8, src: *u8, max: i64) -> i64 { var i: i64=0; while src[i]!=(0 as u8){ if i<max-1 { dst[i]=src[i] } i=i+1 } dst[i]=0 as u8; return 0 }
24func lg_field(line: *u8, ll: i64, idx: i64, out: *u8, outcap: i64) -> i64
35func main(argc: i64, argv: *i64) -> i64