Home
last modified time | relevance | path

Searched refs:ae2 (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/gpl2/groff/dist/src/preproc/refer/
H A Dlabel.y1094 const char *ae2; in same_author_last_name() local
1095 const char *as2 = r2.get_sort_field(0, n, 0, &ae2); in same_author_last_name()
1098 return ae1 - as1 == ae2 - as2 && memcmp(as1, as2, ae1 - as1) == 0; in same_author_last_name()
1105 const char *ae2; in same_author_name() local
1106 const char *as2 = r2.get_sort_field(0, n, -1, &ae2); in same_author_name()
1109 return ae1 - as1 == ae2 - as2 && memcmp(as1, as2, ae1 - as1) == 0; in same_author_name()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dctfeexpr.c1133 ArrayLiteralExp *ae2 = (x->op == TOKarrayliteral) ? (ArrayLiteralExp *)x : NULL; in ctfeCmpArrays() local
1138 if (se1 && ae2) in ctfeCmpArrays()
1139 return sliceCmpStringWithArray(se1, ae2, (size_t)lo1, (size_t)lo2, (size_t)len); in ctfeCmpArrays()
1143 assert (ae1 && ae2); in ctfeCmpArrays()
1151 Expression *ee2 = (*ae2->elements)[(size_t)(lo2 + i)]; in ctfeCmpArrays()
H A Dconstfold.c1538 int sliceCmpStringWithArray(StringExp *se1, ArrayLiteralExp *ae2, size_t lo1, size_t lo2, size_t le… in sliceCmpStringWithArray() argument
1545 unsigned val2 = (unsigned)ae2->getElement(j + lo2)->toInteger(); in sliceCmpStringWithArray()
H A Dexpression.h1582 int sliceCmpStringWithArray(StringExp *se1, ArrayLiteralExp *ae2, size_t lo1, size_t lo2, size_t le…
H A Dexpressionsem.c7881 AddrExp *ae2 = (AddrExp *)exp->e2; in visit() local
7882 if (ae1->e1->op == TOKvar && ae2->e1->op == TOKvar) in visit()
7885 VarExp *ve2 = (VarExp *)ae2->e1; in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dctfeexpr.d1125 auto ae2 = x2.isArrayLiteralExp(); in ctfeCmpArrays() local
1130 if (se1 && ae2) in ctfeCmpArrays()
1131 return sliceCmpStringWithArray(se1, ae2, cast(size_t)lo1, cast(size_t)lo2, cast(size_t)len); in ctfeCmpArrays()
1134 assert(ae1 && ae2); in ctfeCmpArrays()
1142 Expression ee2 = (*ae2.elements)[cast(size_t)(lo2 + i)]; in ctfeCmpArrays()
H A Ddinterpret.d3067 auto ae2 = e2.isArrayLiteralExp(); in interpretCommon() local
3068 if (ae1 || ae2) in interpretCommon()
3076 ae2 = null; in interpretCommon()
3077 else if (ae2 && e1.implicitConvTo(e2.type.toBasetype().nextOf())) // case 2 in interpretCommon()
3081 auto aex = ae1 ? ae1 : ae2; in interpretCommon()
3094 Expression e2x = ae2 ? ae2[i] : e2; in interpretCommon()
H A Dconstfold.d1441 int sliceCmpStringWithArray(const StringExp se1, ArrayLiteralExp ae2, size_t lo1, size_t lo2, size_… in sliceCmpStringWithArray() argument
1445 const val2 = cast(dchar)ae2[j + lo2].toInteger(); in sliceCmpStringWithArray()
H A Dexpressionsem.d11685 AddrExp ae2 = cast(AddrExp)exp.e2; in visit() local
11686 if (ae1.e1.op == EXP.variable && ae2.e1.op == EXP.variable) in visit()
11689 VarExp ve2 = cast(VarExp)ae2.e1; in visit()