HomeSort by relevance Sort by last modified time
    Searched refs:BlockSize (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Timer.c 30 LVM_INT16 BlockSize ){
36 pInstancePr->RemainingTimeInSamples -= BlockSize;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_BlockMatch_Integer_16x16.c 107 OMX_U8 BlockSize = 16;
123 BlockSize)
omxVCM4P2_BlockMatch_Integer_8x8.c 104 OMX_U8 BlockSize = 8;
120 BlockSize)
armVCM4P2_BlockMatch_Half.c 68 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
87 OMX_U8 BlockSize
111 outer < BlockSize;
112 outer++, index += refWidth - BlockSize)
114 for (inner = 0; inner < BlockSize; inner++, count++, index++)
134 if ((pSearchPointRefPos->x + BlockSize + 1) > (pRefRect->x + pRefRect->width))
144 if ((pSearchPointRefPos->y + BlockSize + 1) > (pRefRect->y + pRefRect->height))
166 outer < BlockSize;
167 outer++, index += refWidth - BlockSize)
169 for (inner = 0; inner < BlockSize; inner++, count++,index++
    [all...]
armVCM4P2_BlockMatch_Integer.c 92 OMX_U8 BlockSize
128 if ((pCurrPointPos->x + BlockSize + searchRange) > (pRefRect->x + pRefRect->width))
130 toX = pRefRect->width - (pCurrPointPos->x - pRefRect->x) - BlockSize;
138 if ((pCurrPointPos->y + BlockSize + searchRange) > (pRefRect->y + pRefRect->height))
140 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - BlockSize;
157 outer < BlockSize;
158 outer++, index += refWidth - BlockSize)
160 for (inner = 0; inner < BlockSize; inner++, count++, index++)
omxVCM4P2_BlockMatch_Half_16x16.c 101 /* For a blocksize of 16x16 */
102 OMX_U8 BlockSize = 16;
121 BlockSize));
omxVCM4P2_BlockMatch_Half_8x8.c 100 /* For a blocksize of 8x8 */
101 OMX_U8 BlockSize = 8;
120 BlockSize));
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
LVM_Timer.h 71 LVM_INT16 BlockSize );
  /external/opencv3/modules/cudaimgproc/test/
test_corners.cpp 54 IMPLEMENT_PARAM_CLASS(BlockSize, int);
58 PARAM_TEST_CASE(CornerHarris, cv::cuda::DeviceInfo, MatType, BorderType, BlockSize, ApertureSize)
63 int blockSize;
71 blockSize = GET_PARAM(3);
85 cv::Ptr<cv::cuda::CornernessCriteria> harris = cv::cuda::createHarrisCorner(src.type(), blockSize, apertureSize, k, borderType);
91 cv::cornerHarris(src, dst_gold, blockSize, apertureSize, k, borderType);
100 testing::Values(BlockSize(3), BlockSize(5), BlockSize(7)),
106 PARAM_TEST_CASE(CornerMinEigen, cv::cuda::DeviceInfo, MatType, BorderType, BlockSize, ApertureSize
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/aes/
cipher.go 13 const BlockSize = 16
46 func (c *aesCipher) BlockSize() int { return BlockSize }
49 if len(src) < BlockSize {
52 if len(dst) < BlockSize {
59 if len(src) < BlockSize {
62 if len(dst) < BlockSize {
  /prebuilts/go/linux-x86/src/crypto/aes/
cipher.go 13 const BlockSize = 16
46 func (c *aesCipher) BlockSize() int { return BlockSize }
49 if len(src) < BlockSize {
52 if len(dst) < BlockSize {
59 if len(src) < BlockSize {
62 if len(dst) < BlockSize {
  /external/ceres-solver/internal/ceres/
block_structure.h 48 typedef int32 BlockSize;
54 BlockSize size;
  /prebuilts/go/darwin-x86/src/crypto/cipher/
ctr.go 27 if len(iv) != block.BlockSize() {
31 if bufSize < block.BlockSize() {
32 bufSize = block.BlockSize()
49 bs := x.b.BlockSize()
68 if x.outUsed >= len(x.out)-x.b.BlockSize() {
example_test.go 28 if len(ciphertext) < aes.BlockSize {
31 iv := ciphertext[:aes.BlockSize]
32 ciphertext = ciphertext[aes.BlockSize:]
35 if len(ciphertext)%aes.BlockSize != 0 {
64 if len(plaintext)%aes.BlockSize != 0 {
75 ciphertext := make([]byte, aes.BlockSize+len(plaintext))
76 iv := ciphertext[:aes.BlockSize]
82 mode.CryptBlocks(ciphertext[aes.BlockSize:], plaintext)
102 if len(ciphertext) < aes.BlockSize {
105 iv := ciphertext[:aes.BlockSize]
    [all...]
cipher.go 16 // BlockSize returns the cipher's block size.
17 BlockSize() int
41 // BlockSize returns the mode's block size.
42 BlockSize() int
ofb.go 20 blockSize := b.BlockSize()
21 if len(iv) != blockSize {
25 if bufSize < blockSize {
26 bufSize = blockSize
30 cipher: make([]byte, blockSize),
40 bs := x.b.BlockSize()
58 if x.outUsed >= len(x.out)-x.b.BlockSize() {
  /prebuilts/go/darwin-x86/src/crypto/des/
cipher.go 13 const BlockSize = 8
37 func (c *desCipher) BlockSize() int { return BlockSize }
61 func (c *tripleDESCipher) BlockSize() int { return BlockSize }
  /prebuilts/go/linux-x86/src/crypto/cipher/
ctr.go 27 if len(iv) != block.BlockSize() {
31 if bufSize < block.BlockSize() {
32 bufSize = block.BlockSize()
49 bs := x.b.BlockSize()
68 if x.outUsed >= len(x.out)-x.b.BlockSize() {
example_test.go 28 if len(ciphertext) < aes.BlockSize {
31 iv := ciphertext[:aes.BlockSize]
32 ciphertext = ciphertext[aes.BlockSize:]
35 if len(ciphertext)%aes.BlockSize != 0 {
64 if len(plaintext)%aes.BlockSize != 0 {
75 ciphertext := make([]byte, aes.BlockSize+len(plaintext))
76 iv := ciphertext[:aes.BlockSize]
82 mode.CryptBlocks(ciphertext[aes.BlockSize:], plaintext)
102 if len(ciphertext) < aes.BlockSize {
105 iv := ciphertext[:aes.BlockSize]
    [all...]
cipher.go 16 // BlockSize returns the cipher's block size.
17 BlockSize() int
41 // BlockSize returns the mode's block size.
42 BlockSize() int
ofb.go 20 blockSize := b.BlockSize()
21 if len(iv) != blockSize {
25 if bufSize < blockSize {
26 bufSize = blockSize
30 cipher: make([]byte, blockSize),
40 bs := x.b.BlockSize()
58 if x.outUsed >= len(x.out)-x.b.BlockSize() {
  /prebuilts/go/linux-x86/src/crypto/des/
cipher.go 13 const BlockSize = 8
37 func (c *desCipher) BlockSize() int { return BlockSize }
61 func (c *tripleDESCipher) BlockSize() int { return BlockSize }
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 69 unsigned BlockSize = 0;
72 BlockSize += TII->GetInstSizeInBytes(MBBI);
74 BlockSizes[MBB->getNumber()] = BlockSize;
75 FuncSize += BlockSize;
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.cpp 186 static uint64_t bytesToBlocks(uint64_t NumBytes, uint64_t BlockSize) {
187 return RoundUpToAlignment(NumBytes, BlockSize) / BlockSize;
190 static uint64_t blockToOffset(uint64_t BlockNumber, uint64_t BlockSize) {
191 return BlockNumber * BlockSize;
200 outs() << "BlockSize: " << SB->BlockSize << '\n';
209 if (SB->BlockSize % sizeof(support::ulittle32_t) != 0)
221 bytesToBlocks(SB->NumDirectoryBytes, SB->BlockSize);
229 if (NumDirectoryBlocks > SB->BlockSize / sizeof(support::ulittle32_t)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/hmac/
hmac_test.go 23 blocksize int
44 sha1.BlockSize,
56 sha1.BlockSize,
78 sha1.BlockSize,
88 md5.BlockSize,
102 sha256.BlockSize,
110 sha256.BlockSize,
130 sha256.BlockSize,
151 sha256.BlockSize,
177 sha256.BlockSize,
    [all...]

Completed in 2556 milliseconds

1 2 3 4 5 6