Searched defs:s2 (Results 301 - 325 of 846) sorted by relevance

<<11121314151617181920>>

/external/eigen/test/
H A Dproduct_notemporary.cpp52 s2 = internal::random<Scalar>(), local
65 VERIFY_EVALUATION_COUNT( m3.noalias() = s1 * m1 * s2 * m2.adjoint(), 0);
66 VERIFY_EVALUATION_COUNT( m3.noalias() = s1 * m1 * s2 * (m1*s3+m2*s2).adjoint(), 1);
67 VERIFY_EVALUATION_COUNT( m3.noalias() = (s1 * m1).adjoint() * s2 * m2, 0);
68 VERIFY_EVALUATION_COUNT( m3.noalias() += s1 * (-m1*s3).adjoint() * (s2 * m2 * s3), 0);
71 VERIFY_EVALUATION_COUNT(( m3.block(r0,r0,r1,r1).noalias() += -m1.block(r0,c0,r1,c1) * (s2*m2.block(r0,c0,r1,c1)).adjoint() ), 0);
85 VERIFY_EVALUATION_COUNT( rm3.col(c0).noalias() = (s1 * m1.adjoint()).template triangularView<UnitUpper>() * (s2*m2.row(c0)).adjoint(), 1);
91 VERIFY_EVALUATION_COUNT( m3.noalias() = s2 * m2.adjoint() * (s1 * m1.adjoint()).template selfadjointView<Upper>(), 0);
/external/iproute2/ip/
H A Dlink_gre.c272 char s2[64]; local
301 const char *n = if_indextoname(link, s2);
335 inet_ntop(AF_INET, RTA_DATA(tb[IFLA_GRE_IKEY]), s2, sizeof(s2));
336 fprintf(f, "ikey %s ", s2);
340 inet_ntop(AF_INET, RTA_DATA(tb[IFLA_GRE_OKEY]), s2, sizeof(s2));
341 fprintf(f, "okey %s ", s2);
/external/libnfc-nxp/src/
H A DphFriNfc_NdefReg.c41 static int16_t phFriNfc_NdefReg_Strncmp (const int8_t *s1, const int8_t *s2, uint32_t count);
45 static int16_t phFriNfc_NdefReg_Strncmp (const int8_t *s1, const int8_t *s2, uint32_t count) argument
47 return (int16_t)strncmp((const char*)s1,(const char*)s2, count);
49 int16_t phFriNfc_NdefReg_Strnicmp(const int8_t *s1, const int8_t *s2, uint32_t count) argument
59 c2 = *s2;
60 s2++;
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_loopfilter_masks_dspr2.h35 uint32_t s1, s2, s3; local
110 "or %[s2], %[r_k], %[c] \n\t"
113 "shrl.qb %[s2], %[s2], 1 \n\t"
114 "addu_s.qb %[s1], %[s2], %[s3] \n\t"
120 "pick.qb %[s2], $0, %[ones] \n\t"
123 [s2] "=&r" (s2), [r] "+r" (r), [s3] "=&r" (s3)
129 *mask = s2;
143 uint32_t s1, s2, s local
[all...]
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.h115 friend bool operator<(const SymbolDesc &s1, const SymbolDesc &s2) { argument
116 return s1.Addr < s2.Addr;
/external/llvm/unittests/IR/
H A DMetadataTest.cpp35 MDString *s2 = MDString::get(Context, StringRef(&x[0], 3)); local
36 EXPECT_NE(s1, s2);
46 MDString *s2 = MDString::get(Context, StringRef(&y[0], 3)); local
47 EXPECT_EQ(s1, s2);
82 MDString *s2 = MDString::get(Context, StringRef(&y[0], 3)); local
88 V.push_back(s2);
111 EXPECT_EQ(s2, n1->getOperand(2));
/external/lzma/CPP/7zip/Common/
H A DFileStreams.cpp201 size_t s2 = fread(data, 1, size, stdout); local
203 *processedSize = s2;
204 return (s2 = size) ? S_OK : E_FAIL;
374 size_t s2 = fwrite(data, 1, size, stdout); local
376 *processedSize = s2;
377 return (s2 = size) ? S_OK : E_FAIL;
/external/lzma/CPP/7zip/UI/Common/
H A DUpdatePair.cpp45 static void ThrowError(const UString &message, const UString &s1, const UString &s2) argument
51 m += s2;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_string.h110 util_strcmp(const char *s1, const char *s2) argument
116 u2 = (unsigned char) *s2++;
126 util_strncmp(const char *s1, const char *s2, size_t n) argument
132 u2 = (unsigned char) *s2++;
/external/openfst/src/include/fst/
H A Dconcat.h79 StateId s2 = siter2.Value(); local
80 fst1->SetFinal(s1, fst2.Final(s2));
81 fst1->ReserveArcs(s1, fst2.NumArcs(s2));
82 for (ArcIterator< Fst<Arc> > aiter(fst2, s2);
144 StateId s2 = fst2->AddState(); local
146 fst2->ReserveArcs(s2, fst1.NumArcs(s1) + (final != Weight::Zero() ? 1 : 0));
148 fst2->AddArc(s2, Arc(0, 0, final, start2));
154 fst2->AddArc(s2, arc);
H A Dequivalent.h180 MappedId s2 = Util::MapState(fst2.Start(), FST2); local
187 eq_classes.MakeSet(s2);
204 if (Util::IsFinal(fst1, s1) != Util::IsFinal(fst2, s2)) {
212 for (q.push_back(make_pair(s1, s2)); ret && !q.empty(); q.pop_front()) {
214 s2 = q.front().second;
216 // Representatives of the equivalence classes of s1/s2.
218 MappedId rep2 = Util::FindSet(&eq_classes, s2);
236 // Copy outgoing arcs starting at s2 into the hashtable.
237 if (Util::kDeadState != s2) {
238 ArcIterator<Fst<Arc> > arc_iter(fst2, Util::UnMapState(s2));
[all...]
H A Dunion.h79 StateId s2 = siter.Value(); local
80 fst1->SetFinal(s1, fst2.Final(s2));
81 fst1->ReserveArcs(s1, fst2.NumArcs(s2));
82 for (ArcIterator< Fst<Arc> > aiter(fst2, s2);
/external/pixman/pixman/
H A Dpixman-mips-dspr2-asm.h53 #define s2 $18 macro
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DUnknownFieldSetTest.java414 private void checkNotEqual(UnknownFieldSet s1, UnknownFieldSet s2) { argument
415 String equalsError = String.format("%s should not be equal to %s", s1, s2);
416 assertFalse(equalsError, s1.equals(s2));
417 assertFalse(equalsError, s2.equals(s1));
420 String.format("%s should have a different hash code from %s", s1, s2),
421 s1.hashCode() == s2.hashCode());
/external/qemu/distrib/libpng-1.2.46/
H A Dpngmem.c587 png_memcpy_check (png_structp png_ptr, png_voidp s1, png_voidp s2, argument
596 return(png_memcpy (s1, s2, size));
/external/qemu/util/
H A Dpath.c34 static int strneq(const char *s1, unsigned int n, const char *s2) argument
39 if (s1[i] != s2[i])
41 return s2[i] == 0;
/external/skia/gm/
H A Dlumafilter.cpp30 SkShader* s2) {
61 paint.setShader(s2);
62 paint.setColor(s2 ? SK_ColorBLACK : SkColorSetA(kColor2, 0x80));
65 if (!s2) {
28 draw_scene(SkCanvas* canvas, SkColorFilter* filter, SkXfermode::Mode mode, SkShader* s1, SkShader* s2) argument
/external/skia/tests/
H A DPointTest.cpp44 SkScalar s2 = SkPoint::Length(x, y); local
47 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, s2));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dequivalent.h146 MappedId s2 = Util::MapState(fst2.Start(), FST2); local
153 eq_classes.MakeSet(s2);
156 if (Util::IsFinal(fst1, s1) != Util::IsFinal(fst2, s2)) {
176 for (q.push_back(make_pair(s1, s2)); !q.empty(); q.pop_front()) {
178 s2 = q.front().second;
180 // Representatives of the equivalence classes of s1/s2.
182 MappedId rep2 = Util::FindSet(&eq_classes, s2);
200 // Copy outgoing arcs starting at s2 into the hashtable.
201 if (Util::kDeadState != s2) {
202 ArcIterator<Fst<Arc> > arc_iter(fst2, Util::UnMapState(s2));
[all...]
/external/stlport/test/unit/
H A Dmfunptr_test.cpp41 struct S2 { } s2; variable in typeref:struct:S2
79 ptr_fun(f2)(s1, s2);
82 ptr_fun(f2c)(s1, s2);
86 ptr_fun(vf2)(s1, s2);
89 ptr_fun(vf2c)(s1, s2);
/external/tremolo/Tremolo/
H A Dtreminfo.c64 static int tagcompare(const char *s1, const char *s2, int n){ argument
67 if(toupper(s1[c]) != toupper(s2[c]))
/external/webrtc/src/modules/audio_processing/test/testsupport/metrics/
H A Dvideo_metrics.cc24 const FrameResult& s2) {
25 return s1.value < s2.value;
23 LessForFrameResultValue(const FrameResult& s1, const FrameResult& s2) argument
/external/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.cc24 const FrameResult& s2) {
25 return s1.value < s2.value;
23 LessForFrameResultValue(const FrameResult& s1, const FrameResult& s2) argument
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal-dec.c78 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
89 s2 = GETU32(ct + 8) ^ rk[2];
144 s2 = TD41(t2) ^ TD42(t1) ^ TD43(t0) ^ TD44(t3) ^ rk[2];
145 PUTU32(pt + 8, s2);
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal-dec.c78 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
89 s2 = GETU32(ct + 8) ^ rk[2];
144 s2 = TD41(t2) ^ TD42(t1) ^ TD43(t0) ^ TD44(t3) ^ rk[2];
145 PUTU32(pt + 8, s2);

Completed in 638 milliseconds

<<11121314151617181920>>