Home
last modified time | relevance | path

Searched refs:pexp (Results 1 – 8 of 8) sorted by relevance

/external/e2fsprogs/intl/
Deval-plural.h27 plural_eval (struct expression *pexp, unsigned long int n) in plural_eval() argument
29 switch (pexp->nargs) in plural_eval()
32 switch (pexp->operation) in plural_eval()
37 return pexp->val.num; in plural_eval()
46 unsigned long int arg = plural_eval (pexp->val.args[0], n); in plural_eval()
51 unsigned long int leftarg = plural_eval (pexp->val.args[0], n); in plural_eval()
52 if (pexp->operation == lor) in plural_eval()
53 return leftarg || plural_eval (pexp->val.args[1], n); in plural_eval()
54 else if (pexp->operation == land) in plural_eval()
55 return leftarg && plural_eval (pexp->val.args[1], n); in plural_eval()
[all …]
Dplural.y57 static int yylex (YYSTYPE *lval, const char **pexp);
235 yylex (YYSTYPE *lval, const char **pexp) in yylex() argument
237 const char *exp = *pexp; in yylex()
244 *pexp = exp; in yylex()
371 *pexp = exp; in yylex()
Dplural.c78 static int yylex (YYSTYPE *lval, const char **pexp);
1344 yylex (YYSTYPE *lval, const char **pexp) in yylex() argument
1346 const char *exp = *pexp; in yylex()
1353 *pexp = exp; in yylex()
1480 *pexp = exp; in yylex()
Dplural-exp.h114 extern unsigned long int plural_eval (struct expression *pexp,
/external/eigen/Eigen/src/Core/arch/SSE/
DMathFunctions.h107 Packet4f pexp<Packet4f>(const Packet4f& _x)
172 Packet2d pexp<Packet2d>(const Packet2d& _x)
/external/eigen/test/
Dpacketmath.cpp241 CHECK_CWISE1_IF(internal::packet_traits<Scalar>::HasExp, std::exp, internal::pexp); in packetmath_real()
245 h.store(data2, internal::pexp(h.load(data1))); in packetmath_real()
/external/eigen/Eigen/src/Core/
DGenericPacketMath.h255 Packet pexp(const Packet& a) { using std::exp; return exp(a); } in pexp() function
DFunctors.h427 inline Packet packetOp(const Packet& a) const { return internal::pexp(a); }