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

1 2 3 4

  /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...]
  /external/ceres-solver/internal/ceres/
block_structure.h 48 typedef int32 BlockSize;
54 BlockSize size;
  /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...]
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 104 unsigned BlockSize = 0;
107 BlockSize += TII->GetInstSizeInBytes(MBBI);
109 BlockSizes[MBB->getNumber()] = BlockSize;
110 FuncSize += BlockSize;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
app_unittest.cc 38 EXPECT_EQ(header.BlockSize(), packet->Length());
extended_jitter_report_unittest.cc 33 EXPECT_EQ(header.BlockSize(), packet->Length());
nack_unittest.cc 62 EXPECT_EQ(kPacketLength, header.BlockSize());
89 EXPECT_EQ(kWrapPacketLength, header.BlockSize());
143 EXPECT_EQ(length, header.BlockSize());
sli_unittest.cc 49 EXPECT_EQ(length, header.BlockSize());
bye_unittest.cc 39 EXPECT_EQ(header.BlockSize(), packet->Length());
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 123 // - the current destination block is processed per panel of actual_mc x BlockSize
124 // where BlockSize is set to the minimal value allowing gebp to be as fast as possible
137 BlockSize = EIGEN_PLAIN_ENUM_MAX(mr,nr)
142 Matrix<ResScalar,BlockSize,BlockSize,ColMajor> buffer;
144 // let's process the block per panel of actual_mc x BlockSize,
146 for (Index j=0; j<size; j+=BlockSize)
148 Index actualBlockSize = std::min<Index>(BlockSize,size - j);
160 gebp_kernel(buffer.data(), BlockSize, blockA+depth*i, actual_b, actualBlockSize, depth, actualBlockSize, alpha,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/
armVC.h 609 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
630 OMX_U8 BlockSize
661 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
680 OMX_U8 BlockSize
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/
armVC.h 609 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
630 OMX_U8 BlockSize
661 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
680 OMX_U8 BlockSize
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/api/
armVC.h 609 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
630 OMX_U8 BlockSize
661 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
680 OMX_U8 BlockSize
    [all...]
  /development/ndk/platforms/android-3/include/linux/mtd/
cfi.h 67 uint16_t BlockSize;
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/mtd/
cfi.h 67 uint16_t BlockSize;
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/mtd/
cfi.h 67 uint16_t BlockSize;

Completed in 713 milliseconds

1 2 3 4