HomeSort by: relevance | last modified time | path
    Searched defs:stepping (Results 1 - 22 of 22) sorted by relevancy

  /src/sys/arch/x86/x86/
coretemp.c 225 uint32_t model, stepping; local
229 stepping = CPUID_TO_STEPPING(ci->ci_signature);
250 if (model == 0x0E && stepping < 0x0C) {
268 uint32_t model, stepping; local
272 stepping = CPUID_TO_STEPPING(ci->ci_signature);
277 if ((model == 0x0f && stepping >= 2) || (model == 0x0e)) {
302 } else if (model == 0x17 && stepping == 0x06) {
306 if (stepping == 0x0a) {
identcpu.c 489 u_int family, model, stepping, descs[4], lfunc, msr; local
498 stepping = CPUID_TO_STEPPING(ci->ci_signature);
551 if (family > 6 || model > 0x9 || (model == 0x9 && stepping >= 3)) {
612 /* C7 stepping 8 and subsequent CPUs have dual RNG */
613 if (model > 0xA || (model == 0xA && stepping > 0x7)) {
654 if (family == 6 && model == 9 && stepping == 8) {
655 /* Erratum: stepping 8 reports 4 when it should be 2 */
663 if (family == 6 && model == 9 && stepping == 8) {
664 /* Erratum: stepping 8 reports 4 when it should be 2 */
  /src/usr.sbin/tprof/arch/
tprof_x86.c 801 uint8_t stepping; local
846 stepping = CPUID_TO_STEPPING(eax);
847 if (stepping <= 4)
  /src/external/gpl3/gdb/dist/gdbsupport/
btrace-common.h 96 /* The cpu stepping. */
97 unsigned char stepping; member in struct:btrace_cpu
  /src/external/gpl3/gdb.old/dist/gdbsupport/
btrace-common.h 96 /* The cpu stepping. */
97 unsigned char stepping; member in struct:btrace_cpu
  /src/external/gpl3/gdb/dist/gdb/stubs/
i386-stub.c 746 int sigval, stepping; local
787 stepping = 0;
883 stepping = 1;
894 /* set the trace bit if we're stepping */
895 if (stepping)
m68k-stub.c 819 int sigval, stepping;
838 stepping = 0;
929 stepping = 1;
940 /* set the trace bit if we're stepping */
941 if (stepping)
818 int sigval, stepping; local
m32r-stub.c 211 int sigval, stepping; local
315 stepping = 0;
450 stepping = 1;
456 if (stepping) /* single-stepping */
491 else /* continuing, not single-stepping */
1133 int stepping; /* true when we've started a single-step */ member in struct:STEPPING_CONTEXT
1143 } stepping; variable in typeref:struct:STEPPING_CONTEXT
1170 /* zero out the stepping context
1172 for (p = (unsigned char *) &stepping;
    [all...]
sh-stub.c 658 int sigval, stepping; local
683 * any stepping we may have done!
687 stepping = 0;
765 stepping = 1;
772 if (stepping)
  /src/external/gpl3/gdb/dist/gdbserver/
linux-low.h 392 (that is, until the stepping thread finishes its step), and
393 unsuspend all lwps. The stepping thread ends with its status
473 breakpoint that needs stepping over, we start a step-over operation
483 the stepping flag; this is used for stepping over gdbserver-placed
518 Return 1 if hardware single stepping, 0 if software single stepping
525 /* Install breakpoints for software single stepping. */
698 /* Returns true if the low target supports range stepping. */
870 int stepping = 0 member in struct:lwp_info
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/stubs/
i386-stub.c 746 int sigval, stepping; local
787 stepping = 0;
883 stepping = 1;
894 /* set the trace bit if we're stepping */
895 if (stepping)
m68k-stub.c 819 int sigval, stepping;
838 stepping = 0;
929 stepping = 1;
940 /* set the trace bit if we're stepping */
941 if (stepping)
818 int sigval, stepping; local
m32r-stub.c 211 int sigval, stepping; local
315 stepping = 0;
450 stepping = 1;
456 if (stepping) /* single-stepping */
491 else /* continuing, not single-stepping */
1133 int stepping; /* true when we've started a single-step */ member in struct:STEPPING_CONTEXT
1143 } stepping; variable in typeref:struct:STEPPING_CONTEXT
1170 /* zero out the stepping context
1172 for (p = (unsigned char *) &stepping;
    [all...]
sh-stub.c 658 int sigval, stepping; local
683 * any stepping we may have done!
687 stepping = 0;
765 stepping = 1;
772 if (stepping)
  /src/external/gpl3/gdb.old/dist/gdbserver/
linux-low.h 392 (that is, until the stepping thread finishes its step), and
393 unsuspend all lwps. The stepping thread ends with its status
473 breakpoint that needs stepping over, we start a step-over operation
483 the stepping flag; this is used for stepping over gdbserver-placed
518 Return 1 if hardware single stepping, 0 if software single stepping
525 /* Install breakpoints for software single stepping. */
698 /* Returns true if the low target supports range stepping. */
867 int stepping = 0 member in struct:lwp_info
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_csr.c 138 /* Stepping (A, B, C, ..., *). * is a wildcard */
139 char stepping; member in struct:intel_fw_info
141 /* Sub-stepping (0, 1, ..., *). * is a wildcard */
224 char stepping; member in struct:stepping_info
360 si->stepping == fw_info[i].stepping) {
365 if (si->stepping == fw_info[i].stepping &&
371 if (fw_info[i].stepping == '*' &&
539 DRM_ERROR("DMC firmware not supported for %c stepping\n"
    [all...]
  /src/usr.sbin/cpuctl/arch/
i386.c 906 u_int stepping = CPUID_TO_STEPPING(ci->ci_signature); local
924 if (ci->ci_model < 0x9 || (ci->ci_model == 0x9 && stepping < 3))
1386 int stepping; local
1390 stepping = CPUID_TO_STEPPING(ci->ci_signature);
1422 if (ci->ci_model == 9 && stepping == 8) {
1423 /* Erratum: stepping 8 reports 4 when it should be 2 */
1431 if (ci->ci_model == 9 && stepping == 8) {
1432 /* Erratum: stepping 8 reports 4 when it should be 2 */
1582 * - Get CPU family, model and stepping (from eax).
2119 aprint_normal_dev(ci->ci_dev, "family %#x model %#x stepping %#x"
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
record-btrace.c 2076 /* GDB stores the current frame_id when stepping in order to detects steps
2089 /* Check if we need to update any stepping-related frame id's. */
2118 /* Replace stepping related frames where necessary. */
2214 /* We just indicate the resume intent here. The actual stepping happens in
2390 /* Check if we're stepping a breakpoint. */
2395 jump back to the instruction at which we started. If we're stepping a
2405 /* We will bail out here if we continue stepping after reaching the end
2418 /* If we're stepping a BTRACE_INSN_AUX instruction, print the auxiliary
2461 If we're stepping a BTRACE_INSN_AUX instruction, print the auxiliary
2480 /* Check if we're stepping a BTRACE_INSN_AUX instruction and skip it. *
3089 unsigned int family, model, stepping; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
record-btrace.c 2029 /* GDB stores the current frame_id when stepping in order to detects steps
2042 /* Check if we need to update any stepping-related frame id's. */
2071 /* Replace stepping related frames where necessary. */
2167 /* We just indicate the resume intent here. The actual stepping happens in
2343 /* Check if we're stepping a breakpoint. */
2354 /* We will bail out here if we continue stepping after reaching the end
2409 /* Check if we're stepping a breakpoint.
2411 For reverse-stepping, this check is after the step. There is logic in
2412 infrun.c that handles reverse-stepping separately. See, for example,
2415 This code assumes that for reverse-stepping, PC points to the las
2999 unsigned int family, model, stepping; local
    [all...]
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
platform.h 511 uint32_t stepping; member in struct:xenpf_pcpu_version
  /src/sys/dev/ic/
aic79xx.c 2475 int stepping; local
2489 stepping = FALSE;
2531 printf("%s: Single stepping at 0x%x\n", ahd_name(ahd),
2534 if (stepping == FALSE) {
2556 * on while single stepping.
2560 stepping = TRUE;
2570 if (stepping) {
aic7xxx.c 1413 int stepping; local
1421 stepping = FALSE;
1458 if (stepping == FALSE) {
1476 * leave it on while single stepping.
1483 stepping = TRUE;
1493 if (stepping) {

Completed in 62 milliseconds