Home
last modified time | relevance | path

Searched refs:bufIdx (Results 1 – 25 of 129) sorted by relevance

123456

/dports/games/pmars/pmars-0.9.2/src/
H A Dgtdisp.c322 register int bufIdx = 0, c; in agets5() local
333 xkey2macro(getch(), buf + bufIdx); in agets5()
342 if ((page5x > panelStart) && bufIdx) { in agets5()
345 --bufIdx; in agets5()
354 --bufIdx; in agets5()
365 buf[bufIdx++] = c; in agets5()
370 ukey2macro(c, buf + bufIdx); in agets5()
378 ckey2macro(c, buf + bufIdx); in agets5()
390 buf[bufIdx++] = '\n'; in agets5()
391 buf[bufIdx] = 0; in agets5()
[all …]
/dports/games/pmars-sdl/pmars-0.9.2-5/src/
H A Dgtdisp.c322 register int bufIdx = 0, c; in agets5() local
333 xkey2macro(getch(), buf + bufIdx); in agets5()
342 if ((page5x > panelStart) && bufIdx) { in agets5()
345 --bufIdx; in agets5()
354 --bufIdx; in agets5()
365 buf[bufIdx++] = c; in agets5()
370 ukey2macro(c, buf + bufIdx); in agets5()
378 ckey2macro(c, buf + bufIdx); in agets5()
390 buf[bufIdx++] = '\n'; in agets5()
391 buf[bufIdx] = 0; in agets5()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Mono.Globalization.Unicode/
H A DNormalization.cs384 return bufIdx; in GetCanonicalHangul()
391 buf [bufIdx++] = L; in GetCanonicalHangul()
392 buf [bufIdx++] = V; in GetCanonicalHangul()
394 buf [bufIdx++] = T; in GetCanonicalHangul()
396 buf [bufIdx] = (char) 0; in GetCanonicalHangul()
397 return bufIdx; in GetCanonicalHangul()
403 if (newBufIdx > bufIdx) in GetCanonical()
408 buf [bufIdx++] = c; in GetCanonical()
419 buf [bufIdx++] = nth; in GetCanonical()
421 bufIdx = GetCanonical (nth, buf, bufIdx, checkType); in GetCanonical()
[all …]
/dports/multimedia/libva-intel-media-driver/media-driver-intel-media-22.1.1/media_softlet/agnostic/common/vp/hal/shared/scalability/
H A Dvp_scalability_multipipe.cpp383 uint32_t bufIdx = m_currentPipe; //Make CMD buffer one next to one. in GetCmdBuffer() local
384 uint32_t bufIdxPlus1 = bufIdx + 1; in GetCmdBuffer()
386 if (Mos_ResourceIsNull(&m_secondaryCmdBuffers[bufIdx].OsResource)) in GetCmdBuffer()
400 m_osInterface->osStreamState, &(m_secondaryCmdBuffers[bufIdx]), submissionType)); in GetCmdBuffer()
404 m_secondaryCmdBuffers[bufIdx].iSubmissionType = in GetCmdBuffer()
413 *cmdBuffer = m_secondaryCmdBuffers[bufIdx]; in GetCmdBuffer()
414 m_secondaryCmdBuffersReturned[bufIdx] = false; in GetCmdBuffer()
444 uint32_t bufIdx = m_currentPipe; //Make CMD buffer one next to one. in ReturnCmdBuffer() local
445 uint32_t bufIdxPlus1 = bufIdx + 1; in ReturnCmdBuffer()
446 if (m_secondaryCmdBuffersReturned[bufIdx] == false) in ReturnCmdBuffer()
[all …]
/dports/multimedia/libva-intel-media-driver/media-driver-intel-media-22.1.1/media_softlet/agnostic/common/codec/hal/dec/shared/scalability/
H A Ddecode_scalability_multipipe.cpp349 uint32_t bufIdx = m_phase->GetCmdBufIndex(); in GetCmdBuffer() local
350 SCALABILITY_ASSERT(bufIdx >= DecodePhase::m_secondaryCmdBufIdxBase); in GetCmdBuffer()
351 uint32_t secondaryIdx = bufIdx - DecodePhase::m_secondaryCmdBufIdxBase; in GetCmdBuffer()
357 …LITY_CHK_STATUS_RETURN(m_osInterface->pfnGetCommandBuffer(m_osInterface, &scdryCmdBuffer, bufIdx)); in GetCmdBuffer()
388 uint32_t bufIdx = m_phase->GetCmdBufIndex(); in ReturnCmdBuffer() local
389 SCALABILITY_ASSERT(bufIdx >= DecodePhase::m_secondaryCmdBufIdxBase); in ReturnCmdBuffer()
390 uint32_t secondaryIdx = bufIdx - DecodePhase::m_secondaryCmdBufIdxBase; in ReturnCmdBuffer()
394 …m_osInterface->pfnReturnCommandBuffer(m_osInterface, &m_secondaryCmdBuffers[secondaryIdx], bufIdx); in ReturnCmdBuffer()
465 uint32_t bufIdx = secondaryIdx + DecodePhase::m_secondaryCmdBufIdxBase; in SubmitCmdBuffer() local
466 …LITY_CHK_STATUS_RETURN(m_osInterface->pfnGetCommandBuffer(m_osInterface, &scdryCmdBuffer, bufIdx)); in SubmitCmdBuffer()
[all …]
/dports/devel/bullet/bullet3-3.21/src/Bullet3OpenCL/RigidBody/kernels/
H A DbatchingKernelsNew.cl120 int bufIdx = idx/32;
121 return buff[bufIdx] & (1<<bitIdx);
128 int bufIdx = idx/32;
129 buff[bufIdx] |= (1<<bitIdx);
130 //atom_or( &buff[bufIdx], (1<<bitIdx) );
137 int bufIdx = idx/32;
138 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
H A DbatchingKernels.cl99 int bufIdx = idx/32;
100 return buff[bufIdx] & (1<<bitIdx);
107 int bufIdx = idx/32;
108 // buff[bufIdx] |= (1<<bitIdx);
109 atom_or( &buff[bufIdx], (1<<bitIdx) );
116 int bufIdx = idx/32;
117 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
/dports/devel/py-bullet3/bullet3-3.21/src/Bullet3OpenCL/RigidBody/kernels/
H A DbatchingKernelsNew.cl120 int bufIdx = idx/32;
121 return buff[bufIdx] & (1<<bitIdx);
128 int bufIdx = idx/32;
129 buff[bufIdx] |= (1<<bitIdx);
130 //atom_or( &buff[bufIdx], (1<<bitIdx) );
137 int bufIdx = idx/32;
138 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
H A DbatchingKernels.cl99 int bufIdx = idx/32;
100 return buff[bufIdx] & (1<<bitIdx);
107 int bufIdx = idx/32;
108 // buff[bufIdx] |= (1<<bitIdx);
109 atom_or( &buff[bufIdx], (1<<bitIdx) );
116 int bufIdx = idx/32;
117 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
/dports/devel/godot/godot-3.2.3-stable/thirdparty/bullet/Bullet3OpenCL/RigidBody/kernels/
H A DbatchingKernelsNew.cl120 int bufIdx = idx/32;
121 return buff[bufIdx] & (1<<bitIdx);
128 int bufIdx = idx/32;
129 buff[bufIdx] |= (1<<bitIdx);
130 //atom_or( &buff[bufIdx], (1<<bitIdx) );
137 int bufIdx = idx/32;
138 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
H A DbatchingKernels.cl99 int bufIdx = idx/32;
100 return buff[bufIdx] & (1<<bitIdx);
107 int bufIdx = idx/32;
108 // buff[bufIdx] |= (1<<bitIdx);
109 atom_or( &buff[bufIdx], (1<<bitIdx) );
116 int bufIdx = idx/32;
117 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/Bullet3OpenCL/RigidBody/kernels/
H A DbatchingKernelsNew.cl120 int bufIdx = idx/32;
121 return buff[bufIdx] & (1<<bitIdx);
128 int bufIdx = idx/32;
129 buff[bufIdx] |= (1<<bitIdx);
130 //atom_or( &buff[bufIdx], (1<<bitIdx) );
137 int bufIdx = idx/32;
138 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
H A DbatchingKernels.cl99 int bufIdx = idx/32;
100 return buff[bufIdx] & (1<<bitIdx);
107 int bufIdx = idx/32;
108 // buff[bufIdx] |= (1<<bitIdx);
109 atom_or( &buff[bufIdx], (1<<bitIdx) );
116 int bufIdx = idx/32;
117 u32 ans = (u32)atom_or( &buff[bufIdx], (1<<bitIdx) );
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelinePushDescriptorTests.cpp393 for (deUint32 bufIdx = 0; bufIdx < DE_LENGTH_OF_ARRAY(defaultTestColors); bufIdx++) in init() local
411 …kd.bindBufferMemory(*m_device, **m_buffers[bufIdx], m_bufferAllocs[bufIdx]->getMemory(), m_bufferA… in init()
413 deMemcpy(m_bufferAllocs[bufIdx]->getHostPtr(), &defaultTestColors[bufIdx], 16u); in init()
794 for (deUint32 bufIdx = 0; bufIdx < m_params.numCalls; bufIdx++) in init() local
812 …kd.bindBufferMemory(*m_device, **m_buffers[bufIdx], m_bufferAllocs[bufIdx]->getMemory(), m_bufferA… in init()
814 deMemcpy(m_bufferAllocs[bufIdx]->getHostPtr(), &m_testColors[bufIdx], 16u); in init()
2744 for (deUint32 bufIdx = 0; bufIdx < DE_LENGTH_OF_ARRAY(defaultTestColors); bufIdx++) in init() local
2764 deMemcpy(m_bufferAllocs[bufIdx]->getHostPtr(), &defaultTestColors[bufIdx], 16u); in init()
2769 for (deUint32 bufIdx = 0; bufIdx < DE_LENGTH_OF_ARRAY(defaultTestColors); bufIdx++) in init() local
3170 for (deUint32 bufIdx = 0; bufIdx < DE_LENGTH_OF_ARRAY(defaultTestColors); bufIdx++) in init() local
[all …]
/dports/databases/pg_citus/citus-10.2.3/src/backend/distributed/utils/
H A Dstatistics_collection.c334 for (int bufIdx = 0; bufIdx < UUID_LEN; bufIdx++) in citus_server_id() local
336 buf[bufIdx] = (uint8) (random() & 0xFF); in citus_server_id()
/dports/print/tex-luatex/texlive-20150521-source/libs/poppler/poppler-0.32.0/poppler/
H A DDecrypt.cc402 state.aes.bufIdx = 0; in reset()
408 state.aes256.bufIdx = 0; in reset()
482 state.aes.bufIdx = 16; in reset()
489 state.aes256.bufIdx = 16; in reset()
899 s->bufIdx = 0; in aesEncryptBlock()
943 s->bufIdx = 0; in aesDecryptBlock()
952 s->bufIdx = n; in aesDecryptBlock()
1023 s->bufIdx = 0; in aes256EncryptBlock()
1067 s->bufIdx = 0; in aes256DecryptBlock()
1076 s->bufIdx = n; in aes256DecryptBlock()
[all …]
/dports/print/tex-xetex/texlive-20150521-source/libs/poppler/poppler-0.32.0/poppler/
H A DDecrypt.cc402 state.aes.bufIdx = 0; in reset()
408 state.aes256.bufIdx = 0; in reset()
482 state.aes.bufIdx = 16; in reset()
489 state.aes256.bufIdx = 16; in reset()
899 s->bufIdx = 0; in aesEncryptBlock()
943 s->bufIdx = 0; in aesDecryptBlock()
952 s->bufIdx = n; in aesDecryptBlock()
1023 s->bufIdx = 0; in aes256EncryptBlock()
1067 s->bufIdx = 0; in aes256DecryptBlock()
1076 s->bufIdx = n; in aes256DecryptBlock()
[all …]
/dports/biology/velvet/velvet_1.2.10/src/
H A DbinarySequences.c387 …uint64_t bufIdx = (seqWriteInfo->m_hostBuffersInUse == 2) ? (seqWriteInfo->m_pHostBufPtr - seqWrit… in moveCnySeqNucleotides() local
388 if (bufIdx + 4 > 2 * WRITE_BUF_SIZE) { in moveCnySeqNucleotides()
389 velvetLog("CnySeq bufIdx %ld too large\n", bufIdx); in moveCnySeqNucleotides()
393 if (bufIdx + 4 >= WRITE_BUF_SIZE) { in moveCnySeqNucleotides()
395 seqWriteInfo->m_pHostBufPtr = seqWriteInfo->m_pWriteBuffer[1] + (bufIdx + 4 - WRITE_BUF_SIZE); in moveCnySeqNucleotides()
406 …m_pWriteBuffer[(bufIdx+4) >> WRITE_BUF_SHFT][(bufIdx+4) & WRITE_BUF_MASK] = seqWriteInfo->m_pWrite… in moveCnySeqNucleotides()
407 bufIdx -= 1; in moveCnySeqNucleotides()
/dports/audio/musescore/MuseScore-3.6.1/thirdparty/poppler/poppler/
H A DDecrypt.cc427 state.aes.bufIdx = 0; in reset()
433 state.aes256.bufIdx = 0; in reset()
507 state.aes.bufIdx = 16; in reset()
924 s->bufIdx = 0; in aesEncryptBlock()
968 s->bufIdx = 0; in aesDecryptBlock()
977 s->bufIdx = n; in aesDecryptBlock()
1048 s->bufIdx = 0; in aes256EncryptBlock()
1092 s->bufIdx = 0; in aes256DecryptBlock()
1101 s->bufIdx = n; in aes256DecryptBlock()
1105 s->bufIdx = 16; in aes256DecryptBlock()
[all …]
/dports/graphics/poppler/poppler-21.12.0/poppler/
H A DDecrypt.cc416 state.aes.bufIdx = 0; in reset()
422 state.aes256.bufIdx = 0; in reset()
497 state.aes.bufIdx = 16; in reset()
958 s->bufIdx = 0; in aesEncryptBlock()
1003 s->bufIdx = 0; in aesDecryptBlock()
1012 s->bufIdx = n; in aesDecryptBlock()
1083 s->bufIdx = 0; in aes256EncryptBlock()
1128 s->bufIdx = 0; in aes256DecryptBlock()
1137 s->bufIdx = n; in aes256DecryptBlock()
1140 s->bufIdx = 16; in aes256DecryptBlock()
[all …]
/dports/graphics/poppler-qt5/poppler-21.12.0/poppler/
H A DDecrypt.cc416 state.aes.bufIdx = 0; in reset()
422 state.aes256.bufIdx = 0; in reset()
497 state.aes.bufIdx = 16; in reset()
958 s->bufIdx = 0; in aesEncryptBlock()
1003 s->bufIdx = 0; in aesDecryptBlock()
1012 s->bufIdx = n; in aesDecryptBlock()
1083 s->bufIdx = 0; in aes256EncryptBlock()
1128 s->bufIdx = 0; in aes256DecryptBlock()
1137 s->bufIdx = n; in aes256DecryptBlock()
1140 s->bufIdx = 16; in aes256DecryptBlock()
[all …]
/dports/graphics/poppler-glib/poppler-21.12.0/poppler/
H A DDecrypt.cc416 state.aes.bufIdx = 0; in reset()
422 state.aes256.bufIdx = 0; in reset()
497 state.aes.bufIdx = 16; in reset()
958 s->bufIdx = 0; in aesEncryptBlock()
1003 s->bufIdx = 0; in aesDecryptBlock()
1012 s->bufIdx = n; in aesDecryptBlock()
1083 s->bufIdx = 0; in aes256EncryptBlock()
1128 s->bufIdx = 0; in aes256DecryptBlock()
1137 s->bufIdx = n; in aes256DecryptBlock()
1140 s->bufIdx = 16; in aes256DecryptBlock()
[all …]
/dports/graphics/poppler-utils/poppler-21.12.0/poppler/
H A DDecrypt.cc416 state.aes.bufIdx = 0; in reset()
422 state.aes256.bufIdx = 0; in reset()
497 state.aes.bufIdx = 16; in reset()
958 s->bufIdx = 0; in aesEncryptBlock()
1003 s->bufIdx = 0; in aesDecryptBlock()
1012 s->bufIdx = n; in aesDecryptBlock()
1083 s->bufIdx = 0; in aes256EncryptBlock()
1128 s->bufIdx = 0; in aes256DecryptBlock()
1137 s->bufIdx = n; in aes256DecryptBlock()
1140 s->bufIdx = 16; in aes256DecryptBlock()
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/opimage/
H A DErrorDiffusionOpImage.java490 int[] bufIdx = new int[numLinesBuffer]; in computeImageDefault() local
494 bufIdx[idx] = idx; in computeImageDefault()
520 int currentIndex = bufIdx[0]; in computeImageDefault()
577 float[] line = bufMem[bufIdx[v]]; in computeImageDefault()
598 bufIdx[k] = bufIdx[k+1]; in computeImageDefault()
600 bufIdx[lastLineBuffer] = currentIndex; in computeImageDefault()
605 bufMem[bufIdx[lastLineBuffer]]); in computeImageDefault()
/dports/textproc/R-cran-stringi/stringi/src/icu55/common/
H A Duloc_tag.c1206 int32_t bufIdx = 0; in _appendLDMLExtensionAsKeywords() local
1283 *(buf + bufIdx) = SEP; in _appendLDMLExtensionAsKeywords()
1284 bufIdx++; in _appendLDMLExtensionAsKeywords()
1289 bufIdx += len; in _appendLDMLExtensionAsKeywords()
1293 *(buf + bufIdx) = 0; in _appendLDMLExtensionAsKeywords()
1294 bufIdx++; in _appendLDMLExtensionAsKeywords()
1393 pKey = buf + bufIdx; in _appendLDMLExtensionAsKeywords()
1394 bufIdx += bcpKeyLen; in _appendLDMLExtensionAsKeywords()
1395 *(buf + bufIdx) = 0; in _appendLDMLExtensionAsKeywords()
1396 bufIdx++; in _appendLDMLExtensionAsKeywords()
[all …]

123456