HomeSort by relevance Sort by last modified time
    Searched defs:numBlocks (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/pdfium/third_party/bigint/
BigIntegerUtils.hh 55 unsigned int numBlocks = (length + piecesPerBlock - 1) / piecesPerBlock;
58 BigInteger::Blk *blocks = new BigInteger::Blk[numBlocks];
63 for (blockNum = 0, pieceNum = 0; blockNum < numBlocks; blockNum++) {
72 BigInteger x(blocks, numBlocks, sign);
  /prebuilts/go/darwin-x86/src/runtime/
mgcsweepbuf.go 138 // numBlocks returns the number of blocks in buffer b. numBlocks is
140 // been pushed prior to the call to numBlocks are guaranteed to appear
141 // in some block in the range [0, numBlocks()), assuming there are no
144 func (b *gcSweepBuf) numBlocks() int {
  /prebuilts/go/linux-x86/src/runtime/
mgcsweepbuf.go 138 // numBlocks returns the number of blocks in buffer b. numBlocks is
140 // been pushed prior to the call to numBlocks are guaranteed to appear
141 // in some block in the range [0, numBlocks()), assuming there are no
144 func (b *gcSweepBuf) numBlocks() int {
  /external/sonivox/arm-wt-22k/lib_src/
eas_imaadpcm.c 323 EAS_I32 numBlocks;
327 numBlocks = (EAS_I32) (pState->loopStart / pState->blockSize);
328 samplesInLastBlock = (EAS_I32) pState->loopStart - (numBlocks * pState->blockSize);
337 samplesPerLoop = numBlocks * samplesPerBlock + samplesInLastBlock;
340 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x2380b977, 0x00000007 , numBlocks, samplesPerLoop, samplesInLastBlock, temp);
  /external/deqp/modules/internal/
ditAstcTests.cpp 68 void testDecompress (CompressedTexFormat format, TexDecompressionParams::AstcMode mode, size_t numBlocks, const deUint8* data)
73 TextureLevel texture (uncompressedFormat, blockPixelSize.x()*(int)numBlocks, blockPixelSize.y());
78 void testDecompress (CompressedTexFormat format, size_t numBlocks, const deUint8* data)
80 testDecompress(format, TexDecompressionParams::ASTCMODE_LDR, numBlocks, data);
83 testDecompress(format, TexDecompressionParams::ASTCMODE_HDR, numBlocks, data);
86 void verifyBlocksValid (CompressedTexFormat format, TexDecompressionParams::AstcMode mode, size_t numBlocks, const deUint8* data)
88 for (size_t blockNdx = 0; blockNdx < numBlocks; blockNdx++)
133 const size_t numBlocks = 1024;
135 generatedData.resize(numBlocks*astc::BLOCK_SIZE_BYTES);
136 astc::generateDummyVoidExtentBlocks(&generatedData[0], numBlocks);
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.c 95 int i, k, numBlocks;
107 numBlocks = inputLen/128;
111 for (i = numBlocks; i > 0; i--) {
134 for (i = numBlocks - 1; i > 0; i--) {
163 for (i = numBlocks; i > 0; i--) {
195 return 128*numBlocks;
209 int i, numBlocks, padLen;
221 numBlocks = inputOctets/16;
225 for (i = numBlocks; i > 0; i--) {
230 padLen = 16 - (inputOctets - 16*numBlocks);
    [all...]
  /external/lzma/CPP/7zip/Common/
StreamObjects.cpp 223 size_t numBlocks = (size_t)1 << _numBlocksLog;
224 for (size_t i = 0; i < numBlocks; i++)
  /external/tensorflow/tensorflow/core/kernels/
softmax_op_gpu.cu.cc 120 const int numBlocks = Eigen::divup(rows * cols, numThreads);
137 GenerateNormalizedProb<<<numBlocks, numThreads, 0, cu_stream>>>(
  /external/gptfdisk/
diskio-unix.cc 298 int blockSize, numBlocks, retval = 0;
310 numBlocks = 1;
313 numBlocks = numBytes / blockSize;
315 numBlocks++;
316 tempSpace = new char [numBlocks * blockSize];
324 retval = read(fd, tempSpace, numBlocks * blockSize);
328 if (((numBlocks * blockSize) != numBytes) && (retval > 0))
341 int blockSize = 512, i, numBlocks, retval = 0;
353 numBlocks = 1;
356 numBlocks = numBytes / blockSize
    [all...]
diskio-windows.cc 216 int blockSize = 512, i, numBlocks;
229 numBlocks = 1;
232 numBlocks = numBytes / blockSize;
234 numBlocks++;
235 tempSpace = new char [numBlocks * blockSize];
243 ReadFile(fd, tempSpace, numBlocks * blockSize, &retval, NULL);
249 if (((numBlocks * blockSize) != numBytes) && (retval > 0))
260 int blockSize = 512, i, numBlocks, retval = 0;
273 numBlocks = 1;
276 numBlocks = numBytes / blockSize
    [all...]
  /external/lzma/C/
XzIn.c 52 for (i = 0; i < p->numBlocks; i++)
61 for (i = 0; i < p->numBlocks; i++)
75 size_t numBlocks, pos = 1;
89 numBlocks = (size_t)numBlocks64;
90 if (numBlocks != numBlocks64 || numBlocks * 2 > size)
95 if (numBlocks != 0)
98 p->numBlocks = numBlocks;
99 p->numBlocksAllocated = numBlocks;
    [all...]
Lzma2Enc.c 249 UInt64 numBlocks = temp / p->blockSize;
250 if (numBlocks < (unsigned)t2)
252 t2 = (unsigned)numBlocks;
Xz.h 108 size_t numBlocks;
207 UInt64 numBlocks;
  /external/skia/src/core/
SkDeque.cpp 219 int numBlocks = 0;
222 ++numBlocks;
225 return numBlocks;
  /external/skqp/src/core/
SkDeque.cpp 219 int numBlocks = 0;
222 ++numBlocks;
225 return numBlocks;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
SICBlockCipher.java 178 long numBlocks = (n + byteCount) / blockSize;
180 long rem = numBlocks;
196 byteCount = (int)((n + byteCount) - (blockSize * numBlocks));
200 long numBlocks = (-n - byteCount) / blockSize;
202 long rem = numBlocks;
221 int gap = (int)(byteCount + n + (blockSize * numBlocks));
  /external/deqp/framework/delibs/decpp/
deBlockBuffer.cpp 165 int numBlocks = rnd.getInt(2, 128);
170 MessageBuffer buffer (blockSize, numBlocks);
  /device/google/contexthub/firmware/os/core/
appSec.c 189 uint32_t i, numBlocks = state->haveBytes / APP_DATA_CHUNK_SIZE;
201 for (i = 0; i < numBlocks; i++, dataP += AES_BLOCK_WORDS)
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
TarBackupReader.java     [all...]
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutTests.cpp 114 const int numBlocks = rnd.getInt(1, m_maxBlocks);
116 for (int ndx = 0; ndx < numBlocks; ndx++)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]
  /external/deqp/external/openglcts/modules/common/
glcUniformBlockCase.cpp 654 int numBlocks = (int)layout.blocks.size();
656 for (int blockNdx = 0; blockNdx < numBlocks; blockNdx++)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutTests.cpp 117 const int numBlocks = rnd.getInt(1, m_maxBlocks);
119 for (int ndx = 0; ndx < numBlocks; ndx++)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp 618 int numBlocks = (int)layout.blocks.size();
620 for (int blockNdx = 0; blockNdx < numBlocks; blockNdx++)
    [all...]
  /external/deqp/modules/glshared/
glsUniformBlockCase.cpp 667 int numBlocks = (int)layout.blocks.size();
669 for (int blockNdx = 0; blockNdx < numBlocks; blockNdx++)
    [all...]

Completed in 749 milliseconds

1 2 3 4