Home
last modified time | relevance | path

Searched refs:ex2 (Results 1 – 25 of 27) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Darrayop.c465 Expression *ex2 = buildArrayLoop(e->e2); in buildArrayLoop() local
471 ex2 = new CastExp(Loc(), ex2, e->e1->type->nextOf()); in buildArrayLoop()
475 result = new AssignExp(Loc(), ex1, ex2); in buildArrayLoop()
482 Expression *ex2 = buildArrayLoop(e->e2); in buildArrayLoop() local
488 case TOKaddass: result = new AddAssignExp(e->loc, ex1, ex2); return; in buildArrayLoop()
489 case TOKminass: result = new MinAssignExp(e->loc, ex1, ex2); return; in buildArrayLoop()
490 case TOKmulass: result = new MulAssignExp(e->loc, ex1, ex2); return; in buildArrayLoop()
491 case TOKdivass: result = new DivAssignExp(e->loc, ex1, ex2); return; in buildArrayLoop()
492 case TOKmodass: result = new ModAssignExp(e->loc, ex1, ex2); return; in buildArrayLoop()
493 case TOKxorass: result = new XorAssignExp(e->loc, ex1, ex2); return; in buildArrayLoop()
[all …]
H A Dexpression.c6099 Expression *ex2 = e2->toBoolean(sc); in toBoolean() local
6100 if (ex2->op == TOKerror) in toBoolean()
6101 return ex2; in toBoolean()
6102 e2 = ex2; in toBoolean()
6477 Expression *ex2 = e2->toBoolean(sc); in toBoolean() local
6478 if (ex2->op == TOKerror) in toBoolean()
6479 return ex2; in toBoolean()
6480 e2 = ex2; in toBoolean()
6493 Expression *ex2 = e2->toBoolean(sc); in toBoolean() local
6494 if (ex2->op == TOKerror) in toBoolean()
[all …]
H A Dtraits.c766 else if (Expression *ex2 = isExpression(o)) in semanticTraits() local
767 ex = new DotIdExp(e->loc, ex2, id); in semanticTraits()
H A Dopover.c1101 Expression *ex2 = (*tup2->exps)[i]; in op_overload() local
1102 EqualExp *eeq = new EqualExp(e->op, e->loc, ex1, ex2); in op_overload()
H A Dexpressionsem.c5453 Expression *ex2 = (*tup2->exps)[i]; in visit() local
5454 (*exps)[i] = new AssignExp(exp->loc, ex1, ex2); in visit()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/
H A Dfindmisopt109 ex2=$?
112 if [ "$ex1" -ne "$ex2" ] ; then
116 echo "Optimized returned: $ex2"
/netbsd-src/sys/fs/efs/
H A Defs_subr.c415 struct efs_extent ex, ex2; in efs_extent_iterator_init() local
490 efs_dextent_to_extent((struct efs_dextent *)bp->b_data, &ex2); in efs_extent_iterator_init()
493 offset = ex2.ex_offset * EFS_BB_SIZE; in efs_extent_iterator_init()
537 &ex2); in efs_extent_iterator_init()
540 offset = ex2.ex_offset * EFS_BB_SIZE; in efs_extent_iterator_init()
541 length = ex2.ex_length * EFS_BB_SIZE; in efs_extent_iterator_init()
/netbsd-src/tests/lib/libc/gen/
H A Dt_fpsetmask.c232 fp_except ex1, ex2; in fpsetmask_masked() local
256 ex2 = fpsetsticky(0); in fpsetmask_masked()
258 ATF_CHECK_EQ(ex1, ex2); in fpsetmask_masked()
/netbsd-src/lib/libcurses/PSD.doc/
H A Dex2.c1 .\" $NetBSD: ex2.c,v 1.8 2022/07/06 12:33:41 andvar Exp $
30 .\" @(#)ex2.c 8.1 (Berkeley) 6/8/93
H A DMakefile7 CEXAMPLES= ex1.gr ex2.gr life.gr twinkle1.gr twinkle2.gr win_st.gr
/netbsd-src/external/mpl/bind/dist/bin/tests/system/additional/ns3/
H A Dex.db15 NS ns1.ex2.
/netbsd-src/external/lgpl3/mpfr/dist/tests/
H A Dtsub.c391 mpfr_t ex, ex1, ex2, ex3, tot, tot1; in bug_ddefour() local
395 mpfr_init2(ex2, 53); in bug_ddefour()
404 test_sub( ex2, tot, ex1, MPFR_RNDN); /* ex2 = high(tot - ex1) */ in bug_ddefour()
408 if (mpfr_cmp(ex2, ex3)) in bug_ddefour()
411 printf ("ex2="); mpfr_dump (ex2); in bug_ddefour()
418 mpfr_clear (ex2); in bug_ddefour()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/
H A Dcortex-a5.md105 ;; dc1 stage is parallel with ex1, dc2 with ex2 and rot with wr.
268 ;; ??? The flag forwarding from fmstat to the ex2 stage of the second
H A Dcortex-a7.md81 ;; ex2 can be reserved only after ex1 is reserved.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Dcortex-a5.md105 ;; dc1 stage is parallel with ex1, dc2 with ex2 and rot with wr.
268 ;; ??? The flag forwarding from fmstat to the ex2 stage of the second
H A Dcortex-a7.md81 ;; ex2 can be reserved only after ex1 is reserved.
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpressionsem.d8963 Expression ex2 = (*tup2.exps)[i]; in visit() local
8964 (*exps)[i] = new AssignExp(exp.loc, ex1, ex2); in visit()
13380 auto ex2 = ce.e2.toBoolean(sc); in toBoolean() local
13381 if (ex2.op == EXP.error) in toBoolean()
13382 return ex2; in toBoolean()
13383 ce.e2 = ex2; in toBoolean()
13402 auto ex2 = le.e2.toBoolean(sc); in toBoolean() local
13403 if (ex2.op == EXP.error) in toBoolean()
13404 return ex2; in toBoolean()
13405 le.e2 = ex2; in toBoolean()
[all …]
H A Dtraits.d1034 else if (auto ex2 = isExpression(o)) in semanticTraits() local
1035 ex = new DotIdExp(e.loc, ex2, id); in semanticTraits()
H A Dopover.d1065 auto ex2 = (*tup2.exps)[i]; in visitEqual() local
1066 auto eeq = new EqualExp(e.op, e.loc, ex1, ex2); in visitEqual()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DNVPTXUsage.rst945 ex2.approx.ftz.f32 %f88,%f89;
948 ex2.approx.f32 %f97, %f96;
/netbsd-src/external/bsd/openldap/dist/libraries/liblmdb/
H A Dmdb.c6193 int ex2, *ex2p; in mdb_cursor_set() local
6195 ex2p = &ex2; in mdb_cursor_set()
6196 ex2 = 0; in mdb_cursor_set()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXIntrinsics.td759 def INT_NVVM_EX2_APPROX_FTZ_F : F_MATH_1<"ex2.approx.ftz.f32 \t$dst, $src0;",
761 def INT_NVVM_EX2_APPROX_F : F_MATH_1<"ex2.approx.f32 \t$dst, $src0;",
763 def INT_NVVM_EX2_APPROX_D : F_MATH_1<"ex2.approx.f64 \t$dst, $src0;",
/netbsd-src/external/gpl2/xcvs/dist/src/
H A Dsanity.sh1378 echo "$4" > ${TESTDIR}/dotest.ex2
1440 rm -f ${TESTDIR}/dotest.ex2
1461 mv ${TESTDIR}/dotest.exp ${TESTDIR}/dotest.ex2
H A DChangeLog-96736 also used, to dotest.ex1 and dotest.ex2.
/netbsd-src/distrib/sets/lists/misc/
H A Dmi516 ./usr/share/doc/psd/19.curses/ex2.c misc-obsolete obsolete

12