HomeSort by: relevance | last modified time | path
    Searched refs:Processor (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_proc.cc 21 Processor *ProcCreate() {
22 void *mem = InternalAlloc(sizeof(Processor));
23 internal_memset(mem, 0, sizeof(Processor));
24 Processor *proc = new(mem) Processor;
34 void ProcDestroy(Processor *proc) {
43 proc->~Processor();
47 void ProcWire(Processor *proc, ThreadState *thr) {
54 void ProcUnwire(Processor *proc, ThreadState *thr) {
tsan_sync.h 72 void Reset(Processor *proc);
117 uptr FreeBlock(Processor *proc, uptr p);
118 bool FreeRange(Processor *proc, uptr p, uptr sz);
119 void ResetRange(Processor *proc, uptr p, uptr sz);
128 void OnProcIdle(Processor *proc);
tsan_mman.h 25 void AllocatorProcStart(Processor *proc);
26 void AllocatorProcFinish(Processor *proc);
tsan_sync.cc 39 void SyncVar::Reset(Processor *proc) {
74 uptr MetaMap::FreeBlock(Processor *proc, uptr p) {
83 bool MetaMap::FreeRange(Processor *proc, uptr p, uptr sz) {
122 void MetaMap::ResetRange(Processor *proc, uptr p, uptr sz) {
292 void MetaMap::OnProcIdle(Processor *proc) {
tsan_defs.h 167 struct Processor;
tsan_rtl.h 343 // A Processor represents a physical thread, or a P for Go.
348 // In Go it is tied to a P, so there are significantly fewer Processor's than
350 // A ThreadState must be wired with a Processor to handle events.
351 struct Processor {
364 // ScopedGlobalProcessor temporary setups a global processor for the current
366 // at the very thread end, when we already destroyed the thread processor.
434 // Current wired Processor, or nullptr. Required to handle any events.
435 Processor *proc1;
437 Processor *proc() { return proc1; }
439 Processor *proc()
    [all...]
tsan_mman.cc 72 Processor *proc;
126 void AllocatorProcStart(Processor *proc) {
131 void AllocatorProcFinish(Processor *proc) {
tsan_platform_mac.cc 211 Processor *proc = ProcCreate();
tsan_rtl.cc 374 Processor *proc = ProcCreate();
tsan_interceptors.cc 909 Processor *proc = thr->proc();
965 Processor *proc = ProcCreate();
  /src/sys/external/bsd/compiler_rt/dist/include/xray/
xray_log_interface.h 353 XRayLogFlushStatus __xray_log_process_buffers(void (*Processor)(const char *,
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/go/
tsan_go.cc 116 static Processor* get_cur_proc() {
119 // We have not yet returned the Processor to Go, so we cannot ask it back.
120 // Currently, Initialize() does not use the Processor, so return nullptr.
123 Processor *proc;
128 Processor *ThreadState::proc() {
141 void __tsan_init(ThreadState **thrp, Processor **procp,
225 void __tsan_proc_create(Processor **pproc) {
229 void __tsan_proc_destroy(Processor *proc) {
  /src/sys/external/bsd/acpica/dist/debugger/
dbstats.c 368 AcpiDbEnumerateObject (ObjDesc->Processor.NotifyList[0]);
369 AcpiDbEnumerateObject (ObjDesc->Processor.NotifyList[1]);
370 AcpiDbEnumerateObject (ObjDesc->Processor.Handler);
609 AcpiOsPrintf ("Processor %3d\n", (UINT32) sizeof (ACPI_OBJECT_PROCESSOR));
  /src/sys/external/bsd/acpica/dist/executer/
excreate.c 483 * DESCRIPTION: Create a new processor object and populate the fields
485 * Processor (Name[0], CpuID[1], PblockAddr[2], PblockLength[3])
501 /* Create the processor object */
509 /* Initialize the processor object from the operands */
511 ObjDesc->Processor.ProcId = (UINT8) Operand[1]->Integer.Value;
512 ObjDesc->Processor.Length = (UINT8) Operand[3]->Integer.Value;
513 ObjDesc->Processor.Address = (ACPI_IO_ADDRESS) Operand[2]->Integer.Value;
515 /* Install the processor object in the parent Node */
exdump.c 299 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Processor.ProcId), "Processor ID"},
300 {ACPI_EXD_UINT8 , ACPI_EXD_OFFSET (Processor.Length), "Length"},
301 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET (Processor.Address), "Address"},
302 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Processor.NotifyList[0]), "System Notify"},
303 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Processor.NotifyList[1]), "Device Notify"},
304 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Processor.Handler), "Handler"}
1007 AcpiOsPrintf ("Processor\n");
  /src/sys/arch/sandpoint/
README 7 can be fitted with different PMCs (Processor Mezzanine Cards). This
12 All references (cf) listed here are for the MPC8240 Integrated Processor
54 (Processor View)
  /src/sys/external/bsd/acpica/dist/utilities/
utcopy.c 325 ExternalObject->Processor.ProcId =
326 InternalObject->Processor.ProcId;
327 ExternalObject->Processor.PblkAddress =
328 InternalObject->Processor.Address;
329 ExternalObject->Processor.PblkLength =
330 InternalObject->Processor.Length;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_log_interface.cc 196 void (*Processor)(const char *, XRayBuffer)) XRAY_NEVER_INSTRUMENT {
206 (*Processor)(Mode, Buffer);
  /src/sys/dev/acpi/
acpi_cpu.c 150 aprint_normal(": failed to match processor\n");
395 if (obj->Processor.ProcId > (uint32_t)maxcpus) {
400 KDASSERT((uint64_t)obj->Processor.PblkAddress < UINT32_MAX);
403 ao->ao_procid = obj->Processor.ProcId;
404 ao->ao_pblklen = obj->Processor.PblkLength;
405 ao->ao_pblkaddr = obj->Processor.PblkAddress;
acpi_util.c 790 * either as a Processor() or as a Device().
821 if (obj->Processor.ProcId == ci->ci_acpiid) {
879 val = obj->Processor.ProcId;
  /src/sys/external/bsd/acpica/dist/namespace/
nsdump.c 432 ObjDesc->Processor.ProcId, ObjDesc->Processor.Length,
433 ACPI_FORMAT_UINT64 (ObjDesc->Processor.Address));
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 365 /* COMMON NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */
639 ACPI_OBJECT_PROCESSOR Processor;
actypes.h 216 * processor, and may be 16-bit, 32-bit, or 64-bit as required. They are
282 * In the case of the Itanium Processor Family (IPF), the hardware does not
1125 } Processor;
1398 /* Structures used for device/processor HID, UID, CID */
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
rk3288.dtsi 758 * *_IEP IEP:Image Enhancement Processor
760 * *_VIP VIP:Video Input Processor
761 * *_VOP* VOP:Visual Output Processor
armada-375.dtsi 182 reg = <0xf0000 0xa000>, /* Packet Processor regs */

Completed in 33 milliseconds

1 2