Searched refs:max_slots (Results 1 – 6 of 6) sorted by relevance
/third_party/f2fs-tools/fsck/ |
D | dir.c | 19 static int room_for_filename(const u8 *bitmap, int slots, int max_slots) in room_for_filename() argument 24 zero_start = find_next_zero_bit_le(bitmap, max_slots, bit_start); in room_for_filename() 25 if (zero_start >= max_slots) in room_for_filename() 26 return max_slots; in room_for_filename() 28 zero_end = find_next_bit_le(bitmap, max_slots, zero_start + 1); in room_for_filename() 64 unsigned int len, f2fs_hash_t namehash, int *max_slots, in find_target_dentry() argument 71 if (max_slots) in find_target_dentry() 72 *max_slots = 0; in find_target_dentry() 87 if (max_slots && max_len > *max_slots) in find_target_dentry() 88 *max_slots = max_len; in find_target_dentry() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/core/linux/ |
D | SDL_evdev.c | 78 int max_slots; member 523 for(j = 0; j < item->touchscreen_data->max_slots; j++) { in SDL_EVDEV_Poll() 636 item->touchscreen_data->max_slots = abs_info.maximum + 1; in SDL_EVDEV_init_touchscreen() 639 item->touchscreen_data->max_slots, in SDL_EVDEV_init_touchscreen() 647 for(i = 0; i < item->touchscreen_data->max_slots; i++) { in SDL_EVDEV_init_touchscreen() 698 sizeof(*mt_req_values) * item->touchscreen_data->max_slots; in SDL_EVDEV_sync_device() 713 for(i = 0; i < item->touchscreen_data->max_slots; i++) { in SDL_EVDEV_sync_device() 740 for(i = 0; i < item->touchscreen_data->max_slots; i++) { in SDL_EVDEV_sync_device() 758 for(i = 0; i < item->touchscreen_data->max_slots; i++) { in SDL_EVDEV_sync_device()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | r600_asm.c | 340 int max_slots = bc->chip_class == CAYMAN ? 4 : 5; in assign_alu_units() local 342 for (i = 0; i < max_slots; i++) in assign_alu_units() 347 if (max_slots == 4) in assign_alu_units() 550 int max_slots = bc->chip_class == CAYMAN ? 4 : 5; in check_and_set_bank_swizzle() local 552 for (i = 0; i < max_slots; i++) { in check_and_set_bank_swizzle() 590 if (!r && max_slots == 5 && slots[4]) { in check_and_set_bank_swizzle() 594 for (i = 0; i < max_slots; i++) { in check_and_set_bank_swizzle() 604 for (i = 0; i < max_slots; i++) { in check_and_set_bank_swizzle() 609 else if (i < max_slots - 1) in check_and_set_bank_swizzle() 628 int max_slots = bc->chip_class == CAYMAN ? 4 : 5; in replace_gpr_with_pv_ps() local [all …]
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_sched.h | 118 unsigned max_slots; variable 160 return (~available_slots) & ((1 << max_slots) - 1); in used_slots()
|
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/ |
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()
|