code wiki / (root) / nx_concentration.nx

nx_concentration.nx

buildroot/runtime/nx_concentration.nx

6671 B117 linesdepth 2pulls 2 transitivereach 0 importersview sourcekind tool
docsdependenciesstructsconstsfunctions

about

nx_concentration.nx -- WHY the capture is POSSIBLE: market concentration. Reads knowledge/anatomy/concentration.txt (CR4 = the top-4-firm market share per sector), lists sectors, flags those at/above the oligopoly line (CR4>=50, the DOJ/FTC scrutiny zone), and shows that the margin/markup capture traced by nx_capture_trace concentrates exactly where the MARKET is concentrated: a few firms with pricing power on the output side and monopsony over farmers and workers on the input side. LIAR-KILLED: every CR4 in [0,100], the threshold discriminates (a high value flags, a low value does not), >=1 grounded source, sectors>=3. Build: _offc/nx_sov_build_run.elf nx_concentration license_tier: ORIGINAL

dependencies 1 imports · 0 importers

nx_syscalls.nx nx_concentration.nx

imports: nx_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 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 ↻ ev_read sys_openat_rd sys_read sys_close gp sys_write ↻ sys_exit ↻ field_count field_k pint flag slen_of gn sys_write ↻ sys_mmap ↻

structs

none

consts

none

functions

10func gp(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 1: main calls 1: sys_write
11func gn(v0: i64) -> i64
called by 1: main calls 2: sys_writesys_mmap
17func ev_read(path: *u8, buf: *u8, cap: i64) -> i64
called by 1: main calls 3: sys_openat_rdsys_readsys_close
23func field_count(line: *u8, ln: i64) -> i64 { var n: i64 = 1; var i: i64 = 0; while i < ln { if line[i] == (124 as u8) { n = n + 1 } i = i + 1 } return n }
called by 1: main
24func field_k(line: *u8, ln: i64, kk: i64, dst: *u8, cap: i64) -> i64
called by 1: main
37func pint(s: *u8) -> i64 { var v: i64 = 0; var i: i64 = 0; while s[i] != (0 as u8) { let c: i64 = s[i] as i64; if c >= 48 { if c <= 57 { v = v * 10 + (c - 48) } } i = i + 1 } return v }
called by 1: main
39func slen_of(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n }
called by 1: main
40func flag(cr4: i64) -> i64 { if cr4 >= 50 { return 1 } return 0 }
called by 1: main
42func main() -> i64