Home
last modified time | relevance | path

Searched refs:blockCount (Results 1 – 13 of 13) sorted by relevance

/external/srec/tools/grxmlcompile/
Dsub_grph.cpp172 int ii, finalId, endLoc, blockCount; in CloseScope() local
184 blockCount= numVertex - startId - 1; in CloseScope()
188 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1); in CloseScope()
189 finalId= lastId + (arg2 - 1) * blockCount; in CloseScope()
191 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1); in CloseScope()
192 (void) CreateArc (NONE_LABEL, NONE_LABEL, lastId + (ii - 1) * blockCount, finalId); in CloseScope()
202 blockCount= numVertex - startId - 1; in CloseScope()
205 CopyFastArcs (this, arcLoc, endLoc, ii * blockCount, -1, -1, -1, -1); in CloseScope()
206 finalId= lastId + (arg1 - 1) * blockCount; in CloseScope()
209 CopyFastArcs (this, arcLoc, endLoc, blockCount, startId, finalId, lastId, finalId); in CloseScope()
[all …]
/external/sonivox/arm-wt-22k/lib_src/
Deas_imaadpcm.c127 pState->blockCount = 0; in IMADecoderSample()
133 if ((pState->blockSize != 0) && (pState->blockCount == 0) && (pState->bytesLeft != 0)) in IMADecoderSample()
167 pState->blockCount = pState->blockSize - 8; in IMADecoderSample()
172 pState->blockCount = pState->blockSize - 4; in IMADecoderSample()
188 pState->blockCount--; in IMADecoderSample()
361 pState->blockCount = 0; in IMADecoderLocate()
Deas_pcmdata.h112 EAS_U16 blockCount; /* block counter for ADPCM decoder */ member
Deas_pcm.c939 pState->blockCount = 0; in InitPCMStream()
/external/sonivox/arm-hybrid-22k/lib_src/
Deas_imaadpcm.c127 pState->blockCount = 0; in IMADecoderSample()
133 if ((pState->blockSize != 0) && (pState->blockCount == 0) && (pState->bytesLeft != 0)) in IMADecoderSample()
167 pState->blockCount = pState->blockSize - 8; in IMADecoderSample()
172 pState->blockCount = pState->blockSize - 4; in IMADecoderSample()
188 pState->blockCount--; in IMADecoderSample()
361 pState->blockCount = 0; in IMADecoderLocate()
Deas_pcmdata.h112 EAS_U16 blockCount; /* block counter for ADPCM decoder */ member
Deas_pcm.c939 pState->blockCount = 0; in InitPCMStream()
/external/sonivox/arm-fm-22k/lib_src/
Deas_imaadpcm.c127 pState->blockCount = 0; in IMADecoderSample()
133 if ((pState->blockSize != 0) && (pState->blockCount == 0) && (pState->bytesLeft != 0)) in IMADecoderSample()
167 pState->blockCount = pState->blockSize - 8; in IMADecoderSample()
172 pState->blockCount = pState->blockSize - 4; in IMADecoderSample()
188 pState->blockCount--; in IMADecoderSample()
361 pState->blockCount = 0; in IMADecoderLocate()
Deas_pcmdata.h112 EAS_U16 blockCount; /* block counter for ADPCM decoder */ member
Deas_pcm.c939 pState->blockCount = 0; in InitPCMStream()
/external/emma/core/java12/com/vladium/emma/instr/
DInstrVisitor.java591 final int blockCount = blockCounts [m]; in visit() local
592 if (blockCount > 0) in visit()
605 CodeGen.push_int_value (buf, cls, blockCount); in visit()
943 final int blockCount = leaders.size (); in visit() local
944 if (trace2) m_log.trace2 ("visit", "method contains " + blockCount + " basic blocks"); in visit()
946 final BlockList blocks = new BlockList (blockCount); in visit()
948 final int [] _leaders = new int [blockCount + 1]; // room for end-of-code leader at the end in visit()
950 _leaders [blockCount] = codeSize; in visit()
963 m_methodBlockSizes = new int [blockCount]; in visit()
976 for (int bl = 0, br = 0; bl < blockCount; ++ bl) in visit()
[all …]
/external/emma/core/java12/com/vladium/emma/data/
DMethodDescriptor.java46 final int blockCount = blockSizes.length; in MethodDescriptor() local
48 …if ($assert.ENABLED) $assert.ASSERT (blockCount > 0, "blockCount must be positive: " + blockCount); in MethodDescriptor()
62 …$assert.ASSERT (blockCount == blockMap.length, "blockCount " + blockCount + " != blockMap.length "… in MethodDescriptor()
/external/webkit/SunSpider/tests/
Dcrypto-aes.js188 var blockCount = Math.ceil(plaintext.length/blockSize);
189 var ciphertext = new Array(blockCount); // ciphertext as array of strings
191 for (var b=0; b<blockCount; b++) {
200 var blockLength = b<blockCount-1 ? blockSize : (plaintext.length-1)%blockSize+1;