Home
last modified time | relevance | path

Searched refs:chunk_type (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/kernel/mm/
H A Dpercpu-internal.h139 static inline bool pcpu_is_memcg_chunk(enum pcpu_chunk_type chunk_type) in pcpu_is_memcg_chunk() argument
141 return chunk_type == PCPU_CHUNK_MEMCG; in pcpu_is_memcg_chunk()
150 static inline bool pcpu_is_memcg_chunk(enum pcpu_chunk_type chunk_type) in pcpu_is_memcg_chunk() argument
156 static inline struct list_head *pcpu_chunk_list(enum pcpu_chunk_type chunk_type) in pcpu_chunk_list() argument
159 pcpu_is_memcg_chunk(chunk_type)]; in pcpu_chunk_list()
/OK3568_Linux_fs/u-boot/fs/ext4/
H A Dext4_sparse.c40 if (chunk->chunk_type == CHUNK_TYPE_RAW) in print_chunk_info()
42 else if (chunk->chunk_type == CHUNK_TYPE_DONT_CARE) in print_chunk_info()
44 else if (chunk->chunk_type == CHUNK_TYPE_FILL) in print_chunk_info()
46 else if (chunk->chunk_type == CHUNK_TYPE_CRC32) in print_chunk_info()
178 switch (chunk->chunk_type) { in ext4_unsparse()
237 printf("sparse: unknown chunk type %04x.\n", chunk->chunk_type); in ext4_unsparse()
/OK3568_Linux_fs/u-boot/common/
H A Dimage-sparse.c117 if (chunk_header->chunk_type != CHUNK_TYPE_RAW) { in write_sparse_image()
119 debug("chunk_type: 0x%x\n", chunk_header->chunk_type); in write_sparse_image()
135 switch (chunk_header->chunk_type) { in write_sparse_image()
249 chunk_header->chunk_type); in write_sparse_image()
/OK3568_Linux_fs/yocto/meta-clang/dynamic-layers/selinux/android-tools/android-tools/core-debian/
H A Dsimg_dump-python3.patch53 chunk_type = header[0]
62 elif chunk_type == 0xCAC3:
/OK3568_Linux_fs/kernel/net/netfilter/ipvs/
H A Dip_vs_proto_sctp.c382 unsigned char chunk_type; in set_sctp_state() local
397 chunk_type = sch->type; in set_sctp_state()
417 chunk_type = sch->type; in set_sctp_state()
421 event = (chunk_type < sizeof(sctp_events)) ? in set_sctp_state()
422 sctp_events[chunk_type] : IP_VS_SCTP_DATA; in set_sctp_state()
/OK3568_Linux_fs/u-boot/include/
H A Dsparse_format.h37 __le16 chunk_type; /* 0xCAC1 -> raw; 0xCAC2 -> fill; 0xCAC3 -> don't care */ member
/OK3568_Linux_fs/tools/linux/Linux_SecurityAVB/scripts/
H A Davbtool577 def __init__(self, chunk_type, chunk_offset, output_offset, output_size, argument
592 self.chunk_type = chunk_type
599 if self.chunk_type == self.TYPE_RAW:
604 elif self.chunk_type == self.TYPE_FILL:
609 elif self.chunk_type == self.TYPE_DONT_CARE:
709 (chunk_type, _, chunk_sz, total_sz) = struct.unpack(ImageChunk.FORMAT,
713 if chunk_type == ImageChunk.TYPE_RAW:
726 elif chunk_type == ImageChunk.TYPE_FILL:
737 elif chunk_type == ImageChunk.TYPE_DONT_CARE:
747 elif chunk_type == ImageChunk.TYPE_CRC32:
[all …]
/OK3568_Linux_fs/kernel/net/netfilter/
H A Dnf_conntrack_proto_sctp.c205 int chunk_type) in sctp_new_state() argument
209 pr_debug("Chunk type: %d\n", chunk_type); in sctp_new_state()
211 switch (chunk_type) { in sctp_new_state()
264 dir, sctp_conntrack_names[cur_state], chunk_type, in sctp_new_state()
/OK3568_Linux_fs/u-boot/scripts/
H A Davbtool.py673 def __init__(self, chunk_type, chunk_offset, output_offset, output_size, argument
688 self.chunk_type = chunk_type
695 if self.chunk_type == self.TYPE_RAW:
700 elif self.chunk_type == self.TYPE_FILL:
705 elif self.chunk_type == self.TYPE_DONT_CARE:
814 (chunk_type, _, chunk_sz, total_sz) = struct.unpack(ImageChunk.FORMAT,
818 if chunk_type == ImageChunk.TYPE_RAW:
831 elif chunk_type == ImageChunk.TYPE_FILL:
842 elif chunk_type == ImageChunk.TYPE_DONT_CARE:
852 elif chunk_type == ImageChunk.TYPE_CRC32:
[all …]
/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dvolumes.c3123 u64 chunk_type; in btrfs_relocate_sys_chunks() local
3160 chunk_type = btrfs_chunk_type(leaf, chunk); in btrfs_relocate_sys_chunks()
3163 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { in btrfs_relocate_sys_chunks()
3199 u64 chunk_type; in btrfs_may_alloc_data_chunk() local
3203 chunk_type = cache->flags; in btrfs_may_alloc_data_chunk()
3206 if (!(chunk_type & BTRFS_BLOCK_GROUP_DATA)) in btrfs_may_alloc_data_chunk()
3391 static int chunk_profiles_filter(u64 chunk_type, in chunk_profiles_filter() argument
3394 chunk_type = chunk_to_extended(chunk_type) & in chunk_profiles_filter()
3397 if (bargs->profiles & chunk_type) in chunk_profiles_filter()
3552 static int chunk_soft_convert_filter(u64 chunk_type, in chunk_soft_convert_filter() argument
[all …]
H A Dctree.h1590 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);