Searched refs:tag (Results 101 - 125 of 1163) sorted by relevance

1234567891011>>

/freebsd-current/stand/efi/loader/arch/amd64/
H A Dmultiboot2.c143 struct multiboot_header_tag *tag; local
148 tag = multiboot + i;
150 switch(tag->type) {
152 req = (void *)tag;
154 j < (tag->size - sizeof(*tag)) / sizeof(uint32_t);
193 entry = (void *)tag;
198 if (tag->flags & MULTIBOOT_HEADER_TAG_OPTIONAL)
200 printf("Unknown header tag %#x not optional\n",
201 tag
251 struct multiboot_tag *tag; local
308 struct multiboot_tag *tag; local
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.cpp103 if (entry.tag() != DW_TAG_variable)
125 if (entry_or->tag() != DW_TAG_variable)
158 if (entry_or->tag() != DW_TAG_variable)
185 if (entry.tag() != DW_TAG_structure_type &&
186 entry.tag() != DW_TAG_class_type)
225 if (isType(entry.tag())) {
239 if (entry.tag() == context[0].tag) {
252 lldb_private::dwarf::Tag entry_tag = entry.tag();
271 Tag tag local
300 Tag tag = entry_or->tag(); local
[all...]
/freebsd-current/crypto/openssl/include/openssl/
H A Dasn1t.h356 # define ASN1_EX_TEMPLATE_TYPE(flags, tag, name, type) { \
357 (flags), (tag), 0,\
364 # define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
365 (flags), (tag), offsetof(stname, field),\
370 # define ASN1_IMP_EX(stname, field, type, tag, ex) \
371 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | (ex), tag, stname, field, type)
373 # define ASN1_EXP_EX(stname, field, type, tag, ex) \
374 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | (ex), tag, stname, field, type)
391 # define ASN1_IMP(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag,
491 long tag; /* tag, not used if no tagging */ member in struct:ASN1_TEMPLATE_st
[all...]
/freebsd-current/sys/contrib/openzfs/include/os/freebsd/zfs/sys/
H A Dzfs_vfsops_os.h130 #define ZFS_TEARDOWN_ENTER_READ(zfsvfs, tag) \
133 #define ZFS_TEARDOWN_EXIT_READ(zfsvfs, tag) \
136 #define ZFS_TEARDOWN_ENTER_WRITE(zfsvfs, tag) \
142 #define ZFS_TEARDOWN_EXIT(zfsvfs, tag) \
160 #define ZFS_TEARDOWN_ENTER_READ(zfsvfs, tag) \
161 rrm_enter_read(&(zfsvfs)->z_teardown_lock, tag);
163 #define ZFS_TEARDOWN_EXIT_READ(zfsvfs, tag) \
164 rrm_exit(&(zfsvfs)->z_teardown_lock, tag)
166 #define ZFS_TEARDOWN_ENTER_WRITE(zfsvfs, tag) \
167 rrm_enter(&(zfsvfs)->z_teardown_lock, RW_WRITER, tag)
[all...]
/freebsd-current/contrib/file/src/
H A Dder.c151 uint32_t tag; local
156 tag = c[(*p)++] & 0x1f;
158 if (tag != 0x1f)
159 return tag;
165 tag = tag * 128 + c[(*p)++] - 0x80;
169 return tag;
173 * Read the length of a DER tag from the input.
225 der_tag(char *buf, size_t len, uint32_t tag) argument
227 if (tag < DER_TAG_LAS
236 der_data(char *buf, size_t blen, uint32_t tag, const void *q, uint32_t len) argument
308 uint32_t tag, tlen; local
386 printtag(uint32_t tag, const void *q, uint32_t len) argument
419 uint32_t tag = gettag(p, &x, ep - p + x); local
[all...]
/freebsd-current/crypto/heimdal/lib/asn1/
H A Dgen_decode.c61 Der_class *cl, Der_type *ty, unsigned *tag)
67 *tag = UT_BitString;
72 *tag = UT_Boolean;
79 *tag = UT_Enumerated;
84 *tag = UT_GeneralString;
89 *tag = UT_TeletexString;
94 *tag = UT_GeneralizedTime;
99 *tag = UT_IA5String;
104 *tag = UT_Integer;
109 *tag
60 find_tag(const Type *t, Der_class *cl, Der_type *ty, unsigned *tag) argument
574 unsigned tag; local
[all...]
/freebsd-current/sys/contrib/libfdt/
H A Dfdt.c97 uint32_t tag; local
105 tag = fdt32_to_cpu(*tagp);
109 switch (tag) {
144 return tag;
168 uint32_t tag; local
176 tag = fdt_next_tag(fdt, offset, &nextoffset);
178 switch (tag) {
200 } while (tag != FDT_BEGIN_NODE);
H A Dfdt.h82 fdt32_t tag; member in struct:fdt_node_header
87 fdt32_t tag; member in struct:fdt_property
/freebsd-current/crypto/openssl/include/crypto/
H A Dsiv.h27 int ossl_siv128_set_tag(SIV128_CONTEXT *ctx, const unsigned char *tag,
29 int ossl_siv128_get_tag(SIV128_CONTEXT *ctx, unsigned char *tag, size_t len);
/freebsd-current/lib/csu/common/
H A Dcrtbrand.S34 * Special ".note.tag" entry specifying the ABI version. See
39 .section .note.tag,"aG",%note,.freebsd.noteG,comdat
H A Dfeature_note.S32 .section .note.tag,"a",%note
H A Dignore_init_note.S33 .section .note.tag,"a",%note
/freebsd-current/lib/libc/gen/
H A Dfmtmsg.c35 #define DFLT_MSGVERB "label:severity:text:action:tag"
49 const char *action, const char *tag)
69 tag);
81 action, tag);
113 const char *text, const char *act, const char *tag)
128 if (tag != MM_NULLTAG)
129 size += strlen(tag);
148 } else if (strcmp(comp, "tag") == 0 && tag != MM_NULLTAG) {
150 strlcat(output, tag, siz
48 fmtmsg(long class, const char *label, int sev, const char *text, const char *action, const char *tag) argument
112 printfmt(char *msgverb, long class, const char *label, int sev, const char *text, const char *act, const char *tag) argument
[all...]
/freebsd-current/tools/bus_space/C/
H A Dlang.c116 busdma_tag_derive(busdma_tag_t tag, bus_addr_t align, bus_addr_t bndry, argument
122 res = bd_tag_derive(tag, align, bndry, maxaddr, maxsz, nsegs, maxsegsz,
131 busdma_tag_destroy(busdma_tag_t tag) argument
134 return (bd_tag_destroy(tag));
138 busdma_mem_alloc(busdma_tag_t tag, u_int flags, busdma_md_t *out_p) argument
142 res = bd_mem_alloc(tag, flags);
157 busdma_md_create(busdma_tag_t tag, u_int flags, busdma_md_t *out_p) argument
161 res = bd_md_create(tag, flags);
H A Dlibbus.h50 int busdma_tag_derive(busdma_tag_t tag, bus_addr_t align, bus_addr_t bndry,
54 int busdma_tag_destroy(busdma_tag_t tag);
56 int busdma_mem_alloc(busdma_tag_t tag, u_int flags, busdma_md_t *out_p);
59 int busdma_md_create(busdma_tag_t tag, u_int flags, busdma_md_t *out_p);
/freebsd-current/contrib/dialog/samples/
H A Dinputmenu-stdout46 tag=`echo "$value" | sed -e 's/:.*//'`
49 case "$tag" in
H A Dinputmenu48 tag=`echo "$value" | sed -e 's/:.*//'`
51 case "$tag" in
/freebsd-current/contrib/mandoc/
H A Dmanconf.h37 char *tag; member in struct:manoutput
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DELFAttributes.h31 std::optional<unsigned> attrTypeFromString(StringRef tag, TagNameMap tagNameMap);
/freebsd-current/contrib/llvm-project/lld/include/lld/Common/
H A DMemory.h31 static SpecificAllocBase *getOrCreate(void *tag, size_t size, size_t align,
41 static int tag; member in struct:lld::SpecificAlloc
46 template <class T> int SpecificAlloc<T>::tag = 0; member in class:lld::SpecificAlloc
53 &SpecificAlloc<T>::tag, sizeof(SpecificAlloc<T>),
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_ocb.h34 unsigned char tag[OCB_MAX_TAG_LEN]; member in struct:prov_aes_ocb_ctx_st
/freebsd-current/sys/powerpc/pseries/
H A Dplpar_iommu.h35 int phyp_iommu_set_dma_tag(device_t dev, device_t child, bus_dma_tag_t tag);
/freebsd-current/sys/dev/cxgb/sys/
H A Duipc_mvec.c52 busdma_map_sg_collapse(bus_dma_tag_t tag, bus_dmamap_t map, argument
63 err = bus_dmamap_load_mbuf_sg(tag, map, *m, segs, &seg_count, 0);
93 busdma_map_sg_vec(bus_dma_tag_t tag, bus_dmamap_t map, argument
99 bus_dmamap_load_mbuf_sg(tag, map, m, segs, &n, 0);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_globals.h32 // The static tag of this global.
33 u8 tag() const { return info >> 24; }; function in struct:__hwasan::hwasan_global
/freebsd-current/crypto/openssh/
H A Dumac.h68 int umac_final(struct umac_ctx *ctx, u_char tag[], const u_char nonce[8]);
69 /* Incorporate any pending data and the ctr value, and return tag.
78 long len, u_char tag[],
122 int umac128_final(struct umac_ctx *ctx, u_char tag[], const u_char nonce[8]);

Completed in 246 milliseconds

1234567891011>>