Searched refs:max_slots (Results 1 - 6 of 6) sorted by relevance
/third_party/f2fs-tools/fsck/ |
H A D | dir.c | 20 static int room_for_filename(const u8 *bitmap, int slots, int max_slots) in room_for_filename() argument 25 zero_start = find_next_zero_bit_le(bitmap, max_slots, bit_start); in room_for_filename() 26 if (zero_start >= max_slots) in room_for_filename() 27 return max_slots; in room_for_filename() 29 zero_end = find_next_bit_le(bitmap, max_slots, zero_start + 1); in room_for_filename() 65 unsigned int len, f2fs_hash_t namehash, int *max_slots, in find_target_dentry() 72 if (max_slots) in find_target_dentry() 73 *max_slots = 0; in find_target_dentry() 88 if (max_slots && max_len > *max_slots) in find_target_dentry() 64 find_target_dentry(const u8 *name, unsigned int len, f2fs_hash_t namehash, int *max_slots, struct f2fs_dentry_ptr *d) find_target_dentry() argument 100 find_in_block(void *block, const u8 *name, int len, f2fs_hash_t namehash, int *max_slots) find_in_block() argument 118 int max_slots = 214; find_in_level() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_asm.c | 385 int max_slots = bc->gfx_level == CAYMAN ? 4 : 5; in assign_alu_units() local 387 for (i = 0; i < max_slots; i++) in assign_alu_units() 392 if (max_slots == 4) in assign_alu_units() 595 int max_slots = bc->gfx_level == CAYMAN ? 4 : 5; in check_and_set_bank_swizzle() local 596 int max_checks = max_slots * 1000; in check_and_set_bank_swizzle() 598 for (i = 0; i < max_slots; i++) { in check_and_set_bank_swizzle() 636 if (!r && max_slots == 5 && slots[4]) { in check_and_set_bank_swizzle() 640 for (i = 0; i < max_slots; i++) { in check_and_set_bank_swizzle() 650 for (i = 0; i < max_slots; i++) { in check_and_set_bank_swizzle() 655 else if (i < max_slots in check_and_set_bank_swizzle() 674 int max_slots = bc->gfx_level == CAYMAN ? 4 : 5; replace_gpr_with_pv_ps() local 819 int max_slots = bc->gfx_level == CAYMAN ? 4 : 5; merge_inst_groups() local 1180 insert_nop_r6xx(struct r600_bytecode *bc, int max_slots) insert_nop_r6xx() argument 1350 int max_slots = bc->gfx_level == CAYMAN ? 4 : 5; r600_bytecode_add_alu_type() local [all...] |
/third_party/node/deps/v8/tools/ |
H A D | windbg.js | 73 print(" !jo_prev(address, max_slots = 100)"); 75 print(" 'max_slots' before the given 'address', assumes the object"); 78 print(" !jo_next(address, max_slots = 100)"); 80 print(" 'max_slots' following the given 'address', assumes the object"); 438 function print_object_prev(addr, max_slots = 100) { 439 let obj_addr = find_object_prev(addr, max_slots); 442 `No object found within ${max_slots} slots prior to ${hex(addr)}`); 450 function print_object_next(addr, max_slots = 100) { 451 let obj_addr = find_object_next(addr, max_slots); 454 `No object found within ${max_slots} slot [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_sched.h | 118 unsigned max_slots; member in r600_sb::alu_group_tracker 160 return (~available_slots) & ((1 << max_slots) - 1); in used_slots()
|
H A D | sb_sched.cpp | 313 max_slots(sh.get_ctx().is_cayman() ? 4 : 5), in alu_group_tracker() 345 discard_slots(~available_slots & ((1 << max_slots) - 1), removed_nodes); in discard_all_slots() 377 for (unsigned k = 0; k < max_slots; ++k) { in discard_slots() 384 for (unsigned slot = 0; slot < max_slots; ++slot) { in discard_slots() 430 for (unsigned i = 0; i < max_slots; ++i) { in emit() 523 for (unsigned i = 0; i < max_slots; ++i) { in try_reserve() 618 for (unsigned i = 0; i < max_slots; ++i) { in try_reserve() 665 for (int i = max_slots - 1; i >= 0; --i) { in reinit() 668 for (unsigned i = 0; i < max_slots; ++i) { in reinit()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cEnhancedLayoutsTests.cpp | 6832 const GLuint max_slots = max_inputs * 2; in test() local 6835 std::vector<GLuint> slot_sizes(max_slots, 0); in test() 6854 std::vector<GLint> slot_offsets(max_slots, -1); in test() 6856 for (GLuint i = 0; i < max_slots; i++) in test()
|
Completed in 40 milliseconds