Searched defs:s3 (Results 126 - 150 of 213) sorted by relevance

123456789

/external/llvm/unittests/ADT/
H A DHashingTest.cpp351 const size_t s1 = 1024, s2 = 8888, s3 = 9000000; local
353 const size_t arr2[] = { s1, s2, s3 };
355 hash_combine(s1, s2, s3));
356 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(s1, s2, d3));
357 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(s1, d2, s3));
358 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(d1, s2, s3));
359 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(d1, d2, s3));
[all...]
/external/openssl/ssl/
H A Ds3_lib.c2972 return (s->s3->rrec.type == SSL3_RT_APPLICATION_DATA) ? s->s3->rrec.length : 0;
2977 SSL3_STATE *s3; local
2979 if ((s3=OPENSSL_malloc(sizeof *s3)) == NULL) goto err;
2980 memset(s3,0,sizeof *s3);
2981 memset(s3->rrec.seq_num,0,sizeof(s3->rrec.seq_num));
2982 memset(s3
[all...]
/external/skia/gm/
H A Ddegeneratesegments.cpp330 unsigned s3 = (rand.nextU() >> 16) % numSegments; local
336 pt = gSegmentFunctions[s3](path, pt);
376 canvas->drawText(gSegmentNames[s3],
377 strlen(gSegmentNames[s3]),
/external/skia/src/effects/
H A DSkBicubicImageFilter.cpp157 SkPMColor s3 = cubicBlend(fCoefficients, fractx, s03, s13, s23, s33); local
158 *dptr++ = cubicBlend(fCoefficients, fracty, s0, s1, s2, s3);
/external/tremolo/Tremolo/
H A Dmdct.c109 REG_TYPE s3 = x[2] - x[3]; local
115 x[0] = s5 + s3;
117 x[2] = s5 - s3;
129 REG_TYPE s0, s1, s2, s3; local
134 s3 = x[ 3] - x[ 2]; x[11] = x[ 3] + x[2];
136 x[ 1] = MULT31((s2 + s3) , cPI2_8);
138 x[ 3] = MULT31((s3 - s2) , cPI2_8);
142 s3 = x[14] - x[15]; x[14] += x[15];
146 x[ 6] = s3; x[ 7] = s0;
156 REG_TYPE s0, s1, s2, s3; local
201 REG_TYPE s0, s1, s2, s3; local
279 REG_TYPE s0, s1, s2, s3; local
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dfft.c281 REAL s1, s2, s3, sd, bb, bj, bk, bjm, bjp, bkm, bkp; local
299 k3 = c2 = c3 = s2 = s3 = 0.0;
534 Re [k3] = akm * c3 - bkm * s3;
537 Im [k3] = akm * s3 + bkm * c3;
547 /* values of c2, c3, s2, s3 that will get used next time */
551 s3 = c2 * s1 + s2 * c1;
/external/ceres-solver/include/ceres/
H A Drotation.h457 const T s3 = sin(pitch); local
460 R(0, 1) = -s1*c3 + c1*s2*s3;
461 R(0, 2) = s1*s3 + c1*s2*c3;
464 R(1, 1) = c1*c3 + s1*s2*s3;
465 R(1, 2) = -c1*s3 + s1*s2*c3;
468 R(2, 1) = c2*s3;
/external/chromium_org/extensions/browser/
H A Dextension_function.cc280 const std::string& s3) {
282 this, ErrorUtils::FormatErrorMessage(format, s1, s2, s3)));
276 Error( const std::string& format, const std::string& s1, const std::string& s2, const std::string& s3) argument
/external/chromium_org/testing/gtest/test/
H A Dgtest-printers_test.cc1534 const char* s3 = NULL; local
1536 UniversalTersePrint(s3, &ss3);
1564 const char* s3 = NULL; local
1566 UniversalPrint(s3, &ss3);
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds3_lib.c966 return (s->s3->rrec.type == SSL3_RT_APPLICATION_DATA) ? s->s3->rrec.length : 0;
985 SSL3_STATE *s3; local
987 if ((s3=OPENSSL_malloc(sizeof *s3)) == NULL) goto err;
988 memset(s3,0,sizeof *s3);
989 memset(s3->rrec.seq_num,0,sizeof(s3->rrec.seq_num));
990 memset(s3
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditspoof.cpp301 UnicodeString s3 = UnicodeString("abcd\\u00e1\\u0301xyz").unescape(); local
302 TEST_ASSERT_EQ(USPOOF_INVISIBLE, uspoof_checkUnicodeString(sc, s3, &position, &status));
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c915 int s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15; local
947 s3 = x2 * cospi_27_64 - x3 * cospi_5_64;
964 x3 = dct_const_round_shift(s3 + s11);
972 x11 = dct_const_round_shift(s3 - s11);
982 s3 = x3;
999 x3 = s3 + s7;
1003 x7 = s3 - s7;
1017 s3 = x3;
1032 x1 = s1 + s3;
1034 x3 = s1 - s3;
[all...]
H A Dvp9_mblpf_vert_loopfilter_dspr2.c30 uint8_t *s1, *s2, *s3, *s4; local
63 s3 = s2 + pitch;
64 s4 = s3 + pitch;
70 "lw %[p2], -4(%[s3]) \n\t"
74 "lw %[p6], -8(%[s3]) \n\t"
80 : [s1] "r" (s1), [s2] "r" (s2), [s3] "r" (s3), [s4] "r" (s4)
86 "lw %[q1], (%[s3]) \n\t"
90 "lw %[q5], +4(%[s3]) \n\t"
96 : [s1] "r" (s1), [s2] "r" (s2), [s3] "
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_dct.c128 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; local
143 s3 = sinpi_1_9 * x1;
151 x2 = s1 - s3 + s6;
157 s3 = x2 - x0 + x3;
163 output[3] = fdct_round_shift(s3);
207 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; // canbe16 local
215 s3 = input[3] + input[4];
222 x0 = s0 + s3;
225 x3 = s0 - s3;
276 tran_high_t s0, s1, s2, s3, s local
414 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; // canbe16 local
532 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; local
725 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; // canbe16 local
839 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7, s8; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm_fp.c509 GLint s3,
518 tokens[3] = s3;
531 GLfloat s3)
542 values[3].f = s3;
505 search_or_add_param5(struct brw_wm_compile *c, GLint s0, GLint s1, GLint s2, GLint s3, GLint s4) argument
527 search_or_add_const4f( struct brw_wm_compile *c, GLfloat s0, GLfloat s1, GLfloat s2, GLfloat s3) argument
/external/clang/test/Index/
H A Dprint-type-size.cpp138 struct s3 { struct in namespace:Incomplete
/external/clang/test/Sema/
H A Dformat-strings.c181 const char *s3 = "hello"; local
187 printf(s3); // expected-warning{{not a string literal}}
542 const char s3[2] = "s\0%s"; // expected-warning{{initializer-string for char array is too long}} local
549 printf(s3); // no-warning
/external/clang/test/SemaCXX/
H A Dwarn-consumed-analysis.cpp770 Status s3 = doSomething(); local
771 handleStatusPtr(&s3);
/external/fdlibm/
H A De_lgamma_r.c138 s3 = 1.46350472652464452805e-01, /* 0x3FC2BB9C, 0xBEE5F2F7 */ variable
280 p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
/external/gtest/test/
H A Dgtest-printers_test.cc1486 const char* s3 = NULL; local
1488 UniversalTersePrint(s3, &ss3);
1516 const char* s3 = NULL; local
1518 UniversalPrint(s3, &ss3);
/external/icu/icu4c/source/test/intltest/
H A Ditspoof.cpp301 UnicodeString s3 = UnicodeString("abcd\\u00e1\\u0301xyz").unescape(); local
302 TEST_ASSERT_EQ(USPOOF_INVISIBLE, uspoof_checkUnicodeString(sc, s3, &position, &status));
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c915 int s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15; local
947 s3 = x2 * cospi_27_64 - x3 * cospi_5_64;
964 x3 = dct_const_round_shift(s3 + s11);
972 x11 = dct_const_round_shift(s3 - s11);
982 s3 = x3;
999 x3 = s3 + s7;
1003 x7 = s3 - s7;
1017 s3 = x3;
1032 x1 = s1 + s3;
1034 x3 = s1 - s3;
[all...]
H A Dvp9_mblpf_vert_loopfilter_dspr2.c30 uint8_t *s1, *s2, *s3, *s4; local
63 s3 = s2 + pitch;
64 s4 = s3 + pitch;
70 "lw %[p2], -4(%[s3]) \n\t"
74 "lw %[p6], -8(%[s3]) \n\t"
80 : [s1] "r" (s1), [s2] "r" (s2), [s3] "r" (s3), [s4] "r" (s4)
86 "lw %[q1], (%[s3]) \n\t"
90 "lw %[q5], +4(%[s3]) \n\t"
96 : [s1] "r" (s1), [s2] "r" (s2), [s3] "
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c242 int s0, s1, s2, s3, s4, s5, s6, s7; local
257 s3 = sinpi_4_9 * x2;
263 x0 = s0 + s3 + s5;
271 s3 = x0 + x1 - x3;
280 output[3] = dct_const_round_shift(s3);
315 int s0, s1, s2, s3, s4, s5, s6, s7; local
336 s3 = cospi_22_64 * x2 - cospi_10_64 * x3;
345 x3 = dct_const_round_shift(s3 + s7);
349 x7 = dct_const_round_shift(s3 - s7);
355 s3
639 int s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c113 int s0, s1, s2, s3, s4, s5, s6, s7; local
128 s3 = sinpi_1_9 * x1;
136 x2 = s1 - s3 + s6;
142 s3 = x2 - x0 + x3;
148 output[3] = fdct_round_shift(s3);
192 /*canbe16*/ int s0, s1, s2, s3, s4, s5, s6, s7; local
200 s3 = input[3] + input[4];
207 x0 = s0 + s3;
210 x3 = s0 - s3;
250 /*canbe16*/ int s0, s1, s2, s3, s local
376 /*canbe16*/ int s0, s1, s2, s3, s4, s5, s6, s7; local
493 int s0, s1, s2, s3, s4, s5, s6, s7; local
685 /*canbe16*/ int s0, s1, s2, s3, s4, s5, s6, s7; local
799 int s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15; local
[all...]

Completed in 5323 milliseconds

123456789