HomeSort by: relevance | last modified time | path
    Searched defs:ctxt (Results 1 - 25 of 67) sorted by relevancy

1 2 3

  /src/tests/usr.bin/xlint/lint1/
gcc_init_compound_literal.c 25 const unsigned char *ctxt; member in struct:__anon8022
27 .ctxt = (const unsigned char[4]){
  /src/external/gpl3/gcc/dist/gcc/jit/docs/examples/
tut01-hello-world.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_VOID);
38 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_CONST_CHAR_PTR);
40 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "name");
42 gcc_jit_context_new_function (ctxt, NULL,
50 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "format");
52 gcc_jit_context_new_function (ctxt, NULL,
55 ctxt, GCC_JIT_TYPE_INT),
60 args[0] = gcc_jit_context_new_string_literal (ctxt, "hello %s\n");
67 gcc_jit_context_new_call (ctxt,
77 gcc_jit_context *ctxt; local
    [all...]
tut01-hello-world.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type void_type = ctxt.get_type (GCC_JIT_TYPE_VOID);
37 ctxt.get_type (GCC_JIT_TYPE_CONST_CHAR_PTR);
39 ctxt.new_param (const_char_ptr_type, "name");
43 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
49 ctxt.new_param (const_char_ptr_type, "format");
53 ctxt.new_function (GCC_JIT_FUNCTION_IMPORTED,
54 ctxt.get_type (GCC_JIT_TYPE_INT),
59 block.add_eval (ctxt.new_call (printf_func,
60 ctxt.new_rvalue ("hello %s\n")
68 gccjit::context ctxt; local
    [all...]
tut02-square.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
38 gcc_jit_context_new_param (ctxt, NULL, int_type, "i");
40 gcc_jit_context_new_function (ctxt, NULL,
51 ctxt, NULL,
62 gcc_jit_context *ctxt = NULL; local
66 ctxt = gcc_jit_context_acquire ();
67 if (!ctxt)
69 fprintf (stderr, "NULL ctxt");
76 ctxt,
    [all...]
tut02-square.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type int_type = ctxt.get_type (GCC_JIT_TYPE_INT);
36 gccjit::param param_i = ctxt.new_param (int_type, "i");
39 gccjit::function func = ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
47 ctxt.new_binary_op (GCC_JIT_BINARY_OP_MULT, int_type,
57 gccjit::context ctxt = gccjit::context::acquire (); local
61 ctxt.set_bool_option (
66 create_code (ctxt);
69 gcc_jit_result *result = ctxt.compile ();
72 ctxt.release ()
    [all...]
tut03-sum-of-squares.c 26 create_code (gcc_jit_context *ctxt)
42 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
46 gcc_jit_context_new_param (ctxt, NULL, the_type, "n");
49 gcc_jit_context_new_function (ctxt, NULL,
74 gcc_jit_context_zero (ctxt, the_type));
80 gcc_jit_context_zero (ctxt, the_type));
88 ctxt, NULL,
101 ctxt, NULL,
111 gcc_jit_context_one (ctxt, the_type));
125 gcc_jit_context *ctxt = NULL local
    [all...]
tut03-sum-of-squares.cc 26 create_code (gccjit::context ctxt)
41 gccjit::type the_type = ctxt.get_int_type <int> ();
44 gccjit::param n = ctxt.new_param (the_type, "n");
48 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
63 b_initial.add_assignment (sum, ctxt.zero (the_type));
66 b_initial.add_assignment (i, ctxt.zero (the_type));
84 ctxt.one (the_type));
95 gccjit::context ctxt; local
99 ctxt = gccjit::context::acquire ();
103 ctxt.set_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/
tut01-hello-world.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_VOID);
38 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_CONST_CHAR_PTR);
40 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "name");
42 gcc_jit_context_new_function (ctxt, NULL,
50 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "format");
52 gcc_jit_context_new_function (ctxt, NULL,
55 ctxt, GCC_JIT_TYPE_INT),
60 args[0] = gcc_jit_context_new_string_literal (ctxt, "hello %s\n");
67 gcc_jit_context_new_call (ctxt,
77 gcc_jit_context *ctxt; local
    [all...]
tut01-hello-world.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type void_type = ctxt.get_type (GCC_JIT_TYPE_VOID);
37 ctxt.get_type (GCC_JIT_TYPE_CONST_CHAR_PTR);
39 ctxt.new_param (const_char_ptr_type, "name");
43 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
49 ctxt.new_param (const_char_ptr_type, "format");
53 ctxt.new_function (GCC_JIT_FUNCTION_IMPORTED,
54 ctxt.get_type (GCC_JIT_TYPE_INT),
59 block.add_eval (ctxt.new_call (printf_func,
60 ctxt.new_rvalue ("hello %s\n")
68 gccjit::context ctxt; local
    [all...]
tut02-square.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
38 gcc_jit_context_new_param (ctxt, NULL, int_type, "i");
40 gcc_jit_context_new_function (ctxt, NULL,
51 ctxt, NULL,
62 gcc_jit_context *ctxt = NULL; local
66 ctxt = gcc_jit_context_acquire ();
67 if (!ctxt)
69 fprintf (stderr, "NULL ctxt");
76 ctxt,
    [all...]
tut02-square.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type int_type = ctxt.get_type (GCC_JIT_TYPE_INT);
36 gccjit::param param_i = ctxt.new_param (int_type, "i");
39 gccjit::function func = ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
47 ctxt.new_binary_op (GCC_JIT_BINARY_OP_MULT, int_type,
57 gccjit::context ctxt = gccjit::context::acquire (); local
61 ctxt.set_bool_option (
66 create_code (ctxt);
69 gcc_jit_result *result = ctxt.compile ();
72 ctxt.release ()
    [all...]
tut03-sum-of-squares.c 26 create_code (gcc_jit_context *ctxt)
42 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
46 gcc_jit_context_new_param (ctxt, NULL, the_type, "n");
49 gcc_jit_context_new_function (ctxt, NULL,
74 gcc_jit_context_zero (ctxt, the_type));
80 gcc_jit_context_zero (ctxt, the_type));
88 ctxt, NULL,
101 ctxt, NULL,
111 gcc_jit_context_one (ctxt, the_type));
125 gcc_jit_context *ctxt = NULL local
    [all...]
tut03-sum-of-squares.cc 26 create_code (gccjit::context ctxt)
41 gccjit::type the_type = ctxt.get_int_type <int> ();
44 gccjit::param n = ctxt.new_param (the_type, "n");
48 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
63 b_initial.add_assignment (sum, ctxt.zero (the_type));
66 b_initial.add_assignment (i, ctxt.zero (the_type));
84 ctxt.one (the_type));
95 gccjit::context ctxt; local
99 ctxt = gccjit::context::acquire ();
103 ctxt.set_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE
    [all...]
  /src/external/gpl3/gcc/dist/gcc/analyzer/
kf-lang-cp.cc 93 region_model_context *ctxt = cd.get_ctxt (); variable
110 ctxt);
121 = model->get_or_create_region_for_heap_alloc (size_sval, ctxt);
136 region_model_context *ctxt = cd.get_ctxt (); variable
145 = model->get_store_value (cd.get_lhs_region (), ctxt);
146 model->add_constraint (result, NE_EXPR, null_sval, ctxt);
kf-analyzer.cc 102 region_model_context *ctxt = cd.get_ctxt (); variable
103 if (!ctxt)
107 const svalue *sval_ptr = model->get_rvalue (t_ptr, ctxt);
108 const region *reg = model->deref_rvalue (sval_ptr, t_ptr, ctxt);
159 region_model_context *ctxt = cd.get_ctxt (); variable
160 if (!ctxt)
227 region_model_context *ctxt = cd.get_ctxt (); variable
228 if (!ctxt)
258 bool emit (diagnostic_emission_context &ctxt) final override
260 ctxt.inform ("path")
287 region_model_context *ctxt = cd.get_ctxt (); variable
306 region_model_context *ctxt = cd.get_ctxt (); variable
331 region_model_context *ctxt = cd.get_ctxt (); variable
    [all...]
  /src/tests/dev/cgd/
t_cgd_adiantum.c 58 const uint8_t *ctxt; member in struct:__anon7800
65 .ctxt = (const uint8_t[512]) {
137 .ctxt = (const uint8_t[512]) {
209 .ctxt = (const uint8_t[512]) {
368 if (memcmp(buf, C[i].ctxt, C[i].secsize)) {
370 hexdump(C[i].ctxt, C[i].secsize);
371 atf_tc_fail_nonfatal("case %u ctxt mismatch", i);
t_cgd_3des.c 58 const uint8_t *ctxt; /* CipherText */ member in struct:testvec
373 .ctxt = c3des_cbc_192_encblkno1_vec0_ctxt,
378 .ctxt = c3des_cbc_192_encblkno1_vec1_ctxt,
383 .ctxt = c3des_cbc_192_encblkno1_vec2_ctxt,
388 .ctxt = c3des_cbc_192_encblkno1_vec3_ctxt,
676 .ctxt = c3des_cbc_192_encblkno8_vec0_ctxt,
681 .ctxt = c3des_cbc_192_encblkno8_vec1_ctxt,
686 .ctxt = c3des_cbc_192_encblkno8_vec2_ctxt,
691 .ctxt = c3des_cbc_192_encblkno8_vec3_ctxt,
806 res = memcmp(buf, tv->ctxt, SECSIZE)
    [all...]
  /src/crypto/external/bsd/openssh/dist/
auth2-gss.c 71 Gssctxt *ctxt = NULL; local
121 if (GSS_ERROR(mm_ssh_gssapi_server_ctx(&ctxt, &goid))) {
122 if (ctxt != NULL)
123 ssh_gssapi_delete_ctx(&ctxt);
129 authctxt->methoddata = (void *)ctxt;
auth2-chall.c 87 void *ctxt; member in struct:KbdintAuthctxt
137 kbdintctxt->ctxt = NULL;
146 if (kbdintctxt->ctxt) {
147 kbdintctxt->device->free_ctx(kbdintctxt->ctxt);
148 kbdintctxt->ctxt = NULL;
250 if ((kbdintctxt->ctxt = kbdintctxt->device->init_ctx(authctxt)) == NULL) {
275 if (kbdintctxt->device->query(kbdintctxt->ctxt,
317 if (kbdintctxt == NULL || kbdintctxt->ctxt == NULL)
339 res = kbdintctxt->device->respond(kbdintctxt->ctxt, nresp, response);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DiffConsumer.cpp 75 DiffContext &ctxt = contexts[N]; local
76 if (!ctxt.IsFunction) continue;
78 if (ctxt.LNumbering.empty())
79 ComputeNumbering(cast<Function>(ctxt.L), ctxt.LNumbering);
80 out << '%' << ctxt.LNumbering[V];
83 if (ctxt.RNumbering.empty())
84 ComputeNumbering(cast<Function>(ctxt.R), ctxt.RNumbering);
85 out << '%' << ctxt.RNumbering[V]
    [all...]
  /src/sys/crypto/aes/
aes_selftest.c 492 static uint8_t ctxt[48] = { local
521 if (memcmp(buf, ctxt, 32))
522 result |= aes_selftest_fail(impl, buf, ctxt, 48,
528 impl->ai_ccm_dec1(&enc, ctxt, buf, 16, authctr, nr);
532 impl->ai_ccm_dec1(&enc, ctxt + 16, buf + 16, 32, authctr, nr);
aes_ccm.c 381 const uint8_t *ctxt; member in struct:__anon2444
395 .ctxt = (const uint8_t[23]) {
413 .ctxt = (const uint8_t[24]) {
431 .ctxt = (const uint8_t[25]) {
450 .ctxt = (const uint8_t[19]) {
468 .ctxt = (const uint8_t[20]) {
486 .ctxt = (const uint8_t[21]) {
504 .ctxt = (const uint8_t[21]) {
539 if (memcmp(bufp, T[i].ctxt, T[i].mlen)) {
541 snprintf(name, sizeof name, "%s: ctxt %u", __func__
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/srp/
srp_lib.c 123 EVP_MD_CTX *ctxt; local
130 ctxt = EVP_MD_CTX_new();
131 if (ctxt == NULL)
136 if (!EVP_DigestInit_ex(ctxt, EVP_sha1(), NULL)
137 || !EVP_DigestUpdate(ctxt, user, strlen(user))
138 || !EVP_DigestUpdate(ctxt, ":", 1)
139 || !EVP_DigestUpdate(ctxt, pass, strlen(pass))
140 || !EVP_DigestFinal_ex(ctxt, dig, NULL)
141 || !EVP_DigestInit_ex(ctxt, EVP_sha1(), NULL))
145 if (!EVP_DigestUpdate(ctxt, cs, BN_num_bytes(s))
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/src/
po-gram-gen.h 11 struct { char *ctxt; char *id; char *id_plural; lex_pos_ty pos; bool obsolete; } prev; member in struct:__anon9270::__anon9275
12 struct { char *prev_ctxt; char *prev_id; char *prev_id_plural; char *ctxt; lex_pos_ty pos; bool obsolete; } message_intro; member in struct:__anon9270::__anon9276
po-gram-gen2.h 11 struct { char *ctxt; char *id; char *id_plural; lex_pos_ty pos; bool obsolete; } prev; member in struct:__anon9278::__anon9283
12 struct { char *prev_ctxt; char *prev_id; char *prev_id_plural; char *ctxt; lex_pos_ty pos; bool obsolete; } message_intro; member in struct:__anon9278::__anon9284

Completed in 276 milliseconds

1 2 3