Searched refs:tag (Results 801 - 825 of 949) sorted by relevance

<<3132333435363738

/freebsd-10.2-release/crypto/heimdal/lib/ntlm/
H A DMakefile.in133 libheimntlm_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
145 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
149 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
/freebsd-10.2-release/crypto/heimdal/lib/sl/
H A DMakefile.in134 libsl_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
153 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
157 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
/freebsd-10.2-release/crypto/heimdal/lib/wind/
H A DMakefile.in138 libwind_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
184 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
188 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
/freebsd-10.2-release/contrib/sqlite3/
H A Dltmain.sh241 # if one wasn't chosen via the "--tag" command line option.
290 # was found and let the user know that the "--tag" command
294 $echo "$modename: specify a tag with \`--tag'" 1>&2
440 tag)
447 $echo "$progname: invalid tag name: $tagname" 1>&2
454 # Don't test for the "default" C tag, as we know, it's there, but
463 $echo "$progname: ignoring unknown tag $tagname" 1>&2
540 --tag)
541 prevopt="--tag"
[all...]
/freebsd-10.2-release/sbin/ipfw/
H A Dipfw2.c277 { "tag", TOK_TAG },
1350 PRINT_UINT_ARG(" tag ", tagptr->arg1);
3201 * [altq queuename] -- altq tag, optional
3267 uint16_t tag; local
3270 errx(EX_USAGE, "tag and untag cannot be "
3272 GET_UINT_ARG(tag, IPFW_ARG_MIN, IPFW_ARG_MAX, i,
3275 fill_cmd(cmd, O_TAG, (i == TOK_TAG) ? 0: F_NOT, tag);
3880 errx(EX_DATAERR, "tagged: invalid tag"
3884 uint16_t tag; local
3886 GET_UINT_ARG(tag, IPFW_ARG_MI
[all...]
/freebsd-10.2-release/sys/dev/ixl/
H A Di40e_common.c3334 * i40e_aq_add_tag - Add an S/E-tag
3336 * @direct_to_queue: should s-tag direct flow to a specific queue
3337 * @vsi_seid: VSI SEID to use this tag
3338 * @tag: value of the tag
3344 * This associates an S- or E-tag to a VSI in the switch complex. It returns
3349 u16 vsi_seid, u16 tag, u16 queue_num,
3366 cmd->tag = CPU_TO_LE16(tag);
3385 * i40e_aq_remove_tag - Remove an S- or E-tag
3348 i40e_aq_add_tag(struct i40e_hw *hw, bool direct_to_queue, u16 vsi_seid, u16 tag, u16 queue_num, u16 *tags_used, u16 *tags_free, struct i40e_asq_cmd_details *cmd_details) argument
3397 i40e_aq_remove_tag(struct i40e_hw *hw, u16 vsi_seid, u16 tag, u16 *tags_used, u16 *tags_free, struct i40e_asq_cmd_details *cmd_details) argument
[all...]
/freebsd-10.2-release/contrib/ntp/lib/isc/unix/
H A Dsocket.c314 void * tag; member in struct:isc__socket
2106 sock->tag = NULL;
2879 sock->tag = NULL;
5859 isc__socket_setname(isc_socket_t *socket0, const char *name, void *tag) { argument
5871 socket->tag = tag;
5886 return (socket->tag);
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_main.c327 return (gettext("\thold [-r] <tag> <snapshot> ...\n"));
331 return (gettext("\trelease [-r] <tag> <snapshot> ...\n"));
5319 const char *tag; local
5344 tag = argv[0];
5348 if (holding && tag[0] == '.') {
5350 (void) fprintf(stderr, gettext("tag may not start with '.'\n"));
5377 if (zfs_hold(zhp, delim+1, tag, recursive, -1) != 0)
5380 if (zfs_release(zhp, delim+1, tag, recursive) != 0)
5390 * zfs hold [-r] [-t] <tag> <snap> ...
5394 * Apply a user-hold with the given tag t
5504 const char *tag = nvpair_name(nvp); local
[all...]
/freebsd-10.2-release/contrib/binutils/bfd/
H A Delf32-arm.c6747 /* Determine whether an object attribute tag takes an integer, a
6750 elf32_arm_obj_attrs_arg_type (int tag) argument
6752 if (tag == Tag_compatibility)
6754 else if (tag == 4 || tag == 5)
6756 else if (tag < 32)
6759 return (tag & 1) != 0 ? 2 : 1;
6963 while (in_list && in_list->tag == Tag_compatibility)
6968 if ((in_list->tag & 128) < 64)
6972 ibfd, in_list->tag);
[all...]
/freebsd-10.2-release/contrib/ntp/lib/isc/win32/
H A Dsocket.c240 void * tag; member in struct:isc_socket
3817 isc__socket_setname(isc_socket_t *socket, const char *name, void *tag) { argument
3828 socket->tag = tag;
3839 return (socket->tag);
/freebsd-10.2-release/crypto/openssl/crypto/modes/
H A Dgcm128.c1584 int CRYPTO_gcm128_finish(GCM128_CONTEXT *ctx, const unsigned char *tag, argument
1624 if (tag && len <= sizeof(ctx->Xi))
1625 return CRYPTO_memcmp(ctx->Xi.c, tag, len);
1630 void CRYPTO_gcm128_tag(GCM128_CONTEXT *ctx, unsigned char *tag, size_t len) argument
1633 memcpy(tag, ctx->Xi.c,
/freebsd-10.2-release/contrib/gcc/
H A Dexcept.c155 } GTY ((tag ("ERT_TRY"))) try;
164 } GTY ((tag ("ERT_CATCH"))) catch;
170 } GTY ((tag ("ERT_ALLOWED_EXCEPTIONS"))) allowed;
176 } GTY ((tag ("ERT_THROW"))) throw;
182 } GTY ((tag ("ERT_CLEANUP"))) cleanup;
/freebsd-10.2-release/sys/dev/e1000/
H A Dif_lem.c1779 /* Tell hardware to add tag */
2360 &adapter->tag[0])) != 0) {
2380 &adapter->tag[0])) != 0) {
2398 if (adapter->tag[0] != NULL) {
2400 adapter->tag[0]);
2401 adapter->tag[0] = NULL;
2528 ** enable this and get full hardware tag filtering.
2753 device_printf(dev, "Unable to allocate TX DMA tag\n");
/freebsd-10.2-release/sys/dev/firewire/
H A Dfwohci.c1290 /* XXX do we need 4bytes alignment tag? */
1529 unsigned short tag, ich; local
1539 tag = (it->flag >> 6) & 3;
1650 unsigned short tag, ich; local
1661 tag = (ir->flag >> 6) & 3;
1663 OWRITE(sc, OHCI_IRMATCH(dmach), tagbit[tag] | ich);
/freebsd-10.2-release/contrib/ntp/tests/libntp/
H A DMakefile.in224 test_caljulian_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
236 test_caltontp_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
266 test_decodenetnum_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
431 test_strtolfp_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
516 LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
525 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
/freebsd-10.2-release/sys/dev/oce/
H A Doce_mbox.c321 bus_dmamap_sync(mq->ring->dma.tag, mq->ring->dma.map,
354 tmo = mbx->tag[0];
355 mbx->tag[0] = 0;
378 * store the mbx context in the cqe tag section so that
519 * @param vlan_tag optional vlan tag to associate with the if
/freebsd-10.2-release/sys/netpfil/pf/
H A Dpf_norm.c1183 int tag = -1; local
1207 else if (r->match_tag && !pf_match_tag(m, r, &tag,
1208 pd->pf_mtag ? pd->pf_mtag->tag : 0))
/freebsd-10.2-release/sys/compat/ndis/
H A Dsubr_ndis.c442 NdisAllocateMemoryWithTag(vaddr, len, tag)
445 uint32_t tag;
449 mem = ExAllocatePoolWithTag(NonPagedPool, len, tag);
1432 * When performing shared memory allocations, create a tag
/freebsd-10.2-release/crypto/openssl/apps/
H A Dca.c198 static void lookup_fail(const char *name, const char *tag);
1492 static void lookup_fail(const char *name, const char *tag) argument
1494 BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
/freebsd-10.2-release/contrib/ntp/sntp/tests/
H A DMakefile.in158 test_crypto_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
237 LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
246 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
/freebsd-10.2-release/crypto/heimdal/lib/asn1/
H A DMakefile.in148 libasn1_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
204 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
208 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
/freebsd-10.2-release/sys/contrib/octeon-sdk/
H A Dcvmx-pip-defs.h1215 * tag, offset, and skip values to be used when using the corresponding extractor.
1222 uint64_t upper_tag : 16; /**< Extra Tag bits to be added to tag field from table
1225 uint64_t tag : 8; /**< Extra Tag bits to be added to tag field from table member in struct:cvmx_pip_bsel_ext_cfgx::cvmx_pip_bsel_ext_cfgx_s
1238 uint64_t tag : 8;
1342 uint64_t tag : 8; /**< TAG bits to be used if TAG_EN is set */ member in struct:cvmx_pip_bsel_tbl_entx::cvmx_pip_bsel_tbl_entx_s
1356 uint64_t tag : 8;
1371 uint64_t tag : 8; /**< TAG bits to be used if TAG_EN is set */ member in struct:cvmx_pip_bsel_tbl_entx::cvmx_pip_bsel_tbl_entx_cn61xx
1385 uint64_t tag : 8;
1742 1 = tag has
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp370 // We could parse the ABI tag information (in .note, .notes, or .note.ABI-tag) to get the
1340 ObjectFileELF::FindDynamicSymbol(unsigned tag) argument
1351 if (symbol->d_tag == tag)
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp58 static void *getTag() { static int tag; return &tag; } local
/freebsd-10.2-release/contrib/gcclibs/libcpp/
H A Ddirectives.c167 #define D(n, tag, o, f) tag,

Completed in 590 milliseconds

<<3132333435363738