Advertising
advertising
related pastes to tag 'j'
- 2079837 - Original J source code, commente: c j
-
- typedef char C;typedef long I;
- typedef struct a{I t,r,d[3],p[2];}*A; // array: boxed? rank dims contents
- #define P printf // monadic op
- #define R return // dyadic op
- #define V1(f) A f(w)A w;
- #define V2(f) A f(a,w)A a,w;
- #define DO(n,x) {I i=0,_n=(n);for(;i<_n;++i){x;}}
- I *ma(n){R(I*)malloc(n*4);}mv(d,s,n)I *d,*s;{DO(n,d[i]=s[i]);} // alloc, move
- 953943 - Original J source code, commente: c j
-
- typedef char C;typedef long I;
- typedef struct a{I t,r,d[3],p[2];}*A; // array: boxed? rank dims contents
- #define P printf // monadic op
- #define R return // dyadic op
- #define V1(f) A f(w)A w;
- #define V2(f) A f(a,w)A a,w;
- #define DO(n,x) {I i=0,_n=(n);for(;i<_n;++i){x;}}
- I *ma(n){R(I*)malloc(n*4);}mv(d,s,n)I *d,*s;{DO(n,d[i]=s[i]);} // alloc, move
- 891750 - Original J source code, commente: c j
-
- typedef char C;typedef long I;
- typedef struct a{I t,r,d[3],p[2];}*A; // array: boxed? rank dims contents
- #define P printf
- #define R return
- #define V1(f) A f(w)A w; // monadic op
- #define V2(f) A f(a,w)A a,w; // dyadic op
- #define DO(n,x) {I i=0,_n=(n);for(;i<_n;++i){x;}}
- I *ma(n){R(I*)malloc(n*4);}mv(d,s,n)I *d,*s;{DO(n,d[i]=s[i]);} // alloc, move
- 891738 - Original J source code, commente: c j
-
- typedef char C;typedef long I;
- typedef struct a{I t,r,d[3],p[2];}*A; // array: boxed? rank dims contents
- #define P printf // monadic op
- #define R return // dyadic op
- #define V1(f) A f(w)A w;
- #define V2(f) A f(a,w)A a,w;
- #define DO(n,x) {I i=0,_n=(n);for(;i<_n;++i){x;}}
- I *ma(n){R(I*)malloc(n*4);}mv(d,s,n)I *d,*s;{DO(n,d[i]=s[i]);} // alloc, move
- 695828 - Anonymous: jl j
-
- $ grep SYSTEM_SETTING apps/settings_list.c
- #define SYSTEM_SETTING(flags,var,default) \
- SYSTEM_SETTING(NVRAM(4),resume_index,-1),
- SYSTEM_SETTING(NVRAM(4),resume_first_index,0),
- SYSTEM_SETTING(NVRAM(4),resume_offset,-1),
- SYSTEM_SETTING(NVRAM(4),resume_seed,-1),
- SYSTEM_SETTING(NVRAM(4),runtime,0),
- SYSTEM_SETTING(NVRAM(4),topruntime,0),