Searched refs:basic (Results 1 - 25 of 104) sorted by last modified time

12345

/freebsd-11-stable/tests/sys/netgraph/
H A Dvlan_rotate.c135 ATF_TC(basic); variable
136 ATF_TC_HEAD(basic, conf)
141 ATF_TC_BODY(basic, dummy)
328 ATF_TP_ADD_TC(vlan_rotate, basic);
H A Dhub.c40 ATF_TC(basic); variable
41 ATF_TC_HEAD(basic, conf)
46 ATF_TC_BODY(basic, dummy)
225 ATF_TP_ADD_TC(hub, basic);
H A Dbridge.c80 ATF_TC(basic); variable
81 ATF_TC_HEAD(basic, conf)
86 ATF_TC_BODY(basic, dummy)
612 ATF_TP_ADD_TC(bridge, basic);
H A Dbasic.c182 ATF_TP_ADD_TCS(basic)
184 ATF_TP_ADD_TC(basic, send_recv);
185 ATF_TP_ADD_TC(basic, node);
186 ATF_TP_ADD_TC(basic, message);
187 ATF_TP_ADD_TC(basic, same_name);
188 ATF_TP_ADD_TC(basic, queuelimit);
H A DMakefile8 ATF_TESTS_C+= basic \
13 SRCS.basic= basic.c util.c
/freebsd-11-stable/sys/dev/mlx5/
H A Dqp.h395 } basic; member in struct:mlx5_bsf
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_qp.c3392 struct mlx5_bsf_basic *basic = &bsf->basic; local
3399 basic->bsf_size_sbs = 1 << 7;
3401 basic->check_byte_mask = sig_attrs->check_mask;
3402 basic->raw_data_size = cpu_to_be32(data_size);
3409 basic->mem.bs_selector = bs_selector(mem->sig.dif.pi_interval);
3410 basic->m_bfs_psv = cpu_to_be32(msig->psv_memory.psv_idx);
3425 basic->bsf_size_sbs |= 1 << 4;
3427 basic->wire.copy_byte_mask |= MLX5_CPY_GRD_MASK;
3429 basic
[all...]
/freebsd-11-stable/sys/amd64/vmm/intel/
H A Dvmx.c633 uint64_t basic, fixed0, fixed1, feature_control; local
657 basic = rdmsr(MSR_VMX_BASIC);
658 if ((basic & (1UL << 54)) == 0) {
659 printf("vmx_init: processor does not support desired basic "
/freebsd-11-stable/lib/clang/libclang/
H A DMakefile702 ${CLANG_TBLGEN} -gen-clang-basic-reader \
709 ${CLANG_TBLGEN} -gen-clang-basic-writer \
/freebsd-11-stable/sys/x86/x86/
H A Didentcpu.c2310 vmx_settable(uint64_t basic, int msr, int true_msr) argument
2314 if (basic & (1ULL << 55))
2326 uint64_t basic, msr; local
2334 basic = rdmsr(MSR_VMX_BASIC);
2335 pin = vmx_settable(basic, MSR_VMX_PINBASED_CTLS,
2337 proc = vmx_settable(basic, MSR_VMX_PROCBASED_CTLS,
2340 proc2 = vmx_settable(basic, MSR_VMX_PROCBASED_CTLS2,
2344 exit = vmx_settable(basic, MSR_VMX_EXIT_CTLS, MSR_VMX_TRUE_EXIT_CTLS);
2345 entry = vmx_settable(basic, MSR_VMX_ENTRY_CTLS, MSR_VMX_TRUE_ENTRY_CTLS);
2391 mask = basic >> 3
[all...]
/freebsd-11-stable/lib/libclang_rt/xray-basic/
H A DMakefile1 # $FreeBSD: stable/11/lib/libclang_rt/xray-basic/Makefile 360784 2020-05-07 16:34:01Z dim $
5 LIB= clang_rt.xray-basic-${CRTARCH}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCommandFlags.inc333 // pick a basic default.
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp319 // they're more basic and valuable for widespread use.
361 // Does a basic check for 0-sized allocations suitable for most of the below
/freebsd-11-stable/lib/libclang_rt/
H A DMakefile28 SUBDIR+= xray-basic
/freebsd-11-stable/contrib/llvm-project/lld/docs/llvm-theme/
H A Dtheme.conf2 inherit = basic
/freebsd-11-stable/usr.bin/patch/tests/
H A Dunified_patch_test.sh29 atf_test_case basic
147 atf_add_test_case basic
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/grep/
H A Dt_grep.sh28 atf_test_case basic
31 atf_set "descr" "Checks basic functionality"
530 atf_set "descr" "Check for basic grep sanity, BREs only"
694 atf_set "descr" "Check basic matching with --mmap flag"
815 atf_add_test_case basic
/freebsd-11-stable/sys/net80211/
H A Dieee80211_proto.c669 * we must use the appropriate basic rate set or chaos will
709 * supported. If this is a basic rate and we
719 * value so any basic rate bit is set.
825 * Mark the basic rates for the rate table based on the
829 * the basic OFDM rates.
835 static const struct ieee80211_rateset basic[IEEE80211_MODE_MAX] = { local
854 for (j = 0; j < basic[mode].rs_nrates; j++)
855 if (basic[mode].rs_rates[j] == rs->rs_rates[i]) {
863 * Set the basic rates in a rate set.
873 * Add basic rate
[all...]
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dhttp_curl.c1116 OCSP_BASICRESP *basic; local
1149 basic = OCSP_response_get1_basic(rsp);
1150 if (!basic) {
1190 status = OCSP_basic_verify(basic, certs, store, OCSP_TRUSTOTHER);
1195 OCSP_BASICRESP_free(basic);
1205 OCSP_BASICRESP_free(basic);
1213 OCSP_BASICRESP_free(basic);
1223 OCSP_BASICRESP_free(basic);
1229 res = OCSP_resp_find_status(basic, id, &status, &reason, &produced_at,
1236 OCSP_BASICRESP_free(basic);
[all...]
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dtls_openssl.c4700 OCSP_BASICRESP *basic; local
4729 basic = OCSP_response_get1_basic(rsp);
4730 if (!basic) {
4767 status = OCSP_basic_verify(basic, certs, store, OCSP_TRUSTOTHER);
4772 OCSP_BASICRESP_free(basic);
4781 OCSP_BASICRESP_free(basic);
4788 OCSP_BASICRESP_free(basic);
4797 OCSP_BASICRESP_free(basic);
4802 res = OCSP_resp_find_status(basic, id, &status, &reason, &produced_at,
4810 OCSP_BASICRESP_free(basic);
[all...]
H A Dtls_openssl_ocsp.c496 BasicOCSPResponse *basic; local
554 basic = d2i_BasicOCSPResponse(NULL, &basic_data, basic_len);
555 if (!basic) {
562 rd = basic->tbsResponseData;
564 if (basic->certs) {
565 untrusted = sk_X509_dup(basic->certs);
569 num = sk_X509_num(basic->certs);
573 extra_cert = sk_X509_value(basic->certs, i);
634 basic->signatureAlgorithm, basic
[all...]
/freebsd-11-stable/gnu/usr.bin/cc/cc_tools/
H A DMakefile58 $(srcdir)/cselib.h $(srcdir)/basic-block.h $(srcdir)/cgraph.h \
/freebsd-11-stable/secure/lib/libssh/
H A DMakefile8 SRCS= ssh_api.c ssherr.c sshbuf.c sshkey.c sshbuf-getput-basic.c \
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/llquantize/
H A DMakefile31 tst.basic.d \
32 tst.basic.d.out \
/freebsd-11-stable/targets/pseudo/tests/
H A DMakefile.depend256 usr.bin/bmake/tests/basic \
257 usr.bin/bmake/tests/basic/t0 \
258 usr.bin/bmake/tests/basic/t1 \
259 usr.bin/bmake/tests/basic/t2 \
260 usr.bin/bmake/tests/basic/t3 \
274 usr.bin/bmake/tests/suffixes/basic \

Completed in 344 milliseconds

12345