HomeSort by relevance Sort by last modified time
    Searched defs:c_byte (Results 1 - 11 of 11) sorted by null

  /cts/tests/tests/renderscript/libbnnmdata/
test_data.cpp 56581 jbyte * c_byte = (jbyte *) env->GetPrimitiveArrayCritical(c, 0); local
    [all...]
  /frameworks/rs/java/tests/RsBLAS_Benchmark/libsgemm/
test_data.cpp 56565 jbyte * c_byte = (jbyte *) env->GetPrimitiveArrayCritical(c, 0); local
56587 jbyte * c_byte = (jbyte *) env->GetPrimitiveArrayCritical(c, 0); local
    [all...]
  /external/llvm/bindings/python/llvm/
disassembler.py 13 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/
caches-queues-lists.h 119 int c_byte; member in struct:file_buffer
read_fs.c 58 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...]
xattr.c 282 unsigned short c_byte; local
297 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET,
300 TRACE("Xattr block @ 0x%x, size %d\n", xattr_bytes, c_byte);
301 SQUASHFS_SWAP_SHORTS(&c_byte, xattr_table + xattr_bytes, 1);
302 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET;
455 unsigned short c_byte; local
479 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET, datap,
481 TRACE("Xattr block @ 0x%x, size %d\n", xattr_bytes, c_byte);
482 SQUASHFS_SWAP_SHORTS(&c_byte, xattr_table + xattr_bytes, 1);
483 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET
    [all...]
unsquashfs.c 662 unsigned short c_byte; local
667 if(read_fs_bytes(fd, start, 2, &c_byte) == FALSE)
669 c_byte = (c_byte >> 8) | ((c_byte & 0xff) << 8);
671 if(read_fs_bytes(fd, start, 2, &c_byte) == FALSE)
675 SQUASHFS_COMPRESSED_SIZE(c_byte), SQUASHFS_COMPRESSED(c_byte) ?
681 compressed = SQUASHFS_COMPRESSED(c_byte);
682 c_byte = SQUASHFS_COMPRESSED_SIZE(c_byte)
736 int c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(size); local
1025 int c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(block_list[i]); local
    [all...]
mksquashfs.c 419 int error, c_byte = 0; local
422 c_byte = compressor_compress(comp, strm, d, s, size, block_size,
424 if(c_byte == -1)
429 if(c_byte == 0 || c_byte >= size) {
435 return c_byte;
450 unsigned short c_byte; local
463 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET,
466 TRACE("Inode block @ 0x%x, size %d\n", inode_bytes, c_byte);
467 SQUASHFS_SWAP_SHORTS(&c_byte, inode_table + inode_bytes, 1)
588 unsigned short c_byte; local
624 unsigned short c_byte; local
1200 unsigned short c_byte; local
1614 unsigned short c_byte; local
2416 int c_byte, compressed_size; local
5926 unsigned short c_byte = size | SQUASHFS_COMPRESSED_BIT; local
    [all...]
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
inode.c 89 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; b++)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 233 class c_byte(_SimpleCData): class in inherits:_SimpleCData
235 c_byte.__ctype_le__ = c_byte.__ctype_be__ = c_byte
236 _check_size(c_byte)
543 c_int8 = c_byte
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 233 class c_byte(_SimpleCData): class in inherits:_SimpleCData
235 c_byte.__ctype_le__ = c_byte.__ctype_be__ = c_byte
236 _check_size(c_byte)
543 c_int8 = c_byte

Completed in 371 milliseconds