Home
last modified time | relevance | path

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

12345

/netbsd/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()
79 static void calc_ia_freq(struct intel_llc *llc, in calc_ia_freq() argument
131 if (!get_ia_constants(llc, &consts)) in gen6_update_ring_freq()
153 void intel_llc_enable(struct intel_llc *llc) in intel_llc_enable() argument
155 if (HAS_LLC(llc_to_gt(llc)->i915)) in intel_llc_enable()
156 gen6_update_ring_freq(llc); in intel_llc_enable()
[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/external/mpl/dhcp/dist/common/
H A Dtr.c80 struct trllc *llc; local
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;
132 struct trllc *llc; local
153 if (llc->dsap == EXTENDED_SAP
155 && llc->llc == UI_CMD
[all …]
H A Dfddi.c54 struct llc lh;
84 struct llc lh;
/netbsd/sys/netatalk/
H A Daarp.c164 struct llc *llc; in aarpwhohas() local
206 llc = mtod(m, struct llc *); in aarpwhohas()
207 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; in aarpwhohas()
208 llc->llc_control = LLC_UI; in aarpwhohas()
345 struct llc *llc; in at_aarpinput() local
500 llc = mtod(m, struct llc *); in at_aarpinput()
501 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; in at_aarpinput()
502 llc->llc_control = LLC_UI; in at_aarpinput()
580 struct llc *llc; in aarpprobe() local
645 llc = mtod(m, struct llc *); in aarpprobe()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/docs/
H A DXRayExample.rst30 # 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
60 $ ./bin/llc input.ll
81 $ llvm-xray account xray-log.llc.m35qPB -top=10 -sort=sum -sortorder=dsc -instr_map ./bin/llc
106 $ llvm-xray convert -f yaml -symbolize -instr_map=./bin/llc xray-log.llc.m35qPB
150 $ ninja llc
154 $ llvm-xray account xray-log.llc.5rqxkU -top=10 -sort=sum -sortorder=dsc -instr_map ./bin/llc
208 $ llvm-xray stack xray-log.llc.5rqxkU -instr_map ./bin/llc
[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.
237 llc -march=c safe.bc -o safe.c
245 llc test.bc -o test.s
246 gcc test.s safe.so -o test.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/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/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
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
95 llvm-as < /dev/null | llc -march=xyz -mattr=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/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/sys/net/
H A Dif_ethersubr.c338 struct llc llc; in ether_output() local
347 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP; in ether_output()
348 llc.llc_control = LLC_UI; in ether_output()
350 sizeof(llc.llc_snap_org_code)); in ether_output()
352 memcpy(mtod(m, void *), &llc, sizeof(struct llc)); in ether_output()
497 struct llc *llc = (struct llc *)(eh + 1); in altq_etherclassify() local
503 llc->llc_control != LLC_UI) { in altq_etherclassify()
577 struct llc *l; in ether_input_llc()
582 l = (struct llc *)(eh+1); in ether_input_llc()
597 + sizeof(struct llc)); in ether_input_llc()
[all …]
H A Dif_llc.h45 struct llc { struct
96 __CTASSERT(sizeof(struct llc) == 8);
/netbsd/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/external/apache2/llvm/bin/llc/
H A DMakefile3 PROG_CXX= llc
8 .PATH: ${LLVM_SRCDIR}/tools/llc
10 SRCS= llc.cpp
/netbsd/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/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/tools/llc/
H A DBUILD.gn1 executable("llc") {
18 sources = [ "llc.cpp" ]
/netbsd/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/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/sys/dev/ic/
H A Dawi.c696 len += sizeof(struct llc) - in awi_start()
1228 sizeof(struct llc); in awi_devget()
2052 struct llc *llc; in awi_ether_modcap() local
2063 m_adj(m, sizeof(eh) - sizeof(*llc)); in awi_ether_modcap()
2068 llc = (struct llc *)(mtod(m, char *) + sizeof(wh)); in awi_ether_modcap()
2069 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; in awi_ether_modcap()
2070 llc->llc_control = LLC_UI; in awi_ether_modcap()
2071 llc->llc_snap.org_code[0] = 0; in awi_ether_modcap()
2072 llc->llc_snap.org_code[1] = 0; in awi_ether_modcap()
2073 llc->llc_snap.org_code[2] = 0; in awi_ether_modcap()
[all …]

12345