Searched refs:comp (Results 1 – 8 of 8) sorted by relevance
| /fs/exfat/ |
| A D | lookup.c | 109 static size_t get_comp(const char* path, const char** comp) in get_comp() argument 113 *comp = path + strspn(path, "/"); /* skip leading slashes */ in get_comp() 114 end = strchr(*comp, '/'); in get_comp() 116 return strlen(*comp); in get_comp() 118 return end - *comp; in get_comp() 147 static bool is_last_comp(const char* comp, size_t length) in is_last_comp() argument 149 const char* p = comp + length; in is_last_comp() 154 static bool is_allowed(const char* comp, size_t length) in is_allowed() argument 159 switch (comp[i]) in is_allowed()
|
| /fs/btrfs/common/ |
| A D | rbtree-utils.c | 23 rb_compare_nodes comp) in rb_insert() argument 32 ret = comp(parent, node); in rb_insert() 46 struct rb_node *rb_search(struct rb_root *root, void *key, rb_compare_keys comp, in rb_search() argument 56 ret = comp(n, key); in rb_search()
|
| A D | rbtree-utils.h | 34 rb_compare_nodes comp); 39 struct rb_node *rb_search(struct rb_root *root, void *key, rb_compare_keys comp,
|
| /fs/cbfs/ |
| A D | cbfs.c | 119 struct cbfs_file_attr_compression *comp; in fill_node() local 121 comp = start + offset; in fill_node() 122 node->comp_algo = be32_to_cpu(comp->compression); in fill_node() 124 be32_to_cpu(comp->decompressed_size); in fill_node()
|
| /fs/squashfs/ |
| A D | sqfs.c | 671 bool comp; in sqfs_count_metablks() local 674 ret = sqfs_read_metablock(table, offset + cur_size, &comp, in sqfs_count_metablks() 695 bool comp; in sqfs_get_metablk_pos() local 701 ret = sqfs_read_metablock(table, offset + cur_size, &comp, in sqfs_get_metablk_pos() 1311 finfo->comp = ret; in sqfs_get_regfile_info() 1349 finfo->comp = ret; in sqfs_get_lregfile_info() 1602 if (finfo.frag && finfo.comp) { in sqfs_read_nest() 1623 } else if (finfo.frag && !finfo.comp) { in sqfs_read_nest()
|
| A D | sqfs_filesystem.h | 293 bool comp; member
|
| /fs/zfs/ |
| A D | zfs.c | 557 unsigned int comp; in zio_read() local 563 comp = (zfs_to_cpu64((bp)->blk_prop, endian)>>32) & 0xff; in zio_read() 572 if (comp >= ZIO_COMPRESS_FUNCTIONS) { in zio_read() 573 printf("compression algorithm %u not supported\n", (unsigned int) comp); in zio_read() 577 if (comp != ZIO_COMPRESS_OFF && decomp_table[comp].decomp_func == NULL) { in zio_read() 578 printf("compression algorithm %s not supported\n", decomp_table[comp].name); in zio_read() 582 if (comp != ZIO_COMPRESS_OFF) { in zio_read() 597 if (comp != ZIO_COMPRESS_OFF) { in zio_read() 604 err = decomp_table[comp].decomp_func(compbuf, *buf, psize, lsize); in zio_read()
|
| /fs/ubifs/ |
| A D | ubifs.c | 122 struct ubifs_compressor *comp; in crypto_alloc_comp() local 128 comp = ubifs_compressors[i]; in crypto_alloc_comp() 129 if (!comp) { in crypto_alloc_comp() 133 if (strncmp(alg_name, comp->capi_name, strlen(alg_name)) == 0) { in crypto_alloc_comp()
|
Completed in 20 milliseconds