|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 585 (0x249) Types: TextFile Names: »memory.h«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/mf/memory.h« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c6be2784f⟧ »web2c-5.84b.tar.Z« └─⟦5800b1b62⟧ └─⟦this⟧ »src-5.84b/mf/memory.h« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« └─⟦c58930e5c⟧ └─⟦this⟧ »TeX3.14/mf/memory.h«
/* * Global data and data structures. * This file is included via the change file. */ typedef union { struct { halfword RH, LH; } v; struct { halfword junk_space; /* Make B0,B1 overlap LH in memory */ quarterword B0, B1; } u; } twohalves; #define rh v.RH #define lhfield v.LH #define b0 u.B0 #define b1 u.B1 #define b2 u.B2 #define b3 u.B3 typedef struct { struct { quarterword B0; quarterword B1; quarterword B2; quarterword B3; } u; } fourquarters; typedef union { integer cint; twohalves hhfield; fourquarters qqqq; } memoryword;