Searched refs:c_byte (Results 1 - 9 of 9) sorted by relevance

/external/llvm/bindings/python/llvm/
H A Ddisassembler.py13 from ctypes import c_byte namespace
102 out_str = cast((c_byte * 255)(), c_char_p)
123 out_str = cast((c_byte * 255)(), c_char_p)
/external/squashfs-tools/squashfs-tools/
H A Dxattr.c317 unsigned short c_byte; local
332 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET,
335 TRACE("Xattr block @ 0x%x, size %d\n", xattr_bytes, c_byte);
336 SQUASHFS_SWAP_SHORTS(&c_byte, xattr_table + xattr_bytes, 1);
337 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET;
490 unsigned short c_byte; local
514 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET, datap,
516 TRACE("Xattr block @ 0x%x, size %d\n", xattr_bytes, c_byte);
517 SQUASHFS_SWAP_SHORTS(&c_byte, xattr_table + xattr_bytes, 1);
518 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte)
[all...]
H A Dread_fs.c58 unsigned short c_byte; local
63 res = read_fs_bytes(fd, start, 2, &c_byte);
67 SQUASHFS_INSWAP_SHORTS(&c_byte, 1);
68 compressed = SQUASHFS_COMPRESSED(c_byte);
69 c_byte = SQUASHFS_COMPRESSED_SIZE(c_byte);
76 if (c_byte > outlen)
80 char buffer[c_byte];
83 res = read_fs_bytes(fd, start + 2, c_byte, buffer);
87 res = compressor_uncompress(comp, block, buffer, c_byte,
[all...]
H A Dunsquashfs.c667 unsigned short c_byte; local
672 if(read_fs_bytes(fd, start, 2, &c_byte) == FALSE)
674 c_byte = (c_byte >> 8) | ((c_byte & 0xff) << 8);
676 if(read_fs_bytes(fd, start, 2, &c_byte) == FALSE)
680 SQUASHFS_COMPRESSED_SIZE(c_byte), SQUASHFS_COMPRESSED(c_byte) ?
686 compressed = SQUASHFS_COMPRESSED(c_byte);
687 c_byte
741 int c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(size); local
1030 int c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(block_list[i]); local
[all...]
H A Dmksquashfs.c453 int error, c_byte = 0; local
456 c_byte = compressor_compress(comp, strm, d, s, size, block_size,
458 if(c_byte == -1)
463 if(c_byte == 0 || c_byte >= size ||
464 (c_byte > (size * ((100.0 - compress_thresh_per) / 100.0)))) {
470 return c_byte;
485 unsigned short c_byte; local
498 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET,
501 TRACE("Inode block @ 0x%x, size %d\n", inode_bytes, c_byte);
623 unsigned short c_byte; local
659 unsigned short c_byte; local
1305 unsigned short c_byte; local
1620 add_pending_fragment(struct file_buffer *write_buffer, int c_byte, int fragment) argument
1719 unsigned short c_byte; local
2521 int c_byte, compressed_size; local
6313 unsigned short c_byte = size | SQUASHFS_COMPRESSED_BIT; local
[all...]
H A Dprocess_fragments.c284 file_buffer->c_byte = 0;
287 file_buffer->c_byte = file_buffer->size;
H A Dcaches-queues-lists.h119 int c_byte; member in struct:file_buffer
/external/autotest/client/common_lib/
H A Dsmogcheck_tpm.py28 c_ubyte, c_byte, byref, c_uint16, cast, create_string_buffer, c_uint64, \
191 POINTER(c_byte)()) != 0:
372 self.hTpm, TSS_TPMCAP_VERSION_VAL, 0, POINTER(c_byte)(),
384 POINTER(c_byte)))
29 c_char_p, addressof, c_char, pointer namespace
/external/squashfs-tools/kernel-2.4/fs/squashfs/
H A Dinode.c89 int *cur_index, int *offset, int *c_byte)
114 *c_byte = temp;
128 *c_byte = temp;
167 unsigned int c_byte = length; local
169 if (c_byte) {
171 compressed = SQUASHFS_COMPRESSED_BLOCK(c_byte);
173 c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(c_byte);
176 ? "" : "un", (unsigned int) c_byte);
181 for (b = 1; bytes < c_byte;
88 get_block_length(struct super_block *s, int *cur_index, int *offset, int *c_byte) argument
[all...]

Completed in 222 milliseconds