Searched defs:exp (Results 151 - 175 of 194) sorted by relevance

12345678

/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtranstst.cpp690 UnicodeString exp("\\u0061\\u0062c\\u0064\\u0065", "");
691 if (s == exp) {
692 logln(UnicodeString("Ok: \"") + exp + "\"");
694 logln(UnicodeString("FAIL: \"") + s + "\", wanted \"" + exp + "\""); local
1325 UnicodeString exp; local
1327 exp = UnicodeString(DATA[i+1], "");
1331 if (exp.length() == 0 || exp == t->getID()) {
1334 exp + "\""); local
1338 t->getID() + "\", exp \""
2243 UnicodeString exp = "Hangul-Latin"; local
2271 UnicodeString exp = "NFD(NFC);Jamo-Latin"; local
2334 UnicodeString exp; local
[all...]
H A Dusettest.cpp273 UnicodeString exp; local
274 exp.append((UChar)0x0000).append("aeeoouu").append((UChar)(0x007a+1)).append((UChar)0xFFFF);
275 expectPairs(set, exp);
586 UnicodeSet exp((UChar32)3,(UChar32)15);
587 if (c == exp) {
590 errln((UnicodeString)"FAIL: c.set(a).add(b) = " + c + ", expect " + exp);
593 exp.set((UChar32)0, (UChar32)2);
594 exp.add((UChar32)16, UnicodeSet::MAX_VALUE);
595 if (c == exp) {
598 errln((UnicodeString)"FAIL: c.complement() = " + c + ", expect " + exp);
1388 const char exp[] = local
[all...]
/external/icu4c/test/cintltst/
H A Dcapitst.c2187 USet *exp = uset_open(0, 0); local
2200 ucol_getContractionsAndExpansions(coll, conts, exp, TRUE, &status);
2209 doSetsTest(tests[i].locale, exp, set, tests[i].inExp, tests[i].outExp, &status);
2210 setLen = uset_toPattern(exp, buffer, setBufferLen, TRUE, &status);
2212 /*log_verbose("Expansions %i: %s\n", uset_getItemCount(exp), aescstrdup(buffer, setLen));*/
2222 log_verbose("Unsafe %i: %s\n", uset_getItemCount(exp), aescstrdup(buffer, setLen));
2233 uset_close(exp);
H A Dccapitst.c1231 "alias[0]=NULL, exp. \"%s\"\n",
1254 "alias[0]=\"%s\", exp. \"%s\"\n",
3187 int32_t exp; member in struct:__anon18394
3215 if(len != fromUnicodeTests[i].exp){
3290 int32_t exp; member in struct:__anon18395
3321 if(len != toUnicodeTests[i].exp){
3696 const uint8_t *exp = expected[i]; local
3703 if(U_FAILURE(errorCode) || length != exp[0] || 0 != memcmp(bytes, exp+1, length)) {
H A Dnucnvtst.c5498 const UChar* exp = expected; local
5514 if(*exp!=*target){
5515 log_err("did not get the expected output. \\u%04X != \\u%04X (got)\n", *exp, *target);
5518 exp++;
5551 const UChar* exp = expected; local
5562 if(*exp!=*target){
5563 log_err("did not get the expected output. \\u%04X != \\u%04X (got)\n", *exp, *target);
5566 exp++;
/external/icu4c/test/intltest/
H A Dcalregts.cpp471 GregorianCalendar *exp = new GregorianCalendar(1997, 3, 1, 0, 0, 0, status); local
472 if (cd != exp->getTime(status))
473 errln(UnicodeString("Fail: Calendar::set broken. Got ") + cd + " Want " + exp->getTime(status));
476 delete exp;
1116 UDate exp = DISAM_date[i/4]; local
1125 "-DOW" + dow + " expect:" + sdf.format(exp, str) +
1127 if (got != exp) {
1130 testCal->setTime(exp, status);
1144 "-DOW" + dow + " expect:" + sdf.format(exp, str) +
1146 if (got != exp) {
[all...]
H A Ddtfmttst.cpp474 int32_t i, j, exp; local
542 for (j = 0, exp = 0; j < COUNT; ++j) {
554 int32_t expBase = exp; // save for later
555 for (i = 0; i < UDAT_FIELD_COUNT; ++i, ++exp) {
562 ctou(EXPECTED[exp]), field);
911 UnicodeString exp("08/13/1997 at 10:42:28 AM ");
913 if (0 != dateString.compareBetween(0, exp.length(), exp, 0, exp.length())) errln((UnicodeString)"FAIL: Expected " + exp);
1846 UDate exp = FAIL; local
[all...]
H A Dnumfmtst.cpp1593 UnicodeString exp("AA*^#,##0.00ZZ", "");
1596 expectPat(fmt, exp);
2100 /*2*/ "f:", // <pattern or '-'> <number> <exp. string>
2101 /*3*/ "fp:", // <pattern or '-'> <number> <exp. string> <exp. number>
2102 /*4*/ "rt:", // <pattern or '-'> <(exp.) number> <(exp.) string>
2103 /*5*/ "p:", // <pattern or '-'> <string> <exp. number>
2105 /*7*/ "pat:", // <pattern or '-'> <exp. toPattern or '-' or 'err'>
2106 /*8*/ "fpc:", // <pattern or '-'> <curr.amt> <exp
2393 expect2(NumberFormat* fmt, const Formattable& n, const UnicodeString& exp, UErrorCode status) argument
2442 expect_rbnf(NumberFormat& fmt, const Formattable& n, const UnicodeString& exp, UBool rt) argument
2478 expect(NumberFormat& fmt, const Formattable& n, const UnicodeString& exp, UBool rt) argument
2516 expect(NumberFormat* fmt, const Formattable& n, const UnicodeString& exp, UErrorCode status) argument
2568 expectPat(DecimalFormat& fmt, const UnicodeString& exp) argument
2574 errln(UnicodeString("FAIL \\"") + pat + "\\", expected \\"" + exp + "\\""); local
[all...]
H A Dtranstst.cpp691 UnicodeString exp("\\u0061\\u0062c\\u0064\\u0065", "");
692 if (s == exp) {
693 logln(UnicodeString("Ok: \"") + exp + "\"");
695 logln(UnicodeString("FAIL: \"") + s + "\", wanted \"" + exp + "\""); local
1326 UnicodeString exp; local
1328 exp = UnicodeString(DATA[i+1], "");
1332 if (exp.length() == 0 || exp == t->getID()) {
1335 exp + "\""); local
1339 t->getID() + "\", exp \""
2244 UnicodeString exp = "Hangul-Latin"; local
2272 UnicodeString exp = "NFD(NFC);Jamo-Latin"; local
2335 UnicodeString exp; local
[all...]
H A Dusettest.cpp273 UnicodeString exp; local
274 exp.append((UChar)0x0000).append("aeeoouu").append((UChar)(0x007a+1)).append((UChar)0xFFFF);
275 expectPairs(set, exp);
586 UnicodeSet exp((UChar32)3,(UChar32)15);
587 if (c == exp) {
590 errln((UnicodeString)"FAIL: c.set(a).add(b) = " + c + ", expect " + exp);
593 exp.set((UChar32)0, (UChar32)2);
594 exp.add((UChar32)16, UnicodeSet::MAX_VALUE);
595 if (c == exp) {
598 errln((UnicodeString)"FAIL: c.complement() = " + c + ", expect " + exp);
1388 const char exp[] = local
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h178 /// double exp(double x);
179 exp, enumerator in enum:llvm::LibFunc::Func
262 /// double frexp(double num, int *exp);
264 /// float frexpf(float num, int *exp);
266 /// long double frexpl(long double num, int *exp);
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp278 Expression exp = create_expression(C); local
279 uint32_t &e = expressionNumbering[exp];
284 Expression exp = create_expression(C); local
285 uint32_t &e = expressionNumbering[exp];
398 Expression exp; local
440 exp = create_expression(I);
443 exp = create_extractvalue_expression(cast<ExtractValueInst>(I));
450 uint32_t& e = expressionNumbering[exp];
471 Expression exp = create_cmp_expression(Opcode, Predicate, LHS, RHS); local
472 uint32_t& e = expressionNumbering[exp];
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js629 return this.exp(e,z);
647 BigInteger.prototype.exp = bnpExp;
1016 function bnPow(e) { return this.exp(e,new NullExp()); }
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js629 return this.exp(e,z);
647 BigInteger.prototype.exp = bnpExp;
1016 function bnPow(e) { return this.exp(e,new NullExp()); }
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js629 return this.exp(e,z);
647 BigInteger.prototype.exp = bnpExp;
1016 function bnPow(e) { return this.exp(e,new NullExp()); }
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.c1031 /* This computes C = exp(A) */
1051 /* exp(-a) where a can be the tiniest number (Ntiny). */
2107 /* calculate the result using exp(ln(lhs)*rhs), which can */
2171 decExpOp(dac, dac, &aset, &status); /* dac=exp(dac) */
2817 Int exp; /* working exponent */ local
2870 /* calculate the ideal (preferred) exponent [floor(exp/2)] */
2923 exp=f->exponent+f->digits; /* adjusted to Hull rules */
2938 if ((exp & 1)==0) { /* even exponent */
2956 exp++; /* e=e+1 */
2998 a->exponent+=exp/
3628 Int exp=dn->exponent; /* local copy */ local
4674 Int exp=lhs->exponent; /* save min(exponents) */ local
4741 Int exp, expunits, exprem; /* work */ local
6242 decUnitCompare(const Unit *a, Int alength, const Unit *b, Int blength, Int exp) argument
6602 Int d, exp; /* work */ local
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccapitst.c1272 "alias[0]=NULL, exp. \"%s\"\n",
1295 "alias[0]=\"%s\", exp. \"%s\"\n",
3226 int32_t exp; member in struct:__anon11046
3254 if(len != fromUnicodeTests[i].exp){
3329 int32_t exp; member in struct:__anon11047
3360 if(len != toUnicodeTests[i].exp){
3735 const uint8_t *exp = expected[i]; local
3742 if(U_FAILURE(errorCode) || length != exp[0] || 0 != memcmp(bytes, exp+1, length)) {
H A Dnucnvtst.c5458 const UChar* exp = expected; local
5474 if(*exp!=*target){
5475 log_err("did not get the expected output. \\u%04X != \\u%04X (got)\n", *exp, *target);
5478 exp++;
5511 const UChar* exp = expected; local
5522 if(*exp!=*target){
5523 log_err("did not get the expected output. \\u%04X != \\u%04X (got)\n", *exp, *target);
5526 exp++;
/external/chromium_org/v8/benchmarks/
H A Dcrypto.js637 return this.exp(e,z);
655 BigInteger.prototype.exp = bnpExp;
1024 function bnPow(e) { return this.exp(e,new NullExp()); }
/external/icu4c/i18n/
H A DdecNumber.c1044 /* This computes C = exp(A) */
1064 /* exp(-a) where a can be the tiniest number (Ntiny). */
2124 /* calculate the result using exp(ln(lhs)*rhs), which can */
2188 decExpOp(dac, dac, &aset, &status); /* dac=exp(dac) */
2836 Int exp; /* working exponent */ local
2889 /* calculate the ideal (preferred) exponent [floor(exp/2)] */
2942 exp=f->exponent+f->digits; /* adjusted to Hull rules */
2957 if ((exp & 1)==0) { /* even exponent */
2975 exp++; /* e=e+1 */
3017 a->exponent+=exp/
3649 Int exp=dn->exponent; /* local copy */ local
4697 Int exp=lhs->exponent; /* save min(exponents) */ local
4764 Int exp, expunits, exprem; /* work */ local
6273 decUnitCompare(const Unit *a, Int alength, const Unit *b, Int blength, Int exp) argument
6633 Int d, exp; /* work */ local
[all...]
/external/qemu/target-i386/
H A Dop_helper.c4265 int fpus, fptag, exp, i; local
4277 exp = EXPD(tmp);
4279 if (exp == 0 && mant == 0) {
4282 } else if (exp == 0 || exp == MAXEXPD
/external/v8/benchmarks/
H A Dcrypto.js637 return this.exp(e,z);
655 BigInteger.prototype.exp = bnpExp;
1024 function bnPow(e) { return this.exp(e,new NullExp()); }
/external/chromium_org/third_party/libxml/src/
H A Dxmlregexp.c6771 * @exp: the expression
6776 xmlExpFree(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp) { argument
6777 if ((exp == NULL) || (exp == forbiddenExp) || (exp == emptyExp))
6779 exp->ref--;
6780 if (exp->ref == 0) {
6784 key = exp->key % ctxt->size;
6785 if (ctxt->table[key] == exp) {
6786 ctxt->table[key] = exp
6818 xmlExpRef(xmlExpNodePtr exp) argument
6927 xmlExpGetLanguageInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**list, int len, int nb) argument
6972 xmlExpGetLanguage(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**langList, int len) argument
6980 xmlExpGetStartInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**list, int len, int nb) argument
7040 xmlExpGetStart(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**tokList, int len) argument
7056 xmlExpIsNillable(xmlExpNodePtr exp) argument
7063 xmlExpStringDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar *str) argument
7185 xmlExpStringDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar *str, int len) argument
7204 xmlExpCheckCard(xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7238 xmlExpDivide(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub, xmlExpNodePtr *mult, xmlExpNodePtr *remain) argument
7299 xmlExpExpDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7753 xmlExpExpDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7787 xmlExpSubsume(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
[all...]
/external/chromium_org/v8/src/
H A Dparser.cc2863 Expression* exp = ParseExpression(true, CHECK_OK); local
2864 next = factory()->NewExpressionStatement(exp);
/external/libxml2/
H A Dxmlregexp.c6771 * @exp: the expression
6776 xmlExpFree(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp) { argument
6777 if ((exp == NULL) || (exp == forbiddenExp) || (exp == emptyExp))
6779 exp->ref--;
6780 if (exp->ref == 0) {
6784 key = exp->key % ctxt->size;
6785 if (ctxt->table[key] == exp) {
6786 ctxt->table[key] = exp
6818 xmlExpRef(xmlExpNodePtr exp) argument
6927 xmlExpGetLanguageInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**list, int len, int nb) argument
6972 xmlExpGetLanguage(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**langList, int len) argument
6980 xmlExpGetStartInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**list, int len, int nb) argument
7040 xmlExpGetStart(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**tokList, int len) argument
7056 xmlExpIsNillable(xmlExpNodePtr exp) argument
7063 xmlExpStringDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar *str) argument
7185 xmlExpStringDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar *str, int len) argument
7204 xmlExpCheckCard(xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7238 xmlExpDivide(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub, xmlExpNodePtr *mult, xmlExpNodePtr *remain) argument
7299 xmlExpExpDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7753 xmlExpExpDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7787 xmlExpSubsume(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
[all...]

Completed in 1051 milliseconds

12345678