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

1 2

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
post_filter.cpp 189 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; local
198 b_size = 8;
204 b_size = 16;
287 rec_y += b_size;
299 rec_y = rec + width * b_size;
308 k = b_size;
384 rec_y += b_size;
388 rec_y += ((b_size - 1) * width);
399 offset = width * b_size - b_size;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bufferobject.c 11 Py_ssize_t b_size; member in struct:__anon5561
32 *size = self->b_size;
87 if (self->b_size == Py_END_OF_BUFFER)
90 *size = self->b_size;
122 b->b_size = size;
141 if (b->b_size != Py_END_OF_BUFFER) {
142 Py_ssize_t base_size = b->b_size - offset;
222 b->b_size = size;
295 self->b_size,
302 self->b_size,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bufferobject.c 11 Py_ssize_t b_size; member in struct:__anon5906
32 *size = self->b_size;
87 if (self->b_size == Py_END_OF_BUFFER)
90 *size = self->b_size;
122 b->b_size = size;
141 if (b->b_size != Py_END_OF_BUFFER) {
142 Py_ssize_t base_size = b->b_size - offset;
222 b->b_size = size;
295 self->b_size,
302 self->b_size,
    [all...]
longobject.c 3093 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /external/python/cpython2/Objects/
bufferobject.c 11 Py_ssize_t b_size; member in struct:__anon30416
32 *size = self->b_size;
87 if (self->b_size == Py_END_OF_BUFFER)
90 *size = self->b_size;
122 b->b_size = size;
141 if (b->b_size != Py_END_OF_BUFFER) {
142 Py_ssize_t base_size = b->b_size - offset;
222 b->b_size = size;
295 self->b_size,
302 self->b_size,
    [all...]
longobject.c 3095 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /external/syslinux/lzo/src/
lzo_swd.ch 124 lzo_uint b_size;
276 s->b_size = s->swd_n + s->swd_f;
278 if (2 * s->swd_f >= s->swd_n || s->b_size + s->swd_f >= SWD_UINT_MAX)
284 s->b_wrap = s_b(s) + s->b_size;
306 assert(s->ip + s->swd_f <= s->b_size);
329 if (s->ip == s->b_size)
339 s->rp += s->b_size - s->node_count;
374 (s->bp > (pos) ? s->bp - (pos) : s->b_size - ((pos) - s->bp))
403 if (++s->ip == s->b_size)
405 if (++s->bp == s->b_size)
    [all...]
  /external/libvpx/libvpx/test/
predict_test.cc 108 const int b_size = (b_stride * b_height) + b_width; local
109 const uint8_t *b_end = b + b_size;
140 for (int pixel = static_cast<int>(b - a + b_size); pixel < a_size;
  /external/syslinux/gpxe/src/util/
nrv2b.c 258 unsigned int b_size; member in struct:ucl_swd
394 s->b_size = s->n + s->f;
395 if (s->b_size + s->f >= UINT_MAX)
397 s->b_wrap = s->b + s->b_size;
409 assert(s->ip + s->f <= s->b_size);
420 if (s->ip == s->b_size)
430 s->rp += s->b_size - s->node_count;
446 (s->bp > (pos) ? s->bp - (pos) : s->b_size - ((pos) - s->bp))
468 if (++s->ip == s->b_size)
470 if (++s->bp == s->b_size)
    [all...]
  /external/e2fsprogs/e2fsck/
jfs_user.h 40 int b_size; member in struct:buffer_head
recovery.c 375 *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size);
387 obh->b_size);
revoke.c 472 bh2 = __find_get_block(bh->b_bdev, bh->b_blocknr, bh->b_size);
  /external/python/cpython2/Modules/_ctypes/
ctypes.h 89 Py_ssize_t b_size; /* size of memory block in bytes */ member in struct:tagCDataObject
119 Py_ssize_t b_size; /* size of memory block in bytes */ member in struct:__anon30170
_ctypes.c 393 parg->size = self->b_size;
    [all...]
callproc.c     [all...]
  /external/curl/lib/
ftplistparser.c 374 parser->file_data->b_size = FTP_BUFFER_ALLOCSIZE;
382 if(finfo->b_used >= finfo->b_size - 1) {
385 finfo->b_size + FTP_BUFFER_ALLOCSIZE);
387 finfo->b_size += FTP_BUFFER_ALLOCSIZE;
  /external/libnetfilter_conntrack/src/conntrack/
build.c 443 unsigned int b_size = b->words * sizeof(b->bits[0]); local
449 b_size);
453 if (b_size == (b->words * sizeof(b->bits[0])))
458 b_size);
  /system/core/libziparchive/
zip_archive_test.cc 327 const uint32_t b_size = data.uncompressed_length; local
328 ASSERT_EQ(b_size, kBTxtContents.size());
329 buffer = new uint8_t[b_size];
330 ASSERT_EQ(0, ExtractToMemory(handle, &data, buffer, b_size));
331 ASSERT_EQ(0, memcmp(buffer, kBTxtContents.data(), b_size));
  /external/e2fsprogs/debugfs/
recovery.c 375 *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size);
387 obh->b_size);
revoke.c 472 bh2 = __find_get_block(bh->b_bdev, bh->b_blocknr, bh->b_size);
journal.c 147 bh->b_size = blocksize;
923 csum32 = jbd2_chksum(j, csum32, bh->b_data, bh->b_size);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 3093 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 3107 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /external/opencv/cxcore/src/
cxmatmul.cpp 1219 CvSize b_size; local
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 2992 static int b_size = BUFF_SIZE; local
    [all...]

Completed in 2142 milliseconds

1 2