HomeSort by relevance Sort by last modified time
    Searched refs:cs2 (Results 1 - 25 of 46) sorted by null

1 2

  /external/eigen/test/
hessenberg.cpp 36 HessenbergDecomposition<MatrixType> cs2(A);
37 VERIFY_IS_EQUAL(cs1.matrixH().eval(), cs2.matrixH().eval());
39 MatrixType cs2Q = cs2.matrixQ();
schur_complex.cpp 44 ComplexSchur<MatrixType> cs2(A);
46 VERIFY_IS_EQUAL(cs2.info(), Success);
47 VERIFY_IS_EQUAL(cs1.matrixT(), cs2.matrixT());
48 VERIFY_IS_EQUAL(cs1.matrixU(), cs2.matrixU());
  /external/webrtc/webrtc/modules/video_capture/
video_capture_impl.cc 183 CriticalSectionScoped cs2(&_callBackCs);
189 CriticalSectionScoped cs2(&_callBackCs);
195 CriticalSectionScoped cs2(&_callBackCs);
201 CriticalSectionScoped cs2(&_callBackCs);
240 CriticalSectionScoped cs2(&_callBackCs);
325 CriticalSectionScoped cs2(&_callBackCs);
332 CriticalSectionScoped cs2(&_callBackCs);
350 CriticalSectionScoped cs2(&_callBackCs);
device_info_impl.cc 69 WriteLockScoped cs2(_apiLock);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 135 CodeSigner cs2 = new CodeSigner(cpath, ts); local
138 assertTrue(cs1.hashCode() == cs2.hashCode());
139 assertTrue(cs2.hashCode() != cs3.hashCode());
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Normalizer.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer.java     [all...]
  /libcore/ojluni/src/main/java/java/time/format/
DateTimeParseContext.java 203 * @param cs2 the second character sequence, not null
208 boolean subSequenceEquals(CharSequence cs1, int offset1, CharSequence cs2, int offset2, int length) {
209 if (offset1 + length > cs1.length() || offset2 + length > cs2.length()) {
215 char ch2 = cs2.charAt(offset2 + i);
223 char ch2 = cs2.charAt(offset2 + i);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoder2Test.java 118 MockMalfunctionCharset cs2 = new MockMalfunctionCharset( local
121 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
  /external/llvm/lib/Support/
regcomp.c 1154 cset *cs2; local
1158 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++)
1159 if (cs2->hash == h && cs2 != cs) {
1162 if (!!CHIN(cs2, i) != !!CHIN(cs, i))
1168 if (cs2 < top) { /* found one */
1170 cs = cs2;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
regcomp.c 1116 cset *cs2; local
1120 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++)
1121 if (cs2->hash == h && cs2 != cs) {
1124 if (!!CHIN(cs2, i) != !!CHIN(cs, i))
1130 if (cs2 < top) { /* found one */
1132 cs = cs2;
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regcomp.c 1154 cset *cs2; local
1158 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++)
1159 if (cs2->hash == h && cs2 != cs) {
1162 if (!!CHIN(cs2, i) != !!CHIN(cs, i))
1168 if (cs2 < top) { /* found one */
1170 cs = cs2;
    [all...]
  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 555 static char cs2[40]; local
557 u_UCharsToChars(us1, cs2, 33);
560 cs2);
  /toolchain/binutils/binutils-2.27/include/opcode/
crx.h 71 cs0, cs1 ,cs2, cs3, cs4, cs5, cs6, cs7, cs8, enumerator in enum:__anon4854
  /external/icu/icu4c/source/test/intltest/
transrt.cpp 687 UnicodeString cs2; local
688 Normalizer::decompose(srcStr, FALSE, 0, cs2, status);
693 UnicodeString targ2 = cs2;
696 logNotCanonical("Source-Target", srcStr, targ,cs2, targ2);
735 UnicodeString cs2; local
736 Normalizer::decompose(srcStr, FALSE, 0, cs2, status);
741 UnicodeString targ2 = cs2;
744 logNotCanonical("Source-Target", srcStr, targ, cs2,targ2);
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 1323 cset *cs2; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RoundTripTest.java 1434 String cs2 = Normalizer.normalize(cs, Normalizer.NFD); local
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RoundTripTest.java 1431 String cs2 = Normalizer.normalize(cs, Normalizer.NFD); local
    [all...]
  /external/compiler-rt/lib/dfsan/
dfsan_custom.cc 105 const char *cs1 = (const char *) s1, *cs2 = (const char *) s2; local
107 if (cs1[i] != cs2[i]) {
112 dfsan_read_label(cs2, i + 1));
114 return cs1[i] - cs2[i];
122 dfsan_read_label(cs2, n));
    [all...]
  /frameworks/base/cmds/incidentd/tests/
Section_test.cpp 193 CommandSection cs2(2, "single_command", NULL);
198 EXPECT_THAT(cs2.name.string(), StrEq("cmd single_command"));
  /frameworks/native/libs/vr/libbufferhubqueue/tests/
buffer_hub_queue-test.cpp 514 size_t cs1, cs2; local
524 auto c2_status = consumer_queue_->Dequeue(kTimeoutMs, &cs2, &mo, &fence);
528 ASSERT_EQ(cs2, ps2);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 877 SelectionItem cs2 = it2.next(); local
878 if (cs != cs2) {
879 CanvasViewInfo vi2 = cs2.getViewInfo();
    [all...]
  /external/v8/benchmarks/
earley-boyer.js 1050 function sc_isCharStringEqual(cs1, cs2) { return cs1.val === cs2.val; }
1051 function sc_isCharStringLess(cs1, cs2) { return cs1.val < cs2.val; }
1052 function sc_isCharStringGreater(cs1, cs2) { return cs1.val > cs2.val; }
1053 function sc_isCharStringLessEqual(cs1, cs2) { return cs1.val <= cs2.val; }
1054 function sc_isCharStringGreaterEqual(cs1, cs2) { return cs1.val >= cs2.val;
    [all...]
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
libcpuset.c 3298 struct cpuset_fts_entry *cs1, *cs2, *cs3; local
    [all...]
  /external/webrtc/talk/session/media/
srtpfilter_unittest.cc 94 void TestProtectUnprotect(const std::string& cs1, const std::string& cs2) {
117 EXPECT_EQ(out_len, rtp_len + rtp_auth_tag_len(cs2));
133 EXPECT_EQ(out_len, rtcp_len + 4 + rtcp_auth_tag_len(cs2)); // NOLINT
    [all...]

Completed in 1165 milliseconds

1 2