Home
last modified time | relevance | path

Searched refs:stepping (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_cpu.c96 long family, model, stepping; in pt_cpu_parse() local
120 stepping = 0; in pt_cpu_parse()
125 stepping = strtol(s, &endptr, 0); in pt_cpu_parse()
129 if (stepping < 0 || stepping > UCHAR_MAX) in pt_cpu_parse()
136 cpu->stepping = (uint8_t) stepping; in pt_cpu_parse()
161 cpu->stepping = (info>>0) & 0xf; in pt_cpu_read()
/freebsd/sys/x86/iommu/
H A Dintel_quirks.c71 u_int stepping; member
97 u_int ext_family, ext_model, family_code, model, stepping; in dmar_match_quirks() local
129 stepping = p[0] & CPUID_STEPPING; in dmar_match_quirks()
136 (cpu_quirk->stepping == -1 || in dmar_match_quirks()
137 cpu_quirk->stepping == stepping)) { in dmar_match_quirks()
217 .stepping = 6, .quirk = cpu_e5_am9,
/freebsd/contrib/processor-trace/libipt/test/src/
H A Dptunit-cpu.c60 ptu_uint_eq(cpu.stepping, 2); in cpu_valid()
67 ptu_uint_eq(cpu.stepping, 0xf); in cpu_valid()
74 ptu_uint_eq(cpu.stepping, 017); in cpu_valid()
81 ptu_uint_eq(cpu.stepping, 0); in cpu_valid()
/freebsd/sys/dev/hwpmc/
H A Dhwpmc_intel.c80 int error, family, model, nclasses, ncpus, stepping, verov; in pmc_intel_initialize() local
93 stepping = CPUID_TO_STEPPING(cpu_id); in pmc_intel_initialize()
96 family, model, stepping); in pmc_intel_initialize()
106 if (stepping == 0x7) { in pmc_intel_initialize()
H A Dhwpmc_amd.c795 int family, model, stepping; in pmc_amd_initialize() local
807 stepping = CPUID_TO_STEPPING(cpu_id); in pmc_amd_initialize()
811 family, model, stepping); in pmc_amd_initialize()
814 family, model, stepping); in pmc_amd_initialize()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTJSONStructs.cpp102 {"stepping", cpu_info.stepping}, in toJSON()
109 uint64_t family, model, stepping; in fromJSON() local
111 o.map("model", model) && o.map("stepping", stepping))) in fromJSON()
116 cpu_info.stepping = stepping; in fromJSON()
H A DTraceIntelPT.cpp491 int64_t stepping = -1; in GetCPUInfoForLiveProcess() local
514 else if (columns[0].contains("stepping") && in GetCPUInfoForLiveProcess()
515 columns[1].getAsInteger(10, stepping)) in GetCPUInfoForLiveProcess()
524 if ((cpu_family != -1) && (model != -1) && (stepping != -1) && in GetCPUInfoForLiveProcess()
529 static_cast<uint8_t>(stepping)}; in GetCPUInfoForLiveProcess()
H A DTraceIntelPTBundleLoader.cpp240 "stepping": integer in GetSchema()
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Dkirkwood-rd88f6281-z0.dts3 * Marvell RD88F6181 Z0 stepping descrition
8 * stepping of the SoC. The ethernet switch has a "wan" port.
H A Dkirkwood-rd88f6281-a.dts8 * higher stepping of the SoC. The ethernet switch does not have a
/freebsd/tools/tools/intel-ucode-split/
H A Dintel-ucode-split.c62 unsigned family, model, stepping; in format_signature() local
66 stepping = signature & 0xf; in format_signature()
71 asprintf(&buf, "%02x-%02x-%02x", family, model, stepping); in format_signature()
/freebsd/lib/libc/rpc/
H A Dgetrpcent.c100 int stepping; member
454 st->stepping = 0; in nis_rpcent()
465 st->stepping = 0; in nis_rpcent()
485 if (!st->stepping) { in nis_rpcent()
494 st->stepping = 1; in nis_rpcent()
504 st->stepping = 0; in nis_rpcent()
587 st->stepping = 0; in nis_setrpcent()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_utility.cpp97 p->stepping = get_value(buf.eax, 0, 0x0f); in __kmp_query_cpuid()
102 p->family, p->model, p->stepping)); in __kmp_query_cpuid()
H A Dkmp_stats.cpp780 __kmp_cpuinfo.family, __kmp_cpuinfo.model, __kmp_cpuinfo.stepping); in printHeaderInfo()
/freebsd/sys/contrib/device-tree/src/arm/broadcom/
H A Dbcm-nsp-ax.dtsi3 * Broadcom Northstar Plus Ax stepping-specific bindings.
/freebsd/sys/contrib/device-tree/Bindings/iio/proximity/
H A Das3935.txt15 - ams,tuning-capacitor-pf: Calibration tuning capacitor stepping
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td161 def UseFastStepping: Property<"use-fast-stepping", "Boolean">,
163 …Desc<"Use a fast stepping algorithm based on running from branch to branch rather than instruction…
242 …Desc<"If true, warn when stopped in code that is optimized where stepping and variable availabilit…
266 …Desc<"If true, stepping operations will run all threads. This is equivalent to setting the run-mo…
306 Desc<"A list of libraries that source stepping won't stop in.">;
/freebsd/usr.sbin/bhyve/
H A Dgdb.c151 bool stepping; member
985 if (vs->stepping) { in gdb_cpu_resume()
1034 if (vs->stepping) { in gdb_cpu_step()
1035 vs->stepping = false; in gdb_cpu_step()
1117 assert(vs->stepping == false); in gdb_cpu_breakpoint()
1174 vcpu_state[vcpuid].stepping = true; in gdb_step_vcpu()
/freebsd/sys/contrib/xen/
H A Dplatform.h517 uint32_t stepping; member
/freebsd/contrib/sqlite3/tea/win/
H A Drules.vc184 !message *** Compiler has 'B-stepping errata workarounds'
187 !message *** Compiler does not have 'B-stepping errata workarounds'
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td1050 Desc<"A boolean value that sets whether stepping into functions will step "
1054 Desc<"A boolean value, if true stepping out of functions will continue to"
1057 Desc<"How many times to perform the stepping operation - currently only "
1060 Group<1>, Arg<"LineNum">, Desc<"The line at which to stop stepping - "
1067 "threads while stepping the current thread.">;
1070 "function names to not to stop at when stepping in.">;
1073 "function step in should stop at when stepping into.">;
1083 "threads while stepping this one">;
/freebsd/contrib/processor-trace/libipt/include/
H A Dintel-pt.h237 uint8_t stepping; member
H A Dintel-pt.h.in236 /** The stepping. */
237 uint8_t stepping; member
/freebsd/sys/dev/aic7xxx/
H A Daic79xx.c2567 int stepping; in ahd_clear_critical_section() local
2581 stepping = FALSE; in ahd_clear_critical_section()
2626 if (stepping == FALSE) { in ahd_clear_critical_section()
2651 stepping = TRUE; in ahd_clear_critical_section()
2661 if (stepping) { in ahd_clear_critical_section()
/freebsd/contrib/llvm-project/lldb/docs/
H A Dpython_api_enums.rst162 Process or thread is in the process of stepping and can

12