/external/e2fsprogs/e2fsck/ |
extend.c | 21 fprintf(stderr, _("%s: %s filename nblocks blocksize\n"), 30 int nblocks, blocksize; local 39 nblocks = strtoul(argv[2], 0, 0) - 1; 42 if (nblocks < 0) { 60 ret = lseek(fd, nblocks*blocksize, SEEK_SET); 70 ret = lseek(fd, nblocks*blocksize, SEEK_SET);
|
/external/fec/ |
dotprod_av.c | 61 int nblocks; local 70 nblocks = (dp->len+al-1)/8+1; 74 while(nblocks >= 4){ 75 sums0 = vec_msums(ar[nblocks-1],d[nblocks-1],sums0); 76 sums1 = vec_msums(ar[nblocks-2],d[nblocks-2],sums1); 77 sums2 = vec_msums(ar[nblocks-3],d[nblocks-3],sums2); 78 sums3 = vec_msums(ar[nblocks-4],d[nblocks-4],sums3) [all...] |
/external/fio/crc/ |
murmur3.c | 22 static uint32_t murmur3_tail(const uint8_t *data, const int nblocks, 26 const uint8_t *tail = (const uint8_t *)(data + nblocks * 4); 48 const int nblocks = len / 4; local 52 const uint32_t *blocks = (const uint32_t *)(data + nblocks * 4); 55 for (i = -nblocks; i; i++) { 67 return murmur3_tail(data, nblocks, len, c1, c2, h1);
|
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
hog.cu | 117 template <int nblocks> // Number of histogram blocks processed by single GPU thread block 131 float* final_hist = smem + cnbins * 48 * nblocks; 147 hist[bin_id * 48 * nblocks] = 0.f; 168 hist[bin.x * 48 * nblocks] += gaussian * interp_weight * vote.x; 169 hist[bin.y * 48 * nblocks] += gaussian * interp_weight * vote.y; 173 for (int bin_id = 0; bin_id < cnbins; ++bin_id, hist_ += 48 * nblocks) 199 const int nblocks = 1; 206 dim3 grid(divUp(img_block_width, nblocks), img_block_height); 207 dim3 threads(32, 2, nblocks); 209 cudaSafeCall(cudaFuncSetCacheConfig(compute_hists_kernel_many_blocks<nblocks>, [all...] |
/external/jemalloc/include/jemalloc/internal/ |
hash.h | 112 const int nblocks = len / 4; local 121 const uint32_t *blocks = (const uint32_t *) (data + nblocks*4); 124 for (i = -nblocks; i; i++) { 139 const uint8_t *tail = (const uint8_t *) (data + nblocks*4); 164 const int nblocks = len / 16; local 178 const uint32_t *blocks = (const uint32_t *) (data + nblocks*16); 181 for (i = -nblocks; i; i++) { 211 const uint8_t *tail = (const uint8_t *) (data + nblocks*16); 266 const int nblocks = len / 16; local 279 for (i = 0; i < nblocks; i++) [all...] |
/external/kernel-headers/original/uapi/linux/ |
nvme_ioctl.h | 24 __u16 nblocks; member in struct:nvme_user_io
|
nvme.h | 481 __u16 nblocks; member in struct:nvme_user_io
|
/external/opencv/cvaux/src/ |
cvbgfg_codebook.cpp | 96 int nblocks; local 134 nblocks = (int)((model->storage->block_size - sizeof(CvMemBlock))/sizeof(*freeList)); 135 nblocks = MIN( nblocks, 1024 ); 136 CV_ASSERT( nblocks > 0 ); 198 nblocks*sizeof(*freeList)); 199 for( i = 0; i < nblocks-1; i++ ) 201 freeList[nblocks-1].next = 0;
|
/toolchain/binutils/binutils-2.25/gprof/ |
basic_blocks.c | 123 unsigned int nblocks, b; 127 if (gmon_io_read_32 (ifp, &nblocks)) 134 nblocks = bfd_get_32 (core_bfd, (bfd_byte *) & nblocks); 138 for (b = 0; b < nblocks; ++b) 211 unsigned int nblocks = 0; 220 nblocks += i; 225 || gmon_io_write_32 (ofp, nblocks)) 122 unsigned int nblocks, b; local 210 unsigned int nblocks = 0; local
|
/art/compiler/driver/ |
compiled_method_storage.cc | 96 const int nblocks = len / 4; local 100 for (i = 0; i < nblocks; i++) { 110 const uint8_t *tail = reinterpret_cast<const uint8_t*>(data + nblocks * 4);
|
/bionic/libc/kernel/uapi/linux/ |
nvme_ioctl.h | 27 __u16 nblocks; member in struct:nvme_user_io
|
/external/fio/t/ |
dedupe.c | 280 unsigned int nblocks, i; local 288 nblocks = read_blocks(thread->fd, buf, offset, min(thread->size, (uint64_t)chunk_size)); 289 if (!nblocks) 292 items = malloc(sizeof(*items) * nblocks); 294 for (i = 0; i < nblocks; i++) {
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_resource_texture.c | 298 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0); local 305 tex->stride = align(nblocks * util_format_get_blocksize(pt->format) * 2, 4); 306 tex->total_nblocksy = nblocks * 4; 312 unsigned x = initial_offsets[face][0] * nblocks; 313 unsigned y = initial_offsets[face][1] * nblocks; 314 unsigned d = nblocks; 556 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0); local 574 tex->stride = nblocks * 2 * util_format_get_blocksize(pt->format); 582 tex->total_nblocksy = nblocks * 4 + 1;
|
/external/valgrind/drd/ |
drd_malloc_wrappers.c | 347 SizeT nblocks = 0; local 359 nblocks++; 365 nbytes, nblocks);
|
/external/opencv3/modules/core/src/ |
alloc.cpp | 272 nblocks = (int)(((char*)this + bigBlockSize - (char*)first)/MEM_BLOCK_SIZE); 274 for( int i = nblocks-1; i >= 0; i-- ) 280 for( int i = nblocks-1; i >= 0; i-- ) 286 int nblocks;
|
/external/opencv3/modules/objdetect/test/ |
test_cascadeandhog.cpp | 622 Size nblocks, ncells; member in struct:HOGCacheTester 665 nblocks = Size((winSize.width - blockSize.width)/blockStride.width + 1, 694 blockData.resize(nblocks.width*nblocks.height); 814 for( j = 0; j < nblocks.width; j++ ) 815 for( i = 0; i < nblocks.height; i++ ) 817 BlockData& data = blockData[j*nblocks.height + i]; 818 data.histOfs = (j*nblocks.height + i)*blockHistogramSize; 1029 int nblocks = cache.nblocks.area(); local 1131 int nblocks = cache.nblocks.area(); local [all...] |
/external/e2fsprogs/lib/ext2fs/ |
kernel-jbd.h | 682 extern handle_t *journal_start(journal_t *, int nblocks); 683 extern handle_t *journal_try_start(journal_t *, int nblocks); 684 extern int journal_restart (handle_t *, int nblocks); 685 extern int journal_extend (handle_t *, int nblocks); 766 extern void log_wait_for_space(journal_t *, int nblocks);
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
fpdf_parser_encrypt.cpp | 762 int nblocks = src_size / 16; local 763 CRYPT_AESEncrypt(m_pAESContext, dest_buf + 16, src_buf, nblocks * 16); 765 FXSYS_memcpy(padding, src_buf + nblocks * 16, src_size % 16); 768 CRYPT_AESEncrypt(m_pAESContext, dest_buf + nblocks * 16 + 16, padding, 770 dest_size = 32 + nblocks * 16; [all...] |
/external/clang/lib/Analysis/ |
ThreadSafetyCommon.cpp | 790 unsigned NBlocks = Cfg->getNumBlockIDs(); 791 Scfg = new (Arena) til::SCFG(Arena, NBlocks); 794 BBInfo.resize(NBlocks); 795 BlockMap.resize(NBlocks, nullptr); [all...] |
/external/opencv3/modules/objdetect/src/ |
hog.cpp | 518 Size nblocks, ncells; 561 nblocks = Size((winSize.width - blockSize.width)/blockStride.width + 1, 632 blockData.resize(nblocks.width*nblocks.height); 753 for( j = 0; j < nblocks.width; j++ ) 754 for( i = 0; i < nblocks.height; i++ ) 756 BlockData& data = blockData[j*nblocks.height + i]; 757 data.histOfs = (j*nblocks.height + i)*blockHistogramSize; 1422 int nblocks = cache.nblocks.area(); local 1485 int nblocks = cache.nblocks.area(); local 3353 int nblocks = cache.nblocks.area(); local [all...] |
/external/skia/src/utils/ |
SkTextureCompressor_R11EAC.cpp | 648 const int nBlocks = (width * height / 16); // 4x4 pixel blocks. 650 for (int i = 0; i < nBlocks; ++i) {
|
/external/valgrind/coregrind/m_debuginfo/ |
readpdb.c | 975 unsigned blocksize, nBlocks; 987 nBlocks = (size + blocksize - 1) / blocksize; 988 buffer = ML_(dinfo_zalloc)("di.readpe.pdr.1", nBlocks * blocksize); 989 for (i = 0; i < nBlocks; i++) 1001 unsigned blocksize, nBlocks; 1008 nBlocks = (size + blocksize-1) / blocksize; 1009 buffer = ML_(dinfo_zalloc)("di.readpe.pjr.1", nBlocks * blocksize); 1010 for ( i = 0; i < nBlocks; i++ ) [all...] |
/external/mesa3d/src/gallium/drivers/r600/ |
r600_hw_context.c | 222 ctx->nblocks++; 572 ctx->blocks = calloc(ctx->nblocks, sizeof(void*)); 590 assert(c < ctx->nblocks); [all...] |
/external/valgrind/memcheck/ |
mc_malloc_wrappers.c | 1084 SizeT nblocks = 0; local [all...] |
/external/valgrind/coregrind/ |
m_mallocfree.c | [all...] |