Home
last modified time | relevance | path

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

12345

/external/igt-gpu-tools/tools/
Dintel_stepping.c172 uint8_t stepping; in main() local
201 error = pci_device_cfg_read_u8(bridge, &stepping, 8); in main()
210 if (stepping < 0x04) in main()
212 else if (stepping == 0x04) in main()
214 else if (stepping == 0x0e) in main()
216 else if (stepping > 0x0e) in main()
222 if (stepping < 0x03) in main()
224 else if (stepping == 0x03) in main()
226 else if (stepping == 0x04) in main()
232 if (stepping < 0x03) in main()
[all …]
Dintel_firmware_decode.c90 char stepping; member
261 printf(" stepping: %c.%c\n", info->stepping, in dump_package()
/external/llvm-project/lldb/test/Shell/Reproducer/Functionalities/
DTestStepping.test3 # This tests that stepping continues to work when replaying a reproducer.
6 # RUN: %clang_host %S/Inputs/stepping.c -O0 -g -o %t.out
12 # Set breakpoints in a,b and c and verify we stop there when stepping.
14 breakpoint set -f stepping.c -l 28
15 # CHECK: Breakpoint 1: {{.*}} stepping.c:28
17 breakpoint set -f stepping.c -l 10
18 # CHECK: Breakpoint 2: {{.*}} stepping.c:10
20 breakpoint set -f stepping.c -l 19
21 # CHECK: Breakpoint 3: {{.*}} stepping.c:19
23 breakpoint set -f stepping.c -l 23
[all …]
DTestImageList.test6 # RUN: %clang_host %S/Inputs/stepping.c -g -o %t.out
/external/igt-gpu-tools/man/
Dintel_stepping.rst6 Display the stepping information for an Intel GPU
24 **intel_stepping** is a tool to print the stepping information for an Intel GPU,
31 Not all the known stepping IDs or chipsets are included, so the output on some
/external/cpuinfo/test/cpuinfo/
Dleagoo-t5c.log6 stepping : 10
33 stepping : 10
60 stepping : 10
87 stepping : 10
114 stepping : 10
141 stepping : 10
168 stepping : 10
195 stepping : 10
Dzenfone-2e.log6 stepping : 1
35 stepping : 1
64 stepping : 1
93 stepping : 1
Dzenfone-c.log6 stepping : 1
35 stepping : 1
64 stepping : 1
93 stepping : 1
Dalldocube-iwork8.log6 stepping : 4
32 stepping : 4
58 stepping : 4
84 stepping : 4
Dzenfone-2.log6 stepping : 0
32 stepping : 0
58 stepping : 0
84 stepping : 0
Dmemo-pad-7.log6 stepping : 8
35 stepping : 8
64 stepping : 8
93 stepping : 8
/external/llvm-project/lldb/source/Plugins/Trace/intel-pt/
DTraceIntelPTSessionFileParser.cpp31 "stepping": integer in GetSchema()
42 static_cast<uint8_t>(pt_cpu.stepping)}; in ParsePTCPU()
81 o.map("stepping", pt_cpu.stepping); in fromJSON()
DTraceIntelPTSessionFileParser.h26 int64_t stepping; member
/external/catch2/contrib/
Dgdbinit2 # This file provides a way to skip stepping into Catch code when debugging with gdb.
12 # If you want to permanently skip stepping into Catch code copy the following
Dlldbinit2 # This file provides a way to skip stepping into Catch code when debugging with lldb.
12 # If you want to permanently skip stepping into Catch code copy the following
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DProcessorTrace.cpp188 uint64_t stepping = -1; in GetCPUType() local
219 columns[1].getAsInteger(10, stepping)) in GetCPUType()
227 LLDB_LOG(log, "{0}:{1}:{2}:{3}", cpu_family, model, stepping, vendor_id); in GetCPUType()
231 (stepping != static_cast<uint64_t>(-1)) && (!vendor_id.empty())) { in GetCPUType()
235 params_dict->AddIntegerItem("cpu_stepping", stepping); in GetCPUType()
/external/cpu_features/test/
Dcpuinfo_x86_test.cc121 EXPECT_EQ(info.stepping, 0x06); in TEST_F()
181 EXPECT_EQ(info.stepping, 0x03); in TEST_F()
317 EXPECT_EQ(info.stepping, 0x01); in TEST_F()
384 EXPECT_EQ(info.stepping, 0x02); in TEST_F()
460 EXPECT_EQ(info.stepping, 0x03); in TEST_F()
508 EXPECT_EQ(info.stepping, 0x03); in TEST_F()
/external/libyuv/files/docs/
Dfiltering.md16 If scaling down, the stepping rate is always src_width / dst_width.
20 e.g. If scaling from 1280x720 to 640x360, the step thru the source will be 2.0, stepping over 2 pix…
45 **Point** upsampling use stepping rate of src_width / dst_width and a starting coordinate of 0.
50 e.g. If scaling from 640x360 to 1280x720 the step thru the source will be 0.0, stepping half a pixe…
80 // Compute slope values for stepping.
192 … approximated divide is substantially faster, but the inaccuracy causes stepping beyond the origin…
194 1. copy image to buffer with padding. allows for small errors in stepping.
/external/llvm-project/lldb/test/API/lang/objc/objc-stepping/
DMakefile1 OBJC_SOURCES := stepping-tests.m
/external/llvm-project/lldb/test/API/lang/objc/direct-dispatch-step/
DMakefile1 OBJC_SOURCES := stepping-tests.m
/external/cpuinfo/src/x86/
Dinfo.c9 model_info.stepping = eax & 0xF; in cpuinfo_x86_decode_model_info()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DDecoder.cpp427 uint64_t family = 0, model = 0, stepping = 0; in ParseCPUInfo() local
478 stepping = struct_stepping.GetIntegerValue(0x100); in ParseCPUInfo()
479 if (stepping > UINT8_MAX) { in ParseCPUInfo()
486 pt_cpu.stepping = (uint8_t)stepping; in ParseCPUInfo()
496 key_vendor, pt_cpu.family, pt_cpu.model, pt_cpu.stepping); in ParseCPUInfo()
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/dbgeng/
DREADME.md24 have to use the DbgEng stepping interface, or we would effectively be
26 stepping) only seem to be possible from the command interface.
/external/libchrome/base/
Dcpu.h35 int stepping() const { return stepping_; } in stepping() function
/external/llvm-project/openmp/runtime/src/
Dkmp_utility.cpp160 p->stepping = get_value(buf.eax, 0, 0x0f); in __kmp_query_cpuid()
165 p->family, p->model, p->stepping)); in __kmp_query_cpuid()

12345