Searched defs:cmp (Results 151 - 175 of 195) sorted by relevance

12345678

/external/mesa3d/src/glsl/
H A Dir.h802 int cmp; member in class:ir_loop
/external/open-vcdiff/gflags/src/
H A Dgflags.cc1393 int cmp = strcmp(a.filename.c_str(), b.filename.c_str()); local
1394 if (cmp == 0)
1395 cmp = strcmp(a.name.c_str(), b.name.c_str()); // secondary sort key
1396 return cmp < 0;
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.cpp1145 int* cmp; local
1159 cmp = blocks[pos[c]];
1160 for( y = 0; y < v[c]; y += 8, cmp += h[c]*8 )
1166 aan_idct8x8( temp, cmp + x, h[c] );
1177 cmp = blocks[0];
1181 for( y = 0; y < y2; y++, data1 += step, cmp += h[0] )
1187 int val = descale( cmp[x] + 128*4, 2 );
1195 int val = descale( cmp[x] + 128*4, 2 );
1202 for( y = 0; y < y2; y++, data1 += step, cmp += h[0] )
1214 int Y = (cmp[
[all...]
/external/valgrind/main/callgrind/
H A Ddump.c1012 BBCC** med3(BBCC **a, BBCC **b, BBCC **c, int (*cmp)(BBCC**,BBCC**)) argument
1013 { return cmp(a, b) < 0 ?
1014 (cmp(b, c) < 0 ? b : cmp(a, c) < 0 ? c : a)
1015 : (cmp(b, c) > 0 ? b : cmp(a, c) > 0 ? c : a);
1020 static void qsort(BBCC **a, int n, int (*cmp)(BBCC**,BBCC**)) argument
1030 for (pl = pm; pl > a && cmp(pl-1, pl) > 0; pl --)
1049 pl = med3(pl, pl+s, pl+2*s, cmp);
1050 pm = med3(pm-s, pm, pm+s, cmp);
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dxmlunicode.c947 int low, high, mid, cmp; local
957 if ((cmp=strcmp(tname, sptr[mid].rangename)) == 0)
959 if (cmp < 0)
H A Dparser.c3310 register const xmlChar *cmp = other; local
3319 while (*in != 0 && *in == *cmp) {
3321 ++cmp;
3324 if (*cmp == 0 && (*in == '>' || IS_BLANK_CH (*in))) {
8475 const xmlChar *cmp; local
8485 cmp = prefix;
8486 while (*in != 0 && *in == *cmp) {
8488 ++cmp;
8490 if ((*cmp == 0) && (*in == ':')) {
8492 cmp
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c1220 int cmp; /* memcmp() result */ local
1266 cmp = memcmp(zTerm, zBuffer, (nBuffer>nTerm ? nTerm : nBuffer));
1267 if( piFirst && (cmp<0 || (cmp==0 && nBuffer>nTerm)) ){
1272 if( piLast && cmp<0 ){
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.h900 void cmp(Register src1, const Operand& src2, Condition cond = al);
901 void cmp(Register src1, Register src2, Condition cond = al) { function in class:v8::internal::Assembler
902 cmp(src1, Operand(src2), cond);
H A Dassembler-arm.cc1404 void Assembler::cmp(Register src1, const Operand& src2, Condition cond) { function in class:v8::internal::Assembler
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32.cc804 void Assembler::cmp(Register reg, int32_t imm32) { function in class:v8::internal::Assembler
810 void Assembler::cmp(Register reg, Handle<Object> handle) { function in class:v8::internal::Assembler
816 void Assembler::cmp(Register reg, const Operand& op) { function in class:v8::internal::Assembler
823 void Assembler::cmp(const Operand& op, const Immediate& imm) { function in class:v8::internal::Assembler
829 void Assembler::cmp(const Operand& op, Handle<Object> handle) { function in class:v8::internal::Assembler
/external/libxml2/
H A Dxmlunicode.c947 int low, high, mid, cmp; local
957 if ((cmp=strcmp(tname, sptr[mid].rangename)) == 0)
959 if (cmp < 0)
H A Dparser.c3423 register const xmlChar *cmp = other; local
3430 while (*in != 0 && *in == *cmp) {
3432 ++cmp;
3435 if (*cmp == 0 && (*in == '>' || IS_BLANK_CH (*in))) {
8520 const xmlChar *cmp; local
8530 cmp = prefix;
8531 while (*in != 0 && *in == *cmp) {
8533 ++cmp;
8535 if ((*cmp == 0) && (*in == ':')) {
8537 cmp
[all...]
/external/linux-tools-perf/
H A Dbuiltin-sched.c896 sort_fn_t cmp; member in struct:sort_dimension
911 ret = sort->cmp(l, r);
928 int cmp; local
932 cmp = thread_lat_cmp(sort_list, &key, atoms);
933 if (cmp > 0)
935 else if (cmp < 0)
953 int cmp; local
958 cmp = thread_lat_cmp(sort_list, data, this);
960 if (cmp > 0)
1277 .cmp
[all...]
/external/linux-tools-perf/util/
H A Dsymbol.c348 int cmp; local
351 cmp = strcmp(name, s->sym.name);
353 if (cmp < 0)
355 else if (cmp > 0)
/external/stlport/src/c_locale_win32/
H A Dc_locale_win32.c1371 int cmp; local
1379 if ((cmp = lstrcmpiA(lname, (*(ConvTable + i)).name)) == 0)
1381 else if (cmp < 0)
/external/v8/src/arm/
H A Dassembler-arm.h825 void cmp(Register src1, const Operand& src2, Condition cond = al);
826 void cmp(Register src1, Register src2, Condition cond = al) { function in class:v8::internal::Assembler
827 cmp(src1, Operand(src2), cond);
/external/v8/src/ia32/
H A Dassembler-ia32.cc857 void Assembler::cmp(Register reg, int32_t imm32) { function in class:v8::internal::Assembler
863 void Assembler::cmp(Register reg, Handle<Object> handle) { function in class:v8::internal::Assembler
869 void Assembler::cmp(Register reg, const Operand& op) { function in class:v8::internal::Assembler
876 void Assembler::cmp(const Operand& op, const Immediate& imm) { function in class:v8::internal::Assembler
882 void Assembler::cmp(const Operand& op, Handle<Object> handle) { function in class:v8::internal::Assembler
/external/chromium_org/third_party/bintrees/bintrees/
H A Dqavltree.c2282 int cmp = (**name == key) ? 0 : local
2287 if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
2288 if (cmp == 0) {
2298 int cmp = (**argname == key) ? 0 : local
2303 if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
2304 if (cmp == 0) goto arg_passed_twice;
H A Dqbintree.c2277 int cmp = (**name == key) ? 0 : local
2282 if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
2283 if (cmp == 0) {
2293 int cmp = (**argname == key) ? 0 : local
2298 if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
2299 if (cmp == 0) goto arg_passed_twice;
H A Dqrbtree.c2279 int cmp = (**name == key) ? 0 : local
2284 if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
2285 if (cmp == 0) {
2295 int cmp = (**argname == key) ? 0 : local
2300 if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
2301 if (cmp == 0) goto arg_passed_twice;
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.c5615 decNumber cmp; /* work */ local
5777 decCompareOp(&cmp, rhs, &numone, &aset, COMPARE, &ignore); /* rhs=1 ? */
5778 if (cmp.lsu[0]==0) a->exponent=0; /* yes, exact 0 */
/external/icu4c/i18n/
H A DdecNumber.c5644 decNumber cmp; /* work */ local
5806 decCompareOp(&cmp, rhs, &numone, &aset, COMPARE, &ignore); /* rhs=1 ? */
5807 if (cmp.lsu[0]==0) a->exponent=0; /* yes, exact 0 */
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBox.cpp4355 LayoutPoint cmp; local
4358 cmp = LayoutPoint(right, top);
4360 cmp = LayoutPoint(right, bottom);
4362 cmp = LayoutPoint(right, point.y());
4365 cmp = LayoutPoint(left, top);
4367 cmp = LayoutPoint(left, bottom);
4369 cmp = LayoutPoint(left, point.y());
4372 cmp = LayoutPoint(point.x(), top);
4374 cmp = LayoutPoint(point.x(), bottom);
4377 LayoutSize difference = cmp
[all...]
/external/chromium_org/v8/src/
H A Dparser.cc3107 Token::Value cmp = op; local
3109 case Token::NE: cmp = Token::EQ; break;
3110 case Token::NE_STRICT: cmp = Token::EQ_STRICT; break;
3113 x = factory()->NewCompareOperation(cmp, x, y, pos);
3114 if (cmp != op) {

Completed in 849 milliseconds

12345678