Searched refs:c1 (Results 151 - 175 of 997) sorted by relevance

1234567891011>>

/external/python/cpython2/Lib/test/
H A Dtest_normalization.py57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]]
60 # try at least adding c1 if we are in part1
63 c1 = unistr(line.split(';')[0])
67 part1_data[c1] = 1
71 self.assertTrue(c2 == NFC(c1) == NFC(c2) == NFC(c3), line)
73 self.assertTrue(c3 == NFD(c1) == NFD(c2) == NFD(c3), line)
75 self.assertTrue(c4 == NFKC(c1) == NFKC(c2) == \
78 self.assertTrue(c5 == NFKD(c1) == NFKD(c2) == \
84 part1_data[c1] = 1
/external/selinux/mcstrans/share/examples/nato/
H A Dsetrans.conf14 s1:c1=NATO UNCLASSIFIED
15 s3:c1,c200.c511=NATO RESTRICTED
16 s4:c1,c200.c511=NATO CONFIDENTIAL
17 s5:c1,c200.c511=NATO SECRET
/external/vogar/src/vogar/target/junit/
H A DDescriptionComparator.java39 String c1 = d1.getClassName();
41 int result = c1.compareTo(c2);
/external/regex-re2/util/
H A Drune.cc51 int c, c1, c2, c3; local
68 c1 = *(unsigned char*)(str+1) ^ Tx;
69 if(c1 & Testx)
74 l = ((c << Bitx) | c1) & Rune2;
89 l = ((((c << Bitx) | c1) << Bitx) | c2) & Rune3;
104 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4;
233 long c1; local
241 c1 = *(unsigned char*)s;
242 if(c1 < Runeself) { /* one byte rune */
243 if(c1
[all...]
/external/swiftshader/src/Renderer/
H A DColor.hpp52 static Color<T> gradient(const Color<T> &c1, const Color<T> &c2, float d);
53 static Color<T> shade(const Color<T> &c1, const Color<T> &c2, float d);
56 friend Color<S> operator+(const Color<S> &c1, const Color<S> &c2);
58 friend Color<S> operator-(const Color<S> &c1, const Color<S> &c2);
63 friend Color<S> operator*(const Color<S> &c1, const Color<S> &c2);
373 inline Color<T> operator+(const Color<T> &c1, const Color<T> &c2) argument
375 return Color<T>(c1.r + c2.r,
376 c1.g + c2.g,
377 c1.b + c2.b,
378 c1
382 operator -(const Color<T> &c1, const Color<T> &c2) argument
402 operator *(const Color<T> &c1, const Color<T> &c2) argument
413 operator *(const Color<short> &c1, const Color<short> &c2) argument
424 operator *(const Color<byte> &c1, const Color<byte> &c2) argument
448 gradient(const Color<T> &c1, const Color<T> &c2, float d) argument
461 shade(const Color<T> &c1, const Color<T> &c2, float d) argument
[all...]
/external/bzip2/
H A Dblocksort.c355 UChar c1, c2; local
360 c1 = block[i1]; c2 = block[i2];
361 if (c1 != c2) return (c1 > c2);
364 c1 = block[i1]; c2 = block[i2];
365 if (c1 != c2) return (c1 > c2);
368 c1 = block[i1]; c2 = block[i2];
369 if (c1 != c2) return (c1 > c
764 UChar c1; local
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp12.cpp39 C1<> c1; // expected-note{{while checking a default template argument}} variable
/external/clang/test/Index/
H A Dcomplete-template-friends-defined.cpp24 M::C<int> c1; local
/external/clang/test/SemaCXX/
H A Dattr-deprecated-replacement-error.cpp13 __declspec(deprecated("warning", "fixit")) int c1; // expected-error{{'deprecated' attribute takes no more than 1 argument}} variable
H A Dgnu-flags.cpp75 // expected-warning@+6 {{flexible array member 'c1' in a union is a GNU extension}}
81 int c1[]; member in union:faum::__anon3128
/external/clang/test/SemaTemplate/
H A Dinstantiation-default-2.cpp6 Constant<int, 5> *c1; variable
/external/dtc/scripts/
H A Dsetlocalversion15 printf '%s%s' -g `echo "$head" | cut -c1-8`
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
H A DCounterImplTest.java64 ICounter c1 = CounterImpl.getInstance(30, 30);
66 assertSame(c1, c2);
71 ICounter c1 = CounterImpl.getInstance(31, 30);
73 assertNotSame(c1, c2);
160 ICounter c1 = CounterImpl.getInstance(300, 123);
162 assertEquals(c1, c2);
167 ICounter c1 = CounterImpl.getInstance(300, 123);
169 assertFalse(c1.equals(c2));
174 ICounter c1 = CounterImpl.getInstance(300, 123);
176 assertFalse(c1
[all...]
/external/libcxx/test/std/containers/sequences/vector.bool/
H A Dconstruct_default.pass.cpp36 C c1 = {}; local
37 LIBCPP_ASSERT(c1.__invariants());
38 assert(c1.empty());
39 assert(c1.get_allocator() == typename C::allocator_type());
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dtranspose_vsx.h41 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
63 c1 = vec_mergel(b0, b4);
73 // c1: 02 22 42 62 03 23 43 63
83 v[2] = vec_mergeh(c1, c5);
84 v[3] = vec_mergel(c1, c5);
/external/guava/guava-tests/test/com/google/common/io/
H A DCloserTest.java68 TestCloseable c1 = closer.register(TestCloseable.normal());
72 assertFalse(c1.isClosed());
78 assertTrue(c1.isClosed());
88 TestCloseable c1 = closer.register(TestCloseable.normal());
105 assertTrue(c1.isClosed());
114 TestCloseable c1 = null;
119 c1 = closer.register(TestCloseable.normal());
131 assertTrue(c1.isClosed());
143 // c1 is added first, closed last
144 TestCloseable c1
[all...]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Didctllm_dspr2.c41 int a1, b1, c1, d1; local
61 c1 = temp1 - temp2;
77 op[4] = b1 + c1;
78 op[8] = b1 - c1;
93 c1 = temp1 - temp2;
109 op[6] = b1 + c1;
110 op[10] = b1 - c1;
131 c1 = temp1 - temp2;
147 op[1] = (b1 + c1 + 4) >> 3;
148 op[2] = (b1 - c1
267 int a1, b1, c1, d1; local
[all...]
/external/proguard/src/proguard/io/
H A DManifestRewriter.java81 int c1 = bufferedCharacter != NONE ?
89 if (c1 != '\n' && c1 != '\r')
91 return c1;
99 if ((c2 == '\n' || c2 == '\r') && c1 != c2)
/external/v8/src/parsing/
H A Dduplicate-finder.cc49 byte c1; local
51 c1 = *s1;
52 if (c1 != *s2) return false;
53 length_one_byte_field = (length_one_byte_field << 7) | (c1 & 0x7f);
56 } while ((c1 & 0x80) != 0);
/external/guava/guava/src/com/google/common/escape/
H A DUnicodeEscaper.java269 char c1 = seq.charAt(index++);
270 if (c1 < Character.MIN_HIGH_SURROGATE ||
271 c1 > Character.MAX_LOW_SURROGATE) {
273 return c1;
274 } else if (c1 <= Character.MAX_HIGH_SURROGATE) {
277 return -c1;
282 return Character.toCodePoint(c1, c2);
290 "Unexpected low surrogate character '" + c1 +
291 "' with value " + (int) c1 + " at index " + (index - 1) +
/external/arm-neon-tests/
H A DInitCache.s18 MRC p15, 0, r0, c1, c0, 0 ; read CP15 register 1 into r0
24 MCR p15, 0, r0, c1, c0, 0 ; write CP15 register 1
30 MRC p15, 0, r0, c1, c0, 1 ; Read Auxiliary Control Register
36 MCR p15, 0, r0, c1, c0, 1 ; Write Auxiliary Control Register
42 MRC p15, 0, r0, c1, c0, 0 ; read CP15 register 1 into r0
45 MCR p15, 0, r0, c1, c0, 0 ; write CP15 register 1
/external/autotest/server/cros/
H A Dcasey_chromeos5_ap_list.conf19 [c0:c1:c0:8b:59:8b]
25 bss = c0:c1:c0:8b:59:8b
26 wan mac = c0:c1:c0:8b:59:8a
/external/eigen/Eigen/src/Geometry/
H A DEulerAngles.h77 // c2 s1.s2 c1.s2 1 0 0
78 // 0 c1 -s1 * M = 0 c3 s3
79 // -s2 s1.c2 c1.c2 0 -s3 c3
81 // Thus: m11.c1 - m21.s1 = c3 & m12.c1 - m22.s1 = s3
84 Scalar c1 = cos(res[0]); local
85 res[2] = atan2(c1*coeff(j,k)-s1*coeff(k,k), c1*coeff(j,j) - s1 * coeff(k,j));
103 Scalar c1 = cos(res[0]); local
104 res[2] = atan2(s1*coeff(k,i)-c1*coef
[all...]
/external/llvm/test/MC/ARM/
H A Darm_instructions.s70 @ CHECK: cdp p7, #1, c1, c1, c1, #4 @ encoding: [0x81,0x17,0x11,0xee]
71 cdp p7, #1, c1, c1, c1, #4
72 @ CHECK: cdp2 p7, #1, c1, c1, c1, #4 @ encoding: [0x81,0x17,0x11,0xfe]
73 cdp2 p7, #1, c1, c
[all...]
/external/pdfium/third_party/libopenjpeg20/
H A Dmct.c81 OPJ_INT32* restrict c1,
91 __m128i g = _mm_load_si128((const __m128i *)&(c1[i]));
100 _mm_store_si128((__m128i *)&(c1[i]), u);
106 OPJ_INT32 g = c1[i];
112 c1[i] = u;
119 OPJ_INT32* restrict c1,
128 OPJ_INT32 g = c1[i];
134 c1[i] = u;
146 OPJ_INT32* restrict c1,
156 __m128i u = _mm_load_si128((const __m128i *)&(c1[
79 opj_mct_encode( OPJ_INT32* restrict c0, OPJ_INT32* restrict c1, OPJ_INT32* restrict c2, OPJ_UINT32 n) argument
117 opj_mct_encode( OPJ_INT32* restrict c0, OPJ_INT32* restrict c1, OPJ_INT32* restrict c2, OPJ_UINT32 n) argument
144 opj_mct_decode( OPJ_INT32* restrict c0, OPJ_INT32* restrict c1, OPJ_INT32* restrict c2, OPJ_UINT32 n) argument
179 opj_mct_decode( OPJ_INT32* restrict c0, OPJ_INT32* restrict c1, OPJ_INT32* restrict c2, OPJ_UINT32 n) argument
211 opj_mct_encode_real( OPJ_INT32* restrict c0, OPJ_INT32* restrict c1, OPJ_INT32* restrict c2, OPJ_UINT32 n) argument
352 opj_mct_encode_real( OPJ_INT32* restrict c0, OPJ_INT32* restrict c1, OPJ_INT32* restrict c2, OPJ_UINT32 n) argument
376 opj_mct_decode_real( OPJ_FLOAT32* restrict c0, OPJ_FLOAT32* restrict c1, OPJ_FLOAT32* restrict c2, OPJ_UINT32 n) argument
[all...]

Completed in 6034 milliseconds

1234567891011>>