Home
last modified time | relevance | path

Searched refs:pcSource (Results 1 – 25 of 83) sorted by relevance

1234

/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/filter/inc/
H A Dxestring.hxx186 …void CharsToBuffer( const sal_Unicode* pcSource, sal_Int32 nBegin, sal_Int32 nLen );
190 void CharsToBuffer( const char* pcSource, sal_Int32 nBegin, sal_Int32 nLen );
204 const sal_Unicode* pcSource, sal_Int32 nCurrLen,
212 const char* pcSource, sal_Int32 nCurrLen,
221 void BuildAppend( const sal_Unicode* pcSource, sal_Int32 nAddLen );
225 void BuildAppend( const char* pcSource, sal_Int32 nAddLen );
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/filter/inc/
H A Dxestring.hxx182 …void CharsToBuffer( const sal_Unicode* pcSource, sal_Int32 nBegin, sal_Int32 nLen );
186 void CharsToBuffer( const sal_Char* pcSource, sal_Int32 nBegin, sal_Int32 nLen );
200 const sal_Unicode* pcSource, sal_Int32 nCurrLen,
208 const sal_Char* pcSource, sal_Int32 nCurrLen,
217 void BuildAppend( const sal_Unicode* pcSource, sal_Int32 nAddLen );
221 void BuildAppend( const sal_Char* pcSource, sal_Int32 nAddLen );
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/jcf2/Process/
H A DNesting.pas68 procedure Assign(const pcSource: TNestingLevelList);
121 procedure TNestingLevelList.Assign(const pcSource: TNestingLevelList);
126 if pcSource = nil then
134 fiValues[leLoop] := pcSource.GetLevel(leLoop);
/dports/editors/lazarus/lazarus/components/jcf2/Process/
H A DNesting.pas68 procedure Assign(const pcSource: TNestingLevelList);
121 procedure TNestingLevelList.Assign(const pcSource: TNestingLevelList);
126 if pcSource = nil then
134 fiValues[leLoop] := pcSource.GetLevel(leLoop);
/dports/editors/lazarus-qt5/lazarus/components/jcf2/Process/
H A DNesting.pas68 procedure Assign(const pcSource: TNestingLevelList);
121 procedure TNestingLevelList.Assign(const pcSource: TNestingLevelList);
126 if pcSource = nil then
134 fiValues[leLoop] := pcSource.GetLevel(leLoop);
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/jcf2/Process/
H A DNesting.pas68 procedure Assign(const pcSource: TNestingLevelList);
121 procedure TNestingLevelList.Assign(const pcSource: TNestingLevelList);
126 if pcSource = nil then
134 fiValues[leLoop] := pcSource.GetLevel(leLoop);
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/filter/excel/
H A Dxestring.cxx461 void XclExpString::CharsToBuffer( const sal_Unicode* pcSource, sal_Int32 nBegin, sal_Int32 nLen ) in CharsToBuffer() argument
467 const sal_Unicode* pcSrcChar = pcSource; in CharsToBuffer()
478 void XclExpString::CharsToBuffer( const char* pcSource, sal_Int32 nBegin, sal_Int32 nLen ) in CharsToBuffer() argument
484 const char* pcSrcChar = pcSource; in CharsToBuffer()
520 CharsToBuffer( pcSource, 0, mnLen ); in Build()
523 void XclExpString::Build( const char* pcSource, sal_Int32 nCurrLen, XclStrFlags nFlags, sal_uInt16 … in Build() argument
526 CharsToBuffer( pcSource, 0, mnLen ); in Build()
538 void XclExpString::BuildAppend( const sal_Unicode* pcSource, sal_Int32 nAddLen ) in BuildAppend() argument
545 CharsToBuffer( pcSource, nOldLen, mnLen - nOldLen ); in BuildAppend()
549 void XclExpString::BuildAppend( const char* pcSource, sal_Int32 nAddLen ) in BuildAppend() argument
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/filter/excel/
H A Dxestring.cxx459 void XclExpString::CharsToBuffer( const sal_Unicode* pcSource, sal_Int32 nBegin, sal_Int32 nLen ) in CharsToBuffer() argument
465 const sal_Unicode* pcSrcChar = pcSource; in CharsToBuffer()
476 void XclExpString::CharsToBuffer( const sal_Char* pcSource, sal_Int32 nBegin, sal_Int32 nLen ) in CharsToBuffer() argument
482 const sal_Char* pcSrcChar = pcSource; in CharsToBuffer()
518 CharsToBuffer( pcSource, 0, mnLen ); in Build()
521 void XclExpString::Build( const sal_Char* pcSource, sal_Int32 nCurrLen, XclStrFlags nFlags, sal_uIn… in Build() argument
524 CharsToBuffer( pcSource, 0, mnLen ); in Build()
536 void XclExpString::BuildAppend( const sal_Unicode* pcSource, sal_Int32 nAddLen ) in BuildAppend() argument
543 CharsToBuffer( pcSource, nOldLen, mnLen - nOldLen ); in BuildAppend()
547 void XclExpString::BuildAppend( const sal_Char* pcSource, sal_Int32 nAddLen ) in BuildAppend() argument
[all …]
/dports/editors/lazarus/lazarus/components/jcf2/Utils/DragDrop/
H A DfrDrop.pas62 procedure HandleShellDragDrop(const pcSource: TObject); overload;
176 procedure TFrameDrop.HandleShellDragDrop(const pcSource: TObject);
178 if pcSource is TTeComDragObject then
179 HandleShellDragDrop(pcSource as TTeComDragObject);
/dports/editors/lazarus-qt5/lazarus/components/jcf2/Utils/DragDrop/
H A DfrDrop.pas62 procedure HandleShellDragDrop(const pcSource: TObject); overload;
176 procedure TFrameDrop.HandleShellDragDrop(const pcSource: TObject);
178 if pcSource is TTeComDragObject then
179 HandleShellDragDrop(pcSource as TTeComDragObject);
/dports/multimedia/assimp/assimp-5.1.3/tools/assimp_view/
H A Dassimp_view.cpp402 int GenerateNormalsAsLineList(AssetHelper::MeshHelper *pcMesh, const aiMesh *pcSource) { in GenerateNormalsAsLineList() argument
404 ai_assert(nullptr != pcSource); in GenerateNormalsAsLineList()
406 if (!pcSource->mNormals) return 0; in GenerateNormalsAsLineList()
410 pcSource->mNumVertices * 2, in GenerateNormalsAsLineList()
422 for (unsigned int x = 0; x < pcSource->mNumVertices; ++x) { in GenerateNormalsAsLineList()
423 pbData2->vPosition = pcSource->mVertices[x]; in GenerateNormalsAsLineList()
427 aiVector3D vNormal = pcSource->mNormals[x]; in GenerateNormalsAsLineList()
437 pbData2->vPosition = pcSource->mVertices[x] + vNormal; in GenerateNormalsAsLineList()
H A DMaterial.cpp824 AssetHelper::MeshHelper* pcMesh,const aiMesh* pcSource) in CreateMaterial() argument
827 ai_assert(nullptr != pcSource); in CreateMaterial()
834 const aiMaterial* pcMat = g_pcAsset->pcScene->mMaterials[pcSource->mMaterialIndex]; in CreateMaterial()
925 if (pcSource->mTextureCoords[0]) in CreateMaterial()
1057 if (g_pcAsset->pcScene->mMeshes[i] == pcSource) in CreateMaterial()
1094 if (pcSource->HasBones() != g_pcAsset->pcScene->mMeshes[i]->HasBones()) in CreateMaterial()
1163 …MaterialInteger(pcMat,AI_MATKEY_UVWSRC_LIGHTMAP(0),&idx) && idx >= 1 && pcSource->mTextureCoords[i… in CreateMaterial()
1227 if( pcSource->HasBones()) in CreateMaterial()
/dports/games/doomsday/doomsday-2.3.1/doomsday/external/assimp/tools/assimp_view/
H A Dassimp_view.cpp420 int GenerateNormalsAsLineList(AssetHelper::MeshHelper* pcMesh,const aiMesh* pcSource) in GenerateNormalsAsLineList() argument
423 ai_assert(NULL != pcSource); in GenerateNormalsAsLineList()
425 if (!pcSource->mNormals)return 0; in GenerateNormalsAsLineList()
429 pcSource->mNumVertices * 2, in GenerateNormalsAsLineList()
442 for (unsigned int x = 0; x < pcSource->mNumVertices;++x) in GenerateNormalsAsLineList()
444 pbData2->vPosition = pcSource->mVertices[x]; in GenerateNormalsAsLineList()
448 aiVector3D vNormal = pcSource->mNormals[x]; in GenerateNormalsAsLineList()
458 pbData2->vPosition = pcSource->mVertices[x] + vNormal; in GenerateNormalsAsLineList()
H A DMaterial.cpp825 AssetHelper::MeshHelper* pcMesh,const aiMesh* pcSource) in CreateMaterial() argument
828 ai_assert(NULL != pcSource); in CreateMaterial()
835 const aiMaterial* pcMat = g_pcAsset->pcScene->mMaterials[pcSource->mMaterialIndex]; in CreateMaterial()
926 if (pcSource->mTextureCoords[0]) in CreateMaterial()
1058 if (g_pcAsset->pcScene->mMeshes[i] == pcSource) in CreateMaterial()
1095 if (pcSource->HasBones() != g_pcAsset->pcScene->mMeshes[i]->HasBones()) in CreateMaterial()
1164 …MaterialInteger(pcMat,AI_MATKEY_UVWSRC_LIGHTMAP(0),&idx) && idx >= 1 && pcSource->mTextureCoords[i… in CreateMaterial()
1228 if( pcSource->HasBones()) in CreateMaterial()
/dports/devel/libklel/libklel-1.1.0/src/libklel/
H A Dinner-string.c129 KlelStringConcatCString(KLEL_STRING *psDest, const char *pcSource) in KlelStringConcatCString() argument
135 KLEL_ASSERT(pcSource != NULL); in KlelStringConcatCString()
137 szSourceLength = strlen(pcSource); in KlelStringConcatCString()
141 memcpy(psDest->pcString + psDest->szLength, pcSource, szSourceLength); in KlelStringConcatCString()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/drivers/fpga/
H A Divm_core.c2378 unsigned char *pcSource = NULL; in ispVMBypass() local
2386 pcSource = g_pucHIRData; in ispVMBypass()
2389 pcSource = g_pucTIRData; in ispVMBypass()
2392 pcSource = g_pucHDRData; in ispVMBypass()
2395 pcSource = g_pucTDRData; in ispVMBypass()
2406 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2415 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/sysutils/u-boot-olinuxino-lime2-emmc/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/sysutils/u-boot-chip/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot/drivers/fpga/
H A Divm_core.c2378 unsigned char *pcSource = NULL;
2386 pcSource = g_pucHIRData;
2389 pcSource = g_pucTIRData;
2392 pcSource = g_pucHDRData;
2395 pcSource = g_pucTDRData;
2406 cCurByte = pcSource[iSourceIndex++];
2415 cCurByte = pcSource[iSourceIndex++];
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/sysutils/u-boot-cubox-hummingboard/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
/dports/sysutils/u-boot-firefly-rk3399/u-boot-2021.07/drivers/fpga/
H A Divm_core.c2379 unsigned char *pcSource = NULL; in ispVMBypass() local
2387 pcSource = g_pucHIRData; in ispVMBypass()
2390 pcSource = g_pucTIRData; in ispVMBypass()
2393 pcSource = g_pucHDRData; in ispVMBypass()
2396 pcSource = g_pucTDRData; in ispVMBypass()
2407 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()
2416 cCurByte = pcSource[iSourceIndex++]; in ispVMBypass()

1234