Searched refs:lhs (Results 1 - 12 of 12) sorted by relevance

/barrelfish-2018-10-04/usr/bench/rcce/bt/
H A Dsolve_subs.c9 #define lhs(m,n) lhs[(m-1)+5*(n-1)] macro
24 // $ - lhs(i,1,ablock,ia,ja,ka,acell)*
204 void binvcrhs( double lhs[],double c[],double r[] ) { argument
219 pivot = 1.00e0/lhs(1,1);
220 lhs(1,2) = lhs(1,2)*pivot;
221 lhs(1,3) = lhs(1,3)*pivot;
222 lhs(
482 binvrhs( double lhs[],double r[] ) argument
[all...]
H A Dheader.h217 extern void binvcrhs( double lhs[], double c[], double r[] );
218 extern void binvrhs( double lhs[], double r[] );
/barrelfish-2018-10-04/tools/fof/
H A DMakefile16 MAIN = Main.lhs
17 SOURCES = $(wildcard *.lhs)\
18 $(wildcard ./Libc/*.lhs)\
19 $(wildcard ./Libbarrelfish/*.lhs)\
20 $(wildcard ./IL/FoF/*.lhs)\
21 $(wildcard ./IL/Paka/*.lhs)\
22 $(wildcard ./Constructs/*.lhs)
23 TEXS = $(patsubst %.lhs,%.tex,$(SOURCES))
31 .SUFFIXES: .tex .lhs
33 .lhs
[all...]
/barrelfish-2018-10-04/tools/pleco/
H A DMakefile16 MAIN = Fugu.lhs
17 SOURCES = $(wildcard *.lhs)
18 TEXS = $(patsubst %.lhs,%.tex,$(SOURCES))
26 .SUFFIXES: .tex .lhs
28 .lhs.tex:
29 $(LHS2TEX) -o $*.tex $*.lhs
32 rm -f *.aux *.ptb *.toc *.log *.o *.hi $(patsubst %.lhs,%.tex,$(SOURCES))
/barrelfish-2018-10-04/tools/fugu/
H A DMakefile17 MAIN = Fugu.lhs
18 SOURCES = $(wildcard *.lhs)
19 TEXS = $(patsubst %.lhs,%.tex,$(SOURCES))
27 .SUFFIXES: .tex .lhs
29 .lhs.tex:
30 $(LHS2TEX) -o $*.tex $*.lhs
38 rm -f *.aux *.ptb *.toc *.log *.o *.hi $(patsubst %.lhs,%.tex,$(SOURCES))
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Deg_c_mip.c65 static void eq(lhs, rhs)
66 pword lhs, rhs;
68 ec_post_goal(ec_term(ec_did("$=",2), lhs, rhs));
71 static void geq(lhs, rhs)
72 pword lhs, rhs;
74 ec_post_goal(ec_term(ec_did("$>=",2), lhs, rhs));
77 static void leq(lhs, rhs)
78 pword lhs, rhs;
80 ec_post_goal(ec_term(ec_did("$=<",2), lhs, rhs));
90 static pword plus(lhs, rh
[all...]
H A Deg_cc_mip.cc63 static void eq(EC_word lhs, EC_word rhs) argument
65 post_goal(term(EC_functor("$=",2), lhs, rhs));
68 static void geq(EC_word lhs, EC_word rhs) argument
70 post_goal(term(EC_functor("$>=",2), lhs, rhs));
73 static void leq(EC_word lhs, EC_word rhs) argument
75 post_goal(term(EC_functor("$=<",2), lhs, rhs));
/barrelfish-2018-10-04/lib/bulk_transfer/
H A Dhelpers.h54 * @return: -1 lhs lower trust than rhs
56 * +1 lhs higher trust than rhs
58 static inline int bulk_trust_compare(enum bulk_trust_level lhs, argument
61 int l_n = bulk_trust_value(lhs);
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dktime.h100 /* Subtract two ktime_t variables. rem = lhs -rhs: */
101 #define ktime_sub(lhs, rhs) \
102 ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
104 /* Add two ktime_t variables. res = lhs + rhs: */
105 #define ktime_add(lhs, rhs) \
106 ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
168 * @lhs: minuend
173 static inline ktime_t ktime_sub(const ktime_t lhs, const ktime_t rhs) argument
177 res.tv64 = lhs.tv64 - rhs.tv64;
/barrelfish-2018-10-04/lib/libc/net/
H A Dhesiod.c68 char *lhs; /* normally ".ns" */ member in struct:hesiod_p
127 if (ctx->lhs)
128 free(ctx->lhs);
147 if (ctx->lhs)
148 free(ctx->lhs);
193 if (ctx->lhs)
194 len += strlen(ctx->lhs) + ((ctx->lhs[0] != '.') ? 1 : 0);
205 /* Only append lhs if it isn't empty. */
206 if (ctx->lhs
[all...]
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dlocale.cpp731 string_type lhs(__lo1, __hi1);
733 int r = strcoll_l(lhs.c_str(), rhs.c_str(), __l);
783 string_type lhs(__lo1, __hi1);
785 int r = wcscoll_l(lhs.c_str(), rhs.c_str(), __l);
/barrelfish-2018-10-04/usr/eclipseclp/Eplex/
H A Deplex.c4509 double lhs = 0.0, slack; local
4518 lhs += sols[lpd->cp_rmatind2[argpos]] * lpd->cp_rmatval2[argpos];
4523 slack = lpd->cp_rhsx2[row] - lhs;

Completed in 115 milliseconds