Home
last modified time | relevance | path

Searched full:embed (Results 1 – 25 of 232) sorted by relevance

12345678910

/freebsd/crypto/openssl/crypto/asn1/
H A Dtasn_fre.c28 void ossl_asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed) in ossl_asn1_item_embed_free() argument
51 ossl_asn1_primitive_free(pval, it, embed); in ossl_asn1_item_embed_free()
55 ossl_asn1_primitive_free(pval, it, embed); in ossl_asn1_item_embed_free()
74 if (embed == 0) { in ossl_asn1_item_embed_free()
90 OPENSSL_assert(embed == 0); in ossl_asn1_item_embed_free()
118 if (embed == 0) { in ossl_asn1_item_embed_free()
128 int embed = tt->flags & ASN1_TFLG_EMBED; in ossl_asn1_template_free() local
130 if (embed) { in ossl_asn1_template_free()
141 ossl_asn1_item_embed_free(&vtmp, ASN1_ITEM_ptr(tt->item), embed); in ossl_asn1_template_free()
146 ossl_asn1_item_embed_free(pval, ASN1_ITEM_ptr(tt->item), embed); in ossl_asn1_template_free()
[all …]
H A Dtasn_new.c19 int embed, OSSL_LIB_CTX *libctx,
22 int embed);
60 int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed, in asn1_item_embed_new() argument
93 } else if (!asn1_primitive_new(pval, it, embed)) in asn1_item_embed_new()
98 if (!asn1_primitive_new(pval, it, embed)) in asn1_item_embed_new()
111 if (embed) { in asn1_item_embed_new()
133 if (embed) { in asn1_item_embed_new()
142 if (!embed) { in asn1_item_embed_new()
161 ossl_asn1_item_embed_free(pval, it, embed); in asn1_item_embed_new()
167 ossl_asn1_item_embed_free(pval, it, embed); in asn1_item_embed_new()
[all …]
H A Dasn1_local.h48 void ossl_asn1_string_embed_free(ASN1_STRING *a, int embed);
73 void ossl_asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
74 void ossl_asn1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
H A Dasn1_lib.c258 /* Copy flags but preserve embed value */ in ASN1_STRING_copy()
359 void ossl_asn1_string_embed_free(ASN1_STRING *a, int embed) in ossl_asn1_string_embed_free() argument
365 if (embed == 0) in ossl_asn1_string_embed_free()
/freebsd/sys/netgraph/
H A Dng_source.c440 struct ng_source_embed_info *embed; in ng_source_rcvmsg() local
442 if (msg->header.arglen != sizeof(*embed)) { in ng_source_rcvmsg()
446 embed = (struct ng_source_embed_info *)msg->data; in ng_source_rcvmsg()
447 bcopy(embed, &sc->embed_timestamp, sizeof(*embed)); in ng_source_rcvmsg()
453 struct ng_source_embed_info *embed; in ng_source_rcvmsg() local
455 NG_MKRESPONSE(resp, msg, sizeof(*embed), M_NOWAIT); in ng_source_rcvmsg()
460 embed = (struct ng_source_embed_info *)resp->data; in ng_source_rcvmsg()
461 bcopy(&sc->embed_timestamp, embed, sizeof(*embed)); in ng_source_rcvmsg()
467 struct ng_source_embed_cnt_info *embed; in ng_source_rcvmsg() local
469 if (msg->header.arglen != sizeof(*embed)) { in ng_source_rcvmsg()
[all …]
H A Dng_source.h131 NGM_SOURCE_SET_TIMESTAMP, /* embed xmit timestamp */
133 NGM_SOURCE_SET_COUNTER, /* embed counter */
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPPEmbedParameters.h9 // Defines all of the preprocessor directive parmeters for #embed
22 /// Preprocessor extension embed parameter "clang::offset"
32 /// Preprocessor standard embed parameter "limit"
42 /// Preprocessor standard embed parameter "prefix"
52 /// Preprocessor standard embed parameter "suffix"
62 /// Preprocessor standard embed parameter "if_empty"
H A DPPCallbacks.h88 /// embed directive.
97 /// Callback invoked whenever an embed directive has been processed,
98 /// regardless of whether the embed will actually find a file.
100 /// \param HashLoc The location of the '#' that starts the embed directive.
108 /// \param File The actual file that may be included by this embed directive.
H A DPPDirectiveParameter.h10 // as limit(1) or suffix(x) for #embed.
/freebsd/contrib/llvm-project/lld/COFF/
H A DOptions.td90 def natvis : P<"natvis", "Path to natvis file to embed in the PDB">;
92 def pdbaltpath : P<"pdbaltpath", "PDB file path to embed in the image">;
97 HelpText<"Embed the contents of <file> in the PDB as named stream <name>">;
120 "NO disables manifest output; EMBED[,ID=#] embeds manifest as resource in the image">;
128 "Additional manifest inputs; only valid with /manifest:embed">;
140 def debug : F<"debug">, HelpText<"Embed a symbol table in the image">;
141 def debug_opt : P<"debug", "Embed a symbol table in the image with option">;
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h92 Embed_All, // Embed both bitcode and commandline in the output.
93 Embed_Bitcode, // Embed just the bitcode in the output.
94 Embed_Marker // Embed a marker as a placeholder for bitcode.
198 /// The string to embed in debug information as the current working directory.
201 /// The string to embed in coverage mapping as the current working directory.
204 /// The string to embed in the debug information for the compile unit, if
275 /// A list of linker options to embed in the object file.
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILWriterPass.cpp107 INITIALIZE_PASS(EmbedDXILPass, "dxil-embed", "Embed DXIL", false, true)
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerEmbeddedInt.h22 /// Utility to embed an integer into a pointer-like type. This is specifically
39 "Cannot embed more bits than we have in a pointer!");
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h223 // Check the embed cells. in acquire()
251 // Embed cells. in acquire()
292 // See if we have a free embed cell. in acquire()
355 // Removed from embed array, move an add element into the freed cell. in release()
/freebsd/sys/netinet6/
H A Din6_fib.c160 /* Assume scopeid is valid and embed it directly */ in fib6_lookup()
241 /* Assume scopeid is valid and embed it directly */ in lookup_nhop()
311 /* Assume scopeid is valid and embed it directly */ in fib6_lookup_rt()
/freebsd/share/man/man4/
H A Dfdt.4175 separate from the kernel, but this option lets statically embed a
179 specified in order to embed it into the kernel image).
/freebsd/sys/contrib/ck/include/
H A Dck_hp_fifo.h40 * Though it is possible to embed the data structure, measurements need
41 * to be made for the cost of this. If we were to embed the hazard pointer
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_cmdsub.sh590 -o inline:'F.1: here-doc embed with unbal single, back- or doublequote '\''\n' \
594 F.1: here-doc embed with unbal single, back- or doublequote '\''
598 -o inline:'F.2: here-doc embed with unbal single, back- or doublequote "\n' \
602 F.2: here-doc embed with unbal single, back- or doublequote "
606 -o inline:'F.3: here-doc embed with unbal single, back- or doublequote `\n' \
610 F.3: here-doc embed with unbal single, back- or doublequote `
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Dst,stm32-booster.yaml13 Some STM32 devices embed a 3.3V booster supplied by Vdda, that can be used
H A Dst,stm32-vrefbuf.yaml10 Some STM32 devices embed a voltage reference buffer which can be used as
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp62 "lto-embed-bitcode", cl::init(LTOBitcodeEmbedding::DoNotEmbed),
64 "Do not embed"),
66 "Embed after all optimization passes"),
69 "Embed post merge, but before optimizations")),
70 cl::desc("Embed LLVM bitcode in object files produced by LTO"));
/freebsd/tests/sys/cddl/zfs/tests/txg_integrity/
H A Dmake_patterns.py4 # We do this statically and embed the results into the code so that the
/freebsd/share/mk/
H A Dsrc.lua.mk31 # and cannot necessarily embed the logic for trying to find it amongst bootstrap
/freebsd/sys/conf/
H A DMakefile.riscv30 # us to load the kernel with the -kernel flag in QEMU without having to embed
/freebsd/contrib/lua/src/
H A Dlinit.c12 ** If you embed Lua in your program and need to open the standard

12345678910