Searched refs:BLOCK_SIZE (Results 1 – 5 of 5) sorted by relevance
/system/bt/btif/src/ |
D | btif_debug_btsnoop.cc | 39 static const size_t BLOCK_SIZE = 16384; variable 145 uint8_t block_src[BLOCK_SIZE]; in btsnoop_compress() 146 uint8_t block_dst[BLOCK_SIZE]; in btsnoop_compress() 149 (ringbuffer_size(rb_src) + BLOCK_SIZE - 1) / BLOCK_SIZE; in btsnoop_compress() 152 ringbuffer_peek(rb_src, i * BLOCK_SIZE, block_src, BLOCK_SIZE); in btsnoop_compress() 156 zs.avail_out = BLOCK_SIZE; in btsnoop_compress() 165 const size_t length = BLOCK_SIZE - zs.avail_out; in btsnoop_compress()
|
/system/nfc/src/adaptation/ |
D | debug_nfcsnoop.cc | 38 static const size_t BLOCK_SIZE = 16384; variable 88 uint8_t block_src[BLOCK_SIZE]; in nfcsnoop_compress() 89 uint8_t block_dst[BLOCK_SIZE]; in nfcsnoop_compress() 92 (ringbuffer_size(rb_src) + BLOCK_SIZE - 1) / BLOCK_SIZE; in nfcsnoop_compress() 95 ringbuffer_peek(rb_src, i * BLOCK_SIZE, block_src, BLOCK_SIZE); in nfcsnoop_compress() 99 zs.avail_out = BLOCK_SIZE; in nfcsnoop_compress() 108 const size_t length = BLOCK_SIZE - zs.avail_out; in nfcsnoop_compress()
|
/system/extras/squashfs_utils/ |
D | mksquashfsimage.sh | 63 BLOCK_SIZE=131072 65 BLOCK_SIZE=$2 116 if [ -n "$BLOCK_SIZE" ]; then 117 OPT="$OPT -b $BLOCK_SIZE"
|
/system/extras/verity/ |
D | build_verity_metadata.py | 28 BLOCK_SIZE = 4096 variable 29 METADATA_SIZE = BLOCK_SIZE * 8 67 BLOCK_SIZE, 68 BLOCK_SIZE,
|
/system/apex/apexer/ |
D | apexer.py | 39 BLOCK_SIZE = 4096 variable 114 size += RoundUp(os.path.getsize(dirpath), BLOCK_SIZE) 116 size += RoundUp(os.path.getsize(os.path.join(dirpath, f)), BLOCK_SIZE) 247 cmd.extend(['-b', str(BLOCK_SIZE)]) 312 partition_size = RoundUp(vbmeta_offset + vbmeta_size, BLOCK_SIZE) + BLOCK_SIZE 395 cmd.append(str(BLOCK_SIZE))
|