| /freebsd/cddl/lib/libdtrace/ | 
| H A D | ip.d | 204 #pragma D binding "1.5" translator205 translator pktinfo_t < void *p > {
 209 #pragma D binding "1.5" translator
 210 translator csinfo_t < void *p > {
 217 #pragma D binding "1.6.3" translator
 218 translator csinfo_t < struct inpcb *p > {
 225 #pragma D binding "1.5" translator
 226 translator ipinfo_t < uint8_t *p > {
 242 #pragma D binding "1.13" translator
 243 translator ipinfo_t < struct mbuf *m > {
 [all …]
 
 | 
| H A D | nfs.d | 44 #pragma D binding "1.5" translator45 translator conninfo_t < struct svc_req *P > {
 73 #pragma D binding "1.5" translator
 74 translator conninfo_t < rfs4_client_t *P > {
 85 #pragma D binding "1.5" translator
 86 translator nfsv4cbinfo_t < rfs4_deleg_state_t *P > {
 99 #pragma D binding "1.5" translator
 100 translator nfsv3opinfo_t < nfsv3oparg_t *P > {
 
 | 
| H A D | sctp.d | 116 #pragma D binding "1.13" translator117 translator csinfo_t < struct sctp_tcb *p > {
 124 #pragma D binding "1.13" translator
 125 translator sctpsinfo_t < struct sctp_tcb *p > {
 157 #pragma D binding "1.13" translator
 158 translator sctpinfo_t < struct sctphdr *p > {
 166 #pragma D binding "1.13" translator
 167 translator sctplsinfo_t < int state > {
 
 | 
| H A D | tcp.d | 189  * tcpinfo and define a separate translator for it.204 #pragma D binding "1.6.3" translator
 205 translator csinfo_t < struct tcpcb *p > {
 212 #pragma D binding "1.6.3" translator
 213 translator tcpsinfo_t < struct tcpcb *p > {
 262 #pragma D binding "1.6.3" translator
 263 translator tcpinfo_t < struct tcphdr *p > {
 277  * This translator differs from the one for tcpinfo_t in that the sequence
 281 #pragma D binding "1.6.3" translator
 282 translator tcpinfoh_t < struct tcphdr *p > {
 [all …]
 
 | 
| H A D | nfssrv.d | 35 #pragma D binding "1.5" translator36 translator conninfo_t < struct compound_state *P > {
 48 #pragma D binding "1.5" translator
 49 translator nfsv4opinfo_t < struct compound_state *P > {
 
 | 
| H A D | udp.d | 52 #pragma D binding "1.6.3" translator53 translator udpsinfo_t < struct inpcb *p > {
 67 #pragma D binding "1.6.3" translator
 68 translator udpinfo_t < struct udphdr *p > {
 
 | 
| H A D | udplite.d | 53 #pragma D binding "1.13" translator54 translator udplitesinfo_t < struct inpcb *p > {
 68 #pragma D binding "1.13" translator
 69 translator udpliteinfo_t < struct udphdr *p > {
 
 | 
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/ | 
| H A D | tst.InputIntTrans.d | 31  * Test the declaration of a translator the input type in the translator34  * SECTION: Translators/Translator Declarations
 50 translator struct output_struct < int idontcare >
 58 	printf("Input type to the translator decl is different from members");
 
 | 
| H A D | tst.SimultaneousTranslators.d | 31  * Assign the different members of the output of the translator using32  * different translator declarations.
 34  * SECTION: Translators/Translator Declarations
 57 translator struct output_struct < struct input_struct1 *ivar1 >
 62 translator struct output_struct < struct input_struct2 *ivar2 >
 
 | 
| H A D | err.D_SYNTAX.BadTransDecl4.d | 31  * Test the declaration of a translator without terminating semi-colon (;).33  * SECTION: Translators/Translator Declarations
 50 translator struct output_struct < struct input_struct *uvar >
 56 translator struct output_struct < struct new_struct *newvar >
 63 	printf("Test translator declaration without terminating semi-colon");
 
 | 
| H A D | err.D_DECL_TYPERED.BadTransDecl.d | 31  * Test the declaration of a translator with the input type enclosed in34  * SECTION: Translators/Translator Declarations
 51 translator struct output_struct
 62 	printf("Using braces instead of angle brackets for translator input");
 
 | 
| H A D | tst.UnionOutputTrans.d | 31  * The output type in a translator definition can be a union.33  * SECTION: Translators/Translator Declarations
 50 translator union output_union < struct input_struct *ivar >
 59 	printf("Test translator definition with union output");
 
 | 
| H A D | err.D_SYNTAX.BadTransDecl1.d | 31  * Test the declaration of a translator with the input type enclosed in34  * SECTION: Translators/Translator Declarations
 50 translator struct output_struct ( struct input_struct *uvar )  in output_struct()
 58 	printf("Test translator with input type in parantheses");
 
 | 
| H A D | err.D_SYNTAX.BadTransDecl3.d | 31  * Test the declaration of a translator without enclosing braces { }.33  * SECTION: Translators/Translator Declarations
 50 translator struct output_struct < struct input_struct *uvar >
 57 	printf("Test the translator definition without enclosing braces");
 
 | 
| H A D | tst.RepeatDeclaration.d | 31  * Reassign the members of the output struct using another translator34  * SECTION: Translators/Translator Declarations
 55 translator struct output_struct < struct input_struct1 *ivar1 >
 61 translator struct output_struct < struct input_struct2 *ivar2 >
 
 | 
| H A D | err.D_XLATE_SOU.BadTransInt.d | 31  * When the output type of the translator declaration is not a struct or34  * SECTION: Translators/Translator Declarations
 44 translator int < struct input_struct *ivar >
 
 | 
| H A D | err.D_XLATE_SOU.BadTransDecl8.d | 31  * When the output type of the translator declaration is not a struct or34  * SECTION: Translators/Translator Declarations
 50 translator enum colors < struct input_struct *ivar >
 
 | 
| H A D | err.D_XLATE_MEMB.NonExistentOutput2.d | 31  * Test the declaration of a translator with a non-existent output member.33  * SECTION: Translators/Translator Declarations
 50 translator struct output_struct < struct input_struct *ivar >
 
 | 
| H A D | err.D_OP_INCOMPLETE.NonExistentInput1.d | 31  * Test the declaration of a translator with a non-existent input type.33  * SECTION: Translators/Translator Declarations
 44 translator struct output_struct < struct input_struct *ivar >
 
 | 
| H A D | err.D_XLATE_SOU.NonExistentOutput1.d | 31  * Test the declaration of a translator with a non-existent output type.33  * SECTION: Translators/Translator Declarations
 45 translator struct output_struct < struct input_struct *ivar >
 
 | 
| H A D | tst.UnionInputTrans.d | 33  * SECTION: Translators/Translator Declarations50 translator struct output_struct < union input_union *ivar >
 59 	printf("Translator definition good\n");
 
 | 
| /freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ | 
| H A D | dt_xlator.c | 42  * translator.  We set the member's dn_membexpr to a DT_NODE_XLATOR node that43  * has dn_op set to DT_TOK_XLATE and refers back to the translator itself.  The
 68 	 * xlator refers back to the translator and whose dn_xmember refers to  in dt_xlator_create_member()
 142 	 * If an input parameter name is given, this is a static translator  in dt_xlator_create()
 154 	dxp->dx_souid.di_name = "translator";  in dt_xlator_create()
 165 	dxp->dx_ptrid.di_name = "translator";  in dt_xlator_create()
 177 	 * If a deferred pragma is pending on the keyword "translator", run all  in dt_xlator_create()
 182 	    dt_idhash_lookup(yypcb->pcb_pragmas, "translator") != NULL) {  in dt_xlator_create()
 200 	 * If no input parameter is given, we're making a dynamic translator:  in dt_xlator_create()
 215 	 * if and when this translator is eventually compiled.  in dt_xlator_create()
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ | 
| H A D | SPIRV.cpp | 49 void SPIRV::Translator::ConstructJob(Compilation &C, const JobAction &JA,  in ConstructJob()61   if (!Translator)  in getTranslator()
 62     Translator = std::make_unique<SPIRV::Translator>(*this);  in getTranslator()
 63   return Translator.get();  in getTranslator()
 
 | 
| /freebsd/sys/dev/isci/scil/ | 
| H A D | sati.h | 97  *             ATA register FIS into which the translator can write the126  *             ATA register FIS into which the translator can write the
 158  *             ATA register FIS into which the translator can write the
 189  *             the translator can read the received ATA status and error
 216  *             the translator can read the received ATA status and error
 232  * @return Return the specification identifier with which this translator
 244  *         translator is compliant.
 
 | 
| H A D | sati_translator_sequence.h | 59  * @brief This file contains all of the defintions for the SATI translator60  *        sequence.  A translator sequence is simply a definition for the
 61  *        various sequences of commands that occur in this translator.
 70  *        translator.
 338     * translator sequence is destined.
 343     * This field is utilized to provide the translator with memory space
 
 |