Home
last modified time | relevance | path

Searched refs:pPC (Results 1 – 25 of 80) sorted by relevance

1234

/dports/audio/libsidplay/libsidplay-1.36.60/src/
H A D6510_.cpp205 pPC++; in branchIfClear()
216 pPC++; in branchIfSet()
740 pPC++; in ASL_zp()
746 pPC++; in ASL_zpx()
1049 pPC++; in LSR_zp()
1055 pPC++; in LSR_zpx()
1119 pPC++; in ROL_zp()
1125 pPC++; in ROL_zpx()
1155 pPC++; in ROR_zp()
1161 pPC++; in ROR_zpx()
[all …]
/dports/print/hplip/hplip-3.20.6/prnt/hpijs/
H A Dhpijs.cpp439 …if ((pSS->pPC->QueryDuplexMode() != DUPLEXMODE_NONE) && pSS->pPC->RotateImageForBackPage() && (FAL… in hpijs_get_cb()
447 if ((pSS->pPC->PrintableHeight () + 0.28) < pSS->pPC->PhysicalPageSizeY ()) in hpijs_get_cb()
479 …if ((pSS->pPC->QueryDuplexMode() != DUPLEXMODE_NONE) && pSS->pPC->RotateImageForBackPage() && (FAL… in hpijs_get_cb()
482 if ((pSS->pPC->PrintableHeight () + 0.28) < pSS->pPC->PhysicalPageSizeY ()) in hpijs_get_cb()
660 switch (pSS->pPC->constructor_error) in main()
688 BUG("device class=%s\n", pSS->pPC->PrintertypeToString(pSS->pPC->SelectedDevice())); in main()
764 … if ((pSS->pPC->QueryDuplexMode() == DUPLEXMODE_BOOK) && pSS->pPC->RotateImageForBackPage()) in main()
777 pSS->pPC->EffectiveResolutionX(), pSS->pPC->EffectiveResolutionY(), in main()
778 pSS->pPC->InputPixelsPerRow(), pSS->pPC->OutputPixelsPerRow()); in main()
855 if (pSS->pPC != NULL) in main()
[all …]
H A DPrinterProperties.cpp98 pPC = new PrintContext (pSys); in CreatePrinterProperties()
126 if (pPC) in GetPrinterProperties()
128 delete pPC; in GetPrinterProperties()
136 err = pPC->SelectDevice ((PRINTER_TYPE) iCurrentPrinter); in GetPrinterProperties()
143 delete pPC; in GetPrinterProperties()
150 err = pPC->SetPaperSize (PaperSizeInfoData[i].iPaperSize, 0); in GetPrinterProperties()
156 pPrinterProperties->fPhysicalWidth = pPC->PhysicalPageSizeX (); in GetPrinterProperties()
158 pPrinterProperties->fPrintableWidth = pPC->PrintableWidth (); in GetPrinterProperties()
159 pPrinterProperties->fPrintableHeight = pPC->PrintableHeight (); in GetPrinterProperties()
160 pPrinterProperties->fTopLeftX = pPC->PrintableStartX (); in GetPrinterProperties()
[all …]
H A Dservices.cpp126 if (!((pPC->QueryDuplexMode() == DUPLEXMODE_BOOK) && pPC->RotateImageForBackPage() && BackPage)) in ProcessRaster()
180 w = pPC->InputPixelsPerRow(); in ProcessRaster()
315 pPC = NULL; in UXServices()
570 …dx = width > pPC->PhysicalPageSizeX () ? width - pPC->PhysicalPageSizeX () : pPC->PhysicalPageSi… in MapPaperSize()
571 …dy = height > pPC->PhysicalPageSizeY () ? height - pPC->PhysicalPageSizeY () : pPC->PhysicalPageSi… in MapPaperSize()
581 pPC->SetCustomSize (width, height); in MapPaperSize()
603 PaperWidth = pPC->PhysicalPageSizeX (); in MapPaperSize()
604 PaperHeight = pPC->PhysicalPageSizeY (); in MapPaperSize()
611 if (pPC) in ResetIOMode()
615 pPC->ResetIOMode (bDevID, bStatus); in ResetIOMode()
[all …]
H A Dtranslator.cpp37 RasterSender::RasterSender(Printer* pP, PrintContext* pPC, in RasterSender() argument
39 : thePrinter(pP), thePrintContext(pPC), theJob(pJob),theHalftoner(pHalftoner) in RasterSender()
H A Djob.h64 Job(PrintContext* pPC);
140 void Capture_Job(PrintContext* pPC);
H A Djob.cpp72 PrintContext* pPC in Job() argument
74 thePrintContext(pPC), in Job()
75 pSS(pPC->pSS), in Job()
94 CurrentMode(pPC->CurrentMode), in Job()
107 Capture_Job(pPC); in Job()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/io/io_virtual/
H A Dpc_create_spcvf.cpp420 projSPCVF = pPC->Get_Projection(); in On_Execute()
421 dNoData = pPC->Get_NoData_Value(); in On_Execute()
462 …if ( !pPC->Get_Projection().is_Okay() || SG_STR_CMP(pPC->Get_Projection().Get_WKT(), projSPCVF.Get… in On_Execute()
489 delete( pPC ); in On_Execute()
496 if( pPC->Get_Point_Count() <= 0 ) in On_Execute()
498 delete( pPC ); in On_Execute()
544 if( dZMin > pPC->Get_ZMin() ) in On_Execute()
545 dZMin = pPC->Get_ZMin(); in On_Execute()
546 if( dZMax < pPC->Get_ZMax() ) in On_Execute()
547 dZMax = pPC->Get_ZMax(); in On_Execute()
[all …]
H A Dpc_remove_overlap_from_spcvf.cpp193 CSG_PointCloud *pPC = SG_Create_PointCloud(sFilePath); in On_Execute() local
195 CSG_PointCloud *pPC_out = SG_Create_PointCloud(pPC); in On_Execute()
197 for(int iPoint=0; iPoint<pPC->Get_Count(); iPoint++) in On_Execute()
199 if( dBBoxXMin <= pPC->Get_X(iPoint) && pPC->Get_X(iPoint) < dBBoxXMax && in On_Execute()
200 dBBoxYMin <= pPC->Get_Y(iPoint) && pPC->Get_Y(iPoint) < dBBoxYMax ) in On_Execute()
202 pPC_out->Add_Point(pPC->Get_X(iPoint), pPC->Get_Y(iPoint), pPC->Get_Z(iPoint)); in On_Execute()
204 for (int j=0; j<pPC->Get_Attribute_Count(); j++) in On_Execute()
206 switch (pPC->Get_Attribute_Type(j)) in On_Execute()
208 default: pPC_out->Set_Attribute(j, pPC->Get_Attribute(iPoint, j)); break; in On_Execute()
223 pPC_out->Fmt_Name("%s%s", sPath.c_str(), SG_File_Get_Name(pPC->Get_Name(), false).c_str()); in On_Execute()
[all …]
H A Dpc_get_subset_spcvf.cpp385 pPC_out = SG_Create_PointCloud(pPC); in Get_Subset()
405 if( m_AOI.Get_XMin() <= pPC->Get_X(iPoint) && pPC->Get_X(iPoint) < m_AOI.Get_XMax() && in Get_Subset()
406 m_AOI.Get_YMin() <= pPC->Get_Y(iPoint) && pPC->Get_Y(iPoint) < m_AOI.Get_YMax() ) in Get_Subset()
412 if( !pPolygon->Contains(pPC->Get_X(iPoint), pPC->Get_Y(iPoint)) ) in Get_Subset()
418 …if( pPC->Get_Value(iPoint, m_iField) < m_dMinAttrRange || pPC->Get_Value(iPoint, m_iField) > m_dMa… in Get_Subset()
424 pPC_out->Add_Point(pPC->Get_X(iPoint), pPC->Get_Y(iPoint), pPC->Get_Z(iPoint)); in Get_Subset()
430 switch (pPC->Get_Attribute_Type(j)) in Get_Subset()
463 delete( pPC ); in Get_Subset()
1018 DataObject_Get_Parameters(pPC, sParms); in On_Execute_Position()
1022 sParms("METRIC_ZRANGE")->asRange()->Set_Range(pPC->Get_Minimum(2), pPC->Get_Maximum(2)); in On_Execute_Position()
[all …]
H A Dpc_get_grid_spcvf.cpp311 CSG_PointCloud *pPC = SG_Create_PointCloud(sFilePaths.Get_String(i)); in Get_Subset() local
329 for(int iPoint=0; iPoint<pPC->Get_Count(); iPoint++) in Get_Subset()
331 if( m_AOI.Get_XMin() <= pPC->Get_X(iPoint) && pPC->Get_X(iPoint) < m_AOI.Get_XMax() && in Get_Subset()
332 m_AOI.Get_YMin() <= pPC->Get_Y(iPoint) && pPC->Get_Y(iPoint) < m_AOI.Get_YMax() ) in Get_Subset()
338 if( !pPolygon->Contains(pPC->Get_X(iPoint), pPC->Get_Y(iPoint)) ) in Get_Subset()
344 …if( pPC->Get_Value(iPoint, m_iField) < m_dMinAttrRange || pPC->Get_Value(iPoint, m_iField) > m_dMa… in Get_Subset()
350 if( System.Get_World_to_Grid(x, y, pPC->Get_X(iPoint), pPC->Get_Y(iPoint)) ) in Get_Subset()
355 …case 0: if( pGrid->is_NoData(x, y) || pGrid->asDouble(x, y) > pPC->Get_Value(iPoint, iFieldToGrid… in Get_Subset()
357 pGrid->Set_Value(x, y, pPC->Get_Value(iPoint, iFieldToGrid)); in Get_Subset()
363 pGrid->Set_Value(x, y, pPC->Get_Value(iPoint, iFieldToGrid)); in Get_Subset()
[all …]
/dports/games/xray_re-tools/xray_re-tools-52721d2/sources/3rd-party/milkshape_sdk/ms3dsdk/msASCIIImporter/
H A DDlgMessage.cpp80 CProgressCtrl *pPC = (CProgressCtrl *) GetDlgItem (IDC_PROGRESS); in SetRange() local
81 pPC->SetRange (0, nRange); in SetRange()
89 CProgressCtrl *pPC = (CProgressCtrl *) GetDlgItem (IDC_PROGRESS); in SetPosition() local
90 pPC->SetPos (nPosition); in SetPosition()
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/cpu/m6805/
H A Dm6805.cpp304 RM16( 0xfffa, &pPC); in m68705_Interrupt()
309 RM16( 0xfff8, &pPC); in m68705_Interrupt()
335 RM16( 0x1ffc, &pPC); in Interrupt()
363 RM16( 0x1ff8, &pPC); in Interrupt()
368 RM16( 0x1fec, &pPC); in Interrupt()
373 RM16( 0x1fea, &pPC); in Interrupt()
378 RM16( 0x1ff6, &pPC); in Interrupt()
383 RM16( 0x1ff4, &pPC); in Interrupt()
388 RM16( 0x1ff2, &pPC); in Interrupt()
393 RM16( 0x1ff0, &pPC); in Interrupt()
[all …]
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/cpu/m6805/
H A Dm6805.cpp303 RM16( 0xfffa, &pPC); in m68705_Interrupt()
308 RM16( 0xfff8, &pPC); in m68705_Interrupt()
334 RM16( 0x1ffc, &pPC); in Interrupt()
362 RM16( 0x1ff8, &pPC); in Interrupt()
367 RM16( 0x1fec, &pPC); in Interrupt()
372 RM16( 0x1fea, &pPC); in Interrupt()
377 RM16( 0x1ff6, &pPC); in Interrupt()
382 RM16( 0x1ff4, &pPC); in Interrupt()
387 RM16( 0x1ff2, &pPC); in Interrupt()
392 RM16( 0x1ff0, &pPC); in Interrupt()
[all …]
/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/lib/hotint/HotInt_V1/WCDriver3D/
H A DDialogProgressBar.cpp46 CProgressCtrl* pPC = (CProgressCtrl*) GetDlgItem(IDC_PROGRESS); in Reset() local
47 pPC->SetRange(0,100); in Reset()
48 pPC->SetPos(50); in Reset()
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/cpu/m6805/
H A Dm6805.c296 RM16( 0x1ffc, &pPC); in Interrupt()
331 RM16( 0x1ff8, &pPC); in Interrupt()
336 RM16( 0x1fec, &pPC); in Interrupt()
341 RM16( 0x1fea, &pPC); in Interrupt()
346 RM16( 0x1ff6, &pPC); in Interrupt()
351 RM16( 0x1ff4, &pPC); in Interrupt()
356 RM16( 0x1ff2, &pPC); in Interrupt()
361 RM16( 0x1ff0, &pPC); in Interrupt()
366 RM16( 0x1fee, &pPC); in Interrupt()
373 RM16( AMASK - 5, &pPC ); in Interrupt()
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/cpu/m6805/
H A Dm6805.c310 RM16( 0x1ffc, &pPC);
347 RM16( 0x1ff8, &pPC);
352 RM16( 0x1fec, &pPC);
357 RM16( 0x1fea, &pPC);
362 RM16( 0x1ff6, &pPC);
367 RM16( 0x1ff4, &pPC);
372 RM16( 0x1ff2, &pPC);
377 RM16( 0x1ff0, &pPC);
382 RM16( 0x1fee, &pPC);
388 RM16( AMASK - 5, &pPC );
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/cpu/m6805/
H A Dm6805.c310 RM16( 0x1ffc, &pPC);
347 RM16( 0x1ff8, &pPC);
352 RM16( 0x1fec, &pPC);
357 RM16( 0x1fea, &pPC);
362 RM16( 0x1ff6, &pPC);
367 RM16( 0x1ff4, &pPC);
372 RM16( 0x1ff2, &pPC);
377 RM16( 0x1ff0, &pPC);
382 RM16( 0x1fee, &pPC);
388 RM16( AMASK - 5, &pPC );
[all …]
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/OpenClaw/Engine/Actor/Components/
H A DSpringBoardComponent.cpp65 auto pPC = MakeStrongPtr(pStandingActor->GetComponent<PhysicsComponent>()); in VOnAnimationFrameChanged() local
66 if (pPC) in VOnAnimationFrameChanged()
68 pPC->SetIsForcedUp(true, (int)m_Properties.springHeight); in VOnAnimationFrameChanged()
H A DPathElevatorComponent.cpp55 auto pPC = MakeStrongPtr(m_pOwner->GetComponent<PositionComponent>()); in VPostInit() local
56 assert(pPC != nullptr); in VPostInit()
58 m_LastPosition = pPC->GetPosition(); in VPostInit()
61 Point previousStepPosition = pPC->GetPosition(); in VPostInit()
/dports/games/openfodder/openfodder-1.6.0/Source/
H A Dstdafx.hpp167 #define PLATFORM_BASED( pPC, pAmiga ) (g_Fodder->mVersionCurrent->isAmiga() ? pAmiga : pPC ) argument
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/pointcloud/pointcloud_tools/
H A Dpc_reclass_extract.cpp692 void CPC_Reclass_Extract::Set_Display_Attributes(CSG_PointCloud *pPC, int iField, CSG_Parameters &s… in Set_Display_Attributes() argument
701 sParms("METRIC_ZRANGE")->asRange()->Set_Range(pPC->Get_Minimum(iField), pPC->Get_Maximum(iField)); in Set_Display_Attributes()
704 DataObject_Set_Parameters(pPC, sParms); in Set_Display_Attributes()
705 DataObject_Update(pPC); in Set_Display_Attributes()
/dports/misc/gpsim/gpsim-0.31.0/gui/
H A Dgui_statusbar.cc198 Program_Counter *pPC = in NewProcessor() local
204 pPC->add_xref((gpointer) cross_reference); in NewProcessor()
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/cpu/konami/
H A Dkonami.cpp85 #define pPC konami.pc macro
136 PUSHWORD(pPC); \
162 PUSHWORD(pPC); \
479 PUSHWORD(pPC); in konami_set_irq_line()
531 pPPC = pPC; in konamiRun()
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/cpu/konami/
H A Dkonami.cpp85 #define pPC konami.pc macro
136 PUSHWORD(pPC); \
162 PUSHWORD(pPC); \
479 PUSHWORD(pPC); in konami_set_irq_line()
527 pPPC = pPC; in konamiRun()

1234