search for: _orig

Displaying 2 results from an estimated 2 matches for "_orig".

Did you mean: orig
2017 Aug 31
3
[RFC] Value Range Based Optimization Opportunity in LLVM
...) < 0x10000 ? 3 : \ (uv) < 0x200000 ? 4 : \ (uv) < 0x4000000 ? 5 : \ (uv) < 0x80000000 ? 6 : 7 ) int func(unsigned char *p, bool flag) { unsigned long c = *p; int len; // ... #ifdef _ORIG if(flag) { // ... c = funcReturningArbitraryi64(p); } len = LENGTH(c); #else if(flag) { // ... c = funcReturningArbitraryi64(p); len = LENGTH(c); } else { len = LENGTH(c); } #endif // ... return len; } In this case, we see that creating an else block and rep...
2009 Nov 17
0
Marginal Homogeneity tests for sparse matrixes ?
...ity is indeed compromised (as I suspect it might be), I wasn't able to find an out-of-the-box alternative function to use. A search in google gave me a link to this article: http://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6V8V-45F5P9B-5&_user=1535420&_rdoc=1&_fmt=&_orig=search&_sort=d&_docanchor=&view=c&_searchStrId=1096547725&_rerunOrigin=google&_acct=C000053610&_version=1&_urlVersion=0&_userid=1535420&md5=604554a739739d90ae72b3a60ce81a00 named "Comparing marginal distributions of large, sparse contingency tables"...