/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
intobject.c | 33 #define BLOCK_SIZE 1000 /* 1K less typical malloc overhead */
35 #define N_INTOBJECTS ((BLOCK_SIZE - BHEAD_SIZE) / sizeof(PyIntObject))
[all...] |
floatobject.c | 24 #define BLOCK_SIZE 1000 /* 1K less typical malloc overhead */
26 #define N_FLOATOBJECTS ((BLOCK_SIZE - BHEAD_SIZE) / sizeof(PyFloatObject))
[all...] |
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
Mbr.asm | 24 BLOCK_SIZE EQU 0200h
|
start.S | 24 .equ BLOCK_SIZE, 0x0200
280 movw %ax, %es # es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
start16.S | 25 .equ BLOCK_SIZE, 0x0200
274 movw %ax, %es # es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
start32.S | 25 .equ BLOCK_SIZE, 0x0200
289 movw %ax, %es # es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
st16_64.S | 25 .equ BLOCK_SIZE, 0x0200
286 movw %ax,%es # es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
st32_64.S | 25 .equ BLOCK_SIZE, 0x0200
301 movw %ax,%es # es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
start64.S | 25 .equ BLOCK_SIZE, 0x0200
293 movw %ax,%es # es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
st16_64.asm | 25 BLOCK_SIZE EQU 0200h
282 mov es,ax ; es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
st32_64.asm | 25 BLOCK_SIZE EQU 0200h
298 mov es,ax ; es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
start.asm | 25 BLOCK_SIZE EQU 0200h
277 mov es,ax ; es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
start16.asm | 25 BLOCK_SIZE EQU 0200h
270 mov es,ax ; es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
start32.asm | 25 BLOCK_SIZE EQU 0200h
285 mov es,ax ; es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
start64.asm | 25 BLOCK_SIZE EQU 0200h
289 mov es,ax ; es:di = es:di + NumberOfBlocks*BLOCK_SIZE
[all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_firstpass.c | 325 static vpx_variance_fn_t get_block_variance_fn(BLOCK_SIZE bsize) { 334 static unsigned int get_prediction_error(BLOCK_SIZE bsize, 344 static vpx_variance_fn_t highbd_get_block_variance_fn(BLOCK_SIZE bsize, 374 static unsigned int highbd_get_prediction_error(BLOCK_SIZE bsize, 402 const BLOCK_SIZE bsize = xd->mi[0]->sb_type; 459 static BLOCK_SIZE get_bsize(const VP9_COMMON *cm, int mb_row, int mb_col) { 654 static int fp_estimate_block_noise(MACROBLOCK *x, BLOCK_SIZE bsize) { [all...] |
vp9_speed_features.c | 44 static BLOCK_SIZE set_partition_min_limit(VP9_COMMON *const cm) {
|
/external/syslinux/core/fs/xfs/ |
xfs_dir2.c | 85 memcpy(buf + offset, p, BLOCK_SIZE(fs)); 86 offset += BLOCK_SIZE(fs);
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodeframe.c | 652 const BLOCK_SIZE sb_type = mi->sb_type; 735 BLOCK_SIZE bsize, int mi_row, int mi_col, int bw, 764 int mi_col, BLOCK_SIZE bsize, int bwl, int bhl) { 778 const BLOCK_SIZE uv_subsize = 876 int mi_col, BLOCK_SIZE subsize, [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
AESFastEngine.java | [all...] |
/external/deqp/modules/gles31/functional/ |
es31fCopyImageTests.cpp | 700 const int BLOCK_SIZE = 16; 701 const deUint8 blocks[][BLOCK_SIZE] = 714 DE_ASSERT(texelBlockSize == BLOCK_SIZE); 720 deMemcpy(buffer + i * BLOCK_SIZE, blocks[blockNdx], BLOCK_SIZE); [all...] |
es31fTextureBorderClampTests.cpp | 192 const int BLOCK_SIZE = 16; 193 const deUint8 block[BLOCK_SIZE] = { 252, 253, 255, 255, 255, 255, 255, 255, 223, 251, 28, 206, 54, 251, 160, 174 }; 195 DE_ASSERT(blockByteSize == BLOCK_SIZE); 197 deMemcpy((deUint8*)dst.getData() + ndx * BLOCK_SIZE, block, BLOCK_SIZE); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
floatobject.c | 24 #define BLOCK_SIZE 1000 /* 1K less typical malloc overhead */
26 #define N_FLOATOBJECTS ((BLOCK_SIZE - BHEAD_SIZE) / sizeof(PyFloatObject))
[all...] |
/external/google-tv-pairing-protocol/java/jar/ |
bcprov-jdk15-143.jar | |
/external/squashfs-tools/kernel-2.4/fs/squashfs/ |
inode.c | 595 if (sblk->block_size > 4096) 648 if (sblk->block_size > 4096) 944 if(msblk->devblksize < BLOCK_SIZE) 945 msblk->devblksize = BLOCK_SIZE; 1000 TRACE("Block size %d\n", sblk->block_size); 1029 msblk->read_size = (sblk->block_size < SQUASHFS_METADATA_SIZE) ? 1031 sblk->block_size; 1039 if (!(msblk->read_page = kmalloc(sblk->block_size, GFP_KERNEL))) { 1130 buf->f_bsize = sblk->block_size; [all...] |