HomeSort by relevance Sort by last modified time
    Searched defs:c1 (Results 251 - 275 of 635) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_render.c 88 GLubyte c1 = mask[v1], c2 = mask[v2]; \
89 GLubyte ormask = c1|c2; \
92 else if (!(c1 & c2 & CLIPMASK)) \
98 GLubyte c1 = mask[v1], c2 = mask[v2], c3 = mask[v3]; \
99 GLubyte ormask = c1|c2|c3; \
102 else if (!(c1 & c2 & c3 & CLIPMASK)) \
108 GLubyte c1 = mask[v1], c2 = mask[v2]; \
110 GLubyte ormask = c1|c2|c3|c4; \
113 else if (!(c1 & c2 & c3 & c4 & CLIPMASK)) \
166 GLubyte c1 = mask[elt[j]] local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_asm.c 73 BN_ULONG c1=0; local
76 if (num <= 0) return(c1);
81 mul_add(rp[0],ap[0],w,c1);
82 mul_add(rp[1],ap[1],w,c1);
83 mul_add(rp[2],ap[2],w,c1);
84 mul_add(rp[3],ap[3],w,c1);
90 mul_add(rp[0],ap[0],w,c1);
94 return(c1);
99 BN_ULONG c1=0; local
102 if (num <= 0) return(c1);
565 BN_ULONG c1,c2,c3; local
674 BN_ULONG c1,c2,c3; local
719 BN_ULONG c1,c2,c3; local
800 BN_ULONG c1,c2,c3; local
849 BN_ULONG c0,c1,ml,*tp,n0; local
988 BN_ULONG c0,c1,*tp,n0=*n0p; local
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/
cmap_test.cc 147 int32_t c1 = uchar; local
149 c1 = TestUtils::EncodeOneChar(encoder1_, (int16_t)uchar);
153 int32_t glyph_id1 = cmap1_->GlyphId(c1);
157 fprintf(stderr, "%x: g1=%x, %x: g2=%x\n", c1, glyph_id1, c2, glyph_id2);
  /external/chromium_org/v8/src/
regexp-macro-assembler.cc 251 unibrow::uchar c1 = substring1[i]; local
253 if (c1 != c2) {
254 unibrow::uchar s1[1] = { c1 };
255 canonicalize->get(c1, '\0', s1);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p3-0x.cpp 106 C c1 = { 1, 2.2 }; member in namespace:bullet8
  /external/clang/test/CXX/special/class.dtor/
p5-0x.cpp 81 struct C1 : DeletedDtor { C1(); } c1; // expected-error {{deleted function}} expected-note {{base class 'DeletedDtor' has a deleted destructor}} variable in typeref:struct:C1
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
p1.cpp 72 C<long>::E c1; member in struct:C
74 void fc1() { c1 = decltype(c1)::e5; }
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 176 auto c1 = mkcoords<cpu>(0ul, 0ul, 0ul); member in namespace:pr15112
  /external/clang/test/CodeGenCXX/
mangle-ms-return-qualifiers.cpp 56 A c1() { return A(); } function
57 // CHECK: "\01?c1@@YA?AVA@@XZ"
mangle-ms-templates.cpp 35 Class<Typename> c1; local
value-init.cpp 187 const C &c1; member in struct:PR8726::S
  /external/clang/test/Sema/
MicrosoftExtensions.c 12 int c1[]; /* expected-warning {{flexible array member 'c1' in a union is a Microsoft extension}} */ member in union:C::__anon16818
  /external/clang/test/SemaCXX/
anonymous-union.cpp 28 float c1; member in union:X::__anon16986
scope-check.cpp 71 C c1; // expected-note {{jump bypasses variable initialization}}
229 const C &c1 = 42; // expected-note {{jump exits scope of variable with non-trivial destructor}} local
244 const int &c1 = C(1).i; // expected-note {{jump exits scope of variable with non-trivial destructor}} local
259 const int &c1 = C(1); local
warn-sign-conversion.cpp 25 int c1 = 1 ? i : Foo<bool>::C; local
67 int c1 = 1 ? i : Foo<bool>::C; local
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 285 static inline int CharCmp(unsigned char c1, unsigned char c2) {
286 return (c1 == c2) ? 0 : (c1 < c2) ? -1 : 1;
300 unsigned char c1 = 0, c2 = 0; local
305 c1 = s1[i];
307 if (c1 != c2) break;
311 return CharCmp(c1, c2);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 96 unsigned c1 = *s1; local
98 if (c1 != c2) return (c1 < c2) ? -1 : 1;
99 if (c1 == 0) break;
108 unsigned c1 = *s1; local
110 if (c1 != c2) return (c1 < c2) ? -1 : 1;
111 if (c1 == 0) break;
  /external/dnsmasq/src/
util.c 287 unsigned int c1, c2; local
290 c1 = (unsigned char) *a++;
293 if (c1 >= 'A' && c1 <= 'Z')
294 c1 += 'a' - 'A';
298 if (c1 != c2)
300 } while (c1);
  /external/icu4c/common/
uidna.cpp 95 UChar c1,c2; local
105 c1 = s1[i];
109 if(c1!=c2) {
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
ustrcase.cpp 493 UChar32 c1, c2, cp1, cp2; local
522 c1=c2=-1;
531 if(c1<0) {
534 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) {
536 c1=-1;
578 * compare c1 and c2
579 * either variable c1, c2 is -1 only if the corresponding string is finished
581 if(c1==c2) {
582 if(c1<0) {
583 return 0; /* c1==c2==-1 indicating end of strings *
    [all...]
  /external/icu4c/test/intltest/
idnaref.cpp 76 UChar c1,c2; local
85 c1 = s1[i];
89 if(c1!=c2) {
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
itercoll.cpp 95 RuleBasedCollator *c1 = NULL; local
96 c1 = new RuleBasedCollator(
99 if (c1 == NULL || U_FAILURE(status))
102 delete c1;
107 iter = c1->createCollationElementIterator(source);
110 delete c1;
601 int32_t c1, c2, count = 0; local
606 c1 = i1.next(status);
609 if (c1 != c2)
611 errln(" %d: strength(0x%X) != strength(0x%X)", count, c1, c2)
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
FileBlockHeader.java 193 char c1 = (char) ((code & 0xFF000000) >> 24); local
197 return String.valueOf(c1) + c2 + c3 + c4;
  /external/jpeg/
rdjpgcom.c 88 int c1, c2; local
90 c1 = NEXTBYTE();
91 if (c1 == EOF)
96 return (((unsigned int) c1) << 8) + ((unsigned int) c2);
175 int c1, c2; local
177 c1 = NEXTBYTE();
179 if (c1 != 0xFF || c2 != M_SOI)
wrjpgcom.c 107 int c1, c2; local
109 c1 = NEXTBYTE();
110 if (c1 == EOF)
115 return (((unsigned int) c1) << 8) + ((unsigned int) c2);
224 int c1, c2; local
226 c1 = NEXTBYTE();
228 if (c1 != 0xFF || c2 != M_SOI)

Completed in 473 milliseconds

<<11121314151617181920>>