Searched refs:max_slots (Results 1 - 5 of 5) sorted by relevance
/external/f2fs-tools/fsck/ |
H A D | dir.c | 19 static int room_for_filename(const u8 *bitmap, int slots, int max_slots) argument 24 zero_start = find_next_zero_bit_le(bitmap, max_slots, bit_start); 25 if (zero_start >= max_slots) 26 return max_slots; 28 zero_end = find_next_bit_le(bitmap, max_slots, zero_start + 1); 64 unsigned int len, f2fs_hash_t namehash, int *max_slots, 71 if (max_slots) 72 *max_slots = 0; 87 if (max_slots && max_len > *max_slots) 63 find_target_dentry(const u8 *name, unsigned int len, f2fs_hash_t namehash, int *max_slots, struct f2fs_dentry_ptr *d) argument 99 find_in_block(void *block, const u8 *name, int len, f2fs_hash_t namehash, int *max_slots) argument 117 int max_slots = 214; local [all...] |
/external/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_sched.h | 118 unsigned max_slots; member in class:r600_sb::alu_group_tracker 158 return (~available_slots) & ((1 << max_slots) - 1);
|
H A D | sb_sched.cpp | 313 max_slots(sh.get_ctx().is_cayman() ? 4 : 5), 345 discard_slots(~available_slots & ((1 << max_slots) - 1), removed_nodes); 377 for (unsigned k = 0; k < max_slots; ++k) { 384 for (unsigned slot = 0; slot < max_slots; ++slot) { 430 for (unsigned i = 0; i < max_slots; ++i) { 519 for (unsigned i = 0; i < max_slots; ++i) { 614 for (unsigned i = 0; i < max_slots; ++i) { 661 for (int i = max_slots - 1; i >= 0; --i) { 664 for (unsigned i = 0; i < max_slots; ++i) {
|
/external/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_asm.c | 325 int max_slots = bc->chip_class == CAYMAN ? 4 : 5; local 327 for (i = 0; i < max_slots; i++) 332 if (max_slots == 4) 534 int max_slots = bc->chip_class == CAYMAN ? 4 : 5; local 536 for (i = 0; i < max_slots; i++) { 574 if (!r && max_slots == 5 && slots[4]) { 578 for (i = 0; i < max_slots; i++) { 588 for (i = 0; i < max_slots; i++) { 593 else if (i < max_slots - 1) 612 int max_slots local 764 int max_slots = bc->chip_class == CAYMAN ? 4 : 5; local 1263 int max_slots = bc->chip_class == CAYMAN ? 4 : 5; local [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_blit.c | 224 const unsigned max_slots = 4096 / sizeof ctx->vertices; local 226 if (ctx->vbuf_slot >= max_slots) { 235 max_slots * sizeof ctx->vertices);
|
Completed in 231 milliseconds