HomeSort by relevance Sort by last modified time
    Searched defs:c1 (Results 551 - 575 of 1551) sorted by null

<<21222324252627282930>>

  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 494 NS::Constructor c1; local
  /external/clang/test/Sema/
MicrosoftExtensions.c 18 int c1[]; /* expected-warning {{flexible array member 'c1' in a union is a Microsoft extension}} */ member in union:C::__anon15362
  /external/clang/test/SemaCXX/
array-bounds.cpp 67 char c1 = str1[5]; // no warning for pointers local
189 char c1[1]; // expected-note {{declared here}} member in struct:tailpad::foo
196 char c1[1]; // expected-note {{declared here}} member in class:tailpad::baz
202 return F->c1[3] + // expected-warning {{array index 3 is past the end of the array (which contains 1 element)}}
204 B->c1[3] + // expected-warning {{array index 3 is past the end of the array (which contains 1 element)}}
scope-check.cpp 83 C c1; // expected-note {{jump bypasses variable initialization}}
241 const C &c1 = 42; // expected-note {{jump exits scope of lifetime-extended temporary with non-trivial destructor}} local
256 const int &c1 = C(1).i; // expected-note {{jump exits scope of lifetime-extended temporary with non-trivial destructor}} local
271 const int &c1 = C(1); local
  /external/curl/lib/
cookie.c 999 struct Cookie *c1 = *(struct Cookie **)p1; local
1004 l1 = c1->path ? strlen(c1->path) : 0;
1011 l1 = c1->domain ? strlen(c1->domain) : 0;
1018 if(c1->name && c2->name)
1019 return strcmp(c1->name, c2->name);
    [all...]
  /external/dnsmasq/src/
forward.c 739 unsigned char c1, c2; local
748 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
749 !(size = c1 << 8 | c2) ||
841 c1 = size >> 8;
844 if (!read_write(last_server->tcpfd, &c1, 1, 0) ||
847 !read_write(last_server->tcpfd, &c1, 1, 1) ||
855 m = (c1 << 8) | c2;
890 c1 = m>>8;
892 if (!read_write(confd, &c1, 1, 0) ||
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CaseMapImpl.java 309 char c1 = src.charAt(titleStart); local
310 if ((c1 == 'i' || c1 == 'I')) {
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
BiDiConformanceTest.java 380 char c0, c1, c2; local
414 } else if((c1=line.charAt(lineIndex+1))=='N') {
416 } else if(c1=='S') {
418 } else if(c1=='T') {
424 } else if((c1=line.charAt(lineIndex+1))=='L') {
426 } else if(c1=='N') {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
TestUCharacterIterator.java 347 int c1, c2; local
359 c1=iter.previousCodePoint();
362 c1=iter.currentCodePoint();
365 c1=iter.nextCodePoint();
370 if(c1!=c2) {
374 +"got c1= " + hex(c1) +" != expected c2= "+ hex(c2));
398 int c1, c2; local
405 c1=wrap_ci.previous();
408 c1=wrap_ci.current()
    [all...]
  /external/icu/icu4c/source/common/
ustrcase.cpp 1162 UChar32 c1, c2, cp1, cp2; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 396 UChar32 c1 = ci.nextCodePoint(errorCode); local
398 if(c1 != c2) {
400 name, (long)c1, (long)c2, cpi.getIndex());
403 if(c1 < 0) { break; }
408 UChar32 c1 = ci.previousCodePoint(errorCode); local
410 if(c1 != c2) {
412 name, (long)c1, (long)c2, cpi.getIndex());
419 UChar32 c1 = ci.nextCodePoint(errorCode); local
421 if(c1 != c2) {
423 name, (long)c1, (long)c2, cpi.getIndex())
431 UChar32 c1 = ci.previousCodePoint(errorCode); local
    [all...]
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 195 int32_t c1=(uint8_t)*s1++; local
197 cmp=c1-c2;
198 if(cmp!=0 || c1==0) { // different or done
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.cpp 378 UChar32 c32,c1,c2; local
389 c1 = *(buf->currentPos)++;
391 c1 = U_EOF;
397 if (c1 != 0x005C) {
398 return c1;
429 fprintf(stderr,"Bad escape: [%c%s]...\n", (int)c1, context);
432 return c1;
433 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
438 * c1 and not consume the buffer
443 return c1;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CaseMapImpl.java 305 char c1 = src.charAt(titleStart); local
306 if ((c1 == 'i' || c1 == 'I')) {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
BiDiConformanceTest.java 379 char c0, c1, c2; local
413 } else if((c1=line.charAt(lineIndex+1))=='N') {
415 } else if(c1=='S') {
417 } else if(c1=='T') {
423 } else if((c1=line.charAt(lineIndex+1))=='L') {
425 } else if(c1=='N') {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
TestUCharacterIterator.java 346 int c1, c2; local
358 c1=iter.previousCodePoint();
361 c1=iter.currentCodePoint();
364 c1=iter.nextCodePoint();
369 if(c1!=c2) {
373 +"got c1= " + hex(c1) +" != expected c2= "+ hex(c2));
397 int c1, c2; local
404 c1=wrap_ci.previous();
407 c1=wrap_ci.current()
    [all...]
  /external/libopus/celt/
pitch.c 155 opus_val16 c1 = QCONST16(.8f,15); local
210 lpc2[1] = lpc[1] + MULT16_16_Q15(c1,lpc[0]);
211 lpc2[2] = lpc[2] + MULT16_16_Q15(c1,lpc[1]);
212 lpc2[3] = lpc[3] + MULT16_16_Q15(c1,lpc[2]);
213 lpc2[4] = MULT16_16_Q15(c1,lpc[3]);
  /external/libopus/tests/
test_opus_encode.c 60 opus_int32 c1,c2,d1,d2; local
63 c1=c2=d1=d2=0;
76 c1=(30*(c1+b1+d1)+32)>>6;d1=b1;
78 v1=(c1+128)>>8;
  /external/libvpx/libvpx/tools/
tiny_ssim.c 41 int64_t c1, c2; local
44 c1 = (cc1 * count * count) >> 12;
47 ssim_n = (2 * sum_s * sum_r + c1) *
50 ssim_d = (sum_s * sum_s + sum_r * sum_r + c1) *
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 691 tran_high_t a1, b1, c1, d1, e1; local
699 c1 = ip_pass0[2 * stride];
703 d1 = d1 - c1;
706 c1 = e1 - c1;
707 a1 -= c1;
710 op[4] = (tran_low_t)c1;
723 c1 = ip[2];
727 d1 -= c1;
730 c1 = e1 - c1
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
idct_neon.h 226 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
246 c1 = vrsraq_n_s16(vreinterpretq_s16_u16(vmovl_u8(b1)), a1, 6);
255 b1 = vqmovun_s16(c1);
290 int32x4_t c0, c1, c2, c3; local
300 c1 = vsubq_s32(c0, c2);
307 b1 = vrshrn_n_s32(c1, DCT_CONST_BITS);
    [all...]
transpose_neon.h 115 // c1.val[0]: 01 11 21 31
116 // c1.val[1]: 03 13 23 33
120 const int32x2x2_t c1 = vtrn_s32(vreinterpret_s32_s16(b0.val[1]), local
124 *a1 = vreinterpret_s16_s32(c1.val[0]);
126 *a3 = vreinterpret_s16_s32(c1.val[1]);
146 const int32x4_t c1 = local
154 vtrnq_s16(vreinterpretq_s16_s32(c0), vreinterpretq_s16_s32(c1));
177 const uint32x4_t c1 = local
185 vtrnq_u16(vreinterpretq_u16_u32(c0), vreinterpretq_u16_u32(c1));
222 // c1.val[0]: 10 11 30 31 50 51 70 7
227 const uint16x4x2_t c1 = vtrn_u16(vreinterpret_u16_u32(b1.val[0]), local
270 const int32x4x2_t c1 = vpx_vtrnq_s64_to_s32(b0.val[1], b1.val[1]); local
320 const int32x2x2_t c1 = vtrn_s32(vreinterpret_s32_s16(b0.val[1]), local
382 const int64x2x2_t c1 = vpx_vtrnq_s64(b0.val[1], b1.val[1]); local
420 const uint16x4x2_t c1 = local
453 const uint32x4x2_t c1 = vtrnq_u32(vreinterpretq_u32_u16(b0.val[1]), local
501 const int64x2x2_t c1 = vpx_vtrnq_s64(b0.val[1], b2.val[1]); local
548 const uint16x8x2_t c1 = vtrnq_u16(vreinterpretq_u16_u8(b0.val[1]), local
611 const int32x4x2_t c1 = vtrnq_s32(vreinterpretq_s32_s16(b0.val[1]), local
682 const uint32x4x2_t c1 = vtrnq_u32(vreinterpretq_u32_u16(b0.val[1]), local
755 const int32x4x2_t c1 = vpx_vtrnq_s64_to_s32(b0.val[1], b1.val[1]); local
831 const uint16x8x2_t c1 = vtrnq_u16(vreinterpretq_u16_u8(b0.val[1]), local
960 const uint16x8x2_t c1 = vtrnq_u16(vreinterpretq_u16_u8(b0.val[1]), local
1077 const uint16x8x2_t c1 = vtrnq_u16(vreinterpretq_u16_u8(b0.val[1]), local
    [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 252 int c1 = buf[len - 2]; local
254 if (isdigit(static_cast<unsigned char>(c1)) &&
257 buf[len - 3] = c1;
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
libbitmask.c 310 const char *c1, *c2; /* next tokens after '-' or ',' */ local
319 c1 = nexttoken(p, '-');
321 if (c1 != NULL && (c2 == NULL || c1 < c2)) {
322 sret = sscanf(c1, "%u%c", &b, &nextc);
325 c1 = nexttoken(c1, ':');
326 if (c1 != NULL && (c2 == NULL || c1 < c2)) {
327 sret = sscanf(c1, "%u%c", &s, &nextc)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 78 int c1 = c0 + dcdy; local
79 int c2 = c1 + dcdy;
86 mask |= ((c1 + 0 * dcdx) >> 31) & (1 << 4);
87 mask |= ((c1 + 1 * dcdx) >> 31) & (1 << 5);
88 mask |= ((c1 + 2 * dcdx) >> 31) & (1 << 6);
89 mask |= ((c1 + 3 * dcdx) >> 31) & (1 << 7);

Completed in 783 milliseconds

<<21222324252627282930>>