Searched defs:c1 (Results 376 - 400 of 649) sorted by relevance

<<11121314151617181920>>

/external/clang/lib/Lex/
H A DLiteralSupport.cpp756 int c1 = s[0]; local
760 if ((c1 == 'x' || c1 == 'X') && (isHexDigit(c2) || c2 == '.')) {
813 if ((c1 == 'b' || c1 == 'B') && (c2 == '0' || c2 == '1')) {
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp10 char c1 = x; // OK, though it might narrow (in this case, it does narrow) local
138 Agg<char> c1 = {s}; // expected-error {{ cannot be narrowed }} expected-note {{silence}} local
207 struct {const unsigned char c;} c1 = {j}; // expected-error {{from type 'int' to 'unsigned char' in}} expected-note {{silence}} local
H A Dp7-cxx11-nowarn.cpp11 char c1 = x; // OK, though it might narrow (in this case, it does narrow) local
139 Agg<char> c1 = {s}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}} local
194 struct {const unsigned char c;} c1 = {j}; // expected-warning {{from type 'int' to 'unsigned char' in}} expected-note {{silence}} local
/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior.cpp336 alignas(16) int c1; member in class:C
H A Dtemporaries.cpp589 void f(C &c1, const C &c2) { argument
591 c1 = c2;
/external/dnsmasq/src/
H A Dforward.c739 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) ||
/external/e2fsprogs/e2fsck/
H A Drehash.c559 int i, c1, c2, nblks; local
566 c1 = root_limit->limit;
570 if (nblks-1 <= c1) {
579 c1--;
586 if (c1 == 0)
605 c1--;
618 root_limit->count = ext2fs_cpu_to_le16(root_limit->limit - c1);
/external/eigen/Eigen/src/Eigenvalues/
H A DSelfAdjointEigenSolver.h503 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The
507 Scalar c1 = m(0,0)*m(1,1) - m(1,0)*m(1,0) + m(0,0)*m(2,2) - m(2,0)*m(2,0) + m(1,1)*m(2,2) - m(2,1)*m(2,1); local
513 Scalar a_over_3 = (c1 - c2*c2_over_3)*s_inv3;
517 Scalar half_b = Scalar(0.5)*(c0 + c2_over_3*(Scalar(2)*c2_over_3*c2_over_3 - c1));
/external/fio/
H A Dgettime.c523 const struct clock_entry *c1 = p1; local
526 if (c1->seq == c2->seq)
529 return c1->seq - c2->seq;
/external/icu/icu4c/source/common/
H A Ducase.cpp316 int32_t c1, c2; local
320 c1=*s++;
325 c1-=c2;
326 if(c1!=0) {
327 return c1; /* return difference result */
/external/icu/icu4c/source/test/cintltst/
H A Dcitertst.c422 UCollator *c1, *c2, *c3; local
447 c1 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
451 if (c1 == NULL || U_FAILURE(status))
459 iter=ucol_openElements(c1, source, u_strlen(source), &status);
467 ucol_close(c1);
910 int32_t c1, c2; local
916 c1 = ucol_next(i1, &status);
919 if (c1 != c2)
921 log_err("Error in iteration %d assetEqual between\n %d and %d, they are not equal\n", count, c1, c2);
927 while (c1 !
[all...]
H A Dcrestst.c770 int32_t c1=0; local
811 T_FileStream_read(stream,&c1,1);
812 if(c!=c1){
816 c1 = T_FileStream_peek(stream);
817 if(c!=c1){
H A Dcustrtrn.c867 UChar c1, c2; local
870 c1=*s++;
872 if(c1!=c2 && c2!=0xfffd) {
H A Dcustrtst.c1191 UChar32 c1, c2; local
1217 c1=iter1->current(iter1);
1219 if(c1!=c2) {
1220 log_err("%s->current()=U+%04x != U+%04x=%s->current() at middle=%d\n", n1, c1, c2, n2, middle);
1226 c1=iter1->next(iter1);
1228 if(c1!=c2) {
1229 log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT));
1236 c1=iter1->previous(iter1);
1238 if(c1!=c2) {
1239 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c
[all...]
/external/icu/icu4c/source/test/perf/dicttrieperf/
H A Ddicttrieperf.cpp192 int32_t c1=(uint8_t)*s1++; local
194 cmp=c1-c2;
195 if(cmp!=0 || c1==0) { // different or done
/external/icu/icu4c/source/test/perf/ustrperf/
H A Dstringperf.h463 UChar c1='s'; local
465 scan_idx = uScan_STRING.indexOf(c1);
/external/jsoncpp/src/lib_json/
H A Djson_reader.cpp55 in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4 ) argument
57 return c == c1 || c == c2 || c == c3 || c == c4;
61 in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4, Reader::Char c5 ) argument
63 return c == c1 || c == c2 || c == c3 || c == c4 || c == c5;
/external/libopus/src/
H A Danalysis.c192 void tonality_analysis(TonalityAnalysisState *tonal, AnalysisInfo *info_out, const CELTMode *celt_mode, const void *x, int len, int offset, int c1, int c2, int C, int lsb_depth, downmix_func downmix) argument
237 downmix(x, &tonal->inmem[tonal->mem_fill], IMIN(len, ANALYSIS_BUF_SIZE-tonal->mem_fill), offset, c1, c2, C);
263 downmix(x, &tonal->inmem[240], remaining, offset+ANALYSIS_BUF_SIZE-tonal->mem_fill, c1, c2, C);
620 int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs,
634 tonality_analysis(analysis, NULL, celt_mode, analysis_pcm, IMIN(480, pcm_len), offset, c1, c2, C, lsb_depth, downmix);
619 run_analysis(TonalityAnalysisState *analysis, const CELTMode *celt_mode, const void *analysis_pcm, int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs, int lsb_depth, downmix_func downmix, AnalysisInfo *analysis_info) argument
/external/libvorbis/lib/
H A Dsmallft.c271 static void dradfg(int ido,int ip,int l1,int idl1,float *cc,float *c1, argument
300 ch[t2]=c1[t2];
319 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3];
320 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t3-1];
336 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3];
337 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t
840 dradbg(int ido,int ip,int l1,int idl1,float *cc,float *c1, float *c2,float *ch,float *ch2,float *wa) argument
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c26 int a1, b1, c1, d1, e1; local
32 c1 = ip[1] >> UNIT_QUANT_SHIFT;
35 a1 += c1;
39 c1 = e1 - c1;
41 d1 += c1;
44 op[2] = c1;
53 c1 = ip[4 * 1];
56 a1 += c1;
60 c1
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c605 int a1, b1, c1, d1, e1; local
612 c1 = ip[2 * stride];
616 d1 = d1 - c1;
619 c1 = e1 - c1;
620 a1 -= c1;
623 op[4] = c1;
636 c1 = ip[2];
640 d1 -= c1;
643 c1
[all...]
/external/libyuv/files/source/
H A Dcompare.cc497 const int64 c1 = (cc1 * count * count) >> 12; local
502 const int64 ssim_n = (2 * sum_a_x_sum_b + c1) *
508 const int64 ssim_d = (sum_a_sq + sum_b_sq + c1) *
/external/llvm/lib/Support/
H A Draw_ostream.cpp249 int c1 = buf[len - 2]; local
251 if (isdigit(static_cast<unsigned char>(c1)) &&
254 buf[len - 3] = c1;
/external/lzma/C/
H A DPpmd7.c392 CTX_PTR c1; /* = AllocContext(p); */ local
394 c1 = (CTX_PTR)(p->HiUnit -= UNIT_SIZE);
396 c1 = (CTX_PTR)RemoveNode(p, 0);
399 c1 = (CTX_PTR)AllocUnitsRare(p, 0);
400 if (!c1)
403 c1->NumStats = 1;
404 *ONE_STATE(c1) = upState;
405 c1->Suffix = REF(c);
406 SetSuccessor(ps[--numPs], REF(c1));
407 c = c1;
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_noise.c517 int c1 = (x0 > y0) ? 32 : 0; local
523 int c = c1 + c2 + c3 + c4 + c5 + c6;

Completed in 7913 milliseconds

<<11121314151617181920>>