Home
last modified time | relevance | path

Searched refs:tbool (Results 1 – 4 of 4) sorted by relevance

/third_party/openssl/crypto/asn1/
Dtasn_enc.c510 ASN1_BOOLEAN *tbool = NULL; in asn1_ex_i2c() local
559 tbool = (ASN1_BOOLEAN *)pval; in asn1_ex_i2c()
560 if (*tbool == -1) in asn1_ex_i2c()
566 if (*tbool && (it->size > 0)) in asn1_ex_i2c()
568 if (!*tbool && !it->size) in asn1_ex_i2c()
571 c = (unsigned char)*tbool; in asn1_ex_i2c()
Dtasn_dec.c840 ASN1_BOOLEAN *tbool; in asn1_ex_c2i() local
841 tbool = (ASN1_BOOLEAN *)pval; in asn1_ex_c2i()
842 *tbool = *cont; in asn1_ex_c2i()
/third_party/mesa3d/src/compiler/nir/
Dnir_opcodes.py98 tbool = "bool" variable
229 for src_t in [tint, tuint, tfloat, tbool]:
230 if src_t == tbool:
231 dst_types = [tfloat, tint, tbool]
233 dst_types = [tfloat, tint, tbool]
237 dst_types = [tint, tuint, tfloat, tbool]
281 conv_expr = "src0 != 0" if dst_t == tbool else "src0"
/third_party/mesa3d/docs/relnotes/
D19.0.0.rst1250 - nir/opcodes: Rename tbool to tbool32