Home
last modified time | relevance | path

Searched refs:ctn (Results 1 – 2 of 2) sorted by relevance

/trueos/usr.bin/xlint/lint1/
HDtree.c2341 tnode_t *ntn, *ctn; in bldstr() local
2366 ctn = getinode(LONG, rn->tn_sym->s_value.v_quad / CHAR_BIT); in bldstr()
2368 ctn = getinode(INT, rn->tn_sym->s_value.v_quad / CHAR_BIT); in bldstr()
2371 ntn = mktnode(PLUS, tincref(rn->tn_type, PTR), ln, ctn); in bldstr()
2442 tnode_t *ntn, *ctn; in bldplmi() local
2457 ctn = plength(ln->tn_type); in bldplmi()
2458 if (rn->tn_type->t_tspec != ctn->tn_type->t_tspec) in bldplmi()
2459 rn = convert(NOOP, 0, ctn->tn_type, rn); in bldplmi()
2460 rn = mktnode(MULT, rn->tn_type, rn, ctn); in bldplmi()
2477 ctn = plength(ln->tn_type); in bldplmi()
[all …]
/trueos/contrib/llvm/lib/IR/
HDVerifier.cpp161 explicit Verifier(VerifierFailureAction ctn) in Verifier()
162 : FunctionPass(ID), Broken(false), action(ctn), Mod(0), in Verifier()