| /src/tests/usr.bin/xlint/lint1/ |
| msg_013.c | 8 enum tag; 12 void function(enum tag); 14 enum tag { enum
|
| msg_044.c | 8 /* expect+1: warning: struct 'tag' never defined [233] */ 9 struct tag; 11 void declaration(struct tag *); 14 /* expect+2: warning: declaration of 'struct tag' introduces new type in C90 or later [44] */ 15 /* expect+1: warning: struct 'tag' never defined [233] */ 16 struct tag;
|
| /src/sys/dev/ |
| dev_verbose.h | 37 #define DEV_VERBOSE_COMMON_DEFINE(tag) \ 39 tag ## _findvendor_real(char *buf, size_t len, uint32_t vendor) \ 41 return dev_findvendor(buf, len, tag ## _words, \ 42 __arraycount(tag ## _words), tag ## _vendors, \ 43 __arraycount(tag ## _vendors), vendor, tag ## _id1_format); \ 47 tag ## _findproduct_real(char *buf, size_t len, uint32_t vendor, \ 50 return dev_findproduct(buf, len, tag ## _words, \ 51 __arraycount(tag ## _words), tag ## _products, [all...] |
| /src/external/mit/libcbor/dist/test/ |
| type_6_test.c | 17 cbor_item_t *tag; variable 22 /* Tag 0 + uint 0 */ 24 tag = cbor_load(embedded_tag_data, 2, &res); 25 assert_true(cbor_typeof(tag) == CBOR_TYPE_TAG); 26 assert_true(cbor_tag_value(tag) == 0); 27 assert_uint8(cbor_tag_item(tag), 0); 28 cbor_decref(&tag); 29 assert_null(tag); 34 /* Tag 255 + uint 1 */ 36 tag = cbor_load(int8_tag_data, 3, &res) [all...] |
| /src/external/bsd/zstd/dist/tests/ |
| checkTag.c | 13 * $ ./checkTag tag 15 * The tag is then compared to zstd version number. 18 * Example : tag v1.8.1.2 is compatible with version 1.8.1 19 * When tag and version are not compatible, program exits with error code 1. 30 * @return 1 if tag is compatible, 0 if not. 32 static int validate(const char* const tag) 34 size_t const tagLength = strlen(tag); 38 if (tag[0] != 'v') return 0; 41 if (strncmp(ZSTD_VERSION_STRING, tag+1, verLength)) return 0; 49 const char* const tag = argv[1] local [all...] |
| test-zstd-versions.py | 83 stdout, stderr = git(['tag', '-l', 'v[0-9].[0-9].[0-9]']) 88 def dict_ok(tag, dict_name, sample): 92 cmd = ['./zstd.' + tag, '-D', dict_name] 100 def create_dict(tag, dict_source_path, fallback_tag=None): 101 dict_name = 'dict.' + tag 107 if tag == 'v0.5.0': 108 result = execute('./dictBuilder.' + tag + ' ' + ' '.join(files) + ' -o ' + dict_name, print_output=False, param_shell=True) 110 result = execute('./zstd.' + tag + ' -f --train ' + ' '.join(files) + ' -o ' + dict_name, print_output=False, param_shell=True) 111 if result == 0 and dict_ok(tag, dict_name, files[0]): 123 def zstd(tag, args, input_file, output_file) [all...] |
| /src/sys/dev/sdmmc/ |
| sdmmcchip.h | 71 #define sdmmc_chip_host_reset(tag, handle) \ 72 ((tag)->host_reset((handle))) 74 #define sdmmc_chip_host_ocr(tag, handle) \ 75 ((tag)->host_ocr((handle))) 76 #define sdmmc_chip_host_maxblklen(tag, handle) \ 77 ((tag)->host_maxblklen((handle))) 79 #define sdmmc_chip_card_detect(tag, handle) \ 80 ((tag)->card_detect((handle))) 82 #define sdmmc_chip_write_protect(tag, handle) \ 83 ((tag)->write_protect((handle)) [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/common/der/ |
| der_dsa_key.c | 20 int ossl_DER_w_algorithmIdentifier_DSA(WPACKET *pkt, int tag, DSA *dsa) 22 return ossl_DER_w_begin_sequence(pkt, tag) 26 && ossl_DER_w_end_sequence(pkt, tag);
|
| /src/crypto/external/bsd/openssl/dist/providers/common/der/ |
| der_dsa_key.c | 20 int ossl_DER_w_algorithmIdentifier_DSA(WPACKET *pkt, int tag, DSA *dsa) 22 return ossl_DER_w_begin_sequence(pkt, tag) 26 && ossl_DER_w_end_sequence(pkt, tag);
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| check_arg.h | 15 /* CHECK_VAL_HELPER_DCL(tag, int); 16 /* CHECK_PTR_HELPER_DCL(tag, int); 17 /* CHECK_CPTR_HELPER_DCL(tag, int); 25 /* func(FLAG_INT_VAL, CHECK_VAL(tag, int, int_val), 26 /* FLAG_INT_PTR, CHECK_PTR(tag, int, int_ptr), 27 /* FLAG_INT_CPTR, CHECK_CPTR(tag, int, int_cptr) 39 /* a distinct per-module tag value. The tag syntax is that 42 /* Use CHECK_VAL(tag, type, argument) for arguments with a 48 /* Use CHECK_PTR(tag, type, argument) for non-const pointe [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| ARMAttributeParser.cpp | 67 Error ARMAttributeParser::stringAttribute(AttrType tag) { 69 ELFAttrs::attrTypeAsString(tag, tagToStringMap, /*TagPrefix=*/false); 74 sw->printNumber("Tag", tag); 82 Error ARMAttributeParser::CPU_arch(AttrType tag) { 90 return parseStringAttribute("CPU_arch", tag, makeArrayRef(strings)); 93 Error ARMAttributeParser::CPU_arch_profile(AttrType tag) { 106 printAttribute(tag, value, profile); 110 Error ARMAttributeParser::ARM_ISA_use(AttrType tag) { 112 return parseStringAttribute("ARM_ISA_use", tag, makeArrayRef(strings)) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| ARMAttributeParser.h | 30 Error handler(uint64_t tag, bool &handled) override; 32 Error stringAttribute(ARMBuildAttrs::AttrType tag); 34 Error CPU_arch(ARMBuildAttrs::AttrType tag); 35 Error CPU_arch_profile(ARMBuildAttrs::AttrType tag); 36 Error ARM_ISA_use(ARMBuildAttrs::AttrType tag); 37 Error THUMB_ISA_use(ARMBuildAttrs::AttrType tag); 38 Error FP_arch(ARMBuildAttrs::AttrType tag); 39 Error WMMX_arch(ARMBuildAttrs::AttrType tag); 40 Error Advanced_SIMD_arch(ARMBuildAttrs::AttrType tag); 41 Error MVE_arch(ARMBuildAttrs::AttrType tag); [all...] |
| /src/sys/dev/pcmcia/ |
| pcmciachip.h | 98 #define pcmcia_chip_mem_alloc(tag, handle, size, pcmhp) \ 99 ((*(tag)->mem_alloc)((handle), (size), (pcmhp))) 101 #define pcmcia_chip_mem_free(tag, handle, pcmhp) \ 102 ((*(tag)->mem_free)((handle), (pcmhp))) 104 #define pcmcia_chip_mem_map(tag, handle, kind, card_addr, size, pcmhp, \ 106 ((*(tag)->mem_map)((handle), (kind), (card_addr), (size), (pcmhp), \ 109 #define pcmcia_chip_mem_unmap(tag, handle, window) \ 110 ((*(tag)->mem_unmap)((handle), (window))) 113 #define pcmcia_chip_io_alloc(tag, handle, start, size, align, pcihp) \ 114 ((*(tag)->io_alloc)((handle), (start), (size), (align), (pcihp)) [all...] |
| /src/sys/arch/netwinder/pci/ |
| pci_machdep.c | 19 pcitag_t tag; local 24 tag = pci_make_tag(pba->pba_pc, pba->pba_bus, 9, 0); 25 pci_conf_write(pba->pba_pc, tag, 30 intreg = pci_conf_read(pba->pba_pc, tag, PCI_INTERRUPT_REG); 36 pci_conf_write(pba->pba_pc, tag, PCI_INTERRUPT_REG, intreg); 37 pci_conf_write(pba->pba_pc, tag, 0x10, 0x400 | PCI_MAPREG_TYPE_IO); 38 pci_conf_write(pba->pba_pc, tag, 0x14, 0x00800000); 43 tag = pci_make_tag(pba->pba_pc, pba->pba_bus, 12, 0); 44 pci_conf_write(pba->pba_pc, tag, 48 intreg = pci_conf_read(pba->pba_pc, tag, PCI_INTERRUPT_REG) [all...] |
| /src/sys/arch/arm/gemini/ |
| gemini_lpcvar.h | 50 lpc_pnp_read(lpctag_t tag, int ldn, uint off) 52 gemini_lpc_softc_t *sc = tag; 53 return (*sc->sc_bus_ops->lpc_pnp_read)(tag, ldn, off); 57 lpc_pnp_write(lpctag_t tag, int ldn, uint off, uint8_t val) 59 gemini_lpc_softc_t *sc = tag; 60 return (*sc->sc_bus_ops->lpc_pnp_write)(tag, ldn, off, val); 64 lpc_pnp_enter(lpctag_t tag) 66 gemini_lpc_softc_t *sc = tag; 67 return (*sc->sc_bus_ops->lpc_pnp_enter)(tag); 71 lpc_pnp_exit(lpctag_t tag) [all...] |
| /src/external/lgpl2/userspace-rcu/dist/scripts/ |
| urcu-api-list.sh | 190 tags=`git tag -l` 194 for tag in $tags master 196 mkdir $T/$tag 197 git reset --hard $tag 1>&2 202 cscope -d -L -0 $i > $T/$tag/$i 203 if test -s $T/$tag/$i 207 rm $T/$tag/$i 215 rm $T/$tag/call_rcu 217 ( ls $T/$tag; ls $T/$lasttag ) | sort | uniq -u | 218 awk -v tag=$tag '{ print "\t<tr><td>" $1 "</td><td>" tag "</td></tr>" } [all...] |
| /src/sys/dev/ic/ |
| i128.c | 45 i128_init(bus_space_tag_t tag, bus_space_handle_t regh, int stride, int depth) 50 bus_space_write_4(tag, regh, BUF_CTRL, BC_PSIZ_8B); 53 bus_space_write_4(tag, regh, BUF_CTRL, BC_PSIZ_16B); 56 bus_space_write_4(tag, regh, BUF_CTRL, BC_PSIZ_32B); 64 bus_space_write_4(tag, regh, DE_PGE, 0); 65 bus_space_write_4(tag, regh, DE_SORG, 0); 66 bus_space_write_4(tag, regh, DE_DORG, 0); 67 bus_space_write_4(tag, regh, DE_MSRC, 0); 68 bus_space_write_4(tag, regh, DE_WKEY, 0); 69 bus_space_write_4(tag, regh, DE_SPTCH, stride) [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| der_writer.c | 16 static int int_start_context(WPACKET *pkt, int tag) 18 if (tag < 0) 20 if (!ossl_assert(tag <= 30)) 25 static int int_end_context(WPACKET *pkt, int tag) 32 * anything was written, and only write our tag if it has. 37 if (tag < 0) 39 if (!ossl_assert(tag <= 30)) 43 tag |= DER_F_CONSTRUCTED | DER_C_CONTEXT; 48 && (size1 == size2 || WPACKET_put_bytes_u8(pkt, tag)); 51 int ossl_DER_w_precompiled(WPACKET *pkt, int tag, [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| der_writer.c | 16 static int int_start_context(WPACKET *pkt, int tag) 18 if (tag < 0) 20 if (!ossl_assert(tag <= 30)) 25 static int int_end_context(WPACKET *pkt, int tag) 32 * anything was written, and only write our tag if it has. 37 if (tag < 0) 39 if (!ossl_assert(tag <= 30)) 43 tag |= DER_F_CONSTRUCTED | DER_C_CONTEXT; 48 && (size1 == size2 || WPACKET_put_bytes_u8(pkt, tag)); 51 int ossl_DER_w_precompiled(WPACKET *pkt, int tag, [all...] |
| /src/sys/arch/evbarm/stand/boot2440/ |
| dm9k.h | 32 int dm9k_match(unsigned int tag, void *macaddr); 33 void *dm9k_init(unsigned int tag, void *macaddr);
|
| /src/crypto/external/apache2/openssl/dist/providers/common/include/prov/ |
| der_rsa.h.in | 26 int ossl_DER_w_RSASSA_PSS_params(WPACKET *pkt, int tag, 29 int ossl_DER_w_algorithmIdentifier_RSA(WPACKET *pkt, int tag, RSA *rsa); 30 int ossl_DER_w_algorithmIdentifier_RSA_PSS(WPACKET *pkt, int tag, 34 int ossl_DER_w_algorithmIdentifier_MDWithRSAEncryption(WPACKET *pkt, int tag,
|
| /src/crypto/external/bsd/openssl/dist/providers/common/include/prov/ |
| der_rsa.h.in | 24 int ossl_DER_w_RSASSA_PSS_params(WPACKET *pkt, int tag, 27 int ossl_DER_w_algorithmIdentifier_RSA(WPACKET *pkt, int tag, RSA *rsa); 28 int ossl_DER_w_algorithmIdentifier_RSA_PSS(WPACKET *pkt, int tag, 32 int ossl_DER_w_algorithmIdentifier_MDWithRSAEncryption(WPACKET *pkt, int tag,
|
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_poisoning.h | 19 uptr TagMemory(uptr p, uptr size, tag_t tag); 20 uptr TagMemoryAligned(uptr p, uptr size, tag_t tag);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_poisoning.h | 19 uptr TagMemory(uptr p, uptr size, tag_t tag); 20 uptr TagMemoryAligned(uptr p, uptr size, tag_t tag);
|
| /src/external/mit/libcbor/dist/docs/ |
| release_meta.rb | 5 def self.tag singleton method in class:Release 11 tag.sub('v', '')
|