| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| zink_state.h | 53 uint32_t divisor[PIPE_MAX_ATTRIBS]; member in struct:zink_vertex_elements_state
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| brw_nir_lower_mem_access_bit_sizes.c | 110 const unsigned divisor = 32 / bit_size; local 114 result[i] = nir_channel(b, unpacked[load_i / divisor], 115 load_i % divisor);
|
| /xsrc/external/mit/libXpresent/dist/include/X11/extensions/ |
| Xpresent.h | 142 uint64_t divisor; member in struct:__anon5957 177 uint64_t divisor, 187 uint64_t divisor,
|
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| texfilt.c | 316 unsigned divisor = size / checkers_per_level; local 347 if ( divisor == 0 ) { 348 divisor = 1; 361 const unsigned idx = ((i ^ j) / divisor) & 1;
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/dri2/ |
| dri2ext.c | 404 CARD64 target_msc, divisor, remainder, swap_target; local 421 divisor = vals_to_card64(stuff->divisor_lo, stuff->divisor_hi); 424 status = DRI2SwapBuffers(client, pDrawable, target_msc, divisor, remainder, 482 CARD64 target, divisor, remainder; local 494 divisor = vals_to_card64(stuff->divisor_lo, stuff->divisor_hi); 497 status = DRI2WaitMSC(client, pDrawable, target, divisor, remainder);
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/dri2/ |
| dri2ext.c | 388 CARD64 target_msc, divisor, remainder, swap_target; local 405 divisor = vals_to_card64(stuff->divisor_lo, stuff->divisor_hi); 408 status = DRI2SwapBuffers(client, pDrawable, target_msc, divisor, remainder, 468 CARD64 target, divisor, remainder; local 480 divisor = vals_to_card64(stuff->divisor_lo, stuff->divisor_hi); 483 status = DRI2WaitMSC(client, pDrawable, target, divisor, remainder);
|
| /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/ |
| agx_compile.h | 155 uint32_t divisor; member in struct:agx_attribute
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| panvk_vX_cs.c | 241 unsigned divisor = buf_info->per_instance ? local 243 unsigned stride = divisor && draw->instance_count == 1 ? 250 if (draw->instance_count > 1 && divisor) { 252 cfg.divisor = divisor;
|
| /xsrc/external/mit/freetype/dist/src/cff/ |
| cffparse.c | 725 FT_Long divisor, half_divisor; local 731 divisor = power_tens[max_scaling - scalings[i]]; 732 half_divisor = divisor >> 1; 737 values[i] = ( value - half_divisor ) / divisor; 739 values[i] = FT_LONG_MIN / divisor; 744 values[i] = ( value + half_divisor ) / divisor; 746 values[i] = FT_LONG_MAX / divisor;
|
| /xsrc/external/mit/xedit/dist/lisp/ |
| math.c | 1102 mod number divisor 1107 LispObj *number, *divisor; local 1109 divisor = ARGUMENT(1); 1112 if (INTEGERP(number) && INTEGERP(divisor)) { 1116 mod_real_object(&real, divisor); 1123 divide_number_object(&num, divisor, NDIVIDE_FLOOR, 0); 1297 rem number divisor 1302 LispObj *number, *divisor; local 1304 divisor = ARGUMENT(1); 1307 if (INTEGERP(number) && INTEGERP(divisor)) { 1379 LispObj *number, *divisor; local [all...] |
| /xsrc/external/mit/xf86-video-geode/dist/src/gfx/ |
| vid_5530.c | 853 unsigned long divisor, dividend; local 901 divisor = 9 * dotpll; 912 value = dividend / divisor; 916 value *= divisor;
|
| /xsrc/external/mit/xorgproto/dist/include/X11/extensions/ |
| presentproto.h | 87 CARD64 divisor; member in struct:__anon11646 103 CARD64 divisor; member in struct:__anon11647 165 CARD64 divisor; member in struct:__anon11651 266 CARD64 divisor; member in struct:__anon11655
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/ |
| hud_context.c | 230 double divisor = (type == PIPE_DRIVER_QUERY_TYPE_BYTES) ? 1024 : 1000; local 280 while (d > divisor && unit < max_unit) { 281 d /= divisor;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/panfrost/ |
| pan_context.h | 302 unsigned divisor; member in struct:pan_vertex_buffer
|
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| anv_allocator.c | 972 * Do a two-level split. If chunk_size is bigger than divisor 973 * (pool->block_size), we return as many divisor sized blocks as we can, from 985 uint32_t divisor = pool->block_size; local 986 uint32_t nblocks = chunk_size / divisor; 987 uint32_t rest = chunk_size - nblocks * divisor; 990 /* First return divisor aligned and sized chunks. We start returning 992 * aligned to divisor. Also anv_state_pool_return_blocks() only accepts 996 anv_state_pool_return_blocks(pool, offset, nblocks, divisor); 1000 divisor /= 2; 1002 if (small_size > 0 && small_size < divisor) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_builder.h | 791 const unsigned divisor = src->bit_size / dest_bit_size; local 792 assert(src->num_components * divisor == dest_num_components); 797 assert(unpacked->num_components == divisor); 798 for (unsigned j = 0; j < divisor; j++) 799 dest[i * divisor + j] = nir_channel(b, unpacked, j); 808 const unsigned divisor = dest_bit_size / src->bit_size; local 809 assert(src->num_components == dest_num_components * divisor); 813 ((1 << divisor) - 1) << (i * divisor);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/ |
| hud_context.c | 230 double divisor = (type == PIPE_DRIVER_QUERY_TYPE_BYTES) ? 1024 : 1000; local 280 while (d > divisor && unit < max_unit) { 281 d /= divisor;
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| anv_allocator.c | 1051 * Do a two-level split. If chunk_size is bigger than divisor 1052 * (pool->block_size), we return as many divisor sized blocks as we can, from 1064 uint32_t divisor = pool->block_size; local 1065 uint32_t nblocks = chunk_size / divisor; 1066 uint32_t rest = chunk_size - nblocks * divisor; 1069 /* First return divisor aligned and sized chunks. We start returning 1071 * aligned to divisor. Also anv_state_pool_return_blocks() only accepts 1075 anv_state_pool_return_blocks(pool, offset, nblocks, divisor); 1079 divisor /= 2; 1081 if (small_size > 0 && small_size < divisor) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/wsi/ |
| wsi_common_x11.c | 970 int64_t divisor = 0; local 1011 divisor,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_nir.c | 464 LLVMValueRef src, LLVMValueRef divisor) 468 and divisor is -1. */ 488 /* set another mask if divisor is - 1 */ 489 LLVMValueRef div_mask3 = lp_build_cmp(mask_bld, PIPE_FUNC_EQUAL, divisor, 493 divisor = lp_build_select(mask_bld, div_mask2, int_bld->one, divisor); 494 return divisor; 507 /* avoid divide by 0. Converted divisor from 0 to -1 */ 511 LLVMValueRef divisor = LLVMBuildOr(builder, div_mask, src2, ""); local 513 divisor = get_signed_divisor(gallivm, int_bld, mask_bld 538 LLVMValueRef divisor = LLVMBuildOr(builder, local [all...] |
| lp_bld_tgsi_action.c | 978 LLVMValueRef divisor = LLVMBuildOr(builder, local 982 emit_data->args[0], divisor); 1002 LLVMValueRef divisor = LLVMBuildOr(builder, local 1006 emit_data->args[0], divisor); 1027 LLVMValueRef divisor = LLVMBuildOr(builder, local 1031 emit_data->args[0], divisor, ""); 1052 LLVMValueRef divisor = LLVMBuildOr(builder, local 1056 emit_data->args[0], divisor, ""); 1501 LLVMValueRef divisor = LLVMBuildOr(builder, local 1505 emit_data->args[0], divisor); 1699 LLVMValueRef divisor = LLVMBuildOr(builder, local 1954 LLVMValueRef divisor = LLVMBuildOr(builder, local 2001 LLVMValueRef divisor = LLVMBuildOr(builder, local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/ |
| wsi_common_x11.c | 1141 int64_t divisor = 0; local 1197 divisor,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_tgsi_action.c | 978 LLVMValueRef divisor = LLVMBuildOr(builder, local 982 emit_data->args[0], divisor); 1002 LLVMValueRef divisor = LLVMBuildOr(builder, local 1006 emit_data->args[0], divisor); 1027 LLVMValueRef divisor = LLVMBuildOr(builder, local 1031 emit_data->args[0], divisor, ""); 1052 LLVMValueRef divisor = LLVMBuildOr(builder, local 1056 emit_data->args[0], divisor, ""); 1501 LLVMValueRef divisor = LLVMBuildOr(builder, local 1505 emit_data->args[0], divisor); 1699 LLVMValueRef divisor = LLVMBuildOr(builder, local 1954 LLVMValueRef divisor = LLVMBuildOr(builder, local 2001 LLVMValueRef divisor = LLVMBuildOr(builder, local [all...] |
| /xsrc/external/mit/freetype/dist/src/psaux/ |
| psintrp.c | 1589 CF2_F16Dot16 divisor; local 1596 divisor = (CF2_F16Dot16)cf2_stack_popInt( opStack ); 1603 divisor = cf2_stack_popFixed( opStack ); 1608 FT_DivFix( dividend, divisor ) ); 1984 CF2_F16Dot16 divisor; local 1990 divisor = cf2_stack_popFixed( opStack ); 1993 if ( divisor == 0 ) 1998 divisor ) );
|
| /xsrc/external/mit/xorg-server/dist/os/ |
| utils.c | 2121 uint64_t divisor; local 2125 for (len = 1, divisor = 10; 2126 len < 20 && num / divisor; 2127 len++, divisor *= 10); 2129 for (i = len, divisor = 1; i > 0; i--, divisor *= 10) 2130 string[i - 1] = '0' + ((num / divisor) % 10); 2172 uint64_t divisor; local 2176 for (len = 1, divisor = 0x10; 2177 len < 16 && num / divisor; [all...] |