Home
last modified time | relevance | path

Searched refs:llc (Results 1 – 25 of 96) sorted by relevance

1234

/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gt/
H A Dintel_llc.c27 static struct intel_gt *llc_to_gt(struct intel_llc *llc) in llc_to_gt() argument
29 return container_of(llc, struct intel_gt, llc); in llc_to_gt()
52 static bool get_ia_constants(struct intel_llc *llc, in get_ia_constants() argument
55 struct drm_i915_private *i915 = llc_to_gt(llc)->i915; in get_ia_constants()
56 struct intel_rps *rps = &llc_to_gt(llc)->rps; in get_ia_constants()
64 intel_uncore_read(llc_to_gt(llc)->uncore, DCLK) & 0xf; in get_ia_constants()
79 static void calc_ia_freq(struct intel_llc *llc, in calc_ia_freq() argument
85 struct drm_i915_private *i915 = llc_to_gt(llc)->i915; in calc_ia_freq()
125 static void gen6_update_ring_freq(struct intel_llc *llc) in gen6_update_ring_freq() argument
127 struct drm_i915_private *i915 = llc_to_gt(llc)->i915; in gen6_update_ring_freq()
[all …]
H A Dselftest_llc.c16 static int gen6_verify_ring_freq(struct intel_llc *llc) in gen6_verify_ring_freq() argument
18 struct drm_i915_private *i915 = llc_to_gt(llc)->i915; in gen6_verify_ring_freq()
24 wakeref = intel_runtime_pm_get(llc_to_gt(llc)->uncore->rpm); in gen6_verify_ring_freq()
26 if (!get_ia_constants(llc, &consts)) { in gen6_verify_ring_freq()
34 struct intel_rps *rps = &llc_to_gt(llc)->rps; in gen6_verify_ring_freq()
39 calc_ia_freq(llc, gpu_freq, &consts, &ia_freq, &ring_freq); in gen6_verify_ring_freq()
73 intel_runtime_pm_put(llc_to_gt(llc)->uncore->rpm, wakeref); in gen6_verify_ring_freq()
77 int st_llc_verify(struct intel_llc *llc) in st_llc_verify() argument
81 if (HAS_LLC(llc_to_gt(llc)->i915)) in st_llc_verify()
82 err = gen6_verify_ring_freq(llc); in st_llc_verify()
H A Dintel_llc.h14 void intel_llc_enable(struct intel_llc *llc);
15 void intel_llc_disable(struct intel_llc *llc);
/netbsd-src/external/mpl/dhcp/dist/common/
H A Dtr.c80 struct trllc *llc; local
102 llc = (struct trllc *)(buf + *bufix + hdr_len);
103 llc->dsap = EXTENDED_SAP;
104 llc->ssap = EXTENDED_SAP;
105 llc->llc = UI_CMD;
106 llc->protid[0] = 0;
107 llc->protid[1] = 0;
108 llc->protid[2] = 0;
109 llc->ethertype = htons(ETHERTYPE_IP);
132 struct trllc *llc; local
[all …]
H A Dfddi.c54 struct llc lh;
84 struct llc lh;
/netbsd-src/sys/netatalk/
H A Daarp.c167 struct llc *llc; in aarpwhohas() local
205 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT); in aarpwhohas()
209 llc = mtod(m, struct llc *); in aarpwhohas()
210 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; in aarpwhohas()
211 llc->llc_control = LLC_UI; in aarpwhohas()
212 memcpy(llc->llc_org_code, aarp_org_code, sizeof(aarp_org_code)); in aarpwhohas()
213 llc->llc_ether_type = htons(ETHERTYPE_AARP); in aarpwhohas()
347 struct llc *llc; in at_aarpinput() local
498 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT); in at_aarpinput()
502 llc = mtod(m, struct llc *); in at_aarpinput()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DXRayExample.rst6 built with XRay instrumentation. Here we will attempt to debug ``llc``
21 well to get the XRay runtime linked in appropriately. For building ``llc`` with
30 # Once this finishes, we should build llc
31 $ ninja llc
39 $ objdump -h -j xray_instr_map ./bin/llc
40 ./bin/llc: file format elf64-x86-64
51 before main starts. If we run ``llc`` it should work like a normally built
60 $ ./bin/llc input.ll
63 $ XRAY_OPTIONS="patch_premain=true xray_mode=xray-basic verbosity=1" ./bin/llc input.ll
64 ==69819==XRay: Log file in 'xray-log.llc.m35qPB'
[all …]
H A DHowToSubmitABug.rst140 #. ``llc foo.bc``
141 #. ``llc foo.bc -relocation-model=pic``
142 #. ``llc foo.bc -relocation-model=static``
149 #. ``bugpoint -run-llc foo.bc``
150 #. ``bugpoint -run-llc foo.bc --tool-args -relocation-model=pic``
151 #. ``bugpoint -run-llc foo.bc --tool-args -relocation-model=static``
155 the "foo.bc" file and the option that llc crashes with.
178 bugpoint -run-llc [... optzn passes ...] file-to-test.bc --args -- [program arguments]
211 bugpoint -run-llc -output=[correct output file] [bitcode file] \
212 --tool-args -- [arguments to pass to llc] \
[all …]
H A DHowToUpdateDebugInfo.rst329 $ opt -debugify < sample.ll | llc -o -
416 and after running ``llc -run-pass=mir-debugify``:
441 To run MIRDebugify once, simply insert ``mir-debugify`` into your ``llc``
447 $ llc -run-pass=mir-debugify,other-pass ...
450 $ llc -run-pass=other-pass,mir-debugify ...
458 $ llc -debugify-and-strip-all-safe -run-pass=... <other llc args>
459 $ llc -debugify-and-strip-all-safe -O1 <other llc args>
467 $ llc -debugify-check-and-strip-all-safe -run-pass=... <other llc args>
468 $ llc -debugify-check-and-strip-all-safe -O1 <other llc args>
474 $ llc -run-pass=mir-debugify,other-pass,mir-check-debugify
[all …]
/netbsd-src/external/bsd/wpa/dist/wpa_supplicant/examples/
H A Dwps-nfc.py139 def __init__(self, llc): argument
140 super(HandoverServer, self).__init__(llc)
203 def wps_handover_init(llc): argument
224 client = nfc.handover.HandoverClient(llc)
392 def llcp_worker(llc): argument
395 wps_handover_init(llc)
405 def llcp_startup(clf, llc): argument
410 srv = HandoverServer(llc)
417 return llc
419 def llcp_connected(llc): argument
[all …]
H A Dp2p-nfc.py153 def p2p_handover_client(llc): argument
188 client = nfc.handover.HandoverClient(llc)
260 def __init__(self, llc): argument
261 super(HandoverServer, self).__init__(llc)
475 def llcp_worker(llc): argument
479 p2p_handover_client(llc)
510 p2p_handover_client(llc)
516 def llcp_startup(clf, llc): argument
519 srv = HandoverServer(llc)
520 return llc
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllc.rst1 llc - LLVM static compiler
4 .. program:: llc
9 :program:`llc` [*options*] [*filename*]
14 The :program:`llc` command compiles LLVM source inputs into assembly language
25 If ``filename`` is "``-``" or omitted, :program:`llc` reads from standard input.
29 If the :option:`-o` option is omitted, then :program:`llc` will send its output
34 specified, then :program:`llc` creates the output filename by taking the input
37 Other :program:`llc` options are described below.
65 encoded in the input file. See the output of ``llc -help`` for a list of
77 llvm-as < /dev/null | llc -march=xyz -mcpu=help
[all …]
H A Dlli.rst21 The JIT compiler takes the same arguments as other tools, like :program:`llc`,
77 encoded in the bitcode file. See the output of **llc -help** for a list of
86 **llvm-as < /dev/null | llc -march=xyz -mcpu=help**
93 **llvm-as < /dev/null | llc -march=xyz -mattr=help**
217 :manpage:`llc(1)`
H A Dbugpoint.rst53 (**llc**, **lli**, etc.) whenever it runs. You should use this option in the
128 **--run-{int,jit,llc,custom}**
135 **--safe-{llc,custom}**
168 llc "$@"
177 **--safe-{int,jit,llc,custom}**
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llc/
H A DCMakeLists.txt23 add_llvm_tool(llc
24 llc.cpp
31 export_executable_symbols_for_plugins(llc)
/netbsd-src/sys/net/
H A Dif_ethersubr.c335 * llc header. in ether_output()
338 struct llc llc; in ether_output() local
340 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT); in ether_output()
347 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP; in ether_output()
348 llc.llc_control = LLC_UI; in ether_output()
349 memcpy(llc.llc_snap_org_code, at_org_code, in ether_output()
350 sizeof(llc.llc_snap_org_code)); in ether_output()
351 llc in ether_output()
496 struct llc *llc = (struct llc *)(eh + 1); altq_etherclassify() local
[all...]
H A Dif_llc.h45 struct llc { struct
96 __CTASSERT(sizeof(struct llc) == 8);
/netbsd-src/external/bsd/wpa/dist/hostapd/
H A Dwps-ap-nfc.py111 def __init__(self, llc): argument
112 super(HandoverServer, self).__init__(llc)
252 def llcp_startup(clf, llc): argument
255 srv = HandoverServer(llc)
256 return llc
258 def llcp_connected(llc): argument
/netbsd-src/external/apache2/llvm/bin/llc/
H A DMakefile3 PROG_CXX= llc
8 .PATH: ${LLVM_SRCDIR}/tools/llc
10 SRCS= llc.cpp
/netbsd-src/external/bsd/ipf/dist/lib/
H A Dipft_pc.c17 struct llc { struct
29 static struct llc llcs[] = { argument
61 static struct llc *llcp = NULL;
212 struct llc *l;
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/tools/llc/
H A DBUILD.gn1 executable("llc") {
18 sources = [ "llc.cpp" ]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/
H A Dfindmisopt96 llc "$bcfile" -o "$s" -f || exit 1
106 llc "$optbc" -o "$opts" -f || exit
H A Dbugpoint_gisel_reducer.py46 def run_llc(llc, irfile): argument
47 pr = subprocess.Popen([llc,
/netbsd-src/sys/net80211/
H A Dieee80211_output.c411 #define TO_BE_RECLAIMED (sizeof(struct ether_header) - sizeof(struct llc)) in ieee80211_mbuf_adjust()
537 struct llc *llc; in ieee80211_encap() local
598 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc)); in ieee80211_encap()
599 llc = mtod(m, struct llc *); in ieee80211_encap()
600 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; in ieee80211_encap()
601 llc->llc_control = LLC_UI; in ieee80211_encap()
602 llc->llc_snap.org_code[0] = 0; in ieee80211_encap()
603 llc->llc_snap.org_code[1] = 0; in ieee80211_encap()
604 llc->llc_snap.org_code[2] = 0; in ieee80211_encap()
605 llc->llc_snap.ether_type = eh.ether_type; in ieee80211_encap()
/netbsd-src/sys/dev/ic/
H A Dawi.c661 len += sizeof(struct llc) - in awi_start()
1193 sizeof(struct llc); in awi_devget()
2017 struct llc *llc; in awi_ether_encap()
2028 m_adj(m, sizeof(eh) - sizeof(*llc)); in awi_ether_encap()
2033 llc = (struct llc *)(mtod(m, char *) + sizeof(wh)); in awi_ether_encap()
2034 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; in awi_ether_encap()
2035 llc in awi_ether_encap()
2050 struct llc *llc; awi_ether_modcap() local
[all...]

1234